@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   DESIGN TOKENS
============================================ */
:root {
    --bg-base:        #03050a;
    --bg-glass:       rgba(14, 18, 30, 0.45);
    --bg-glass-heavy: rgba(8, 12, 22, 0.75);
    --border-glass:       rgba(255,255,255,0.06);
    --border-glass-hover: rgba(255,255,255,0.14);

    --primary:   #009fe3; /* Brand Cyan */
    --secondary: #5653d4; /* Accessible Brand Purple */
    --accent:    #e62b1e; /* Brand Coral Red */
    --success:   #10b981;

    --text-main:  #f1f5f9;
    --text-muted: #8b9ab0;

    --font: 'Outfit', sans-serif;
    --r-sm: 12px;
    --r-md: 20px;
    --r-lg: 32px;
    --r-xl: 48px;
    --ease: all 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* ============================================
   RESET
============================================ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
body { font-family:var(--font); background:var(--bg-base); color:var(--text-main); line-height:1.65; overflow-x:hidden; }
a    { color:inherit; text-decoration:none; transition:var(--ease); }
img  { max-width:100%; display:block; }
ul   { list-style:none; }
button { font-family:var(--font); }

/* ============================================
   UTILITY
============================================ */
.section     { padding:110px 0; }
.section-alt { background:linear-gradient(to bottom,transparent,rgba(255,255,255,0.015),transparent); }

.container {
    width:100%; max-width:1440px;
    margin:0 auto; padding:0 40px;
}

.gradient-text {
    background:linear-gradient(135deg,#fff 10%,var(--primary) 60%,var(--secondary) 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.badge-tag {
    display:inline-flex; align-items:center; gap:8px;
    border:1px solid var(--border-glass);
    background:rgba(255,255,255,0.03);
    backdrop-filter:blur(10px);
    color:var(--text-main); font-size:0.82rem; font-weight:600;
    padding:7px 16px; border-radius:50px;
}
.badge-tag .dot {
    width:7px; height:7px; border-radius:50%;
    background:var(--success); animation:pulse 2s infinite;
}

/* ============================================
   AURORA BACKGROUND
============================================ */
.aurora-bg {
    position:fixed; inset:0; z-index:-1;
    background:var(--bg-base); overflow:hidden;
}
.aurora-blob {
    position:absolute; border-radius:50%;
    filter:blur(130px); opacity:0.45;
    animation:blob-float 22s infinite alternate ease-in-out;
    transition:transform 0.3s ease-out;
}
.aurora-blob-1 { top:-10%; left:-10%; width:65vw; height:65vw; background:radial-gradient(circle,rgba(0,159,227,0.25) 0%,transparent 60%); animation-duration:20s; }
.aurora-blob-2 { bottom:-10%; right:-10%; width:55vw; height:55vw; background:radial-gradient(circle,rgba(86,83,212,0.20) 0%,transparent 60%); animation-direction:alternate-reverse; animation-duration:26s; }
.aurora-blob-3 { top:35%; left:25%; width:45vw; height:45vw; background:radial-gradient(circle,rgba(230,43,30,0.12) 0%,transparent 60%); animation-duration:32s; }
@keyframes blob-float {
    0%   { transform:translate(0,0) scale(1); }
    100% { transform:translate(80px,60px) scale(1.18); }
}

/* ============================================
   HEADER
============================================ */
header {
    position:fixed; top:0; left:0; width:100%; z-index:200;
    padding:20px 0; transition:var(--ease);
}
header.scrolled {
    background:rgba(3,5,10,0.85);
    backdrop-filter:blur(24px);
    border-bottom:1px solid var(--border-glass);
    padding:14px 0;
}
.nav-container {
    display:flex; align-items:center;
    justify-content:space-between; gap:16px;
}
.logo {
    display:flex; align-items:center; gap:10px;
    font-size:1.35rem; font-weight:900;
    letter-spacing:0.06em; white-space:nowrap;
    flex-shrink:0;
}
.logo img.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}
.logo-icon { color:var(--primary); }

/* Desktop Nav */
nav ul { display:flex; gap:28px; align-items:center; }
nav ul li { position:relative; }
nav ul li > a {
    font-size:0.92rem; font-weight:600;
    color:var(--text-main); white-space:nowrap;
}
nav ul li > a:hover { color:var(--primary); }

/* Dropdown */
.dropdown-menu {
    position:absolute; top:calc(100% + 12px); left:-16px;
    min-width:280px;
    background:var(--bg-glass-heavy);
    backdrop-filter:blur(24px);
    border:1px solid var(--border-glass);
    border-radius:var(--r-md);
    box-shadow:0 24px 50px rgba(0,0,0,0.55);
    padding:10px;
    opacity:0; visibility:hidden;
    transform:translateY(12px);
    transition:var(--ease); z-index:300;
}
nav ul li:hover .dropdown-menu {
    opacity:1; visibility:visible; transform:translateY(0);
}
.dropdown-menu li a {
    display:flex; align-items:center; gap:10px;
    padding:11px 14px; border-radius:10px;
    font-size:0.88rem; color:var(--text-muted);
}
.dropdown-menu li a:hover { background:rgba(255,255,255,0.05); color:var(--text-main); }
.dropdown-menu li a i { width:16px; color:var(--primary); }

.header-actions { display:flex; align-items:center; gap:14px; flex-shrink:0; }

.nav-cta {
    display:flex; align-items:center; gap:8px;
    background:#fff; color:#000;
    padding:11px 22px; border-radius:50px;
    font-weight:700; font-size:0.9rem; white-space:nowrap;
}
.nav-cta:hover { background:var(--primary); color:#fff; }

.mobile-menu-btn {
    display:none; background:transparent;
    border:1px solid var(--border-glass);
    color:#fff; font-size:1.2rem; cursor:pointer;
    border-radius:10px; padding:10px 14px;
}

/* ============================================
   MOBILE NAVIGATION OVERLAY
============================================ */
.mobile-nav-overlay {
    display:none;
    position:fixed; inset:0; z-index:190;
    background:rgba(3,5,10,0.97);
    backdrop-filter:blur(30px);
    padding:100px 40px 40px;
    flex-direction:column;
    overflow-y:auto;
}
.mobile-nav-overlay.open { display:flex; }
.mobile-nav-link {
    display:block;
    font-size:1.6rem; font-weight:800;
    letter-spacing:-0.02em;
    padding:14px 0;
    border-bottom:1px solid var(--border-glass);
    color:var(--text-main);
}
.mobile-nav-link:hover { color:var(--primary); }
.mobile-nav-sub {
    font-size:1.1rem; font-weight:500;
    color:var(--text-muted);
    padding:10px 0 10px 20px;
}
.mobile-nav-cta {
    margin-top:30px; display:flex; align-items:center; gap:12px;
    justify-content:center;
    background:var(--secondary); color:#000;
    padding:18px 30px; border-radius:16px;
    font-size:1.2rem; font-weight:800;
}

/* ============================================
   HERO: BENTO GRID
============================================ */
.bento-hero-section {
    position:relative;
    clip-path: inset(0);
    min-height:100vh;
    display:flex; align-items:center;
    padding:160px 0 80px;
    overflow: hidden;
}

/* Hero background: fixed on desktop (creates the parallax effect),
   absolute on touch/mobile (avoids Android Chrome fixed+clip-path bug) */
.hero-bg-image {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background-size: cover;
    background-position: center center;
    z-index: 0;
    will-change: transform;
}
.hero-bg-overlay {
    position: absolute; top:0; left:0; width:100%; height:100%;
    z-index: 1;
    background:
        linear-gradient(to right,  rgba(3,5,10,0.96) 0%, rgba(3,5,10,0.70) 50%, rgba(3,5,10,0.45) 100%),
        linear-gradient(to top,    rgba(3,5,10,1)    0%, transparent        40%);
}
/* On true pointer (desktop/laptop) devices, use fixed for the scroll effect */
@media (hover: hover) and (pointer: fine) {
    .hero-bg-image  { position: fixed; }
    .hero-bg-overlay { position: fixed; }
}

/* 3-column grid:
   col1 col2 | col3 (estimator spans all rows)
   -------   | -----
   title title| est
   stats warr | est
   proof proof| est
*/
.bento-grid {
    position:relative; z-index:10;
    display:grid;
    grid-template-columns: 1fr 1fr 420px;
    grid-template-rows: auto auto auto;
    grid-template-areas:
        "title  title  est"
        "stats  warr   est"
        "proof  proof  est";
    gap:20px;
    align-items:start;
}

/* --- Pane base style --- */
.bento-pane {
    background:var(--bg-glass);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid var(--border-glass);
    border-radius:var(--r-lg);
    padding:36px;
    transition:transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.bento-pane:hover {
    border-color:var(--border-glass-hover);
    box-shadow:0 20px 48px rgba(0,0,0,0.4);
    transform:translateY(-3px);
}

/* --- Individual pane placements --- */
.pane-title {
    grid-area:title;
    background:transparent; border:none;
    backdrop-filter:none; padding:0;
}
.pane-title:hover { transform:none; box-shadow:none; }

.pane-estimator {
    grid-area:est;
    background:var(--bg-glass-heavy);
    align-self:stretch;
}

.pane-stats   { grid-area:stats; }
.pane-warranty{ grid-area:warr;  }
.pane-proof   { grid-area:proof; display:flex; align-items:center; gap:20px; }

/* Hero content */
.hero-title {
    font-size:clamp(3rem, 5.5vw, 5.5rem);
    font-weight:900; line-height:1;
    letter-spacing:-0.05em;
    margin:20px 0;
}
.hero-description {
    font-size:1.15rem; color:var(--text-muted);
    max-width:480px; margin-bottom:32px;
}
.hero-cta-row { display:flex; gap:14px; flex-wrap:wrap; }

.btn-hero-primary {
    display:inline-flex; align-items:center; gap:8px;
    background:var(--secondary); color:#000;
    padding:14px 28px; border-radius:50px;
    font-weight:800; font-size:1rem;
}
.btn-hero-primary:hover { transform:scale(1.03); box-shadow:0 8px 24px rgba(245,158,11,0.35); }

.btn-hero-ghost {
    display:inline-flex; align-items:center; gap:8px;
    border:1px solid var(--border-glass-hover);
    color:var(--text-main);
    padding:14px 28px; border-radius:50px;
    font-weight:700; font-size:1rem;
}
.btn-hero-ghost:hover { background:rgba(255,255,255,0.06); border-color:rgba(255,255,255,0.25); }

.pane-icon { font-size:2.2rem; margin-bottom:14px; color:var(--primary); }
.pane-stats h4, .pane-warranty h4 { font-size:1.1rem; margin-bottom:8px; }
.pane-stats p, .pane-warranty p { color:var(--text-muted); font-size:0.9rem; }

.proof-faces { display:flex; }
.proof-faces img {
    width:44px; height:44px; border-radius:50%;
    border:2px solid var(--bg-base);
    margin-left:-10px; flex-shrink:0;
}
.proof-faces img:first-child { margin-left:0; }
.proof-text { flex:1; }
.proof-score { color:var(--secondary); margin-bottom:6px; font-size:0.9rem; }
.proof-text p { font-size:0.9rem; color:var(--text-muted); }
.proof-text strong { color:var(--text-main); }

/* ============================================
   ESTIMATOR FORM
============================================ */
.estimator-header h3 { font-size:1.6rem; margin-bottom:6px; }
.estimator-header p  { color:var(--text-muted); font-size:0.9rem; margin-bottom:28px; }

.form-group { margin-bottom:20px; }
.row-group  { display:flex; gap:12px; }
.row-group .form-input { flex:1; }

.form-group label {
    display:block; font-size:0.75rem; font-weight:700;
    text-transform:uppercase; letter-spacing:0.1em;
    color:var(--text-muted); margin-bottom:8px;
}
.form-input, .form-select {
    width:100%;
    background:rgba(0,0,0,0.35);
    border:1px solid var(--border-glass);
    border-radius:12px;
    color:var(--text-main);
    padding:14px 16px;
    font-size:0.95rem; font-family:var(--font);
    outline:none; transition:var(--ease);
}
.form-input:focus, .form-select:focus { border-color:var(--primary); background:rgba(0,0,0,0.5); }
.form-input::placeholder { color:var(--text-muted); }
.form-select option { background:var(--bg-base); }

.dynamic-addons {
    display:flex; flex-direction:column; gap:10px;
    max-height:190px; overflow-y:auto; padding-right:4px;
}
.dynamic-addons::-webkit-scrollbar { width:3px; }
.dynamic-addons::-webkit-scrollbar-thumb { background:var(--border-glass); border-radius:4px; }

.checkbox-label {
    display:flex; align-items:center; gap:10px;
    cursor:pointer; padding:10px 14px;
    background:rgba(0,0,0,0.2);
    border:1px solid var(--border-glass);
    border-radius:10px;
    transition:var(--ease);
}
.checkbox-label:hover { border-color:var(--border-glass-hover); background:rgba(0,0,0,0.35); }
.checkbox-label input[type="checkbox"] { accent-color:var(--primary); width:16px; height:16px; flex-shrink:0; }
.addon-desc { flex:1; font-size:0.85rem; color:var(--text-muted); }
.addon-price { font-size:0.82rem; font-weight:700; color:var(--primary); white-space:nowrap; }

.estimator-summary { margin-top:24px; padding-top:20px; border-top:1px solid var(--border-glass); }
.summary-row { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.summary-label { color:var(--text-muted); font-size:0.9rem; }
.summary-price { font-size:2.2rem; font-weight:900; }

.btn {
    width:100%; padding:16px; border-radius:12px;
    font-weight:800; font-size:1rem;
    border:none; cursor:pointer;
    transition:var(--ease); display:flex; justify-content:center; align-items:center; gap:10px;
    font-family:var(--font);
}
.btn-primary {
    background:linear-gradient(135deg, #25d366, #1da851);
    color:#fff;
}
.btn-primary:hover { transform:scale(1.02); box-shadow:0 10px 28px rgba(37,211,102,0.35); }

/* ============================================
   ACCREDITATION LOGOS (BRANDS)
============================================ */
.brands-section {
    padding:50px 0;
    border-top:1px solid var(--border-glass);
    border-bottom:1px solid var(--border-glass);
    background:rgba(0,0,0,0.25);
    text-align:center;
}
.brands-title {
    color:var(--text-muted); font-size:0.78rem;
    font-weight:700; text-transform:uppercase;
    letter-spacing:0.15em; margin-bottom:28px;
}
.brands-grid {
    display:flex; justify-content:center;
    align-items:center; gap:50px; flex-wrap:wrap;
}
.brand-logo {
    max-height:55px; object-fit:contain;
    filter:grayscale(100%) brightness(180%);
    opacity:0.65; transition:var(--ease);
}
.brand-logo:hover { filter:grayscale(0%) brightness(100%); opacity:1; transform:scale(1.08); }

/* ============================================
   MARQUEE STRIP
============================================ */
.marquee-strip {
    overflow:hidden;
    background:linear-gradient(90deg, transparent, rgba(59,130,246,0.08), transparent);
    padding:20px 0; border-top:1px solid var(--border-glass);
}
.marquee-track {
    display:flex; white-space:nowrap;
    animation:marquee-scroll 30s linear infinite;
    font-size:0.82rem; font-weight:700;
    text-transform:uppercase; letter-spacing:0.1em;
    color:var(--text-muted);
}
.marquee-track span { padding-right:0; }
@keyframes marquee-scroll {
    0%   { transform:translateX(0); }
    100% { transform:translateX(-50%); }
}

/* ============================================
   ASYMMETRICAL SERVICES
============================================ */
.asym-services-section { padding:100px 0 160px; }
.section-title-huge {
    font-size:clamp(3.5rem, 7vw, 7rem); font-weight:900;
    line-height:0.9; letter-spacing:-0.05em;
    margin-bottom:100px;
}

.asym-row {
    display:flex; align-items:center;
    margin-bottom:120px; position:relative;
}
.row-right { flex-direction:row-reverse; }

.asym-visual {
    width:60%; flex-shrink:0;
    height:560px; border-radius:var(--r-xl);
    overflow:hidden; position:relative;
}
.visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
    background-color: #0d1117;
}
.asym-visual:hover .visual-img { transform:scale(1.05); }

.visual-badge {
    position:absolute; bottom:24px; left:24px;
    background:rgba(3,5,10,0.8); backdrop-filter:blur(16px);
    border:1px solid var(--border-glass);
    border-radius:12px; padding:10px 16px;
}
.visual-badge img { height:36px; filter:brightness(120%); }

.asym-content {
    width:48%; position:absolute; z-index:10;
}
.row-left .asym-content  { right:0; }
.row-right .asym-content { left:0; }

.glass-pane {
    background:var(--bg-glass-heavy);
    backdrop-filter:blur(28px);
    border:1px solid var(--border-glass);
    border-radius:var(--r-lg);
    padding:50px;
    box-shadow:0 32px 70px rgba(0,0,0,0.55);
}
.glass-pane:hover { border-color:var(--border-glass-hover); }

.service-index { display:block; font-size:1rem; font-weight:800; color:var(--primary); margin-bottom:12px; letter-spacing:0.05em; }
.asym-content h3 { font-size:clamp(1.8rem, 2.5vw, 2.4rem); margin-bottom:18px; }
.asym-content > p { font-size:1rem; color:var(--text-muted); margin-bottom:24px; }

.service-mini-list { display:flex; flex-direction:column; gap:8px; margin-bottom:28px; }
.service-mini-list li { display:flex; align-items:center; gap:10px; font-size:0.9rem; color:var(--text-muted); }
.service-mini-list li i { color:var(--success); font-size:0.8rem; flex-shrink:0; }

.asym-link {
    display:inline-flex; align-items:center; gap:8px;
    font-weight:700; font-size:1rem;
    border-bottom:2px solid var(--primary); padding-bottom:3px;
    color:var(--text-main);
}
.asym-link:hover { gap:14px; color:var(--primary); }
.asym-link i { transition:var(--ease); }

/* ============================================
    DSTV IMAGE BACKGROUND WRAPPER
    (How It Works + Testimonials + FAQ)
 ============================================ */
.dstv-bg-wrap {
    position: relative;
    clip-path: inset(0);
    isolation: isolate;
}
/* Dark overlay and background image applied as fixed layer inside clipped container */
.dstv-bg-wrap::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            to bottom,
            rgba(3,5,10,0.88) 0%,
            rgba(3,5,10,0.82) 50%,
            rgba(3,5,10,0.90) 100%
        ),
        url('assets/Compare-DStv-packages-1.webp');
    background-size: cover;
    background-position: center center;
    z-index: -1;
    pointer-events: none;
    will-change: transform;
}
/* Lift all direct section content above the overlay */
.dstv-bg-wrap > section {
    position: relative;
    z-index: 1;
    background: transparent !important;
}

/* ============================================
   PROCESS (HOW IT WORKS)
============================================ */
.section-header-centered { text-align:center; margin-bottom:70px; }
.section-header-centered h2 { font-size:clamp(2rem,4vw,3rem); margin-bottom:14px; }
.section-header-centered p  { color:var(--text-muted); max-width:540px; margin:0 auto; }

.process-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
    position:relative;
}
.process-grid::before {
    content:''; position:absolute;
    top:30px; left:calc(16.67% + 20px); right:calc(16.67% + 20px);
    height:2px;
    background:linear-gradient(90deg, var(--primary), var(--secondary));
    opacity:0.3;
}

.process-step {
    background:var(--bg-glass);
    border:1px solid var(--border-glass);
    border-radius:var(--r-md);
    padding:36px 30px; text-align:center;
    position:relative;
    transition:var(--ease);
}
.process-step:hover { border-color:var(--border-glass-hover); transform:translateY(-6px); }

.step-number {
    width:56px; height:56px; border-radius:50%;
    background:linear-gradient(135deg, var(--primary), #1d4ed8);
    color:#fff; font-size:1.4rem; font-weight:900;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 20px; box-shadow:0 0 20px rgba(59,130,246,0.4);
}
.process-step h3 { font-size:1.15rem; margin-bottom:14px; }
.process-step p  { color:var(--text-muted); font-size:0.9rem; }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }

.testimonial-card {
    background:var(--bg-glass);
    border:1px solid var(--border-glass);
    border-radius:var(--r-md); padding:32px;
    display:flex; flex-direction:column; justify-content:space-between;
    gap:24px; transition:var(--ease);
}
.testimonial-card:hover { border-color:var(--border-glass-hover); transform:translateY(-6px); }
.stars { color:var(--secondary); font-size:0.9rem; margin-bottom:14px; }
.testimonial-text { font-size:0.95rem; color:var(--text-muted); font-style:italic; line-height:1.7; }
.reviewer-info { display:flex; align-items:center; gap:14px; }
.reviewer-avatar {
    width:46px; height:46px; border-radius:50%;
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    display:flex; align-items:center; justify-content:center;
    font-weight:800; font-size:0.9rem; flex-shrink:0;
}
.reviewer-info h4 { font-size:1rem; margin-bottom:2px; }
.reviewer-info p  { font-size:0.82rem; color:var(--text-muted); }

/* ============================================
   FAQ SECTION
============================================ */
.faq-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:80px; align-items:start; }
.faq-intro h2 { font-size:clamp(2rem,4vw,2.8rem); margin-bottom:16px; }
.faq-intro p  { color:var(--text-muted); line-height:1.7; }

