/* ===================================================
   CHADSARTIN.COM CLONE – MAIN STYLESHEET
   Colors: #0047ff (blue accent), #0a0a0f (dark bg)
   =================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
    --blue: #0047ff;
    --blue-light: #3a6fff;
    --blue-glow: rgba(0, 71, 255, 0.25);
    --blue-glow-strong: rgba(0, 71, 255, 0.5);
    --dark: #000000;
    --dark-2: #0e0e1a;
    --dark-3: #13131f;
    --dark-card: #141424;
    --dark-border: rgba(255,255,255,0.08);
    --white: #ffffff;
    --white-80: rgba(255,255,255,0.8);
    --white-50: rgba(255,255,255,0.5);
    --white-20: rgba(255,255,255,0.2);
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Syne', sans-serif;
    --nav-height: 80px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: var(--transition);
    background: rgba(5, 5, 18, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo-chad { color: var(--white); }
.logo-sartin { color: var(--blue); }
.logo-dot { color: var(--blue); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white-80);
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--blue);
    background: transparent;
}

.nav-links .nav-cta {
    color: var(--white-80);
    font-weight: 500;
}
.nav-links .nav-cta:hover {
    color: var(--white);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10001;
    position: relative;
}
.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── MOBILE: hide the top bar items by default ──────── */
.nav-mobile-top { display: none; }

@keyframes navFadeDown {
    from { opacity: 0; transform: translateY(-18px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── MOBILE BREAKPOINT ──────────────────────────────── */
@media (max-width: 900px) {

    .nav-hamburger {
        display: flex;
    }

    /* Full-screen blue overlay — hidden by default */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        z-index: 10000;
        background: #0047ff !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 0;
        list-style: none;
        margin: 0;
    }

    .nav-links.open {
        display: flex;
    }

    /* Mobile-only top bar (avatar + close btn) */
    .nav-mobile-top {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 5.25rem 1.5rem;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .nav-mob-avatar {
        display: flex;
        align-items: center;
        opacity: 0.9;
    }

    /* White square close button */
    .nav-mob-close {
        background: #fff;
        border: none;
        color: #0a0a0f;
        font-size: 1.3rem;
        font-weight: 700;
        width: 48px;
        height: 48px;
        border-radius: 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        transition: opacity 0.2s;
        flex-shrink: 0;
    }
    .nav-mob-close:hover { opacity: 0.85; }

    /* Nav link items */
    .nav-links li {
        width: 100%;
        text-align: center;
    }

    /* Override any inherited anchor color from desktop */
    .nav-links li a,
    .nav-links li a.active,
    .nav-links li a:hover,
    .nav-links .nav-cta {
        display: block;
        font-family: var(--font-heading);
        font-size: clamp(1.5rem, 5vw, 2rem);
        font-weight: 500;
        color: rgba(255,255,255,0.9) !important;
        padding: 0.85rem 2rem;
        border-radius: 0;
        letter-spacing: 0.01em;
        background: transparent;
        transition: background 0.2s ease;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: #fff !important;
        background: rgba(255,255,255,0.1);
    }

    /* Staggered fade-down for each menu item */
    .nav-links.open li {
        animation: navFadeDown 0.4s ease both;
    }
    .nav-links.open li:nth-child(1) { animation-delay: 0.05s; }
    .nav-links.open li:nth-child(2) { animation-delay: 0.10s; }
    .nav-links.open li:nth-child(3) { animation-delay: 0.15s; }
    .nav-links.open li:nth-child(4) { animation-delay: 0.20s; }
    .nav-links.open li:nth-child(5) { animation-delay: 0.25s; }
    .nav-links.open li:nth-child(6) { animation-delay: 0.30s; }
    .nav-links.open li:nth-child(7) { animation-delay: 0.35s; }
    .nav-links.open li:nth-child(8) { animation-delay: 0.40s; }
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: calc(var(--nav-height) + 2rem) 2rem 5rem;
}

/* Background image variant */
.hero-bg-img {
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay on top of the image */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 18, 0.62);
    z-index: 1;
}

/* Legacy gradient (kept for non-image fallback) */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,71,255,0.2) 0%, transparent 70%),
                var(--dark);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,71,255,0.15);
    border: 1px solid rgba(0,71,255,0.4);
    color: #6fa3ff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--blue);
    animation: pulse-dot 2s infinite;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    line-height: 1.12;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.9s ease 0.2s both;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--blue) 0%, #6fa3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    margin: 0 auto 2rem;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.6s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 24px var(--blue-glow);
}
.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px var(--blue-glow-strong);
}

/* Pill / arrow variant used in the hero */
.btn-arrow {
    border-radius: 100px;
    padding: 0.75rem 2.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}
