/* ═══════════════════════════════════════════════════════
   GARAGE DOOR WATAUGA — Premium Blue Design v6.0
   Royal Blue · Clean White · Modern Industrial
═══════════════════════════════════════════════════════ */

/* ── 1. Design Tokens ── */
:root {
    /* Brand Colors — Royal Blue Palette */
    --blue-900: #0d1b3e;
    --blue-800: #1a2f5e;
    --blue-700: #1e3a7a;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-200: #bfdbfe;
    --blue-100: #dbeafe;
    --blue-50:  #eff6ff;

    /* Accent — Electric Cyan */
    --cyan: #06b6d4;
    --cyan-light: #67e8f9;
    --cyan-glow: rgba(6, 182, 212, 0.25);

    /* Gold — For CTA only */
    --gold: #eab308;
    --gold-hover: #ca8a04;
    --gold-glow: rgba(234, 179, 8, 0.3);

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8faff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-700: #334155;
    --dark: #06091a;

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Radii */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-pill: 999px;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(13, 27, 62, 0.08);
    --shadow-hover: 0 16px 48px rgba(13, 27, 62, 0.16);
    --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.25);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --dur: 0.4s;
}

/* ── 2. Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; }
.container { max-width: 1280px; }
ul { padding: 0; margin: 0; list-style: none; }

/* ── 3. Utility ── */
.text-blue { color: var(--blue-600); }
.text-cyan { color: var(--cyan); }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ── 4. Navbar ── */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0;
    transition: all var(--dur) var(--ease);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    transition: all var(--dur) var(--ease);
    position: relative;
}

#navbar.scrolled .nav-inner {
    background: rgba(6, 9, 26, 0.95);
    backdrop-filter: blur(20px) saturate(1.5);
    box-shadow: 0 2px 30px rgba(0,0,0,0.4);
    padding: 10px 24px;
}

.nav-logo { height: 72px; width: auto; transition: height var(--dur) var(--ease); }
#navbar.scrolled .nav-logo { height: 56px; }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 14px;
    border-radius: var(--r-sm);
    transition: all 0.25s ease;
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s;
}

.nav-dropdown:hover > a::after { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: var(--blue-900);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

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

.nav-dropdown-menu a {
    display: block;
    padding: 9px 14px;
    border-radius: var(--r-sm);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
    text-transform: none;
    letter-spacing: 0;
}

.nav-dropdown-menu a:hover { background: rgba(37,99,235,0.25); color: var(--blue-400); }

.nav-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: var(--r-pill);
    background: var(--gold);
    color: #000;
    transition: all var(--dur) var(--ease);
}

.nav-phone-btn:hover {
    background: #fff;
    color: var(--blue-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--gold-glow);
}

/* Mobile toggle */
.nav-toggler {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* ── 5. HERO — Full Bleed Split Layout ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue-900);
}

/* Diagonal background grid pattern */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: grayscale(60%);
}

/* Blue gradient overlays */
.hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 60% 80% at 0% 50%, rgba(13,27,62,0.98) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 100% 50%, rgba(6,182,212,0.08) 0%, transparent 60%);
}

.hero-accent-line {
    position: absolute;
    top: 0; bottom: 0;
    right: 38%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--blue-600), var(--cyan), transparent);
    z-index: 3;
    opacity: 0.4;
}

.hero-content-wrap {
    position: relative;
    z-index: 5;
    padding: 140px 0 100px;
    width: 100%;
}

.hero-left { max-width: 620px; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(6,182,212,0.3);
    background: rgba(6,182,212,0.07);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cyan-light);
    margin-bottom: 28px;
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

.hero-h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    color: #fff;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-h1 .line-blue {
    display: block;
    background: linear-gradient(90deg, var(--blue-400), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 500px;
}

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

/* ── Hero Right Panel ── */
.hero-right {
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 38%;
    z-index: 4;
    overflow: hidden;
}

.hero-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: grayscale(40%);
}

.hero-right-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--blue-900), transparent 40%),
                linear-gradient(to top, var(--blue-900) 0%, transparent 30%);
}

/* Hero stat strip */
.hero-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-top: 48px;
    border: 1px solid rgba(255,255,255,0.06);
}

.hstat {
    padding: 20px 16px;
    text-align: center;
    background: rgba(255,255,255,0.02);
    transition: background 0.3s;
}

.hstat:hover { background: rgba(37,99,235,0.1); }

.hstat-val {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--cyan-light);
    line-height: 1;
    margin-bottom: 4px;
}

.hstat-lbl {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── 6. Buttons ── */
.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: var(--r-md);
    background: var(--gold);
    color: #000;
    border: none;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.btn-primary-gold:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 12px 36px var(--gold-glow);
}

.btn-primary-gold--lg { padding: 16px 36px; font-size: 1.05rem; }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: var(--r-md);
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.btn-outline-white:hover {
    color: #fff;
    border-color: var(--cyan);
    background: rgba(6,182,212,0.08);
    transform: translateY(-3px);
}

.btn-solid-blue {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 30px;
    border-radius: var(--r-md);
    background: var(--blue-600);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
}