.faq-accordion { display:flex; flex-direction:column; gap:12px; }
.faq-item {
    background:var(--bg-glass);
    border:1px solid var(--border-glass);
    border-radius:var(--r-md);
    overflow:hidden; transition:border-color 0.3s ease;
}
.faq-item.active { border-color:rgba(59,130,246,0.3); }
.faq-question {
    width:100%; display:flex; align-items:center; justify-content:space-between; gap:12px;
    padding:20px 24px; background:transparent; border:none; cursor:pointer;
    color:var(--text-main); font-size:0.97rem; font-weight:700;
    text-align:left; font-family:var(--font);
}
.faq-icon { transition:transform 0.35s ease; color:var(--text-muted); flex-shrink:0; }
.faq-item.active .faq-icon { transform:rotate(180deg); color:var(--primary); }

.faq-answer {
    max-height:0; overflow:hidden;
    transition:max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height:300px; }
.faq-answer p { padding:0 24px 20px; color:var(--text-muted); font-size:0.9rem; line-height:1.75; }

/* ============================================
   FOOTER
============================================ */
footer {
    border-top:1px solid var(--border-glass);
    padding:80px 0 40px;
    background:rgba(0,0,0,0.45);
}
.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:60px; margin-bottom:60px; }
.footer-col-wide p { color:var(--text-muted); font-size:0.9rem; margin-top:16px; max-width:360px; }