.btn-arrow:hover {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 8px 32px rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--dark-border);
    cursor: pointer;
    transition: var(--transition);
}
.btn-secondary:hover {
    border-color: rgba(0,71,255,0.5);
    background: rgba(0,71,255,0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    animation: fadeInUp 0.9s ease 0.8s both;
}

.hero-stat h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}
.hero-stat p {
    font-size: 0.85rem;
    color: var(--white-50);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--white-50);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeIn 1s ease 1.2s both;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

/* ===================================================
   SECTIONS – COMMON
   =================================================== */
section { padding: 6rem 2rem; }

.section-container { max-width: 1200px; margin: 0 auto; }

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--white-80);
    max-width: 580px;
    line-height: 1.8;
}

/* ===================================================
   WHO WE ARE
   =================================================== */
.who-section {
    background: #f5f7fa url('/images/who-dots-bg.png') no-repeat right top;
    background-size: 55%;
    padding: 4rem 2rem;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ---- Left: image collage ---- */
.who-image-col {
    position: relative;
}

.who-collage {
    position: relative;
    height: 500px;
}

/* Left card – sits higher */
.who-card-tall {
    position: absolute;
    top: 0;
    left: 0;
    width: 48%;
    height: 82%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.who-card-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right card – sits lower, same size */
.who-card-short {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48%;
    height: 82%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.who-card-short img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Circular experience badge */
.who-exp-badge {
    position: absolute;
    bottom: 18%;
    left: 48%;
    transform: translateX(-50%);
    width: 118px;
    height: 118px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.14);
    z-index: 10;
}
.who-exp-num {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--blue);
    line-height: 1;
}
.who-exp-label {
    font-size: 0.63rem;
    color: #555;
    text-align: center;
    line-height: 1.4;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---- Right: text content ---- */
.who-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #0a0a1a;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
}

.who-desc {
    font-size: 0.97rem;
    color: #444;
    line-height: 1.85;
    margin-bottom: 1.75rem;
    max-width: 520px;
}

/* Checklist */
.who-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 0.5rem;
}
.who-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.who-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}
.who-checklist li span {
    font-size: 0.95rem;
    color: #1a1a2e;
    line-height: 1.55;
}

/* Legacy selectors kept for compatibility */
.who-list { display: flex; flex-direction: column; gap: 1rem; }
.who-item { display: flex; align-items: flex-start; gap: 1rem; }
.who-icon { width: 36px; height: 36px; flex-shrink: 0; }
.who-item p { font-size: 0.95rem; color: var(--white-80); }
.who-image { position: relative; }
.who-image-inner { border-radius: var(--radius-lg); overflow: hidden; }
.who-image-inner img { width: 100%; height: 480px; object-fit: cover; }
.who-badge {
    position: absolute;
    bottom: -1rem; left: -1.5rem;
    background: var(--blue);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
}
.who-badge h3 { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; }
.who-badge p { font-size: 0.75rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.08em; }


/* ===================================================
   VISION SECTION
   =================================================== */
.vision-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 0;
}

/* full-bleed background image */
.vision-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* dark overlay */
.vision-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 6, 20, 0.82);
    z-index: 1;
}

/* two-column grid */
.vision-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-end;
}

/* ---- left: text ---- */
.vision-text {
    color: var(--white);
    padding-bottom: 5rem;
    align-self: center;
}

.vision-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.vision-bold {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.vision-body {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 440px;
}

/* legacy (keep for compat) */
.vision-inner { text-align: center; max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }
.vision-quote { font-family: var(--font-heading); font-size: clamp(1.6rem,3.5vw,2.5rem); font-weight: 700; line-height: 1.4; color: var(--white); margin-bottom: 2rem; }
.vision-quote em { font-style: normal; color: var(--blue); }

/* ---- right: person + floating cards ---- */
.vision-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.vision-person {
    position: relative;
    display: inline-block;
}

.vision-person-img {
    height: 440px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* floating glass cards */
.vision-float {
    position: absolute;
    background: rgba(255,255,255,0.95);
    border-radius: 14px;
    padding: 0.65rem 0.9rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: float 4s ease-in-out infinite;
}

.vision-float--top {
    top: 0;
    right: -2.5rem;
    animation-delay: 0s;
}

.vision-float--bl {
    bottom: 3.5rem;
    left: -2.5rem;
    animation-delay: 1s;
}

.vision-float--br {
    bottom: 0.5rem;
    right: -2rem;
    animation-delay: 2s;
}

.vf-icon { font-size: 1.3rem; flex-shrink: 0; }

.vf-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    margin-bottom: 4px;
}

.vf-bar-row {
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.vf-bar {
    display: inline-block;
    width: 10px;
    height: 12px;
    border-radius: 2px;
}
.vf-bar--tall { height: 22px; }
.vf-bar--blue { background: var(--blue); }
.vf-bar--green { background: #22c55e; }
.vf-bar--light { background: #cbd5e1; }

/* responsive */
@media (max-width: 768px) {
    .vision-grid {
        grid-template-columns: 1fr;
        align-items: center;
    }
    .vision-text {
        text-align: center;
        padding-bottom: 1rem;
        align-self: auto;
    }
    .vision-body { max-width: 100%; }
    .vision-right {
        display: flex;
        justify-content: center;
    }
    .vision-person-img {
        height: 320px;
    }
}


/* ===================================================
   TESTIMONIALS STRIP
   =================================================== */
.testi-section {
    position: relative;
    overflow: hidden;
    padding: 3rem 2rem;
}

/* Faded background group photo */
.testi-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    
}

/* Centered content container */
.testi-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

/* Large blue opening quote mark */
.testi-quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--blue);
    margin-bottom: -0.5rem;
    user-select: none;
}

/* Heading */
.testi-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #1a1a2e;
    margin-bottom: 2.5rem;
}
.testi-blue { color: var(--blue); }