.btn-solid-blue:hover {
    background: var(--blue-700);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

/* ── 7. Trust Bar ── */
.trust-bar {
    background: var(--blue-900);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0;
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid rgba(255,255,255,0.06);
}

.trust-cell {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background var(--dur) var(--ease);
}

.trust-cell:hover { background: rgba(37,99,235,0.08); }

.trust-cell-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(6,182,212,0.1);
    color: var(--cyan);
    font-size: 1.1rem;
}

.trust-cell-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.trust-cell-text span {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── 8. Section Headers ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--blue-600);
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
}

.eyebrow.eyebrow--light {
    color: var(--cyan-light);
    background: rgba(6,182,212,0.08);
    border-color: rgba(6,182,212,0.2);
}

.sec-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--blue-900);
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.sec-title--white { color: #fff; }

.sec-title em {
    font-style: normal;
    color: var(--blue-600);
}

.sec-title--white em { color: var(--cyan-light); }

.sec-sub {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    max-width: 560px;
}

.sec-sub--light { color: rgba(255,255,255,0.55); }

/* ── 9. Services Section ── */
.services-section {
    background: var(--off-white);
    padding: 96px 0;
}

.service-card-new {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    transition: all var(--dur) var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-new::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-600), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease);
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blue-100);
}

.service-card-new:hover::after { transform: scaleX(1); }

.svc-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--blue-50);
    color: var(--blue-600);
    font-size: 1.35rem;
    margin-bottom: 22px;
    transition: all var(--dur) var(--ease);
}

.service-card-new:hover .svc-icon {
    background: var(--blue-600);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-blue);
}

.service-card-new h3 {
    font-size: 1.15rem;
    color: var(--blue-900);
    margin-bottom: 10px;
}

.service-card-new p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.72;
    flex: 1;
    margin-bottom: 20px;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--blue-600);
    transition: all 0.25s;
}

.svc-link:hover { color: var(--cyan); gap: 10px; }

/* ── 10. Why Section — Blue BG ── */
.why-section {
    background: var(--blue-900);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
}

.why-img-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
}

.why-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.85);
    transition: transform 0.8s var(--ease);
}

.why-img-wrap:hover img { transform: scale(1.05); }

.why-img-badge {
    position: absolute;
    bottom: 20px; right: 20px;
    padding: 12px 18px;
    background: rgba(13,27,62,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-md);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--cyan-light);
}

.why-checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }

.why-check {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: var(--r-md);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.25s;
}

.why-check:hover {
    background: rgba(6,182,212,0.08);
    border-color: rgba(6,182,212,0.2);
    color: #fff;
}

.why-check i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(6,182,212,0.15);
    color: var(--cyan);
    font-size: 0.75rem;
}

/* ── 11. Process — White BG ── */
.process-section {
    background: var(--white);
    padding: 96px 0;
}

.process-card-new {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    padding: 40px 28px;
    text-align: center;
    transition: all var(--dur) var(--ease);
    position: relative;
}

.process-card-new:hover {
    background: var(--white);
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.proc-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--blue-600);
    background: var(--blue-50);
    border: 2px solid var(--blue-100);
    transition: all var(--dur) var(--ease);
}

.process-card-new:hover .proc-num {
    background: var(--blue-600);
    color: #fff;
    border-color: var(--blue-600);
    box-shadow: var(--shadow-blue);
    transform: scale(1.1);
}

.process-card-new h3 {
    font-size: 1.15rem;
    color: var(--blue-900);
    margin-bottom: 10px;
}