.footer-areas {
    display:flex; flex-wrap:wrap; gap:8px; margin-top:20px;
}
.footer-areas span {
    background:var(--bg-glass); border:1px solid var(--border-glass);
    border-radius:50px; padding:4px 12px;
    font-size:0.78rem; color:var(--text-muted);
}

.footer-col h3 { font-size:1.1rem; margin-bottom:22px; }
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col ul li a {
    color:var(--text-muted); font-size:0.92rem;
    display:flex; align-items:center; gap:10px;
}
.footer-col ul li a i { color:var(--primary); width:14px; }
.footer-col ul li a:hover { color:var(--text-main); padding-left:6px; }
.footer-col p { color:var(--text-muted); font-size:0.9rem; display:flex; align-items:center; gap:12px; margin-bottom:10px; }

.footer-bottom {
    border-top:1px solid var(--border-glass); padding-top:36px;
    display:flex; justify-content:space-between; align-items:center;
    color:var(--text-muted); font-size:0.85rem;
}
.footer-bottom-links { display:flex; gap:24px; }
.footer-bottom-links a:hover { color:var(--primary); }

/* ============================================
   SCROLL ANIMATIONS
============================================ */
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.animate-on-scroll {
    opacity:0; transition:opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up   { transform:translateY(40px); }
.slide-in-left  { transform:translateX(-50px); }
.slide-in-right { transform:translateX(50px); }
.animate-on-scroll.visible { opacity:1; transform:translate(0,0); }

/* ============================================
   DSTV PRICING CARDS
============================================ */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.pricing-tab-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.pricing-tab-btn.active, .pricing-tab-btn:hover {
    background: var(--secondary);
    color: #000;
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(251, 161, 25, 0.4);
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    border-color: var(--border-glass-hover);
    box-shadow: 0 20px 48px rgba(0,0,0,0.5);
    transform: translateY(-5px);
}
.pricing-card-header {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 24px;
}
.value-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    margin-bottom: 16px;
}
.value-tag.featured {
    background: rgba(251, 161, 25, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(251, 161, 25, 0.3);
}
.pricing-card-header h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}
.pricing-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.pricing-price .currency {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary);
}
.pricing-price .period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 8px;
}
.pricing-card-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}
.pricing-card-body {
    flex-grow: 1;
    margin-bottom: 30px;
}
.pricing-card-body h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pricing-features li {
    font-size: 0.95rem;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}