/* ---- Carousel ---- */
.testi-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

/* Slide area */
.testi-slides {
    flex: 1;
    min-height: 140px;
    position: relative;
}

.testi-slide {
    display: none;
    animation: testi-fade 0.4s ease;
}
.testi-slide.active { display: block; }

@keyframes testi-fade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.testi-slide-text {
    font-size: 0.97rem;
    color: #333;
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.testi-slide-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--blue);
}

/* Arrows */
.testi-arrow {
    background: none;
    border: none;
    font-size: 2rem;
    color: #bbb;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0 0.5rem;
    line-height: 1;
    flex-shrink: 0;
}
.testi-arrow:hover { color: var(--blue); }
.testi-arrow--prev { transform: scaleX(-1); }

/* Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.75rem;
}
.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.testi-dot.active {
    background: var(--blue);
    transform: scale(1.3);
}

/* Legacy card classes kept for compat */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); padding: 2rem; }
.testi-stars { color: var(--blue); font-size: 1.1rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.97rem; color: var(--white-80); font-style: italic; line-height: 1.8; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-light)); display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--white); }
.testi-author-name { font-weight: 600; font-size: 0.95rem; }
.testi-author-loc { font-size: 0.8rem; color: var(--white-50); }


/* ===================================================
   SERVICES / OFFERS
   =================================================== */
.offers-section {
    background: #fff;
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem;
}

/* Decorative hollow circles */
.offers-deco {
    position: absolute;
    border-radius: 50%;
    border: 60px solid rgba(0, 71, 255, 0.06);
    pointer-events: none;
}
.offers-deco--tl {
    width: 380px;
    height: 380px;
    top: -140px;
    left: -120px;
}
.offers-deco--br {
    width: 320px;
    height: 320px;
    bottom: -130px;
    right: -100px;
}

/* Header */
.offers-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}
.offers-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}
.offers-blue { color: var(--blue); }
.offers-sub {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
}

/* Two-card grid centered */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Card */
.offer-card {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

/* Image area */
.offer-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.offer-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Body below image */
.offer-body {
    padding: 1.5rem;
    text-align: center;
}
.offer-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.1rem;
    line-height: 1.4;
}

/* Blue pill button */
.offer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--blue);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    letter-spacing: 0;
    transition: background 0.3s, letter-spacing 0.35s ease, gap 0.35s ease;
    width: 100%;
    justify-content: center;
}
.offer-btn:hover {
    background: var(--blue);
    letter-spacing: 0.08em;
    gap: 0.75rem;
}

/* Legacy compat */
.offer-icon { display: none; }
.offer-card h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 0.75rem; }
.offer-card p { color: var(--white-80); font-size: 0.95rem; margin-bottom: 1.75rem; }

/* Responsive */
@media (max-width: 600px) {
    .offers-grid { grid-template-columns: 1fr; max-width: 360px; }
}


/* ===================================================
   NEWSLETTER
   =================================================== */
.newsletter-section {
    background: linear-gradient(135deg, rgba(0,71,255,0.08) 0%, var(--dark) 50%, rgba(0,71,255,0.05) 100%);
    border-top: 1px solid var(--dark-border);
}

/* ===================================================
   NEWSLETTER
   =================================================== */
.newsletter-section {
    background: #f5f7fa;
    padding: 4rem 0.2rem;
    position: relative;
    overflow: hidden;
}

/* Floating Dark Card */
/* Floating Dark Card Container */
.newsletter-card {
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
    /* No overflow hidden here so the person can pop out */
}

/* Clipped Background Wrapper */
.newsletter-bg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    z-index: 0;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Full-bleed BG image inside card */
.newsletter-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: 0;
}
.newsletter-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    z-index: 1;
}

/* Content Wrapper */
.newsletter-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 420px;
    padding-left: 4rem;
}

/* Left Text */
.newsletter-text {
    flex: 1;
    max-width: 550px;
    padding-right: 1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.newsletter-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.newsletter-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 420px;
}

