        /* ========== CSS Variables ========== */
        :root {
            --bg-deepest: #060f1e;
            --bg-deep: #0a1929;
            --bg-mid: #0f2540;
            --bg-card: #112a47;
            --brand-navy: #1A4F8B;
            --brand-navy-deep: #0d3563;
            --brand-cyan: #2DD0FF;
            --brand-cyan-bright: #56E0FF;
            --brand-cyan-soft: rgba(45, 208, 255, 0.15);
            --text-bright: #FFFFFF;
            --text-primary: #E8F1F7;
            --text-secondary: #A8C0D6;
            --text-muted: #6B8AA8;
            --whatsapp: #25D366;
            --whatsapp-dark: #128C7E;
            --border-subtle: rgba(45, 208, 255, 0.18);
            --shadow-glow: 0 0 60px rgba(45, 208, 255, 0.25);
            --shadow-deep: 0 25px 60px -15px rgba(0, 0, 0, 0.7);
            --gold: #E8B85C;
            --gold-bright: #F7D488;
            --gold-soft: rgba(232, 184, 92, 0.15);
            --gold-border: rgba(232, 184, 92, 0.4);
            --shadow-glow-gold: 0 0 70px rgba(232, 184, 92, 0.22);
            --gradient-hero: radial-gradient(ellipse at 70% 30%, rgba(45, 208, 255, 0.15) 0%, transparent 60%),
                             radial-gradient(ellipse at 20% 80%, rgba(26, 79, 139, 0.25) 0%, transparent 60%),
                             linear-gradient(135deg, var(--bg-deepest) 0%, var(--bg-deep) 50%, var(--bg-mid) 100%);
            --font-display: 'Cairo', 'Tajawal', sans-serif;
            --font-body: 'Tajawal', 'Cairo', sans-serif;
        }

        /* ========== Reset ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-deep);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: var(--brand-cyan);
            text-decoration: none;
        }

        /* ========== Background Pattern ========== */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background:
                radial-gradient(circle at 15% 20%, rgba(45, 208, 255, 0.08) 0%, transparent 35%),
                radial-gradient(circle at 85% 80%, rgba(26, 79, 139, 0.12) 0%, transparent 40%);
            pointer-events: none;
            z-index: 0;
        }

        /* ========== Container ========== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 2;
        }

        /* ========== Header ========== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(6, 15, 30, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 0;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-logo {
            width: 52px;
            height: 52px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            padding: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .brand-name {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 1.25rem;
            color: var(--text-bright);
            letter-spacing: -0.02em;
        }

        .brand-tagline {
            font-size: 0.78rem;
            color: var(--brand-cyan);
            font-weight: 500;
        }

        .site-nav {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .site-nav a {
            font-family: var(--font-display);
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-secondary);
            transition: color 0.2s ease;
            white-space: nowrap;
        }

        .site-nav a:hover,
        .site-nav a.active {
            color: var(--brand-cyan);
        }

        @media (max-width: 968px) {
            .site-nav {
                display: none;
            }
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--whatsapp);
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
        }

        .header-cta svg {
            width: 18px;
            height: 18px;
        }

        /* ========== Hero ========== */
        .hero {
            position: relative;
            min-height: calc(100vh - 80px);
            padding: 80px 0 100px;
            background: var(--gradient-hero);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(45, 208, 255, 0.15) 0%, transparent 50%);
            filter: blur(80px);
            pointer-events: none;
        }

        /* Water bubbles decoration */
        .bubble {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(45, 208, 255, 0.05));
            border: 1px solid rgba(45, 208, 255, 0.2);
            pointer-events: none;
            animation: float 8s ease-in-out infinite;
        }

        .bubble:nth-child(1) { width: 80px; height: 80px; top: 10%; left: 5%; animation-delay: 0s; }
        .bubble:nth-child(2) { width: 50px; height: 50px; top: 70%; left: 12%; animation-delay: 2s; }
        .bubble:nth-child(3) { width: 30px; height: 30px; top: 30%; right: 8%; animation-delay: 4s; }
        .bubble:nth-child(4) { width: 60px; height: 60px; bottom: 15%; right: 15%; animation-delay: 1s; }
        .bubble:nth-child(5) { width: 25px; height: 25px; top: 50%; left: 45%; animation-delay: 3s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
            50% { transform: translateY(-30px) translateX(15px); opacity: 1; }
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            position: relative;
            z-index: 3;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--brand-cyan-soft);
            border: 1px solid var(--border-subtle);
            color: var(--brand-cyan);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: var(--brand-cyan);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(45, 208, 255, 0.7); }
            50% { box-shadow: 0 0 0 8px rgba(45, 208, 255, 0); }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            font-weight: 900;
            line-height: 1.15;
            color: var(--text-bright);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-cyan-bright) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .hero-subtitle {
            font-size: clamp(1.05rem, 2vw, 1.25rem);
            color: var(--text-secondary);
            margin-bottom: 36px;
            max-width: 540px;
            line-height: 1.8;
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--whatsapp);
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
            transform: translateX(100%);
            transition: transform 0.6s;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(37, 211, 102, 0.45);
        }

        .btn-primary:hover::after {
            transform: translateX(-100%);
        }

        .btn-primary svg {
            width: 22px;
            height: 22px;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--text-bright);
            padding: 16px 32px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.05rem;
            border: 2px solid var(--border-subtle);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--brand-cyan-soft);
            border-color: var(--brand-cyan);
            transform: translateY(-3px);
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            padding-top: 32px;
            border-top: 1px solid var(--border-subtle);
        }

        .stat {
            display: flex;
            flex-direction: column;
        }

        .stat-value {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--brand-cyan);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }

        /* Hero Logo Showcase */
        .hero-visual {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 14px;
        }

        /* ========== Before / After Category Tabs ========== */
        .ba-tabs {
            display: flex;
            gap: 8px;
            margin-bottom: 4px;
        }

        .ba-tab {
            padding: 9px 20px;
            border-radius: 50px;
            border: 1px solid var(--border-subtle);
            background: rgba(255, 255, 255, 0.03);
            color: var(--text-secondary);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .ba-tab:hover {
            border-color: var(--brand-cyan);
            color: var(--text-bright);
        }

        .ba-tab.active {
            background: var(--brand-cyan);
            border-color: var(--brand-cyan);
            color: var(--bg-deepest);
        }

        /* ========== Before / After Comparison Slider ========== */
        .before-after {
            position: relative;
            width: 100%;
            max-width: 480px;
            aspect-ratio: 4 / 3;
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-deep), 0 0 60px rgba(45, 208, 255, 0.15);
            user-select: none;
            -webkit-user-select: none;
            touch-action: none;
        }

        .ba-panel {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            isolation: isolate;
        }

        .ba-panel img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .ba-before {
            background: linear-gradient(135deg, #4a4030 0%, #2a2419 100%);
        }

        .ba-after {
            background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-deep) 100%);
            clip-path: inset(0 50% 0 0);
        }

        .before-after.ba-demo .ba-after {
            transition: clip-path 0.9s ease;
        }

        .before-after.ba-demo .ba-handle {
            transition: left 0.9s ease;
        }

        .ba-placeholder {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 20px;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
        }

        .ba-placeholder-icon {
            font-size: 2.2rem;
            opacity: 0.65;
        }

        .ba-placeholder-label {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.95rem;
        }

        .ba-placeholder-hint {
            font-size: 0.72rem;
            opacity: 0.6;
            direction: ltr;
            font-family: monospace;
        }

        .ba-tag {
            position: absolute;
            top: 14px;
            z-index: 3;
            background: rgba(6, 15, 30, 0.65);
            backdrop-filter: blur(6px);
            color: #fff;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.78rem;
            padding: 5px 16px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .ba-tag-before {
            right: 14px;
        }

        .ba-tag-after {
            left: 14px;
            background: rgba(45, 208, 255, 0.25);
            border-color: var(--brand-cyan);
        }

        .ba-handle {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 44px;
            margin-left: -22px;
            z-index: 4;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            cursor: ew-resize;
        }

        .ba-handle-line {
            flex: 1;
            width: 2px;
            background: rgba(255, 255, 255, 0.9);
        }

        .ba-handle-grip {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--brand-cyan);
            color: var(--bg-deepest);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
            flex-shrink: 0;
            margin: 6px 0;
        }

        .ba-handle-grip svg {
            width: 20px;
            height: 20px;
        }

        .ba-hint {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .ba-hint svg {
            width: 16px;
            height: 16px;
            color: var(--brand-cyan);
        }

        /* ========== Section Base ========== */
        section {
            position: relative;
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 60px;
        }

        .section-eyebrow {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--brand-cyan);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 900;
            color: var(--text-bright);
            line-height: 1.2;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ========== Features Section ========== */
        .features {
            background: var(--bg-deep);
        }

        /* ========== Intro / About SEO Content Section ========== */
        .intro {
            background: var(--bg-deep);
            padding: 90px 0 40px;
        }

        .intro-content {
            max-width: 920px;
            margin: 0 auto;
            text-align: center;
        }

        .intro-content h2 {
            font-family: var(--font-display);
            font-size: clamp(1.7rem, 3.5vw, 2.5rem);
            font-weight: 900;
            color: var(--text-bright);
            line-height: 1.3;
            margin-bottom: 24px;
            letter-spacing: -0.01em;
        }

        .intro-content h2 .accent {
            color: var(--brand-cyan);
        }

        .intro-content p {
            color: var(--text-secondary);
            font-size: 1.08rem;
            line-height: 2;
            margin-bottom: 20px;
        }

        .intro-content strong {
            color: var(--text-primary);
            font-weight: 700;
        }

        .intro-highlights {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 14px;
            margin-top: 36px;
        }

        .intro-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--brand-cyan-soft);
            border: 1px solid var(--border-subtle);
            color: var(--text-primary);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
        }

        .intro-tag svg {
            width: 16px;
            height: 16px;
            color: var(--brand-cyan);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .feature-card {
            background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-mid) 100%);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, var(--brand-cyan) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            border-color: var(--brand-cyan);
            box-shadow: 0 20px 40px -10px rgba(45, 208, 255, 0.2);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: var(--brand-cyan-soft);
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--brand-cyan);
        }

        .feature-icon svg {
            width: 30px;
            height: 30px;
        }

        .feature-title {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-bright);
            margin-bottom: 12px;
        }

        .feature-desc {
            color: var(--text-secondary);
            font-size: 0.98rem;
            line-height: 1.7;
        }

        /* ========== Services Section ========== */
        .services {
            background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-deepest) 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .service-card-wide {
            grid-column: 1 / -1;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 24px;
            padding: 28px 24px;
            position: relative;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .service-card.featured {
            background: linear-gradient(145deg, var(--brand-navy-deep) 0%, var(--brand-navy) 100%);
            border-color: var(--brand-cyan);
            box-shadow: var(--shadow-glow);
        }

        .service-card.featured::before {
            content: 'الأكثر طلباً';
            position: absolute;
            top: -14px;
            right: 24px;
            background: var(--brand-cyan);
            color: var(--bg-deepest);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.8rem;
            padding: 6px 16px;
            border-radius: 50px;
        }

        .service-card:hover:not(.featured) {
            transform: translateY(-4px);
            border-color: var(--brand-cyan);
        }

        .service-category {
            display: inline-block;
            font-family: var(--font-display);
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--brand-cyan);
            background: var(--brand-cyan-soft);
            border: 1px solid var(--border-subtle);
            padding: 4px 12px;
            border-radius: 50px;
            margin-bottom: 14px;
            letter-spacing: 0.05em;
            align-self: flex-start;
        }

        .service-header {
            display: flex;
            flex-direction: row-reverse;
            align-items: flex-start;
            justify-content: space-between;
            gap: 14px;
            margin-bottom: 18px;
            padding-bottom: 16px;
            border-bottom: 1px dashed var(--border-subtle);
        }

        .service-title-block {
            flex: 1;
            min-width: 0;
        }

        .service-name {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--text-bright);
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .service-tagline {
            color: var(--text-secondary);
            font-size: 0.88rem;
            font-weight: 500;
        }

        .service-price {
            display: flex;
            align-items: baseline;
            gap: 4px;
            flex-shrink: 0;
        }

        .service-price-amount {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 900;
            line-height: 1;
            background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-cyan-bright) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .service-price-currency {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-secondary);
        }

        .service-list {
            list-style: none;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .service-list li {
            padding: 5px 0;
            color: var(--text-primary);
            font-size: 0.93rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-list li::before {
            content: '';
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232DD0FF'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        /* ========== Steam Wash Add-on Toggle ========== */
        .steam-addon {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(45, 208, 255, 0.06);
            border: 1px dashed var(--border-subtle);
            border-radius: 14px;
            padding: 12px 14px;
            cursor: pointer;
            margin-bottom: 16px;
            transition: all 0.3s ease;
            position: relative;
            user-select: none;
        }

        .steam-addon:hover {
            background: var(--brand-cyan-soft);
            border-color: var(--brand-cyan);
        }

        .steam-toggle-input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
            width: 0;
            height: 0;
        }

        .steam-toggle-visual {
            width: 24px;
            height: 24px;
            border: 2px solid var(--text-muted);
            border-radius: 7px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.25s ease;
            background: rgba(0, 0, 0, 0.2);
        }

        .steam-toggle-input:checked ~ .steam-toggle-visual {
            background: var(--brand-cyan);
            border-color: var(--brand-cyan);
            box-shadow: 0 0 0 4px rgba(45, 208, 255, 0.15);
        }

        .steam-check {
            width: 13px;
            height: 7px;
            border: 2px solid var(--bg-deepest);
            border-top: none;
            border-right: none;
            transform: rotate(-45deg) scale(0);
            transition: transform 0.2s ease;
            margin-top: -3px;
        }

        .steam-toggle-input:checked ~ .steam-toggle-visual .steam-check {
            transform: rotate(-45deg) scale(1);
        }

        .steam-info {
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
        }

        .steam-title {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--text-bright);
            line-height: 1.3;
        }

        .steam-icon {
            font-size: 1.15rem;
        }

        .steam-price {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: 0.88rem;
            color: var(--brand-cyan);
            white-space: nowrap;
            background: rgba(45, 208, 255, 0.1);
            padding: 3px 9px;
            border-radius: 50px;
        }

        .service-card.has-addon .steam-addon {
            background: var(--brand-cyan-soft);
            border-style: solid;
            border-color: var(--brand-cyan);
        }

        .service-card.has-addon .service-price-amount {
            animation: priceUpdate 0.4s ease;
        }

        @keyframes priceUpdate {
            0% { transform: scale(1); }
            50% { transform: scale(1.15); }
            100% { transform: scale(1); }
        }

        /* ========== Car Size Selector ========== */
        .size-select {
            display: flex;
            gap: 8px;
            margin-bottom: 18px;
        }

        .size-option {
            flex: 1;
            cursor: pointer;
        }

        .size-toggle-input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
            width: 0;
            height: 0;
        }

        .size-option-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 11px 8px;
            border: 2px solid var(--border-subtle);
            border-radius: 12px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--text-secondary);
            transition: all 0.25s ease;
            text-align: center;
        }

        .size-option:hover .size-option-visual {
            border-color: var(--brand-cyan);
        }

        .size-toggle-input:checked ~ .size-option-visual {
            background: var(--brand-cyan);
            border-color: var(--brand-cyan);
            color: var(--bg-deepest);
            box-shadow: 0 0 0 4px rgba(45, 208, 255, 0.15);
        }

        .service-sublist-title {
            display: block;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.82rem;
            color: var(--brand-cyan);
            margin: 4px 0 8px;
            letter-spacing: 0.02em;
        }

        /* ========== Wide VIP Card Layout ========== */
        .vip-card-top {
            max-width: 560px;
            margin-top: 32px;
        }

        .vip-feature-groups {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin: 8px 0 28px;
            padding-top: 24px;
            border-top: 1px solid var(--border-subtle);
        }

        .vip-feature-group .service-list {
            margin-bottom: 0;
            flex-grow: 0;
        }

        .vip-cta {
            max-width: 360px;
            margin: 0 auto;
        }

        /* ========== VIP Section Divider ========== */
        .vip-divider {
            display: flex;
            align-items: center;
            gap: 18px;
            margin: 4px 0 8px;
        }

        .vip-divider-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-border) 50%, transparent);
        }

        .vip-divider-label {
            flex-shrink: 0;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.92rem;
            color: var(--gold-bright);
            white-space: nowrap;
        }

        /* ========== VIP Premium Card ========== */
        .vip-card {
            background:
                radial-gradient(ellipse 700px 260px at 85% -10%, rgba(232, 184, 92, 0.18) 0%, transparent 60%),
                linear-gradient(150deg, var(--brand-navy-deep) 0%, var(--bg-deepest) 100%);
            border: 1px solid var(--gold-border);
            box-shadow: var(--shadow-glow-gold);
        }

        .vip-card::before {
            content: 'نخبة العناية';
            position: absolute;
            top: -14px;
            right: 24px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
            color: var(--bg-deepest);
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.8rem;
            padding: 6px 16px;
            border-radius: 50px;
            z-index: 2;
        }

        .vip-card::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            overflow: hidden;
            background: linear-gradient(115deg, transparent 40%, rgba(232, 184, 92, 0.12) 50%, transparent 60%);
            background-size: 250% 250%;
            background-position: 100% 0;
            animation: vipShimmer 6s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes vipShimmer {
            0%, 100% { background-position: 130% 0; }
            50% { background-position: -30% 100%; }
        }

        .vip-card:hover {
            transform: translateY(-4px);
            border-color: var(--gold);
        }

        .vip-crown {
            position: absolute;
            top: 22px;
            left: 28px;
            font-size: 1.5rem;
            filter: drop-shadow(0 0 10px rgba(232, 184, 92, 0.5));
            z-index: 2;
        }

        .vip-card .service-category {
            color: var(--gold-bright);
            background: var(--gold-soft);
            border-color: var(--gold-border);
        }

        .vip-card .service-price-amount {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .vip-card .service-header {
            border-bottom-color: var(--gold-border);
        }

        .vip-card .service-sublist-title {
            color: var(--gold-bright);
        }

        .vip-card .vip-feature-groups {
            border-top-color: var(--gold-border);
        }

        .vip-card .service-list li::before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E8B85C'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
        }

        .vip-card .size-option:hover .size-option-visual {
            border-color: var(--gold);
        }

        .vip-card .size-toggle-input:checked ~ .size-option-visual {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
            border-color: var(--gold);
            color: var(--bg-deepest);
            box-shadow: 0 0 0 4px var(--gold-soft);
        }

        .vip-card .service-cta {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
            color: var(--bg-deepest);
            border-color: var(--gold);
            font-size: 1.05rem;
        }

        .vip-card .service-cta:hover {
            box-shadow: 0 10px 30px rgba(232, 184, 92, 0.35);
            transform: translateY(-2px);
        }

        @media (max-width: 640px) {
            .vip-divider {
                gap: 10px;
            }

            .vip-divider-label {
                font-size: 0.8rem;
                white-space: normal;
                text-align: center;
            }

            .vip-crown {
                top: 18px;
                left: 20px;
                font-size: 1.25rem;
            }

            .vip-card-top {
                margin-top: 26px;
            }
        }

        .service-cta {
            display: block;
            text-align: center;
            background: transparent;
            color: var(--brand-cyan);
            border: 2px solid var(--brand-cyan);
            padding: 14px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .service-card.featured .service-cta {
            background: var(--brand-cyan);
            color: var(--bg-deepest);
        }

        .service-cta:hover {
            background: var(--brand-cyan);
            color: var(--bg-deepest);
        }

        /* ========== How It Works ========== */
        .process {
            background: var(--bg-deepest);
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 32px;
            position: relative;
        }

        .process-step {
            text-align: center;
            position: relative;
            padding: 32px 20px;
        }

        .step-number {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--brand-navy) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 900;
            color: white;
            box-shadow: 0 10px 30px rgba(45, 208, 255, 0.3);
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            inset: -8px;
            border: 1px dashed rgba(45, 208, 255, 0.4);
            border-radius: 50%;
        }

        .step-title {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-bright);
            margin-bottom: 12px;
        }

        .step-desc {
            color: var(--text-secondary);
            font-size: 0.98rem;
        }

        /* ========== Coverage Area ========== */
        .coverage {
            background: linear-gradient(180deg, var(--bg-deepest) 0%, var(--bg-deep) 100%);
        }

        .coverage-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .coverage-content h2 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 900;
            color: var(--text-bright);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .coverage-content p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            margin-bottom: 28px;
            line-height: 1.8;
        }

        .neighborhoods {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 32px;
        }

        .neighborhood {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 12px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-primary);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .neighborhood:hover {
            border-color: var(--brand-cyan);
            background: var(--brand-cyan-soft);
        }

        .neighborhood svg {
            width: 16px;
            height: 16px;
            color: var(--brand-cyan);
            flex-shrink: 0;
        }

        .coverage-visual {
            position: relative;
            aspect-ratio: 1;
            background: radial-gradient(circle, var(--brand-cyan-soft) 0%, transparent 70%);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .map-illustration {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .map-pin {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--brand-cyan);
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 20px rgba(45, 208, 255, 0.6);
        }

        .map-pin::before {
            content: '';
            position: absolute;
            inset: -8px;
            border: 1px solid var(--brand-cyan);
            border-radius: 50%;
            animation: ping 2s ease-out infinite;
        }

        .map-pin:nth-child(1) { top: 30%; left: 40%; animation-delay: 0s; }
        .map-pin:nth-child(2) { top: 60%; left: 25%; animation-delay: 0.5s; }
        .map-pin:nth-child(3) { top: 20%; left: 65%; animation-delay: 1s; }
        .map-pin:nth-child(4) { top: 70%; left: 60%; animation-delay: 1.5s; }
        .map-pin:nth-child(5) { top: 45%; left: 75%; animation-delay: 2s; }

        @keyframes ping {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(3); opacity: 0; }
        }

        .map-center-pin {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            border-radius: 50%;
            padding: 12px;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 40px rgba(45, 208, 255, 0.5);
            z-index: 2;
        }

        .map-center-pin img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* ========== Trust / Why Us ========== */
        .why-us {
            background: var(--bg-deep);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }

        .why-item {
            text-align: right;
            padding: 24px;
            border-right: 3px solid var(--brand-cyan);
            background: linear-gradient(270deg, transparent 0%, var(--brand-cyan-soft) 100%);
            border-radius: 12px;
        }

        .why-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: var(--brand-cyan-soft);
            border-radius: 12px;
            margin-bottom: 16px;
            color: var(--brand-cyan);
        }

        .why-icon svg {
            width: 24px;
            height: 24px;
        }

        .why-title {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-bright);
            margin-bottom: 8px;
        }

        .why-desc {
            color: var(--text-secondary);
            font-size: 0.92rem;
        }

        /* ========== FAQ ========== */
        .faq {
            background: var(--bg-deepest);
        }

        .faq-list {
            max-width: 820px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item[open] {
            border-color: var(--brand-cyan);
            box-shadow: 0 10px 30px -10px rgba(45, 208, 255, 0.2);
        }

        .faq-question {
            padding: 22px 28px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.08rem;
            color: var(--text-bright);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            list-style: none;
            user-select: none;
            transition: background 0.2s;
        }

        .faq-question::-webkit-details-marker {
            display: none;
        }

        .faq-question:hover {
            background: rgba(45, 208, 255, 0.05);
        }

        .faq-toggle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--brand-cyan-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-cyan);
            transition: transform 0.3s;
            flex-shrink: 0;
        }

        .faq-item[open] .faq-toggle {
            transform: rotate(45deg);
            background: var(--brand-cyan);
            color: var(--bg-deepest);
        }

        .faq-toggle svg {
            width: 18px;
            height: 18px;
        }

        .faq-answer {
            padding: 0 28px 24px;
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
        }

        /* ========== Final CTA ========== */
        .final-cta {
            background: linear-gradient(135deg, var(--brand-navy-deep) 0%, var(--bg-deepest) 100%);
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--brand-cyan-soft) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }

        .cta-inner h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            font-weight: 900;
            color: var(--text-bright);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-inner p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        /* ========== Floating WhatsApp Button ========== */
        .float-wa {
            position: fixed;
            bottom: 24px;
            left: 24px;
            z-index: 99;
            display: flex;
            align-items: center;
            gap: 12px;
            background: var(--whatsapp);
            color: white;
            padding: 14px 22px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            animation: bounce-in 1s ease 1s both;
        }

        .float-wa::before {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50px;
            border: 2px solid var(--whatsapp);
            animation: pulse-ring 2s ease-out infinite;
            opacity: 0;
        }

        @keyframes pulse-ring {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(1.3); opacity: 0; }
        }

        @keyframes bounce-in {
            0% { transform: scale(0); opacity: 0; }
            60% { transform: scale(1.1); }
            100% { transform: scale(1); opacity: 1; }
        }

        .float-wa:hover {
            transform: translateY(-3px) scale(1.05);
        }

        .float-wa svg {
            width: 24px;
            height: 24px;
        }

        /* ========== Ministry of Commerce Badge (in Footer) ========== */
        .footer-moc {
            margin-top: 28px;
            padding-top: 24px;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-moc-logo {
            display: block;
            margin-bottom: 16px;
            max-width: 200px;
            transition: opacity 0.3s ease;
        }

        .footer-moc-logo img {
            width: 100%;
            height: auto;
            display: block;
        }

        .footer-moc-logo:hover {
            opacity: 0.85;
        }

        .footer-moc-info {
            display: block;
            line-height: 1.4;
        }

        .footer-moc-label {
            display: block;
            color: var(--text-muted);
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0;
        }

        .footer-moc-value {
            display: block;
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--text-bright);
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            margin: 0;
            direction: ltr;
            unicode-bidi: embed;
        }

        /* ========== Footer ========== */
        footer {
            background: var(--bg-deepest);
            padding: 60px 0 24px;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 40px;
        }

        .footer-brand .brand {
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.8;
            max-width: 360px;
        }

        .footer-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-bright);
            margin-bottom: 20px;
        }

        .footer-list {
            list-style: none;
        }

        .footer-list li {
            margin-bottom: 12px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-list a {
            color: var(--text-secondary);
            transition: color 0.2s;
        }

        .footer-list a:hover {
            color: var(--brand-cyan);
        }

        .footer-list svg {
            width: 16px;
            height: 16px;
            color: var(--brand-cyan);
            flex-shrink: 0;
        }

        .footer-bottom {
            padding-top: 24px;
            border-top: 1px solid var(--border-subtle);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.88rem;
        }

        /* ========== Breadcrumb Navigation ========== */
        .breadcrumb-nav {
            padding: 18px 0;
            border-bottom: 1px solid var(--border-subtle);
        }

        .breadcrumb-nav ol {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
        }

        .breadcrumb-nav li {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
        }

        .breadcrumb-nav li:not(:last-child)::after {
            content: '/';
            color: var(--text-muted);
            opacity: 0.5;
        }

        .breadcrumb-nav a {
            color: var(--text-secondary);
            transition: color 0.2s ease;
        }

        .breadcrumb-nav a:hover {
            color: var(--brand-cyan);
        }

        .breadcrumb-nav li[aria-current="page"] {
            color: var(--brand-cyan);
            font-weight: 600;
        }

        /* ========== Sub-page Header Banner ========== */
        .page-header {
            position: relative;
            padding: 60px 0;
            background: var(--gradient-hero);
            overflow: hidden;
            text-align: center;
        }

        .page-header .container {
            max-width: 760px;
        }

        .page-header h1 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 14px;
            color: var(--text-bright);
        }

        .page-header p {
            color: var(--text-secondary);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        /* ========== Generic Content Section ========== */
        .content-section {
            padding: 70px 0;
        }

        .content-section.alt {
            background: var(--bg-card);
        }

        .content-narrow {
            max-width: 820px;
            margin: 0 auto;
        }

        .content-narrow h2 {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-bright);
            margin: 36px 0 16px;
        }

        .content-narrow h2:first-child {
            margin-top: 0;
        }

        .content-narrow h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--brand-cyan);
            margin: 24px 0 10px;
        }

        .content-narrow p {
            color: var(--text-secondary);
            line-height: 1.9;
            margin-bottom: 16px;
            font-size: 0.98rem;
        }

        .content-narrow ul {
            margin: 0 0 20px;
            padding-inline-start: 4px;
            list-style: none;
        }

        .content-narrow ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: var(--text-primary);
            line-height: 1.7;
            padding: 6px 0;
        }

        .content-narrow ul li::before {
            content: '';
            width: 18px;
            height: 18px;
            margin-top: 3px;
            flex-shrink: 0;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232DD0FF'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
        }

        .content-narrow ol {
            margin: 0 0 20px;
            padding-inline-start: 24px;
            color: var(--text-primary);
        }

        .content-narrow ol li {
            padding: 6px 0;
            line-height: 1.7;
        }

        .content-narrow strong {
            color: var(--text-bright);
        }

        /* ========== Comparison / Pricing Table ========== */
        .compare-table-wrap {
            overflow-x: auto;
            margin-bottom: 24px;
            border-radius: 16px;
            border: 1px solid var(--border-subtle);
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 560px;
        }

        .compare-table th,
        .compare-table td {
            padding: 14px 18px;
            text-align: right;
            font-size: 0.92rem;
            border-bottom: 1px solid var(--border-subtle);
        }

        .compare-table th {
            background: var(--bg-card);
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--brand-cyan);
            white-space: nowrap;
        }

        .compare-table td {
            color: var(--text-secondary);
        }

        .compare-table tr:last-child td {
            border-bottom: none;
        }

        .compare-table td.price-cell {
            font-family: var(--font-display);
            font-weight: 800;
            color: var(--text-bright);
            white-space: nowrap;
        }

        /* ========== Inline CTA Banner ========== */
        .inline-cta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 28px 32px;
            margin: 32px 0;
        }

        .inline-cta-text h3 {
            margin: 0 0 6px;
            color: var(--text-bright);
            font-family: var(--font-display);
            font-size: 1.1rem;
        }

        .inline-cta-text p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* ========== Service Link Cards (services.html hub) ========== */
        .service-link-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .service-link-card {
            display: flex;
            flex-direction: column;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s ease;
        }

        .service-link-card:hover {
            border-color: var(--brand-cyan);
            transform: translateY(-4px);
        }

        .service-link-card .service-link-icon {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .service-link-card h3 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--text-bright);
            margin-bottom: 8px;
        }

        .service-link-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 14px;
            flex-grow: 1;
        }

        .service-link-card .service-link-price {
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--brand-cyan);
            font-size: 0.9rem;
            margin-bottom: 14px;
        }

        .service-link-card a.service-link-more {
            color: var(--brand-cyan);
            font-weight: 700;
            font-size: 0.88rem;
        }

        @media (max-width: 640px) {
            .service-link-grid {
                grid-template-columns: 1fr;
            }

            .inline-cta {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }

            .page-header {
                padding: 40px 0;
            }
        }

        /* ========== Footer Social Icons ========== */
        .footer-social {
            margin-top: 22px;
        }

        .footer-social-title {
            display: block;
            font-family: var(--font-display);
            font-size: 0.92rem;
            font-weight: 700;
            color: var(--text-secondary);
            margin-bottom: 12px;
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .social-link svg {
            width: 22px;
            height: 22px;
        }

        .social-link.tiktok:hover {
            background: #000;
            border-color: #25F4EE;
            color: #25F4EE;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(37, 244, 238, 0.25);
        }

        .social-link.instagram:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            border-color: transparent;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
        }

        /* ========== Reveal Animation ========== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        /* ========== Social Feed Section ========== */
        .social-feed {
            background: linear-gradient(180deg, var(--bg-deepest) 0%, var(--bg-deep) 100%);
        }

        .shorts-hint {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 0.88rem;
            color: var(--brand-cyan);
            margin-bottom: 20px;
        }

        .shorts-hint-icon {
            width: 18px;
            height: 18px;
            animation: shortsHintNudge 1.6s ease-in-out infinite;
        }

        @keyframes shortsHintNudge {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-6px); }
        }

        .shorts-slider-wrap {
            position: relative;
            max-width: 1100px;
            margin: 0 auto 36px;
        }

        .shorts-slider-wrap::before,
        .shorts-slider-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 20px;
            width: 48px;
            pointer-events: none;
            z-index: 2;
        }

        .shorts-slider-wrap::before {
            right: 0;
            background: linear-gradient(to left, var(--bg-deep) 0%, transparent 100%);
        }

        .shorts-slider-wrap::after {
            left: 0;
            background: linear-gradient(to right, var(--bg-deep) 0%, transparent 100%);
        }

        .shorts-grid {
            display: flex;
            gap: 18px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            scroll-padding: 0 24px;
            padding: 6px 24px 20px;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--brand-cyan) var(--bg-card);
        }

        .shorts-grid::-webkit-scrollbar {
            height: 7px;
        }

        .shorts-grid::-webkit-scrollbar-track {
            background: var(--bg-card);
            border-radius: 10px;
        }

        .shorts-grid::-webkit-scrollbar-thumb {
            background: var(--brand-cyan);
            border-radius: 10px;
        }

        .shorts-item {
            flex: 0 0 auto;
            width: 210px;
            scroll-snap-align: start;
            border-radius: 20px;
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            transition: all 0.3s ease;
        }

        .shorts-item:hover {
            border-color: var(--brand-cyan);
            transform: translateY(-4px);
        }

        .shorts-frame {
            position: relative;
            width: 100%;
            aspect-ratio: 9 / 16;
            background: #000;
        }

        .shorts-frame iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .shorts-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--border-subtle);
            color: var(--brand-cyan);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .shorts-nav svg {
            width: 20px;
            height: 20px;
        }

        .shorts-nav:hover {
            background: var(--brand-cyan);
            color: var(--bg-deepest);
            border-color: var(--brand-cyan);
        }

        .shorts-nav-prev {
            right: -6px;
        }

        .shorts-nav-next {
            left: -6px;
        }

        .shorts-nav:disabled {
            opacity: 0.35;
            cursor: default;
            pointer-events: none;
        }

        .feed-cta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .feed-follow-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 50px;
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            color: #fff;
        }

        .feed-follow-btn svg {
            width: 22px;
            height: 22px;
        }

        .feed-follow-btn.tiktok-btn {
            background: #000;
            border: 1px solid #25F4EE;
        }

        .feed-follow-btn.tiktok-btn:hover {
            box-shadow: 0 10px 30px rgba(37, 244, 238, 0.3);
            transform: translateY(-3px);
        }

        .feed-follow-btn.instagram-btn {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }

        .feed-follow-btn.instagram-btn:hover {
            box-shadow: 0 10px 30px rgba(220, 39, 67, 0.35);
            transform: translateY(-3px);
        }

        @media (max-width: 968px) {
            .shorts-item {
                width: 190px;
            }
        }

        @media (max-width: 640px) {
            .shorts-slider-wrap::before,
            .shorts-slider-wrap::after {
                width: 28px;
            }

            .shorts-item {
                width: 68vw;
                max-width: 240px;
            }

            .shorts-nav {
                display: none;
            }

            .feed-cta {
                flex-direction: column;
                width: 100%;
            }

            .feed-follow-btn {
                width: 100%;
                justify-content: center;
            }
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========== Responsive ========== */
        @media (max-width: 968px) {
            .hero-grid,
            .coverage-grid,
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-visual {
                order: -1;
            }

            .before-after {
                max-width: 420px;
            }

            section {
                padding: 70px 0;
            }

            .service-card.featured {
                transform: none;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .vip-feature-groups {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .vip-card-top {
                max-width: 100%;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 0 18px;
            }

            .hero {
                padding: 50px 0 70px;
            }

            .before-after {
                max-width: 100%;
                aspect-ratio: 1 / 1;
                border-radius: 18px;
            }

            .ba-tabs {
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
            }

            .ba-tab {
                padding: 7px 16px;
                font-size: 0.78rem;
            }

            .ba-handle-grip {
                width: 34px;
                height: 34px;
            }

            .ba-placeholder-icon {
                font-size: 1.7rem;
            }

            .ba-placeholder-label {
                font-size: 0.82rem;
            }

            .ba-placeholder-hint {
                display: none;
            }

            .ba-tag {
                font-size: 0.7rem;
                padding: 4px 12px;
            }

            .hero-stats {
                gap: 20px;
                flex-wrap: wrap;
            }

            .stat-value {
                font-size: 1.5rem;
            }

            .neighborhoods {
                grid-template-columns: 1fr;
            }

            .float-wa span {
                display: none;
            }

            .float-wa {
                padding: 14px;
            }

            .header-cta span {
                display: none;
            }

            .brand-tagline {
                font-size: 0.7rem;
            }

            .hero-actions {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }
        }