.pricing-features li i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 0.9rem;
}
.pricing-card-footer {
    margin-top: auto;
}
.btn-pricing-cta {
    width: 100%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pricing-card:hover .btn-pricing-cta,
.btn-pricing-cta:hover {
    background: var(--secondary);
    color: #000;
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(251, 161, 25, 0.3);
}

@media (max-width: 1024px) {
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .pricing-card {
        display: none;
    }
    .pricing-card.active {
        display: flex;
        flex-direction: column;
    }
}
@media (min-width: 1025px) {
    .pricing-tabs {
        display: none;
    }
    .pricing-card {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
}

/* ============================================
   DSTV TROUBLESHOOTING & ERROR CODES
============================================ */
.troubleshooting-section {
    padding-top: 100px;
    border-top: 1px solid var(--border-glass);
}
.troubleshooting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.trouble-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    padding: 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.trouble-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}
.trouble-header {
    margin-bottom: 20px;
}
.code-badge {
    display: inline-block;
    font-family: monospace;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.code-badge.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.1);
}
.code-badge.alert-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.1);
}
.code-badge.alert-info {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
}
.trouble-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}
.trouble-body {
    flex-grow: 1;
}
.trouble-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 16px;
}
.trouble-solution {
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--r-sm);
    padding: 16px;
}
.trouble-solution h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.trouble-solution ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.trouble-solution li {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.4;
    position: relative;
    padding-left: 12px;
}
.trouble-solution li::before {
    content: "•";
    color: var(--secondary);
    position: absolute;
    left: 0;
}
.trouble-footer {
    margin-top: 24px;
}
.btn-trouble-book {
    width: 100%;
    background: transparent;
    border: 1px dashed var(--border-glass-hover);
    color: var(--text-muted);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-trouble-book:hover {
    background: var(--bg-glass);
    border-color: var(--text-main);
    color: var(--text-main);
    border-style: solid;
}

@media (max-width: 1024px) {
    .troubleshooting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 580px) {
    .troubleshooting-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1280px) {
    .asym-visual { width:55%; height:480px; }
    .asym-content { width:52%; }
    .glass-pane { padding:40px; }
    .footer-grid { grid-template-columns:1fr 1fr; }
    .footer-col-wide { grid-column:1/-1; }
    /* Collapse to 2-col bento on medium screens */
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "title  title"
            "est    est"
            "stats  warr"
            "proof  proof";
    }
}