/* Form */
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 440px;
}
.newsletter-form input {
    flex: 1;
    background: #fff;
    border: none;
    padding: 0.9rem 1.25rem;
    border-radius: 50px;
    font-size: 0.95rem;
    color: #333;
    outline: none;
}
.newsletter-form input::placeholder { color: #999; }

.newsletter-btn {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-btn:hover { background: var(--blue-light); }

/* Right Image Column */
/* Right Image Column */
.newsletter-img-col {
    width: 500px;
    height: 580px;
    position: relative;
    display: flex;
    align-items: flex-end;
    margin-top: -120px; /* pull image up to overlap TOP */
    pointer-events: none;
    z-index: 3;
    margin-right: -20px;
}
.newsletter-person {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

/* Responsive */
@media (max-width: 900px) {
    .newsletter-content {
        flex-direction: column;
        padding: 4rem 2rem 0;
        text-align: center;
    }
    .newsletter-overlay { background: rgba(0,0,0,0.85); }
    .newsletter-text { padding: 0; margin-bottom: 2rem; }
    .newsletter-desc { margin: 0 auto 2rem; }
    .newsletter-form { margin: 0 auto; }
    .newsletter-img-col {
        width: 100%;
        height: 350px;
        margin-top: 0;
        justify-content: center;
    }
    .newsletter-person { width: auto; max-width: 100%; }
}


/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
    height: 150px;
    background: #000 url('/images/page-header.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    margin-top: var(--nav-height); /* Clear fixed navbar */
}

/* Dark Overlay */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(0.5rem, 5vw, 2rem);
    letter-spacing: -1.5px;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--white-80);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-story {
    background: #fff;
    padding: 6rem 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Text */
.about-text {
    padding-right: 1rem;
}
.about-text .section-title {
    color: #000;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}
.about-text p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Right Image Column (Blue Block) */
.about-img-col {
    position: relative;
    height: 500px; /* Adjust height as needed */
    background: var(--blue);
    border-radius: 0; /* Reference shows sharp or maybe slight radius, assuming sharp for full block feel */
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-person {
    width: 85%;
    max-height: 90%;
    object-fit: cover;
    object-position: bottom;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.about-person:hover {
    filter: grayscale(0%);
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-img-col { height: 400px; }
}

/* ===================================================
   MISSION SECTION
   =================================================== */
.mission-section {
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
    background: #000;
}

/* Full Bleed Background */
.mission-bg-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.mission-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.mission-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0,0,0,0.6) 0%, #000 100%);
}

/* Glass Card */
.mission-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.mission-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.mission-sub {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.mission-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.mission-btn {
    padding: 0.8rem 2.5rem;
    font-size: 0.95rem;
}
/* ===================================================
   BOOK ONLINE PAGE
   =================================================== */
.book-section { background: var(--dark-2); }

.book-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.book-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.book-card.featured {
    border-color: rgba(0,71,255,0.5);
    box-shadow: 0 0 40px rgba(0,71,255,0.12);
}
.book-card .featured-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--blue);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
}
.book-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,71,255,0.15);
}

.book-duration {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--blue);
    line-height: 1;
}
.book-duration span { font-size: 1.25rem; font-weight: 400; color: var(--white-80); }
.book-card h3 { font-size: 1.3rem; font-weight: 700; margin: 0.75rem 0; }
.book-card p { color: var(--white-80); font-size: 0.95rem; margin-bottom: 2rem; }

/* ===================================================
   DIGITAL GUIDES
   =================================================== */
.guides-section { background: var(--dark-2); }

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.guide-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.guide-card:hover {
    border-color: rgba(0,71,255,0.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,71,255,0.12);
}

.guide-thumb {
    height: 180px;
    background: linear-gradient(135deg, var(--dark-3), rgba(0,71,255,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}
.guide-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--dark-card));
}

.guide-body { padding: 1.5rem; }
.guide-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(0,71,255,0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 0.75rem;
}
.guide-body h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.guide-body p { font-size: 0.9rem; color: var(--white-80); }

/* ===================================================
   ARCULUS PAGE
   =================================================== */
.arculus-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 3rem) 2rem 4rem;
    background: linear-gradient(135deg, #050510 0%, #090918 50%, #040412 100%);
    position: relative;
    overflow: hidden;
}
.arculus-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,71,255,0.2) 0%, transparent 70%);
}

