:root {
    --bg-color: #07080c;
    --card-bg: rgba(255, 255, 255, 0.06);
    --primary-color: #296aa6;
    --accent-color: #00d2ff;
    --text-main: #f5f5f7;
    --text-dim: #a1a1a6;

    /* Liquid Glass tokens */
    --lg-bg:            rgba(255, 255, 255, 0.09);
    --lg-bg-hover:      rgba(255, 255, 255, 0.15);
    --lg-border:        1px solid rgba(255, 255, 255, 0.18);
    --lg-border-inner:  inset 0 1px 0 rgba(255, 255, 255, 0.30),
                        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --lg-shadow:        0 8px 40px rgba(0, 0, 0, 0.55),
                        0 2px 8px  rgba(0, 0, 0, 0.25);
    --lg-shadow-hover:  0 24px 60px rgba(0, 0, 0, 0.65),
                        0 4px 16px rgba(0, 0, 0, 0.30),
                        0 0  40px  rgba(0, 180, 255, 0.10);
    --lg-blur:          blur(32px) saturate(200%) brightness(1.05);
    --lg-radius:        24px;
    --lg-specular:      linear-gradient(135deg,
                            rgba(255,255,255,0.22) 0%,
                            rgba(255,255,255,0.06) 40%,
                            transparent 70%);

    --glass-bg: var(--lg-bg);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-blur: var(--lg-blur);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-color);
    /* Rich dark background so liquid glass has colour to refract */
    background-image:
        radial-gradient(ellipse 100% 70% at  0%   0%, rgba(28,  80, 160, 0.30) 0%, transparent 55%),
        radial-gradient(ellipse  70% 60% at 100% 100%, rgba(0, 180, 255, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse  60% 50% at  50%  50%, rgba(80,  20, 140, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse  40% 35% at  80%  20%, rgba(0, 220, 200, 0.10) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

/* --- Navigation (original white style) --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    height: 85px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 12px;
    padding: 1rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    text-transform: none;
    font-size: 0.95rem;
    letter-spacing: 0;
    color: #1d1d1f !important;
}

.dropdown-menu a:hover {
    background: rgba(41, 106, 166, 0.10);
    color: var(--primary-color) !important;
}

.nav-links a {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* --- Hero --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: brightness(0.4) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 90%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--text-dim);
    margin-bottom: 2.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 30px rgba(41, 106, 166, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(41, 106, 166, 0.6);
}

/* --- Service Cards --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* =====================
   LIQUID GLASS MIXIN
   ===================== */
.liquid-glass,
.card,
.stat-card,
.form-container {
    position: relative;
    overflow: hidden;
    background: var(--lg-bg);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: var(--lg-border);
    box-shadow: var(--lg-shadow), var(--lg-border-inner);
    transition: var(--transition);
}

/* Specular highlight — top-left glare like real glass */
.liquid-glass::before,
.card::before,
.stat-card::before,
.form-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lg-specular);
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

/* Subtle inner rim at bottom-right for glass depth */
.liquid-glass::after,
.card::after,
.stat-card::after,
.form-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.08),
                inset  1px 0  0 rgba(255,255,255,0.06);
    pointer-events: none;
    z-index: 2;
}

/* Card specific */
.card {
    padding: 3rem 2rem;
    border-radius: var(--lg-radius);
    text-align: center;
}

.card > * { position: relative; z-index: 3; }

.card:hover {
    transform: translateY(-10px);
    background: var(--lg-bg-hover);
    box-shadow: var(--lg-shadow-hover), var(--lg-border-inner);
    border-color: rgba(0, 210, 255, 0.35);
}

.card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.5));
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-dim);
}

/* --- Form --- */
.contact-section {
    background: transparent;
}

.form-container {
    /* liquid-glass base already applied via the shared rule above */
    padding: 4rem;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.form-container > * { position: relative; z-index: 3; }

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-dim);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background-color: var(--card-bg);
    color: var(--text-main);
}

/* --- Reviews --- */
.reviews-section {
    background: var(--bg-color);
}

.review-badge {
    text-align: center;
    margin-bottom: 3rem;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
}

/* --- Footer --- */
footer {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(5, 5, 8, 0.70);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    text-align: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
}

.advantage-card img {
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.advantage-card:hover img {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255,255,255,0.3));
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    z-index: 1000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* --- Stats Grid --- */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-card {
    /* liquid-glass base already applied via the shared rule above */
    text-align: center;
    padding: 2rem;
    border-radius: 22px;
    flex: 1 1 250px;
    max-width: 350px;
}

.stat-card > * { position: relative; z-index: 3; }

.stat-card:hover {
    transform: translateY(-5px);
    background: var(--lg-bg-hover);
    box-shadow: var(--lg-shadow-hover), var(--lg-border-inner);
    border-color: rgba(0, 210, 255, 0.30);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.5));
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 700;
}