@media (max-width: 1024px) {
    /* Mobile nav takeover */
    #main-nav { display:none; }
    .nav-cta { display:none; }
    .mobile-menu-btn { display:block; }

    /* Stack bento vertically */
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "title"
            "est"
            "stats"
            "warr"
            "proof";
    }

    .asym-visual { width:100%; height:400px; }
    .asym-content { position:relative; width:90%; margin:-80px auto 0; }
    .row-left .asym-content, .row-right .asym-content { right:auto; left:auto; }
    .asym-row, .row-right { flex-direction:column; margin-bottom:80px; }

    .process-grid { grid-template-columns:1fr; }
    .process-grid::before { display:none; }
    .testimonials-grid { grid-template-columns:1fr; }
    .faq-grid { grid-template-columns:1fr; gap:40px; }
    .footer-grid { grid-template-columns:1fr; }
}

@media (max-width: 768px) {
    .container { padding:0 20px; }
    .hero-title { font-size:2.6rem; }
    .section-title-huge { font-size:2.8rem; margin-bottom:60px; }
    .row-group { flex-direction:column; }
    .hero-cta-row { flex-direction:column; }
    .btn-hero-primary, .btn-hero-ghost { text-align:center; justify-content:center; }
    .footer-bottom { flex-direction:column; gap:16px; text-align:center; }
    .pane-proof { flex-direction:column; text-align:center; }

    /* ---- MOBILE HERO BACKGROUND FIX ----
       On mobile, fixed-position backgrounds cause scroll/paint issues.
       We switch to a pseudo-element approach via CSS for reliability.
    */
    .hero-bg-image {
        background-position: 70% center;
    }

    .hero-bg-overlay {
        /* Stronger overlay on mobile so text is always readable */
        background:
            linear-gradient(to bottom, rgba(3,5,10,0.88) 0%, rgba(3,5,10,0.72) 55%, rgba(3,5,10,1) 100%),
            linear-gradient(to right,  rgba(3,5,10,0.95) 0%, rgba(3,5,10,0.35) 100%);
    }

    /* Hero section: tighter padding on mobile */
    .bento-hero-section {
        padding: 110px 0 50px;
        min-height: 100svh; /* svh = small viewport height, avoids address-bar jump */
    }

    /* Constrain the bento-grid so estimator doesn't overflow */
    .bento-grid {
        width: 100%;
        min-width: 0;
    }

    /* Make estimator pane full-width and not fixed 420px */
    .pane-estimator {
        width: 100%;
        min-width: 0;
    }
}