.arculus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.arculus-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.arc-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.arc-icon {
    width: 40px; height: 40px;
    background: rgba(0,71,255,0.15);
    border: 1px solid rgba(0,71,255,0.3);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.arc-feature h4 { font-weight: 600; margin-bottom: 0.2rem; }
.arc-feature p { font-size: 0.9rem; color: var(--white-80); }

.arculus-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arc-card-visual {
    width: 320px; height: 420px;
    background: linear-gradient(145deg, #1a1a3a, #0d0d25);
    border: 1px solid rgba(0,71,255,0.4);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 0 80px rgba(0,71,255,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
    animation: float 4s ease-in-out infinite;
}
.arc-logo-big { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; color: var(--blue); letter-spacing: 4px; }
.arc-chip {
    width: 80px; height: 60px;
    background: linear-gradient(135deg, #c8a84b, #f0d060, #c8a84b);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(200,168,75,0.3);
}
.arc-nfc { font-size: 0.8rem; color: var(--white-50); letter-spacing: 0.1em; text-transform: uppercase; }

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-section { background: var(--dark-2); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.contact-info p { color: var(--white-80); margin-bottom: 2rem; }

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    transition: var(--transition);
}
.contact-detail:hover { border-color: rgba(0,71,255,0.4); }
.contact-detail-icon {
    width: 40px; height: 40px;
    background: rgba(0,71,255,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-detail p { font-size: 0.85rem; color: var(--white-50); }
.contact-detail a { color: var(--blue); font-weight: 600; }

.contact-form-wrap {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.contact-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-80);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--dark-3);
    border: 1px solid var(--dark-border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius);
    outline: none;
    transition: var(--transition);
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-50); }
.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(0,71,255,0.6);
    box-shadow: 0 0 0 3px rgba(0,71,255,0.1);
}

.form-error {
    color: #ff5b5b;
    font-size: 0.82rem;
    margin-top: 0.35rem;
}

.alert-success {
    background: rgba(0,71,255,0.12);
    border: 1px solid rgba(0,71,255,0.4);
    color: #6fa3ff;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ===================================================
   CTA STRIP
   =================================================== */
.cta-strip {
    background: var(--blue);
    padding: 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.cta-strip h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    position: relative;
}
.cta-strip p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 2rem;
    position: relative;
}
.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--blue);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    padding: 0.9rem 2.25rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
    background: #06060f;
    border-top: 1px solid var(--dark-border);
    padding: 4rem 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--dark-border);
}

.footer-brand p {
    color: var(--white-50);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 1rem 0;
    max-width: 320px;
}

.footer-email {
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-email:hover { color: var(--blue-light); }

.footer-nav h4, .footer-connect h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white-80);
    margin-bottom: 1.25rem;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a {
    color: var(--white-50);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-nav a:hover { color: var(--blue); }

.footer-connect p {
    color: var(--white-50);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.footer-socials { display: flex; flex-direction: column; gap: 0.75rem; }
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    color: var(--white-80);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}
.social-btn:hover { border-color: rgba(0,71,255,0.5); color: var(--blue); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p { color: var(--white-50); font-size: 0.85rem; }
.footer-legal { display: flex; align-items: center; gap: 0.75rem; }
.footer-legal a { color: var(--white-50); font-size: 0.82rem; transition: var(--transition); }
.footer-legal a:hover { color: var(--blue); }
.footer-legal span { color: var(--dark-border); }

/* ===================================================
   ANIMATIONS & KEYFRAMES
   =================================================== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 4px var(--blue); }
    50%       { box-shadow: 0 0 12px var(--blue); }
}
@keyframes scroll-line {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50%       { transform: scaleY(1.5); opacity: 0.4; }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
    .who-grid, .about-grid, .arculus-grid { grid-template-columns: 1fr; gap: 3rem; }
    .who-image { display: none; }
    .who-text { order: 1; }
    .who-image-col { order: 2; }
    .diff-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
       
        left: 0; right: 0;
        background: rgba(10,10,15,0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 0.5rem;
        border-bottom: 1px solid var(--dark-border);
        backdrop-filter: blur(20px);
    }
    .nav-links.open { display: flex; }
    .nav-hamburger { display: flex; }

    .hero-stats { gap: 2rem; flex-wrap: wrap; }
    .testi-grid { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .book-grid { grid-template-columns: 1fr; }
    .guides-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .diff-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .arculus-grid { grid-template-columns: 1fr; }
    .who-section { background-size: 170%; }
}

/* ===================================================
   VALUE PROPOSITION SECTION (ADDED)
   =================================================== */
.value-prop-section {
    padding: 6rem 2rem;
    background: #ffffff radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 24px 24px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.value-prop-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.value-prop-header p {
    font-size: 1.15rem;
    color: #444; 
    line-height: 1.6;
    font-weight: 500;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.value-card.highlight {
    background: var(--blue);
    color: white;
    box-shadow: 0 20px 50px rgba(0, 71, 255, 0.3);
    border: none;
    transform: scale(1.05);
    z-index: 2;
}
.value-card.highlight:hover {
    transform: scale(1.05) translateY(-8px);
}

.value-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 71, 255, 0.08); /* Light blue bg */
    color: var(--blue);
    transition: var(--transition);
}

.value-card.highlight .value-icon {
    background: rgba(255,255,255,0.2);
    color: white;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0a0a0f;
    line-height: 1.3;
}

.value-card.highlight h3 {
    color: white;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
    margin-bottom: 0;
}

.value-card.highlight p {
    color: rgba(255,255,255,0.9);
}

/* Responsive */
@media (max-width: 900px) {
    .value-cards { grid-template-columns: 1fr; gap: 3rem; }
    .value-card.highlight { transform: none; }
    .value-card.highlight:hover { transform: translateY(-8px); }
}


/* ===================================================
   WHY I'M DIFFERENT SECTION
   =================================================== */
.why-different-section {
    background-color: #f5f7fa;
    background-image: url('/images/map.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 3rem 1.5rem; /* Reduced padding */
    position: relative;
    overflow: hidden;
}

.diff-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem; /* Reduced margin */
}

.diff-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem); /* Reduced font size */
    color: #0a0a0f;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.diff-header h2 span {
    color: var(--blue);
}