.stat-card p {
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-size: 1.1rem;
}

/* =====================================================
   MOBILE RESPONSIVE — comprehensive overhaul
   ===================================================== */

/* --- Small phones (≤ 480px) --- */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p  { font-size: 1rem; }
    section { padding: 60px 0; }
    .container { padding: 0 1.2rem; }
}

/* --- Tablets + Phones (≤ 768px) --- */
@media (max-width: 768px) {

    /* === Top Bar === */
    .top-bar {
        gap: 0.6rem;
        font-size: 0.72rem;
        padding: 0.4rem 0.8rem;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .top-bar-addr { display: none; }   /* hide address, keep status + phone */
    .top-bar-sep  { display: none; }
    body { padding-top: 32px; }
    nav  { top: 32px; }

    /* === Navigation === */
    .mobile-menu-btn { display: block !important; }
    .logo img { height: 58px; }
    .nav-cta  { display: none; }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        gap: 1.2rem;
        text-align: center;
        border-top: 1px solid rgba(0,0,0,0.06);
    }
    .nav-links.active { display: flex; }

    .nav-links a {
        font-size: 1rem;
        padding: 0.4rem 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        transform: none;
        border: none;
        background: transparent;
        padding: 0;
        display: none;
        margin-top: 0.8rem;
        width: 100%;
    }
    .dropdown:hover .dropdown-menu { display: none; }
    .dropdown.mobile-open .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    .dropdown-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        color: var(--primary-color) !important;
        font-weight: 600;
        text-align: center;
        width: 100%;
        display: block;
    }
    .dropdown-menu li:last-child a { border-bottom: none; }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-5px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    /* === Hero === */
    .hero-content h1 { font-size: 2.6rem; line-height: 1.15; }
    .hero-content p  { font-size: 1.1rem; margin-bottom: 1.8rem; }
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .hero-btns .btn { width: 100%; max-width: 300px; text-align: center; }

    /* === General sections === */
    section { padding: 70px 0; }
    .container { padding: 0 1.4rem; }

    /* === Headings === */
    h2[style*="2.5rem"] { font-size: 1.9rem !important; }
    h2[style*="2rem"]   { font-size: 1.6rem !important; }

    /* === Service Cards === */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .card { padding: 2rem 1.5rem; }

    /* === Stats === */
    .stats-grid { gap: 1rem; }
    .stat-card {
        padding: 1.5rem;
        flex: 1 1 100%;
        max-width: 100%;
    }
    .stat-card h3 { font-size: 2rem; }
    .stat-card i  { font-size: 2rem; }

    /* === Contact Form === */
    .form-container { padding: 1.8rem 1.2rem; }

    /* Collapse all 2-column grids inside the form to 1 column */
    .form-container div[style*="grid-template-columns: 1fr 1fr"],
    .contact-section div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    /* Submit buttons stack */
    .form-container div[style*="grid-template-columns: 1fr 1fr"]:last-of-type {
        gap: 0.8rem !important;
    }

    /* === Contact Info Cards === */
    .liquid-glass[style*="padding: 2rem"] {
        padding: 1.5rem !important;
    }

    /* === Google Maps === */
    .map-container { height: 240px; margin-top: 2rem; }

    /* === FAQ === */
    .faq-grid { gap: 0.8rem; }
    .faq-question { font-size: 0.95rem; padding: 1.2rem 1.2rem; }
    .faq-answer   { padding: 0 1.2rem; font-size: 0.9rem; }
    .faq-item.open .faq-answer { padding: 0 1.2rem 1.2rem; }

    /* === Review Cards === */
    .review-cards-grid { grid-template-columns: 1fr; gap: 1rem; }
    .review-card { padding: 1.4rem; }

    /* === Device Grid (Repair pages) === */
    .device-grid-section div[style*="repeat(auto-fill"] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
        gap: 1.2rem !important;
    }
    .device-card { padding: 1.2rem !important; }
    .device-card h4 { font-size: 0.9rem; }

    /* === Gallery === */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* === Über Uns – info flex → column === */
    div[style*="gap: 4rem"][style*="flex-wrap"] {
        flex-direction: column !important;
        gap: 2rem !important;
        align-items: flex-start;
    }

    /* === Footer === */
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    /* === WhatsApp Float — move left slightly on small screens === */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 24px;
    }

    /* === Buttons === */
    .btn { padding: 0.85rem 1.8rem; font-size: 1rem; }
}