/* Extra safety for very narrow phones */
@media (max-width: 480px) {
    .hero-title { font-size: 2.1rem; }
    .logo { font-size: 1.05rem; }
    .hero-description { font-size: 0.95rem; }
    .glass-pane { padding: 22px 16px; }
    .asym-content { width: 96%; }
    .bento-pane { padding: 24px 18px; }
    .summary-price { font-size: 1.7rem; }

}

/* ============================================
   NEW PREVIEW SECTIONS & SUBPAGE SYSTEMS
============================================ */

/* Gallery Preview */
.gallery-preview { padding: 80px 0; }
.gallery-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gallery-preview-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: var(--ease);
}
.gallery-preview-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-5px);
}
.gallery-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}
.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.gallery-preview-card:hover .gallery-img-wrap img {
    transform: scale(1.05);
}
.gallery-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(3, 5, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
}
.gallery-card-body {
    padding: 24px;
}
.gallery-card-body h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.gallery-card-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Blog Preview */
.blog-preview { padding: 80px 0 120px 0; }
.blog-grid-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.blog-card-preview {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.blog-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}
.blog-card-preview h4 {
    font-size: 1.25rem;
    line-height: 1.4;
}
.blog-card-preview p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}
.blog-preview-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
}
.blog-preview-link:hover {
    gap: 12px;
}