.diff-header p {
    color: #555;
    font-size: 0.95rem; /* Reduced font size */
    line-height: 1.6;
}

/* Three columns */
.different-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; /* Reduced gap */
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.diff-card {
    background: #fff;
    padding: 2rem 1.5rem; /* Reduced padding */
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid #313131;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Center card highlight */
.diff-card.highlight {
    background: var(--blue);
    color: #fff;
    transform: scale(1.05); /* Reduced scale */
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 71, 255, 0.3);
    border: none;
}

.diff-card.highlight:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Icons */
.diff-icon {
    width: 60px; /* Reduced icon size */
    height: 60px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #fff;
    font-size: 1.75rem;
    box-shadow: 0 8px 16px rgba(0,71,255,0.25);
}

/* Icon BG flexibility */
.diff-card.highlight .diff-icon {
    background: #fff;
    color: var(--blue);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.diff-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem; /* Reduced font size */
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0a0a0f;
}

.diff-card.highlight h3 {
    color: #fff;
}

.diff-card p {
    font-size: 0.85rem; /* Reduced font size */
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.diff-card.highlight p {
    color: rgba(255,255,255,0.9);
}

/* Responsive */
@media (max-width: 992px) {
    .different-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .diff-card.highlight {
        transform: scale(1);
    }
    
    .diff-card.highlight:hover {
        transform: translateY(-5px);
    }
}

/* ===================================================
   SERVICES SECTION (BOOKING PAGE REDESIGN)
   =================================================== */
.services-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #000;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    margin-bottom: 0; /* Clear default */
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.service-img-wrap {
    height: 240px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 3.5rem; /* Align titles */
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.service-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.service-link {
    font-size: 0.95rem;
    color: #555;
    text-decoration: underline;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--blue);
}

.service-divider {
    height: 1px;
    background: #e5e7eb;
    margin: auto 0 1.5rem 0; /* Push to bottom of flex container */
    width: 100%;
}

.service-meta {
    margin-bottom: 1.5rem;
}

.service-duration {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.25rem;
}

.service-price {
    font-size: 1.1rem;
    color: #000;
    font-weight: 600;
}

.btn-service {
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
    width: 140px;
}

.btn-service:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

/* ===================================================
   ARCULUS SPLIT HERO
   =================================================== */


.arc-split-hero {
    position: relative;
    width: 100%;
    background: #fff;                 
    padding: 2.5rem 0;             
    margin-top: var(--nav-height);
    overflow: hidden;
}


.arc-split-inner {
    position: relative;
    width: 93%;
    max-width: 1200px;
    margin: 0 auto;
    height: 380px;
    background: #ffffff;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 4px;
}


.arc-split-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: 67%;
    height: 100%;
    z-index: 0;
}

.arc-split-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}


.arc-split-card {
    position: relative;
    z-index: 2;
    background: #e8e8e8;
    width: 38%;
    max-width: 380px;
    margin: 2rem 0 2rem 2rem;        
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}


.arc-split-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #0a0a0f;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1;
}


.arc-split-desc {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Inline colored highlights */
.arc-hl-blue   { color: var(--blue); }
.arc-hl-orange { color: #e67e22; }

/* Blue CTA button */
.arc-split-btn {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.4rem;
    transition: var(--transition);
    align-self: flex-start;
    box-shadow: 0 4px 14px rgba(0,71,255,0.3);
}

.arc-split-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
    color: #0047ff;
    border: 1px solid #0047ff;
}

/* Responsive */
@media (max-width: 900px) {
    .arc-split-hero {
        padding: 1.5rem 0;
    }
    .arc-split-inner {
        flex-direction: column;
        height: auto;
        width: 96%;
    }
    .arc-split-photo {
        position: relative;
        width: 100%;
        height: 240px;
    }
    .arc-split-card {
        width: calc(100% - 2rem);
        max-width: 100%;
        margin: 0 1rem 1rem;
        padding: 2rem 1.5rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
}

/* ===================================================
   TESTIMONIALS – PHOTO CARD LAYOUT
   =================================================== */

.tpg-section {
    background: #fff;
    padding: 2rem 2rem 2rem;
}

/* 3-column grid */
.tpg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 60px; 
}
/* Card */
.tpg-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.tpg-photo-wrap {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.tpg-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(100%);
    display: block;
}

/* Card body */
.tpg-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* Blue bold name */
.tpg-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.9rem;
    letter-spacing: 0.01em;
}

