/* ===== RESET & BASE ===== */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; overflow-x: hidden; }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: #f0f7ff;
            color: #1a1a2e;
            line-height: 1.6;
            overflow-x: hidden;
        }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* ===== CSS VARIABLES ===== */
        :root {
            --primary: #00c896;
            --primary-dark: #00a87a;
            --accent: #0ea5e9;
            --accent-dark: #0284c7;
            --dark: #0f172a;
            --dark-light: #1e293b;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --glass-bg: rgba(255, 255, 255, 0.72);
            --glass-border: rgba(255, 255, 255, 0.5);
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
            --radius: 16px;
            --radius-sm: 10px;
            --max-width: 1280px;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 0 24px;
        }
        .navbar-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .logo {
            display: flex;
            align-items: baseline;
            gap: 2px;
            font-weight: 900;
            font-size: 1.8rem;
            letter-spacing: -1px;
        }
        .logo-pzm { color: var(--dark); }
        .logo-store {
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--dark);
            letter-spacing: 0;
            text-transform: none;
            display: inline;
            margin-top: 0;
        }
        .logo-tagline {
            font-size: 0.55rem;
            font-weight: 500;
            color: var(--accent);
            letter-spacing: 2px;
            text-transform: uppercase;
            display: block;
            margin-top: -2px;
        }
        .logo-group { display: flex; flex-direction: column; }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray-600);
            transition: color 0.2s;
            position: relative;
        }
        .nav-links a:hover { color: var(--dark); }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }

        /* Nav dropdown */
        .nav-dropdown {
            position: relative;
        }
        .nav-dropdown-trigger {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray-600);
            cursor: pointer;
            transition: color 0.2s;
            display: flex;
            align-items: center;
            gap: 4px;
            background: none;
            border: none;
            font-family: inherit;
            padding: 0;
        }
        .nav-dropdown-trigger:hover { color: var(--dark); }
        .nav-dropdown-trigger::after {
            content: '▾';
            font-size: 0.7em;
            transition: transform 0.2s;
        }
        .nav-dropdown:hover .nav-dropdown-trigger::after {
            transform: rotate(180deg);
        }
        .nav-dropdown-content {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%) translateY(4px);
            min-width: 220px;
            background: #fff;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-200);
            opacity: 0;
            visibility: hidden;
            transition: all 0.25s ease;
            overflow: hidden;
            z-index: 100;
        }
        .nav-dropdown:hover .nav-dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .nav-dropdown-content a {
            display: block;
            padding: 12px 20px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--gray-600);
            transition: all 0.2s;
            border-bottom: 1px solid var(--gray-100);
        }
        .nav-dropdown-content a::after { display: none; }
        .nav-dropdown-content a:last-child { border-bottom: none; }
        .nav-dropdown-content a:hover {
            background: var(--gray-100);
            color: var(--primary);
            padding-left: 24px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .btn-login {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray-600);
            padding: 8px 16px;
            border-radius: 8px;
            transition: 0.2s;
        }
        .btn-login:hover { background: var(--gray-100); }
        .btn-signup {
            font-size: 0.9rem;
            font-weight: 600;
            color: #fff;
            background: var(--primary);
            padding: 10px 22px;
            border-radius: 50px;
            transition: 0.2s;
        }
        .btn-signup:hover { background: var(--primary-dark); transform: translateY(-1px); }

        /* Mobile hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        .hamburger span {
            width: 24px;
            height: 2.5px;
            background: var(--dark);
            border-radius: 2px;
            transition: 0.3s;
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            overflow: hidden;
            padding: 80px 24px 60px;
            min-height: 600px;
            display: flex;
            align-items: center;
        }
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 600px 400px at 20% 50%, rgba(14,165,233,0.08) 0%, transparent 70%),
                radial-gradient(ellipse 500px 500px at 80% 30%, rgba(0,200,150,0.06) 0%, transparent 70%),
                linear-gradient(180deg, #f0f7ff 0%, #e8f4fd 50%, #f0f7ff 100%);
            z-index: 0;
        }
        .hero-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
            width: 100%;
            text-align: center;
        }
        .hero-text p { margin-inline: auto; }
        .hero-btns { justify-content: center; }
        .hero-text h1 {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.15;
            color: var(--dark);
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        .hero-text h1 span {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-top: 8px;
        }
        .hero-text p {
            font-size: 1.1rem;
            color: var(--gray-500);
            max-width: 520px;
            margin-bottom: 32px;
            line-height: 1.7;
        }
        .hero-proof-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            max-width: 920px;
            margin: 0 auto 28px;
        }
        .hero-proof-item {
            flex: 1 1 200px;
            min-width: 0;
            background: rgba(255,255,255,0.82);
            border: 1px solid rgba(15,23,42,0.07);
            border-radius: 18px;
            padding: 14px 16px;
            box-shadow: var(--shadow-sm);
            text-align: left;
        }
        .hero-proof-item strong {
            display: block;
            font-size: 0.92rem;
            color: var(--dark);
            margin-bottom: 4px;
        }
        .hero-proof-item span {
            display: block;
            font-size: 0.85rem;
            line-height: 1.55;
            color: var(--gray-500);
        }
        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .hero-link-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px;
            margin-top: 18px;
        }
        .hero-link-row a {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark-light);
            border-bottom: 1px solid transparent;
            transition: color 0.2s, border-color 0.2s;
        }
        .hero-link-row a:hover {
            color: var(--accent-dark);
            border-color: rgba(14,165,233,0.35);
        }
        .eid-home-shell {
            padding: 0 24px 36px;
        }
        .eid-home-banner {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 28px 32px;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 24px;
            align-items: center;
            background: linear-gradient(135deg, #fff4d7 0%, #ffe38a 42%, #fff7e7 100%);
            border: 1px solid rgba(184, 134, 11, 0.18);
            border-radius: 28px;
            box-shadow: var(--shadow-lg);
        }
        .eid-home-banner-icon {
            display: block;
            width: clamp(76px, 12vw, 112px);
            height: auto;
            filter: drop-shadow(0 10px 24px rgba(90, 56, 0, 0.2));
        }
        .eid-home-banner-copy {
            max-width: 760px;
        }
        .eid-home-banner-label {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            color: #8b5a00;
            margin-bottom: 10px;
        }
        .eid-home-banner h2 {
            font-size: 2rem;
            font-weight: 800;
            color: #1f1600;
            margin-bottom: 10px;
            line-height: 1.2;
        }
        .eid-home-banner p {
            font-size: 1rem;
            color: #4c3300;
            line-height: 1.7;
            margin-bottom: 18px;
        }
        .eid-home-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .eid-home-note {
            margin-top: 14px;
            font-size: 0.88rem;
            font-weight: 600;
            color: #805300;
        }
        .local-actions-section {
            padding: 0 24px 34px;
        }
        .local-actions-panel {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 30px 32px;
            border-radius: 28px;
            background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-md);
        }
        .local-actions-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 18px 24px;
            align-items: flex-end;
            margin-bottom: 24px;
        }
        .local-actions-header h2 {
            font-size: 1.95rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 10px;
            letter-spacing: -0.5px;
        }
        .local-actions-header p {
            max-width: 700px;
            font-size: 1rem;
            color: var(--gray-500);
            line-height: 1.7;
        }
        .local-actions-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(0,200,150,0.1));
            color: var(--accent-dark);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            width: fit-content;
        }
        .local-actions-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }
        .local-action-card {
            display: flex;
            flex-direction: column;
            min-height: 100%;
            padding: 24px 22px;
            border-radius: 22px;
            background: #fff;
            border: 1px solid var(--gray-200);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
        }
        .local-action-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: rgba(14,165,233,0.18);
        }
        .local-action-label {
            display: inline-block;
            margin-bottom: 12px;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--primary-dark);
        }
        .local-action-card h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
            line-height: 1.35;
        }
        .local-action-card p {
            font-size: 0.88rem;
            color: var(--gray-500);
            line-height: 1.65;
        }
        .local-action-arrow {
            margin-top: auto;
            padding-top: 16px;
            font-size: 0.86rem;
            font-weight: 700;
            color: var(--accent);
        }
        .local-actions-footer {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 16px 24px;
            align-items: center;
            margin-top: 24px;
            padding-top: 20px;
            border-top: 1px solid var(--gray-200);
        }
        .local-actions-footer p {
            max-width: 680px;
            font-size: 0.92rem;
            color: var(--gray-600);
            line-height: 1.65;
        }
        .local-actions-footer .btn-primary,
        .local-actions-footer .btn-secondary {
            padding: 12px 22px;
            font-size: 0.92rem;
        }
        @media (max-width: 768px) {
            .eid-home-shell {
                padding: 0 16px 28px;
            }
            .eid-home-banner {
                grid-template-columns: 1fr;
                justify-items: center;
                text-align: center;
                padding: 24px 20px;
            }
            .eid-home-actions {
                justify-content: center;
            }
            .local-actions-section {
                padding: 0 16px 28px;
            }
            .local-actions-panel {
                padding: 24px 20px;
            }
            .local-actions-header h2 {
                font-size: 1.6rem;
            }
            .local-actions-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            color: #fff;
            font-weight: 600;
            font-size: 1rem;
            padding: 14px 32px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(0,200,150,0.3);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,200,150,0.4);
        }
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--dark);
            font-weight: 600;
            font-size: 1rem;
            padding: 14px 32px;
            border-radius: 50px;
            border: 2px solid var(--gray-200);
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* Appointment section layout */
        .appointment-section {
            padding: 80px 24px;
            background: linear-gradient(180deg, #f0f7ff 0%, #e8f4fd 100%);
        }
        .appointment-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .appointment-text h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 16px;
        }
        .appointment-text p {
            font-size: 1.05rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        /* Appointment card */
        .appointment-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
        }
        .appointment-card::before {
            content: '';
            position: absolute;
            top: -1px; right: -1px;
            width: 80px; height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 0 var(--radius) 0 40px;
            opacity: 0.15;
        }
        .appointment-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 4px;
        }
        .appointment-card .subtitle {
            font-size: 0.85rem;
            color: var(--gray-600);
            margin-bottom: 24px;
        }
        .booking-mode-group {
            position: relative;
            z-index: 1;
        }
        .booking-mode-label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-500);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .booking-mode-tabs {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        .booking-mode-tab {
            padding: 14px 12px;
            border: 1.5px solid var(--gray-200);
            border-radius: 14px;
            background: #fff;
            text-align: left;
            font-family: inherit;
            cursor: pointer;
            transition: 0.2s;
        }
        .booking-mode-tab strong {
            display: block;
            font-size: 0.95rem;
            color: var(--dark);
            margin-bottom: 4px;
        }
        .booking-mode-tab span {
            display: block;
            font-size: 0.8rem;
            line-height: 1.45;
            color: var(--gray-500);
        }
        .booking-mode-tab:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-sm);
            transform: translateY(-1px);
        }
        .booking-mode-tab.active {
            border-color: rgba(14,165,233,0.22);
            background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(0,200,150,0.12));
            box-shadow: 0 10px 24px rgba(14,165,233,0.10);
        }
        .booking-mode-tab.active strong {
            color: var(--accent);
        }
        .booking-mode-note {
            margin-top: 12px;
            padding: 14px 16px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(239,246,255,0.96));
            border: 1px solid rgba(14,165,233,0.14);
            font-size: 0.88rem;
            color: var(--gray-600);
            line-height: 1.6;
        }
        .booking-mode-note strong {
            display: block;
            font-size: 0.92rem;
            color: var(--dark);
            margin-bottom: 4px;
        }
        .booking-mode-note.pickup {
            background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(240,253,250,0.98));
            border-color: rgba(0,200,150,0.18);
        }
        .form-group { margin-bottom: 16px; }
        .form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-500);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .form-group select,
        .form-group input {
            width: 100%;
            padding: 12px 16px;
            border: 1.5px solid var(--gray-200);
            border-radius: var(--radius-sm);
            font-size: 0.95rem;
            font-family: inherit;
            color: var(--dark);
            background: #fff;
            transition: border-color 0.2s;
            outline: none;
        }
        .form-group select:focus,
        .form-group input:focus { border-color: var(--accent); }
        .form-feedback {
            display: none;
            margin-top: 16px;
            padding: 12px 14px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 600;
            line-height: 1.5;
        }
        .form-feedback.error {
            display: block;
            background: #fff1f2;
            color: #be123c;
            border: 1px solid #fecdd3;
        }
        .form-feedback.info {
            display: block;
            background: #eff6ff;
            color: #1d4ed8;
            border: 1px solid #bfdbfe;
        }
        .btn-book {
            width: 100%;
            padding: 14px;
            border: none;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, var(--accent), var(--primary));
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 8px;
        }
        .btn-book:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(14,165,233,0.35);
        }

        /* Hero floating shapes (decorative) */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            z-index: 0;
            opacity: 0.5;
        }
        .hero-shape-1 {
            width: 300px; height: 300px;
            background: radial-gradient(circle, rgba(14,165,233,0.08), transparent 70%);
            top: -50px; right: 10%;
        }
        .hero-shape-2 {
            width: 200px; height: 200px;
            background: radial-gradient(circle, rgba(0,200,150,0.1), transparent 70%);
            bottom: 20px; left: 5%;
        }

        /* ===== SERVICES SECTION ===== */
        .section {
            padding: 80px 24px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .section-header p {
            font-size: 1.05rem;
            color: var(--gray-500);
            max-width: 560px;
            margin: 0 auto;
        }
        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(14,165,233,0.1), rgba(0,200,150,0.1));
            color: var(--accent);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 16px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .service-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px 28px;
            transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--gray-200);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .service-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            transform: scaleX(0);
            transition: transform 0.35s;
        }
        .service-card:hover::before { transform: scaleX(1); }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 20px;
        }
        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: inherit;
            display: block;
        }
        .service-icon.care { background: #fef3c7; }
        .service-icon.shop { background: #dbeafe; }
        .service-icon.used { background: #d1fae5; }
        .service-icon.build { background: #ede9fe; }
        .service-icon.iphone { background: #fce7f3; }
        .service-icon.sell { background: #fef9c3; }
        .service-icon.accessories { background: #e0e7ff; }
        .service-icon.web { background: #f0fdf4; }
        .service-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .service-card p {
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .service-link {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: 0.2s;
        }
        .service-link:hover { gap: 10px; color: var(--accent-dark); }
        .service-link svg {
            width: 16px;
            height: 16px;
            transition: 0.2s;
        }

        /* ===== FEATURED PRODUCTS ROW ===== */
        .featured-strip {
            background: linear-gradient(135deg, #f8fafc, #eef6ff);
            padding: 80px 24px;
        }
        .featured-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .featured-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .featured-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            display: flex;
            border: 1px solid var(--gray-200);
            transition: 0.3s;
        }
        .featured-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .featured-img {
            width: 200px;
            min-height: 200px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .featured-content {
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .featured-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 10px;
            border-radius: 4px;
            margin-bottom: 12px;
            width: fit-content;
        }
        .featured-tag.new { background: #dcfce7; color: #166534; }
        .featured-tag.used { background: #fef3c7; color: #92400e; }
        .featured-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .featured-content p {
            font-size: 0.9rem;
            color: var(--gray-500);
            margin-bottom: 18px;
            line-height: 1.6;
        }

        /* ===== WHY P Z M Computers & Mobile Phones - Sell New Used PC Build (Trust Badges) ===== */
        .trust-section {
            padding: 80px 24px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .trust-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
            gap: 24px;
            align-items: start;
        }
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
        }
        .trust-card {
            text-align: left;
            padding: 28px;
            border-radius: var(--radius);
            background: #fff;
            border: 1px solid var(--gray-200);
            transition: 0.3s;
        }
        .trust-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
        .trust-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--accent);
            background: rgba(14,165,233,0.08);
            border-radius: 999px;
            padding: 7px 12px;
            margin-bottom: 14px;
        }
        .trust-card h3 {
            font-size: 1.08rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }
        .trust-card p {
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.65;
        }
        .trust-visit-card {
            background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            padding: 32px;
        }
        .trust-panel-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(0,200,150,0.12), rgba(14,165,233,0.12));
            color: var(--primary-dark);
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 999px;
            margin-bottom: 16px;
        }
        .trust-visit-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 12px;
            line-height: 1.3;
        }
        .trust-visit-card p {
            font-size: 0.98rem;
            color: var(--gray-500);
            line-height: 1.7;
        }
        .trust-checklist {
            display: grid;
            gap: 12px;
            margin: 22px 0 24px;
        }
        .trust-checklist li {
            position: relative;
            padding-left: 22px;
            font-size: 0.92rem;
            color: var(--gray-600);
            line-height: 1.6;
        }
        .trust-checklist li::before {
            content: '';
            position: absolute;
            top: 9px;
            left: 0;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--primary));
        }
        .trust-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .trust-actions .btn-primary,
        .trust-actions .btn-secondary {
            padding: 12px 24px;
            font-size: 0.95rem;
        }
        .trust-sub-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 18px;
        }
        .trust-sub-links a {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--accent);
            transition: color 0.2s;
        }
        .trust-sub-links a:hover {
            color: var(--accent-dark);
        }

        /* ===== BLOG SECTION ===== */
        .blog-section {
            background: linear-gradient(180deg, #f8fafc, #f0f7ff);
            padding: 80px 24px;
        }
        .blog-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .blog-card {
            background: #fff;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: 0.3s;
        }
        .blog-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .blog-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .blog-card-body {
            padding: 24px;
        }
        .blog-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            background: rgba(14,165,233,0.08);
            padding: 4px 10px;
            border-radius: 4px;
            margin-bottom: 10px;
        }
        .blog-card-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .blog-card-body p {
            font-size: 0.85rem;
            color: var(--gray-500);
            line-height: 1.6;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .blog-date {
            font-size: 0.8rem;
            color: var(--gray-600);
        }

        /* ===== REVIEWS ===== */
        .reviews-section {
            padding: 80px 24px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .review-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 28px;
            border: 1px solid var(--gray-200);
            transition: 0.3s;
        }
        .review-card:hover { box-shadow: var(--shadow-md); }
        .review-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
        .review-card p {
            font-size: 0.9rem;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 18px;
            font-style: italic;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--primary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .review-author-info strong {
            display: block;
            font-size: 0.9rem;
            color: var(--dark);
        }
        .review-author-info span {
            font-size: 0.8rem;
            color: var(--gray-600);
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 80px 24px;
            max-width: var(--max-width);
            margin: 0 auto;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 40px;
        }
        .faq-item {
            background: #fff;
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-sm);
            overflow: hidden;
            transition: box-shadow 0.3s;
        }
        .faq-item:hover { box-shadow: var(--shadow-md); }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--dark);
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font-family: inherit;
            gap: 12px;
        }
        .faq-question:hover { color: var(--primary); }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--gray-100);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: var(--gray-500);
            transition: all 0.3s;
        }
        .faq-item.active .faq-icon {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            color: #fff;
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease, padding 0.35s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 200px;
        }
        .faq-answer p {
            padding: 0 24px 20px;
            font-size: 0.9rem;
            color: var(--gray-600);
            line-height: 1.7;
        }

        /* ===== AREAS SERVED ===== */
        .areas-section {
            background: var(--dark);
            color: #fff;
            padding: 60px 24px;
        }
        .areas-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            text-align: center;
        }
        .areas-inner h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .areas-inner > p {
            color: var(--gray-600);
            margin-bottom: 28px;
        }
        .areas-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }
        .area-tag {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray-300);
            transition: 0.3s;
        }
        .area-tag:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        /* ===== TIME SLOT PICKER ===== */
        .date-time-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .time-slots-wrapper {
            margin-top: 4px;
        }
        .time-slots-label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-500);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .time-period-tabs {
            display: flex;
            gap: 6px;
            margin-bottom: 10px;
        }
        .time-period-tab {
            flex: 1;
            padding: 6px 0;
            border: 1.5px solid var(--gray-200);
            border-radius: 8px;
            background: #fff;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--gray-500);
            cursor: pointer;
            text-align: center;
            transition: 0.2s;
            font-family: inherit;
        }
        .time-period-tab:hover { border-color: var(--accent); color: var(--accent); }
        .time-period-tab.active {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }
        .time-period-tab.disabled {
            border-color: var(--gray-200);
            background: var(--gray-100);
            color: var(--gray-400);
            cursor: not-allowed;
        }
        .time-period-tab.disabled:hover {
            border-color: var(--gray-200);
            color: var(--gray-400);
        }
        .time-slots-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 6px;
        }
        .time-slot {
            padding: 8px 4px;
            border: 1.5px solid var(--gray-200);
            border-radius: 8px;
            background: #fff;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--gray-600);
            cursor: pointer;
            text-align: center;
            transition: 0.2s;
            font-family: inherit;
        }
        .time-slot:hover { border-color: var(--accent); color: var(--accent); }
        .time-slot.selected {
            background: linear-gradient(135deg, var(--accent), var(--primary));
            color: #fff;
            border-color: transparent;
        }
        .time-slots-empty {
            grid-column: 1 / -1;
            padding: 14px 12px;
            border: 1px dashed var(--gray-200);
            border-radius: 12px;
            background: var(--gray-100);
            color: var(--gray-500);
            font-size: 0.85rem;
            text-align: center;
        }
        .booking-rule-hint {
            margin-top: 12px;
            font-size: 0.82rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-text h1 { font-size: 2.6rem; }
            .appointment-inner { grid-template-columns: 1fr; gap: 40px; }
            .appointment-text { text-align: center; }
            .appointment-card { max-width: 480px; margin: 0 auto; }
            .featured-grid { grid-template-columns: 1fr; }
            .blog-grid { grid-template-columns: 1fr 1fr; }
            .trust-layout { grid-template-columns: 1fr; }
            .trust-grid { grid-template-columns: repeat(2, 1fr); }
            .faq-grid { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-actions { display: none; }
            .hamburger { display: flex; }
            .navbar-inner { height: 60px; }

            .logo { font-size: 1.1rem; letter-spacing: 0; }
            .logo-store { font-size: 0.55rem; }
            .logo-tagline { font-size: 0.4rem; letter-spacing: 1px; }

            /* Mobile menu */
            .nav-links.open {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                height: calc(100vh - 60px);
                height: calc(100dvh - 60px);
                background: #fff;
                padding: 40px 24px 100px;
                gap: 24px;
                z-index: 999;
                animation: slideDown 0.3s ease;
                overflow-y: auto;
            }
            .nav-links.open > a {
                padding: 14px 16px;
                font-size: 1.05rem;
                border-radius: 8px;
                text-align: left;
                width: 100%;
            }
            .nav-links.open > a:hover { background: var(--gray-100); }
            .nav-links.open .nav-dropdown { width: 100%; }
            .nav-links.open .nav-dropdown-trigger {
                padding: 14px 16px;
                font-size: 1.05rem;
                width: 100%;
                display: flex;
                align-items: center;
                gap: 6px;
                border-radius: 8px;
            }
            .nav-links.open .nav-dropdown-trigger:hover { background: var(--gray-100); }
            .nav-links.open .nav-dropdown-content {
                position: static;
                transform: none;
                box-shadow: none;
                border: none;
                background: var(--gray-100);
                border-radius: 8px;
                margin-top: 4px;
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease, opacity 0.3s ease;
            }
            .nav-links.open .nav-dropdown.active .nav-dropdown-content {
                opacity: 1;
                visibility: visible;
                max-height: 500px;
            }
            .nav-links.open .nav-dropdown-content a {
                padding: 12px 24px;
                border-bottom-color: var(--gray-200);
            }
            .nav-actions.open {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                padding: 20px 24px;
                background: #fff;
                border-top: 1px solid var(--gray-200);
                z-index: 1001;
                justify-content: center;
            }

            .hero { padding: 40px 24px; min-height: auto; }
            .hero-text h1 {
                font-size: 2rem;
                max-width: 340px;
                margin: 0 auto 20px;
            }
            .hero-text h1 span {
                font-size: 1.65rem;
                line-height: 1.2;
                max-width: 100%;
                margin: 8px auto 0;
            }
            .hero-text p { font-size: 0.95rem; }
            .hero-proof-item { flex-basis: calc(50% - 12px); }
            .hero-btns { flex-direction: column; }
            .btn-primary, .btn-secondary { justify-content: center; }
            .appointment-card { max-width: 100%; }

            .section, .trust-section, .reviews-section { padding: 50px 20px; }
            .section-header h2 { font-size: 1.7rem; }

            .services-grid { grid-template-columns: 1fr 1fr; }
            .blog-grid { grid-template-columns: 1fr; }
            .reviews-grid { grid-template-columns: 1fr; }
            .trust-grid { grid-template-columns: 1fr 1fr; }
            .trust-actions { flex-direction: column; }
            .faq-grid { grid-template-columns: 1fr; }
            .featured-card { flex-direction: column; }
            .featured-img { width: 100%; min-height: 180px; max-height: 220px; }
            .local-actions-footer { flex-direction: column; align-items: stretch; }

        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.7rem;
                max-width: 300px;
            }
            .hero-text h1 span {
                font-size: 1.45rem;
                max-width: 100%;
            }
            .hero-proof-list {
                max-width: 330px;
                margin: 0 auto 28px;
            }
            .hero-proof-item {
                flex: 1 1 100%;
                width: 100%;
            }
            .services-grid { grid-template-columns: 1fr; }
            .hero-proof-item { flex-basis: 100%; }
            .hero-link-row { gap: 12px; }
            .trust-grid { grid-template-columns: 1fr; }
            .local-actions-grid { grid-template-columns: 1fr; }
            .areas-tags { gap: 8px; }
            .area-tag { font-size: 0.8rem; padding: 8px 16px; }
            .booking-mode-tabs { grid-template-columns: 1fr; }
            .date-time-row { grid-template-columns: 1fr; }
            .time-slots-grid { grid-template-columns: repeat(3, 1fr); }
        }

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

        /* ===== SCROLL ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