/* Subpage Common Templates */
.page-header-hero {
    position: relative;
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(3, 5, 10, 0.4) 0%, rgba(3, 5, 10, 0.95) 100%);
    border-bottom: 1px solid var(--border-glass);
}
.page-header-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}
.page-header-hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.subpage-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 50px;
    padding: 80px 0;
}
.subpage-main-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
}
.subpage-main-content h2:first-child {
    margin-top: 0;
}
.subpage-main-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.75;
}
.subpage-main-content ul {
    margin-bottom: 30px;
}
.subpage-main-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
}
.subpage-main-content ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--success);
}

.pricing-table-wrap {
    overflow-x: auto;
    margin: 30px 0;
    border: 1px solid var(--border-glass);
    border-radius: var(--r-md);
    background: var(--bg-glass);
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}
.pricing-table th, .pricing-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-glass);
}
.pricing-table th {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    font-weight: 700;
}
.pricing-table tr:last-child td {
    border-bottom: none;
}
.pricing-table td.price {
    font-weight: 700;
    color: var(--primary);
}

.sidebar-card {
    background: var(--bg-glass-heavy);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    padding: 36px;
    position: sticky;
    top: 100px;
}
.sidebar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.sidebar-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Gallery Portfolio Page */
.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}
.filter-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--ease);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.gallery-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 80px;
}
.gallery-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: var(--ease);
}
.gallery-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
}
.gallery-card.hidden {
    display: none;
}