/* Review text */
.tpg-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.75;
    max-width: 300px;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* Large closing quote mark */
.tpg-quote {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4.5rem;
    line-height: 1;
    color: var(--blue);
    margin-top: auto;
    user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
    .tpg-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 20px;
    }
}

/* ===================================================
   CONTACT – CLEAN LAYOUT (map background)
   =================================================== */

.ctc-section {
    position: relative;
    background: #f9f9f9 url('/images/map.png') center center / cover no-repeat;
    padding: 5rem 2rem 6rem;
    text-align: center;
    overflow: hidden;
}

/* Subtle white wash over the map so it reads as a faint texture */
.ctc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
    z-index: 0;
}

.ctc-header,
.ctc-cards {
    position: relative;
    z-index: 1;
}

/* Heading */
.ctc-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #0a0a0f;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
}

/* Orange subtitle */
.ctc-subtitle {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #0a0a0f;
    max-width: 560px;
    margin: 0 auto 3rem;
}

/* Cards row — centered, single card for now */
.ctc-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Individual card */
.ctc-card {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    min-width: 200px;
    text-decoration: none;
}

/* Blue circle icon */
.ctc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

/* "Email" label */
.ctc-card-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a0a0f;
}

/* Email link */
.ctc-card-link {
    font-size: 0.85rem;
    color: #0a0a0f;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}
.ctc-card-link:hover {
    color: var(--blue-light);
}

/* ===================================================
   GET IN TOUCH – FORM SECTION
   =================================================== */

.git-section {
    background: var(--blue);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* White rounded card */
.git-card {
    background: #fff;
    border-radius: 16px;
    padding: 3rem 3.5rem;
    width: 100%;
    max-width: 760px;
}

.git-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #0a0a0f;
    margin-bottom: 0.75rem;
}

.git-subtitle {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.git-highlight { color: var(--blue); }

/* Form layout */
.git-form { display: flex; flex-direction: column; gap: 1.25rem; }

.git-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.git-field { display: flex; flex-direction: column; gap: 0.4rem; }
.git-field--full { grid-column: 1 / -1; }

.git-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
}

.git-req { color: var(--blue); }

/* Inputs & textarea */
.git-input {
    background: #f0f2f5;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #0a0a0f;
    outline: none;
    transition: var(--transition);
    width: 100%;
}
.git-input:focus { box-shadow: 0 0 0 2px var(--blue); }

.git-textarea { resize: vertical; min-height: 120px; }

/* Blue pill submit button */
.git-submit {
    width: 100%;
    background: var(--blue);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}
.git-submit:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .git-card { padding: 2rem 1.5rem; }
    .git-row { grid-template-columns: 1fr; }
}

/* ===================================================
   FLOATING CONTACT ASSISTANT
   =================================================== */

/* Pill button — fixed bottom-right */
.fab-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0,71,255,0.4);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    user-select: none;
}
.fab-btn:hover {
    background: var(--blue-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,71,255,0.5);
}
.fab-btn.active {
    background: #0a0a0f;
}

/* Dark semi-transparent backdrop */
.fab-backdrop {
    position: fixed;
    inset: 0;
    z-index: 8900;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.fab-backdrop.open {
    opacity: 1;
    pointer-events: all;
}

/* Slide-up panel */
.fab-panel {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    z-index: 9100;
    width: 420px;
    max-width: calc(100vw - 2rem);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.fab-panel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Panel header */
.fab-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.fab-panel-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a0a0f;
}
.fab-close {
    background: none;
    border: none;
    font-size: 1rem;
    color: #888;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    transition: color 0.2s;
}
.fab-close:hover { color: #0a0a0f; }

.fab-panel-sub {
    font-size: 0.83rem;
    color: #777;
    margin-bottom: 1.4rem;
    line-height: 1.6;
}

/* Form inside panel */
.fab-form { display: flex; flex-direction: column; gap: 0.9rem; }

.fab-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
}

.fab-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.fab-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
}
.fab-field input,
.fab-field textarea {
    background: #f0f2f5;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #0a0a0f;
    outline: none;
    transition: box-shadow 0.2s;
    width: 100%;
    resize: vertical;
}
.fab-field input:focus,
.fab-field textarea:focus { box-shadow: 0 0 0 2px var(--blue); }

.fab-submit {
    background: var(--blue);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
    align-self: stretch;
    text-align: center;
}
.fab-submit:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
}

