/* Star Tech Phone Repairs - Unified Stylesheet (2025-2026) */

/* 1. Design Tokens & Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Sophisticated Color Palette */
    --bg-primary: #050608;
    --bg-secondary: #101319;
    --bg-tertiary: #080b10;
    --star-blue: #1493ff;
    --star-blue-hover: #46adff;
    --star-green: #44f28f;
    --text-primary: #f5f5f7;
    --text-secondary: #b7c0cc;
    --text-muted: #6e6e73;
    --border-color: rgba(148, 190, 255, 0.18);
    --nav-bg: rgba(5, 7, 11, 0.76);
    --blue-glow: rgba(20, 147, 255, 0.26);
    --card-bg: rgba(18, 22, 30, 0.86);
    --card-text: #ffffff;
    --card-desc: #b7c0cc;
    --card-icon: #4db2ff;

    /* Spacing & Layout */
    --container-max: 1200px;
    --section-padding: 6rem 2rem;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --transition-fast: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background:
        radial-gradient(circle at 16% 0%, rgba(20, 147, 255, 0.16), transparent 31rem),
        radial-gradient(circle at 90% 12%, rgba(105, 190, 255, 0.10), transparent 34rem),
        var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* 2. Typography */
h1, h2, h3, h4, .orbitron { font-family: 'Inter', sans-serif; letter-spacing: -0.025em; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); text-align: center; margin-bottom: 0.5rem; font-weight: 700; }
.section-subtitle { text-align: center; font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 4rem; font-weight: 400; }

/* 3. Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg) !important;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (min-width: 768px) { .nav-container { height: 60px; } }

.logo img { height: 32px; width: auto; transition: var(--transition); filter: drop-shadow(0 10px 24px rgba(20, 147, 255, 0.20)); }
@media (min-width: 768px) { .logo img { height: 40px; } }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: var(--transition);
    opacity: 0.8;
    letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: #fff; }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001; }
.hamburger span { width: 20px; height: 2px; background: var(--text-primary); transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    padding: 1.5rem 2rem;
    z-index: 999;
}
@media (min-width: 768px) { .mobile-menu { top: 60px; } }
.mobile-menu.active { display: block; }
.mobile-menu a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.8rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--star-blue); }

/* 4. Common Components */
.btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 980px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast) !important;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary, .book-now-btn, .mobile-menu a.book-now-btn {
    background: linear-gradient(135deg, var(--star-blue), #51b8ff) !important;
    color: #fff !important;
    box-shadow: 0 12px 30px rgba(20, 147, 255, 0.28) !important;
}
.btn-primary:hover { background: var(--star-blue-hover); }

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover { border-color: var(--star-blue); color: var(--star-blue); }

.messenger-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--star-blue);
    border: none;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 34px rgba(20, 147, 255, 0.34) !important;
    transition: var(--transition);
}
.messenger-btn:hover { transform: scale(1.05); background: var(--star-blue-hover); }
.messenger-btn svg { width: 20px; height: 20px; fill: #FFFFFF; }

.page-header, .blog-header {
    margin-top: 48px;
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(20, 147, 255, 0.12), rgba(20, 147, 255, 0)), var(--bg-secondary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) { .page-header, .blog-header { margin-top: 60px; } }

/* 5. Shared Card Styles */
.card, .feature-card, .service-card, .post-card, .booking-form, .pricing-details, .pricing-cta, .services-cta, .price-note, .device-btn, .info-icon, .map-overlay {
    background: var(--card-bg) !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    transition: var(--transition-fast) !important;
    isolation: isolate;
    position: relative;
    overflow: hidden;
}

.card:hover, .feature-card:hover, .service-card:hover, .post-card:hover, .device-btn:hover {
    transform: translateY(-8px);
    border-color: rgba(20, 147, 255, 0.6) !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 20px rgba(20, 147, 255, 0.2);
}

.card-icon, .feature-icon, .service-icon, .info-icon, .flow-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(20, 147, 255, 0.10);
    border: 1px solid rgba(20, 147, 255, 0.16);
    box-shadow: inset 0 0 18px rgba(20, 147, 255, 0.08);
}
.card-icon svg, .feature-icon svg, .service-icon svg, .info-icon svg, .flow-icon svg { width: 28px; height: 28px; fill: var(--card-icon); stroke: none; }