/* --- Gallery Section --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.10);
    transition: var(--transition);
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 210, 255, 0.10);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* =====================
   TOP ANNOUNCEMENT BAR
   ===================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    padding: 0.45rem 1rem;
    background: rgba(10, 10, 16, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.3px;
}

.top-bar a {
    color: inherit;
    text-decoration: none;
}

.top-bar .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    flex-shrink: 0;
}

.top-bar .status-dot.open  { background: #30d158; box-shadow: 0 0 6px #30d158; }
.top-bar .status-dot.closed { background: #ff453a; box-shadow: 0 0 6px #ff453a; }

.top-bar-status { display: flex; align-items: center; gap: 0.3rem; font-weight: 600; }
.top-bar-status.open  { color: #30d158; }
.top-bar-status.closed { color: #ff453a; }

.top-bar-sep { opacity: 0.3; }

/* Push body down so nav doesn't overlap top bar */
body { padding-top: 36px; }

/* Shift fixed nav down by top-bar height */
nav { top: 36px; }

@media (max-width: 600px) {
    .top-bar { gap: 0.8rem; font-size: 0.75rem; }
    .top-bar .top-bar-addr { display: none; }
}

/* =====================
   WHATSAPP PULSE
   ===================== */
@keyframes whatsapp-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: whatsapp-pulse 2.2s infinite;
}

/* =====================
   SCROLL FADE-IN
   ===================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1),
                transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up.delay-1 { transition-delay: 0.1s; }
.fade-in-up.delay-2 { transition-delay: 0.2s; }
.fade-in-up.delay-3 { transition-delay: 0.3s; }
.fade-in-up.delay-4 { transition-delay: 0.4s; }
.fade-in-up.delay-5 { transition-delay: 0.5s; }
.fade-in-up.delay-6 { transition-delay: 0.6s; }

/* =====================
   DEVICE CARD GLASS
   ===================== */
.device-card {
    position: relative;
    overflow: hidden;
    background: var(--lg-bg) !important;
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: var(--lg-border) !important;
    box-shadow: var(--lg-shadow), var(--lg-border-inner);
    border-radius: 20px !important;
    transition: var(--transition);
}

.device-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lg-specular);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.device-card > * { position: relative; z-index: 1; }

.device-card:hover {
    transform: translateY(-8px);
    background: var(--lg-bg-hover) !important;
    box-shadow: var(--lg-shadow-hover), var(--lg-border-inner);
    border-color: rgba(0, 210, 255, 0.35) !important;
}

/* device grid section background → transparent */
.device-grid-section {
    background: transparent !important;
}

/* =====================
   FAQ SECTION
   ===================== */
.faq-section { background: transparent; }

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    position: relative;
    overflow: hidden;
    background: var(--lg-bg);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: var(--lg-border);
    box-shadow: var(--lg-shadow), var(--lg-border-inner);
    border-radius: 16px;
    transition: var(--transition);
}

.faq-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lg-specular);
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
}

.faq-question {
    position: relative;
    z-index: 1;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    padding: 1.4rem 1.6rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--accent-color); }

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0,210,255,0.12);
    border: 1px solid rgba(0,210,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--accent-color);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), background 0.2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(0,210,255,0.20);
}

.faq-answer {
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
                padding 0.3s ease;
    color: var(--text-dim);
    font-size: 0.97rem;
    line-height: 1.7;
    padding: 0 1.6rem;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 1.6rem 1.4rem;
}

/* =====================
   REVIEW CARDS
   ===================== */
.review-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.review-card {
    position: relative;
    overflow: hidden;
    background: var(--lg-bg);
    backdrop-filter: var(--lg-blur);
    -webkit-backdrop-filter: var(--lg-blur);
    border: var(--lg-border);
    box-shadow: var(--lg-shadow), var(--lg-border-inner);
    border-radius: 20px;
    padding: 1.8rem;
    transition: var(--transition);
}

.review-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lg-specular);
    border-radius: inherit;
    pointer-events: none;
}

.review-card > * { position: relative; z-index: 1; }

.review-card:hover {
    transform: translateY(-6px);
    background: var(--lg-bg-hover);
    box-shadow: var(--lg-shadow-hover), var(--lg-border-inner);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.review-author { font-weight: 600; font-size: 0.95rem; }
.review-date { font-size: 0.78rem; color: var(--text-dim); margin-top: 2px; }

.review-stars { color: #ffc107; font-size: 0.85rem; margin-bottom: 0.8rem; }

.review-text {
    color: var(--text-dim);
    font-size: 0.93rem;
    line-height: 1.65;
}

.review-google-badge {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

/* =====================
   MAPS EMBED
   ===================== */
.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: var(--lg-border);
    box-shadow: var(--lg-shadow), var(--lg-border-inner);
    margin-top: 3rem;
    height: 380px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) saturate(0.9) brightness(0.85);
}

@media (max-width: 768px) {
    .map-container { height: 260px; }
    .review-cards-grid { grid-template-columns: 1fr; }
}