.fab-success {
    background: #e6f4ea;
    color: #1a7f37;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Mobile: full-width panel from bottom */
@media (max-width: 500px) {
    .fab-panel {
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 18px 18px 0 0;
    }
    .fab-btn {
        right: 1rem;
        bottom: 1rem;
    }
    .fab-row { grid-template-columns: 1fr; }
}

/* ===================================================
   DIGITAL GUIDES PAGE
   =================================================== */

/* Intro strip */
.dg-intro-section {
    background: #f7f8fc;
    padding: 4rem 2rem 3rem;
}
.dg-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.dg-intro-label {
    display: inline-block;
    background: rgba(0,71,255,0.08);
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.dg-intro-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #0a0a1a;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}
.dg-intro-sub {
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
}

/* Cards grid */
.dg-section {
    background: #f7f8fc;
    padding: 0 2rem 5rem;
}
.dg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual card */
.dg-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8eaf0;
    padding: 2rem 1.75rem 1.75rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.dg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,71,255,0.1);
    border-color: rgba(0,71,255,0.25);
}

/* Big faded number */
.dg-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(0,71,255,0.07);
    line-height: 1;
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    pointer-events: none;
    user-select: none;
}

/* Icon circle */
.dg-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,71,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
}

.dg-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.dg-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a0a1a;
    line-height: 1.4;
}

.dg-card-desc {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    flex: 1;
}

.dg-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    margin-top: auto;
    transition: gap 0.2s ease;
}
.dg-card-link:hover {
    gap: 0.55rem;
}

/* Responsive */
@media (max-width: 900px) {
    .dg-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
    .dg-grid { grid-template-columns: 1fr; }
    .dg-section  { padding-bottom: 3rem; }
}

/* ===================================================
   BOOKING FORM PAGE
   =================================================== */
.bk-wrapper {
    background: #fff;
    min-height: 100vh;
    padding: calc(var(--nav-height) + 2.5rem) 3rem 5rem;
    max-width: 100%;
    margin: 0 auto;
}
.bk-back {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.88rem;
    color: #555;
    margin-bottom: 1.75rem;
    transition: color 0.2s;
}
.bk-back:hover { color: #0047ff; }
.bk-page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #0a0a1a;
    letter-spacing: -0.5px;
    margin-bottom: 2.5rem;
}
/* Two-column layout */
.bk-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}
/* Left: form */
.bk-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a0a1a;
    margin-bottom: 1.5rem;
}
.bk-form { display: flex; flex-direction: column; gap: 1.1rem; }
.bk-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.bk-field { display: flex; flex-direction: column; gap: 0.35rem; }
.bk-field label { font-size: 0.82rem; color: #333; font-weight: 500; }
.bk-field input,
.bk-field textarea {
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    padding: 0.7rem 0.85rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    resize: vertical;
}
.bk-field input:focus,
.bk-field textarea:focus { border-color: #0047ff; }
/* Right: summary card */
.bk-summary {
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.75rem;
    position: sticky;
    top: calc(var(--nav-height) + 1.5rem);
}
.bk-summary-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: #0a0a1a; margin-bottom: 1rem; }
.bk-service-name { font-weight: 600; font-size: 0.95rem; color: #111; margin-bottom: 0.25rem; }
.bk-service-duration { font-size: 0.82rem; color: #777; margin-bottom: 0.85rem; }
.bk-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid #d1d5db;
    border-radius: 100px;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: #333;
}
.bk-divider { border: 0; border-top: 1px solid #e5e7eb; margin: 1.25rem 0; }
.bk-payment-title { font-weight: 700; font-size: 0.9rem; color: #0a0a1a; margin-bottom: 0.6rem; }
.bk-total-row { display: flex; justify-content: space-between; font-size: 0.92rem; color: #333; margin-bottom: 1.1rem; }
.bk-price { font-weight: 700; color: #0a0a1a; }
.bk-terms { font-size: 0.75rem; color: #999; line-height: 1.6; margin-bottom: 1.25rem; }
.bk-submit {
    width: 100%;
    background: #0047ff;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    padding: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    text-align: center;
}
.bk-submit:hover { background: #0037c7; transform: translateY(-2px); }
.bk-submit-mobile { display: none; }
.bk-success { background: #e6f4ea; color: #1a7f37; border-radius: 6px; padding: 0.85rem 1rem; margin-bottom: 1.25rem; font-size: 0.9rem; }
.bk-error { background: #fff1f0; color: #c0392b; border-radius: 6px; padding: 0.85rem 1rem; margin-bottom: 1.25rem; font-size: 0.88rem; }
.bk-error p { margin: 0.25rem 0; }
/* Responsive */
@media (max-width: 820px) {
    .bk-layout { grid-template-columns: 1fr; }
    .bk-right { order: -1; }
    .bk-summary { position: static; }
    .bk-submit:not(.bk-submit-mobile) { display: none; }
    .bk-submit-mobile { display: block; }
}
@media (max-width: 500px) {
    .bk-row { grid-template-columns: 1fr; }
}