.process-card-new p {
    font-size: 0.88rem;
    color: var(--gray-500);
    max-width: 240px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Connector line */
.proc-connector {
    position: absolute;
    top: 90px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-200, #bfdbfe), var(--cyan));
    z-index: 1;
    opacity: 0.5;
}

/* ── 12. Coupon Section ── */
.coupon-section {
    background: var(--blue-900);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.coupon-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.coupon-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-xl);
    padding: 56px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.coupon-img-box {
    flex-shrink: 0;
    width: 340px;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 2px solid rgba(6,182,212,0.3);
    box-shadow: 0 0 40px rgba(6,182,212,0.1);
}

.coupon-img-box img { width: 100%; display: block; }

.coupon-content {
    color: var(--white);
    max-width: 600px;
}

.border-start-lg {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 40px;
}

.coupon-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(6,182,212,0.1);
    color: var(--cyan-light, #67e8f9);
    border: 1px solid rgba(6,182,212,0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.coupon-badge i {
    margin-right: 6px;
    color: var(--primary);
}

.coupon-content h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.coupon-content h3 span {
    color: var(--primary);
}

.coupon-content p {
    color: rgba(255,255,255,0.7);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.coupon-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coupon-features li {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coupon-features li i.text-success {
    color: #10b981 !important;
}

.btn-outline-dark { /* ensure the print button is readable in dark section */
    border-color: rgba(255,255,255,0.2);
    color: var(--white);
}

.btn-outline-dark:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
}

/* ── 13. Content Sections — Alternating ── */
.content-alt {
    padding: 96px 0;
}

.content-alt:nth-child(even) { background: var(--off-white); }
.content-alt:nth-child(odd) { background: var(--white); }

.content-img {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.content-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.content-img:hover img { transform: scale(1.05); }

/* ── 14. FAQ ── */
.faq-section {
    background: var(--off-white);
    padding: 96px 0;
}

.faq-accordion .accordion-item {
    background: var(--white) !important;
    border: 1px solid var(--gray-200) !important;
    border-radius: var(--r-md) !important;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all var(--dur) var(--ease);
    box-shadow: var(--shadow-card);
}

.faq-accordion .accordion-item:hover {
    border-color: var(--blue-400) !important;
    box-shadow: var(--shadow-hover);
}

.faq-accordion .accordion-button {
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--blue-900);
    background: transparent;
    padding: 20px 24px;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--blue-600);
    background: var(--blue-50);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--blue-400);
    width: auto; height: auto;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }

.faq-accordion .accordion-body {
    padding: 0 24px 20px;
    color: var(--gray-500);
    font-size: 0.94rem;
    line-height: 1.8;
}

/* ── 15. CTA Section ── */
.cta-sec {
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 50%, #061030 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 48px 48px;
}

.cta-sec-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.12), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-sec-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.cta-sec-title em { font-style: normal; color: var(--cyan-light); }
.cta-sec-sub { color: rgba(255,255,255,0.5); max-width: 520px; margin: 0 auto; }
.cta-sec-note { color: rgba(255,255,255,0.3); font-size: 0.78rem; margin-top: 20px; }

/* ── 16. Contact ── */
.contact-section { background: var(--white); padding: 96px 0; }

.contact-card-new {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    padding: 32px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: var(--r-md);
    margin-bottom: 8px;
    transition: all 0.25s;
}

.contact-item:hover {
    background: var(--blue-50);
    transform: translateX(4px);
}

.ci-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--blue-600);
    color: #fff;
    font-size: 1rem;
}

.ci-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
    margin-bottom: 2px;
}

.ci-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--blue-900);
}

.ci-value a { color: inherit; transition: color 0.2s; }
.ci-value a:hover { color: var(--blue-600); }

.form-wrap-new {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--r-lg);
    padding: 36px;
    height: 100%;
}

.form-wrap-new h3 {
    font-size: 1.3rem;
    color: var(--blue-900);
    margin-bottom: 20px;
}

/* ── 17. Footer ── */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.45);
    padding-top: 72px;
    padding-bottom: 28px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-brand-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-600), var(--cyan));
    border-radius: 2px;
    margin-bottom: 16px;
}

.footer-h { font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-p { font-size: 0.87rem; line-height: 1.8; }

.footer-links { padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.45); transition: all 0.25s; }
.footer-links a:hover { color: var(--cyan-light); padding-left: 6px; }

.footer-socials { display: flex; gap: 8px; margin-top: 16px; }

.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    transition: all 0.25s;
}

.footer-socials a:hover { background: var(--blue-600); color: #fff; transform: translateY(-3px); }

.footer-contact-list { padding: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; margin-bottom: 10px; }
.footer-contact-list li i { color: var(--cyan); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-contact-list a:hover { color: #fff; }

.footer-divider { border-color: rgba(255,255,255,0.05); margin: 0; }

.footer-areas {
    font-size: 0.7rem;
    line-height: 1.8;
    padding: 28px 0;
    text-align: justify;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    margin-bottom: 20px;
}

.footer-bottom { text-align: center; font-size: 0.75rem; }

/* ── 18. Reveal Animations ── */
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

/* ── 19. Responsive ── */
@media (max-width: 991.98px) {
    .hero-right { display: none; }
    .hero-accent-line { display: none; }
    .hero-content-wrap { padding: 120px 0 80px; }
    .hero-stats-strip { grid-template-columns: repeat(2, 1fr); }
    .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .nav-links, .nav-phone-btn { display: none; }
    .nav-toggler { display: block; }
    .coupon-card { flex-direction: column; padding: 36px; gap: 32px; }
    .coupon-img-box { width: 100%; }
}

@media (max-width: 767.98px) {
    .hero-h1 { font-size: 2.2rem; }
    .hero-stats-strip { grid-template-columns: repeat(2, 1fr); }
    .trust-bar-inner { grid-template-columns: 1fr 1fr; }
    .section-pad { padding: 64px 0; }
    .services-section, .process-section, .why-section,
    .coupon-section, .content-alt, .faq-section,
    .cta-sec, .contact-section { padding: 64px 0; }
    .why-img-wrap img { height: 320px; }
    .content-img img { height: 280px; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { width: 100%; justify-content: center; }
}

@media (max-width: 575.98px) {
    .hero-h1 { font-size: 1.9rem; }
    .trust-bar-inner { grid-template-columns: 1fr; }
    .hero-stats-strip { grid-template-columns: 1fr 1fr; }
    .nav-inner { padding: 14px 16px; }
    .hstat-val { font-size: 1.5rem; }
}