/* Blog Masonry Grid */
.blog-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 80px 0;
}
.blog-post-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: var(--ease);
}
.blog-post-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
}
.blog-post-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.blog-post-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}
.blog-post-content h3 {
    font-size: 1.25rem;
    line-height: 1.4;
}
.blog-post-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Contact Grid Layout */
.contact-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding: 80px 0;
}
.contact-details-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-info-box {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-md);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-info-icon {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 4px;
}
.contact-info-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.contact-info-text p, .contact-info-text a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form-pane {
    background: var(--bg-glass-heavy);
    border: 1px solid var(--border-glass);
    border-radius: var(--r-lg);
    padding: 40px;
}
.contact-form-pane h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.contact-form-pane p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Legal content styles */
.legal-content-section {
    padding: 80px 0;
    max-width: 900px;
    margin: 0 auto;
}
.legal-content-section h2 {
    font-size: 1.6rem;
    margin: 36px 0 16px;
    color: var(--text-main);
}
.legal-content-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ============================================
   RESPONSIVE DESIGN ADDITIONS
============================================ */
@media (max-width: 1024px) {
    .gallery-grid-preview { grid-template-columns: 1fr; }
    .blog-grid-preview { grid-template-columns: 1fr; }
    .subpage-grid { grid-template-columns: 1fr; }
    .gallery-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-masonry-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid-container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .gallery-portfolio-grid { grid-template-columns: 1fr; }
    .blog-masonry-grid { grid-template-columns: 1fr; }
    .page-header-hero h1 { font-size: 2.2rem; }
    .contact-form-pane { padding: 24px; }
}

@media (max-width: 1024px) {
    .footer-locations-matrix { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 580px) {
    .footer-locations-matrix { grid-template-columns: 1fr !important; }
}