/* 6. Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0% { opacity: 0.3; transform: scale(1); } 100% { opacity: 0.6; transform: scale(1.05); } }
@keyframes circuitScroll { 0% { background-position: 0 0; } 100% { background-position: 0 400px; } }
@keyframes statusBlink {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(68, 242, 143, 0.85); }
    45% { opacity: 0.45; transform: scale(0.74); box-shadow: 0 0 3px rgba(68, 242, 143, 0.38); }
    70% { opacity: 1; transform: scale(1.22); box-shadow: 0 0 18px rgba(68, 242, 143, 0.98); }
}
@keyframes floatIcon {
    0%, 100% { transform: translate3d(0,0,0) rotate(0deg); opacity: 0.46; }
    50% { transform: translate3d(0,-18px,0) rotate(4deg); opacity: 0.72; }
}
@keyframes statLift {
    0%, 100% { transform: translateY(0); border-color: rgba(255, 255, 255, 0.10); }
    50% { transform: translateY(-5px); border-color: rgba(20, 147, 255, 0.26); }
}
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes softDrift {
    0%, 100% { transform: translate(0, 0); opacity: 0.65; }
    50% { transform: translate(-20px, -18px); opacity: 1; }
}

/* 7. Page Specific: Index/Home */
.hero { margin-top: 48px; min-height: calc(100vh - 48px); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
@media (min-width: 768px) { .hero { margin-top: 60px; min-height: calc(100vh - 60px); } }
.hero-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 40%, rgba(20, 147, 255, 0.20), transparent 28rem), linear-gradient(140deg, #030406 0%, #111722 52%, #030406 100%) !important; z-index: 1; }
.hero-circuit { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 2; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Cstyle%3E.t%7Bfill:none;stroke:%230084FF;stroke-width:1.5%7D.p%7Bfill:%230084FF%7D%3C/style%3E%3Cpath class='t' d='M50 50h100M150 50v60M150 110h80M230 110v50'/%3E%3Ccircle class='p' cx='50' cy='50' r='3'/%3E%3Ccircle class='p' cx='150' cy='50' r='3'/%3E%3Ccircle class='p' cx='150' cy='110' r='3'/%3E%3Ccircle class='p' cx='230' cy='110' r='3'/%3E%3Ccircle class='p' cx='230' cy='160' r='3'/%3E%3Cpath class='t' d='M280 30h70M350 30v100M350 130h-60M290 130v40'/%3E%3Ccircle class='p' cx='280' cy='30' r='3'/%3E%3Ccircle class='p' cx='350' cy='30' r='3'/%3E%3Ccircle class='p' cx='350' cy='130' r='3'/%3E%3Ccircle class='p' cx='290' cy='130' r='3'/%3E%3Ccircle class='p' cx='290' cy='170' r='3'/%3E%3Cpath class='t' d='M30 200h90M120 200v70M120 270h100'/%3E%3Ccircle class='p' cx='30' cy='200' r='3'/%3E%3Ccircle class='p' cx='120' cy='200' r='3'/%3E%3Ccircle class='p' cx='120' cy='270' r='3'/%3E%3Ccircle class='p' cx='220' cy='270' r='3'/%3E%3Cpath class='t' d='M260 220h80M340 220v60M340 280h30'/%3E%3Ccircle class='p' cx='260' cy='220' r='3'/%3E%3Ccircle class='p' cx='340' cy='220' r='3'/%3E%3Ccircle class='p' cx='340' cy='280' r='3'/%3E%3Ccircle class='p' cx='370' cy='280' r='3'/%3E%3Cpath class='t' d='M60 320h70M130 320v50M130 370h90'/%3E%3Ccircle class='p' cx='60' cy='320' r='3'/%3E%3Ccircle class='p' cx='130' cy='320' r='3'/%3E%3Ccircle class='p' cx='130' cy='370' r='3'/%3E%3Ccircle class='p' cx='220' cy='370' r='3'/%3E%3Cpath class='t' d='M270 310h60M330 310v60'/%3E%3Ccircle class='p' cx='270' cy='310' r='3'/%3E%3Ccircle class='p' cx='330' cy='310' r='3'/%3E%3Ccircle class='p' cx='330' cy='370' r='3'/%3E%3Cpath class='t' d='M180 140l40 40M220 180v40'/%3E%3Ccircle class='p' cx='180' cy='140' r='2'/%3E%3Ccircle class='p' cx='220' cy='180' r='2'/%3E%3Ccircle class='p' cx='220' cy='220' r='2'/%3E%3Crect class='p' x='147' y='47' width='6' height='6' rx='1'/%3E%3Crect class='p' x='347' y='127' width='6' height='6' rx='1'/%3E%3Crect class='p' x='117' y='267' width='6' height='6' rx='1'/%3E%3Crect class='p' x='327' y='307' width='6' height='6' rx='1'/%3E%3C/svg%3E"); background-size: 400px 400px; background-repeat: repeat; animation: circuitScroll 60s linear infinite; }
.hero-content { position: relative; z-index: 3; text-align: center; max-width: 800px; padding: 2rem; margin: 0 auto; width: 100%; }
.hero h1 { font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; letter-spacing: 0.05em; color: #FFFFFF; text-transform: uppercase; }
.hero h1 .bold { font-weight: 700; color: var(--star-blue); }
.hero h1 .thin { font-weight: 300; color: #FFFFFF; }
.hero p { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 2rem; color: var(--text-secondary); font-weight: 400; line-height: 1.5; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.65rem 1.15rem; margin-bottom: 1.4rem; color: #f4fff8; font-size: 0.9rem; font-weight: 700; background: rgba(12, 17, 24, 0.66); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px; box-shadow: 0 14px 34px rgba(0,0,0,0.28); backdrop-filter: blur(16px); }
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--star-green); box-shadow: 0 0 10px rgba(68,242,143,0.9); animation: statusBlink 1.7s ease-in-out infinite; }
.hero-orbit { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.orbit-icon { position: absolute; width: 58px; height: 58px; display: grid; place-items: center; color: rgba(120, 196, 255, 0.54); border: 1px solid rgba(120, 196, 255, 0.12); border-radius: 8px; background: rgba(6, 12, 20, 0.26); box-shadow: inset 0 0 26px rgba(20,147,255,0.06); animation: floatIcon 8s ease-in-out infinite; }
.orbit-icon svg { width: 27px; height: 27px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.orbit-icon.phone { top: 20%; left: 14%; animation-delay: -1s; }
.orbit-icon.battery { top: 26%; right: 13%; animation-delay: -3.2s; }
.orbit-icon.tool { bottom: 20%; left: 18%; animation-delay: -5.1s; }
.orbit-icon.shield { bottom: 23%; right: 18%; animation-delay: -2.4s; }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; max-width: 760px; margin: 2.25rem auto 0; }
.hero-stat { padding: 1rem; border: 1px solid rgba(255,255,255,0.10); border-radius: 8px; background: rgba(8, 12, 18, 0.54); box-shadow: 0 16px 36px rgba(0,0,0,0.20); backdrop-filter: blur(14px); animation: statLift 6s ease-in-out infinite; }
.hero-stat strong { display: block; color: #ffffff; font-size: 1rem; margin-bottom: 0.2rem; }
.hero-stat span { color: #9eabb9; font-size: 0.8rem; }
.hero-ticker { position: absolute; left: 0; right: 0; bottom: 1.2rem; z-index: 3; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent); }
.ticker-track { display: flex; width: max-content; gap: 0.7rem; animation: tickerMove 28s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 0.85rem; color: #c9d7e6; font-size: 0.8rem; font-weight: 700; white-space: nowrap; border: 1px solid rgba(255,255,255,0.09); border-radius: 999px; background: rgba(6, 10, 16, 0.60); backdrop-filter: blur(12px); }
.ticker-item svg { width: 15px; height: 15px; stroke: var(--star-blue); fill: none; stroke-width: 2; }

.features { padding: 6rem 2rem; background: var(--bg-secondary); position: relative; z-index: 1; transition: background 0.3s ease; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.feature-card::after { content: ''; position: absolute; top: 1.1rem; right: 1.1rem; width: 7px; height: 7px; border-radius: 50%; background: #44f28f; box-shadow: 0 0 12px rgba(68,242,143,0.7); opacity: 0.78; }
.feature-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; font-weight: 600; color: var(--card-text); }
.feature-card p { line-height: 1.7; color: var(--card-desc); font-size: 0.95rem; letter-spacing: 0.01em; }
.feature-meta { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1rem; }
.feature-meta span { display: inline-flex; align-items: center; min-height: 24px; padding: 0.25rem 0.55rem; color: #b8dfff; font-size: 0.72rem; font-weight: 700; border: 1px solid rgba(20,147,255,0.20); border-radius: 999px; background: rgba(20,147,255,0.08); }

.repair-flow { padding: 0 2rem 6rem; background: var(--bg-secondary); position: relative; z-index: 1; }
.flow-panel { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 1rem; border: 1px solid rgba(255,255,255,0.09); border-radius: 8px; background: rgba(7, 11, 17, 0.72); box-shadow: 0 24px 70px rgba(0,0,0,0.26); }
.flow-step { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: center; padding: 1.5rem; border-radius: 12px; background: rgba(255,255,255,0.035); transition: var(--transition); }
.flow-step:hover { background: rgba(255,255,255,0.06); }
@media (max-width: 968px) { .flow-panel { grid-template-columns: 1fr; } }
.flow-step:not(:last-child)::after { content: ''; position: absolute; top: 50%; right: -0.5rem; width: 1rem; height: 1px; background: linear-gradient(90deg, rgba(20,147,255,0.25), rgba(68,242,143,0.5)); }
@media (max-width: 968px) { .flow-step:not(:last-child)::after { display: none; } }
.flow-step strong { display: block; color: #ffffff; font-size: 0.95rem; margin-bottom: 0.15rem; }
.flow-step span { color: #9eabb9; font-size: 0.82rem; }

.why-choose { padding: 6rem 2rem; background: var(--bg-primary); position: relative; z-index: 1; transition: background 0.3s ease; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
@media (max-width: 968px) { .why-grid { grid-template-columns: 1fr; } }
.why-content h3 { font-size: 1.75rem; margin-bottom: 1.5rem; color: var(--star-blue); font-weight: 600; }
.why-list { list-style: none; }
.why-list li { padding: 1.25rem 0; border-bottom: 1px solid var(--border-color); font-size: 1rem; display: flex; align-items: center; gap: 1rem; color: var(--text-primary); }
.why-list li svg { width: 20px; height: 20px; fill: var(--star-blue); flex-shrink: 0; }
.why-visual { background: var(--bg-secondary); min-height: 500px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 3rem 2rem; border-radius: 20px; border: 1px solid var(--border-color); }
.why-visual::before { content: ''; position: absolute; inset: 1.1rem; border: 1px solid rgba(20,147,255,0.10); border-radius: 8px; pointer-events: none; }
.why-visual::after { content: ''; position: absolute; width: 180px; height: 180px; right: -70px; bottom: -70px; border-radius: 50%; background: radial-gradient(circle, rgba(20,147,255,0.20), transparent 65%); animation: softDrift 7s ease-in-out infinite; }
.reviews-header { text-align: center; margin-bottom: 2rem; z-index: 2; position: relative; }
.google-badge { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; }
.google-icon { width: 40px; height: 40px; }
.google-reviews-text { font-size: 1.5rem; font-weight: 600; color: var(--text-primary); }
.overall-rating { display: flex; align-items: center; justify-content: center; gap: 0.6rem; background: var(--star-blue); padding: 0.6rem 1.25rem; border-radius: 980px; }
.stars { color: #FBBC04; font-size: 1.25rem; }
.rating-number { color: #FFFFFF; font-weight: 600; font-size: 1.1rem; }
.slideshow-container { position: relative; max-width: 600px; margin: 0 auto; z-index: 2; padding: 1.5rem 2rem; }
.review-slide { display: none; text-align: center; animation: fadeIn 0.5s ease; }
.review-slide.active { display: block; }
.review-stars { color: #FBBC04; font-size: 1.5rem; margin-bottom: 1rem; }
.review-text { font-size: 1.1rem; line-height: 1.8; color: var(--text-primary); margin-bottom: 1.25rem; font-style: italic; }
.reviewer-name { font-weight: 600; color: var(--star-blue); font-size: 1rem; }
.slideshow-dots { text-align: center; margin-top: 1.5rem; z-index: 2; position: relative; }
.dot { height: 10px; width: 10px; margin: 0 5px; background-color: var(--border-color); border-radius: 50%; display: inline-block; cursor: pointer; transition: all 0.3s ease; }
.dot.active, .dot:hover { background-color: var(--star-blue); }

.cta-section { padding: 6rem 2rem; background: var(--card-bg); text-align: center; position: relative; z-index: 1; transition: background 0.3s ease; overflow: hidden; }
.cta-section h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; color: var(--card-text); font-weight: 700; }
.cta-section p { font-size: 1.1rem; margin-bottom: 2rem; color: var(--card-desc); max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section::before, .cta-section::after { content: ''; position: absolute; border: 1px solid rgba(20,147,255,0.12); border-radius: 8px; background: rgba(20,147,255,0.035); animation: floatIcon 9s ease-in-out infinite; }
.cta-section::before { width: 90px; height: 90px; left: 8%; top: 22%; }
.cta-section::after { width: 120px; height: 120px; right: 9%; bottom: 14%; animation-delay: -3s; }

/* 8. Page Specific: Prices */
.pricing-container { max-width: var(--container-max); margin: 0 auto; padding: 4rem 2rem; }
.category-section { margin-bottom: 4rem; }
.category-title { font-size: 1.5rem; color: var(--star-blue); margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-color); display: flex; align-items: center; gap: 0.75rem; font-weight: 600; }
.devices-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
@media (max-width: 968px) { .devices-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .devices-grid { grid-template-columns: repeat(2, 1fr); } }
.device-btn { background: var(--card-bg); border: none; padding: 1.25rem 1rem; cursor: pointer; text-align: center; border-radius: 16px; transition: all 0.3s; }
.device-btn.active { box-shadow: 0 0 0 2px var(--star-blue); border-color: var(--star-blue) !important; }
.device-icon svg { width: 32px; height: 32px; fill: var(--card-icon); margin-bottom: 0.5rem; }
.device-name { font-weight: 500; font-size: 0.8rem; color: var(--card-text); }
.pricing-details { grid-column: 1 / -1; background: var(--bg-secondary) !important; padding: 2rem; border-radius: 16px; border: 1px solid var(--border-color); animation: fadeIn 0.3s; }
.pricing-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.pricing-details h3 { font-size: 1.25rem; color: var(--star-blue); }
.close-pricing { background: none; border: 1px solid var(--border-color); color: var(--text-secondary); width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; transition: var(--transition-fast); }
.close-pricing:hover { border-color: var(--star-blue); color: var(--star-blue); }
.price-rows-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0 2rem; margin-bottom: 1.5rem; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--border-color); }
.repair-name { color: var(--text-primary); font-weight: 500; font-size: 0.95rem; }
.repair-price { color: var(--star-blue); font-weight: 600; }
.gst-label { color: var(--text-muted); font-size: 0.72rem; font-weight: 600; margin-left: 0.35rem; text-transform: uppercase; letter-spacing: 0.02em; }
.pricing-actions { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
@media (max-width: 600px) { .pricing-actions { flex-direction: column; } }
.price-note { background: var(--bg-secondary) !important; padding: 1.5rem; margin-top: 2rem; border-radius: 12px; }
.price-note p { color: var(--text-secondary); font-size: 0.9rem; }
.pricing-cta { text-align: center; padding: 5rem 2rem; background: var(--card-bg) !important; margin-top: 3rem; border-radius: 20px; }
.pricing-cta h2 { font-size: 2rem; color: var(--card-text); margin-bottom: 1rem; }

/* 9. Page Specific: Services */
.services-container { max-width: var(--container-max); margin: 0 auto; padding: 4rem 2rem; position: relative; z-index: 1; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 1.5rem; }
@media (max-width: 968px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { padding: 2.5rem 2rem; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; font-weight: 600; color: var(--card-text); }
.service-card p { line-height: 1.6; color: var(--card-desc); font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-features { list-style: none; }
.service-features li { padding: 0.4rem 0; padding-left: 1.25rem; position: relative; color: var(--card-desc); font-size: 0.9rem; }
.service-features li::before { content: '>'; position: absolute; left: 0; color: var(--card-icon); }
.services-cta { text-align: center; padding: 5rem 2rem; background: var(--card-bg) !important; margin-top: 4rem; border-radius: 20px; }
.services-cta h2 { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 1rem; color: var(--card-text); font-weight: 700; }

/* 10. Page Specific: Book */
.booking-container { max-width: 700px; margin: 0 auto; padding: 4rem 2rem; }
.booking-form { background: var(--bg-secondary) !important; padding: 2.5rem; border-radius: 20px; }
@media (max-width: 600px) { .booking-form { padding: 1.5rem; } }
.progress-indicator { display: flex; justify-content: space-between; margin-bottom: 2.5rem; position: relative; }
.progress-indicator::before { content: ''; position: absolute; top: 14px; left: 0; right: 0; height: 2px; background: var(--border-color); z-index: 1; }
.progress-step { text-align: center; position: relative; z-index: 2; flex: 1; }
.step-number { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-primary); border: 2px solid var(--border-color); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; font-weight: 600; font-size: 0.8rem; color: var(--text-muted); transition: all 0.3s; }
.progress-step.active .step-number { border-color: var(--star-blue); color: var(--star-blue); }
.progress-step.completed .step-number { background: var(--star-blue); border-color: var(--star-blue); color: #FFF; }
.step-label { font-size: 0.75rem; color: var(--text-muted); }
.progress-step.active .step-label, .progress-step.completed .step-label { color: var(--text-primary); }
.form-step { display: none; animation: fadeIn 0.4s; }
.form-step.active { display: block; }
.step-title { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--star-blue); font-weight: 600; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; color: var(--text-secondary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.device-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (max-width: 600px) { .device-type-grid { grid-template-columns: repeat(2, 1fr); } }
.device-type-option { background: var(--bg-primary) !important; border: 2px solid var(--border-color) !important; padding: 1.25rem 0.75rem; cursor: pointer; text-align: center; border-radius: 12px; transition: all 0.3s; }
.device-type-option:hover { border-color: var(--star-blue) !important; }
.device-type-option.selected { border-color: var(--star-blue) !important; background: rgba(0,132,255,0.1) !important; box-shadow: 0 0 0 3px rgba(20,147,255,0.14) !important; }
.device-type-option svg { width: 32px; height: 32px; fill: var(--star-blue); margin-bottom: 0.5rem; }
.device-type-option span { display: block; font-weight: 500; font-size: 0.8rem; color: var(--text-primary); }
.repair-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
@media (max-width: 600px) { .repair-options { grid-template-columns: 1fr; } }
.repair-option { background: var(--bg-primary) !important; border: 2px solid var(--border-color) !important; padding: 0.875rem 1rem; cursor: pointer; border-radius: 12px; transition: all 0.3s; display: flex; align-items: center; gap: 0.75rem; }
.repair-option:hover { border-color: var(--star-blue) !important; }
.repair-option.selected { border-color: var(--star-blue) !important; background: rgba(0,132,255,0.1) !important; box-shadow: 0 0 0 3px rgba(20,147,255,0.14) !important; }
.repair-option .checkmark { width: 20px; height: 20px; border: 2px solid var(--star-blue); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.repair-option.selected .checkmark { background: var(--star-blue); }
.repair-option.selected .checkmark::after { content: '\2713'; color: #FFF; font-size: 12px; }
.form-buttons { display: flex; gap: 0.75rem; margin-top: 2rem; }
@media (max-width: 600px) { .form-buttons { flex-direction: column; } }
.model-quick-picks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-bottom: 1.25rem; }
.model-pick { background: var(--bg-primary) !important; border: 2px solid var(--border-color) !important; padding: 0.75rem 1rem; cursor: pointer; border-radius: 12px; transition: all 0.3s; text-align: center; font-weight: 500; font-size: 0.85rem; color: var(--text-primary); }
.model-pick:hover { border-color: var(--star-blue) !important; }
.model-pick.selected { border-color: var(--star-blue) !important; background: rgba(0,132,255,0.1) !important; box-shadow: 0 0 0 3px rgba(20,147,255,0.14) !important; }
.model-divider { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; color: var(--text-muted); font-size: 0.8rem; }
.model-divider::before, .model-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-color); }
.date-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.date-chip { background: var(--bg-primary) !important; border: 2px solid var(--border-color) !important; padding: 0.6rem 1rem; cursor: pointer; border-radius: 980px; transition: all 0.3s; font-weight: 500; font-size: 0.8rem; color: var(--text-primary); text-align: center; white-space: nowrap; }
.date-chip:hover { border-color: var(--star-blue) !important; }
.date-chip.selected { border-color: var(--star-blue) !important; background: rgba(0,132,255,0.1) !important; box-shadow: 0 0 0 3px rgba(20,147,255,0.14) !important; }
.date-chip .chip-day { display: block; font-size: 0.7rem; color: var(--text-muted); margin-top: 2px; }
.time-slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
@media (max-width: 600px) { .time-slots { grid-template-columns: 1fr; } }
.time-slot { background: var(--bg-primary) !important; border: 2px solid var(--border-color) !important; padding: 0.875rem 1rem; cursor: pointer; border-radius: 12px; transition: all 0.3s; text-align: center; }
.time-slot:hover { border-color: var(--star-blue) !important; }
.time-slot.selected { border-color: var(--star-blue) !important; background: rgba(0,132,255,0.1) !important; box-shadow: 0 0 0 3px rgba(20,147,255,0.14) !important; }
.time-slot .slot-label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.time-slot .slot-range { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* 11. Page Specific: Contact */
.contact-section { margin-top: 48px; min-height: calc(100vh - 48px); display: grid; grid-template-columns: 1fr 1.5fr; }
@media (max-width: 968px) { .contact-section { grid-template-columns: 1fr; } }
.contact-info { padding: 4rem 3rem; background: var(--bg-secondary); }
.contact-info h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 3rem; }
.info-item { display: flex; gap: 1rem; margin-bottom: 2rem; align-items: flex-start; }
.info-content h3 { font-size: 1rem; margin-bottom: 0.25rem; font-weight: 600; }
.info-content p, .info-content a { color: var(--text-secondary); font-size: 0.95rem; text-decoration: none; line-height: 1.6; }
.info-content a:hover { color: var(--star-blue); }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.5rem; margin-top: 0.5rem; }
.hours-grid span { color: var(--text-secondary); font-size: 0.9rem; }
.hours-grid span:nth-child(odd) { font-weight: 500; color: var(--text-primary); }
.map-section { position: relative; background: var(--bg-tertiary); }
.map-container { width: 100%; height: 100%; min-height: 500px; }
@media (max-width: 968px) { .map-container { min-height: 400px; } }
.map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(100%) contrast(1.1); }
.map-overlay { position: absolute; bottom: 2rem; left: 2rem; background: var(--bg-primary) !important; padding: 1.5rem 2rem; border-radius: 16px !important; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.map-overlay p { display: flex; align-items: center; gap: 0.5rem; color: var(--text-primary); font-weight: 500; }
.map-overlay svg { width: 20px; height: 20px; fill: var(--star-blue); }

/* 12. Page Specific: Need Help (Blog) */
.filter-bar { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.filter-btn { background: var(--bg-secondary) !important; border: 1px solid var(--border-color) !important; color: var(--text-primary); padding: 0.5rem 1rem; border-radius: 980px; cursor: pointer; font-size: 0.85rem; transition: all 0.3s; }
.filter-btn:hover, .filter-btn.active { background: var(--star-blue) !important; border-color: var(--star-blue) !important; box-shadow: 0 0 0 3px rgba(20,147,255,0.14) !important; }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 2rem; }
.post-card { display: block; text-decoration: none; color: inherit; }
.post-card-content { padding: 1.5rem; }
.post-category { display: inline-block; background: var(--star-blue); color: #fff; padding: 0.25rem 0.75rem; border-radius: 980px; font-size: 0.75rem; font-weight: 500; margin-bottom: 1rem; }
.post-card h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.4; color: var(--text-primary); }
.post-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }
.post-meta { display: flex; justify-content: space-between; color: var(--text-muted); font-size: 0.8rem; }

/* 13. Footer Styles */
footer { background: var(--bg-secondary); padding: 4rem 2rem 2rem; margin-top: 4rem; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-content { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; }
.footer-section h4 { color: var(--text-primary); font-size: 1rem; margin-bottom: 1rem; font-weight: 600; }
.footer-section p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }
.footer-section a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; display: block; padding: 0.25rem 0; transition: color 0.3s; }
.footer-section a:hover { color: var(--star-blue); }
.footer-bottom { max-width: var(--container-max); margin: 2rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
@media (max-width: 600px) { .footer-content { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { text-align: center; } }

/* 14. Mobile Menu Glassmorphism Polish */
.mobile-menu { backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }

/* 15. Form Loading States */
.btn.loading { opacity: 0.7; cursor: not-allowed; pointer-events: none; }
.btn.loading::after { content: ''; display: inline-block; width: 14px; height: 14px; border: 2px solid transparent; border-top-color: #fff; border-radius: 50%; animation: spin 0.8s linear infinite; margin-left: 8px; vertical-align: middle; }
@keyframes spin { to { transform: rotate(360deg); } }

/* 16. Form Validation Styles */
.form-group input:invalid:not(:placeholder-shown), .form-group textarea:invalid:not(:placeholder-shown) { border-color: rgba(255, 82, 82, 0.5); }
.form-group input:valid:not(:placeholder-shown), .form-group textarea:valid:not(:placeholder-shown) { border-color: rgba(68, 242, 143, 0.5); }
.error-message { color: #ff5252; font-size: 0.8rem; margin-top: 0.25rem; display: none; }
.error-message.visible { display: block; }
