/* ============================================================
   Design tokens
   ============================================================ */
:root {
    --purple:      #34007c;
    --purple-dark: #25005a;
    --teal:        #1497ab;
    --teal-dark:   #0f7a8a;
    --white-dark:  #ebebeb;
    --navy:       #0d1c2e;
    --navy-mid:   #162437;
    --text:       #111827;
    --text-muted: #4b5563;
    --bg:         #ffffff;
    --bg-alt:     #f4f7fb;
    --border:     #e2e8f0;

    --radius:     8px;
    --radius-lg:  14px;
    --shadow-sm:  0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
    --shadow-md:  0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:  0 12px 40px rgba(0,0,0,.15);

    --topbar-h:   104px;
    --max-w:      1200px;
    --max-narrow: 860px;
}

/* ============================================================
   Skip link
   ============================================================ */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--purple);
    color: #fff;
    font-weight: 600;
    font-size: .94rem;
    border-radius: 0 0 var(--radius) 0;
    text-decoration: none;
    transition: top .15s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   Focus styles
   ============================================================ */
:focus-visible {
    outline: 3px solid var(--purple);
    outline-offset: 3px;
    border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* ============================================================
   Reset / base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-dark); }

ul { list-style: none; }

h2, h3, h4 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -.3px;
    color: var(--text);
}

h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); }
h4 { font-size: .875rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: .94rem;
    font-weight: 600;
    letter-spacing: .1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--purple);
    color: #fff;
    border-color: var(--purple);
}
.btn-primary:hover {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    color: #fff;
}

.btn-outline {
    background: #fff;
    color: var(--purple);
    border-color: var(--purple);
}
.btn-outline:hover {
    background: var(--white-dark);
    border-color: var(--purple);
    color: var(--purple);
}

.btn-secondary {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}
.btn-secondary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: #fff;
}

/* ============================================================
   Header (single white bar: logo left, actions + nav right)
   ============================================================ */
#topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--teal);
}

.topbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
    height: var(--topbar-h);
}

.topbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.topbar-logo img { height: 96px; width: auto; }

/* Nav tabs */
.topbar-nav ul {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.topbar-nav ul li a {
    display: block;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: .97rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: all .18s;
    white-space: nowrap;
}
.topbar-nav ul li a:hover { color: var(--teal); background: var(--bg-alt); }
.topbar-nav ul li a.active { color: var(--purple); font-weight: 700; }

.nav-tab-cta {
    background: var(--purple) !important;
    color: #fff !important;
    padding: 5px 14px !important;
}
.nav-tab-cta:hover { background: var(--purple-dark) !important; color: #fff !important; }

/* Hamburger (mobile only) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav-links {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 20px 20px;
    box-shadow: var(--shadow-md);
    gap: 2px;
    list-style: none;
}
.nav-links.open { display: flex; }
.nav-links li a {
    display: block;
    padding: 11px 14px;
    border-radius: 6px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: all .18s;
}
.nav-links li a:hover { color: var(--teal); background: var(--bg-alt); }

/* Mobile: hide right-side nav, show hamburger */
@media (max-width: 900px) {
    .topbar-nav { display: none; }
    .nav-toggle { display: flex; }
    .topbar-logo img { height: 60px; }
}
@media (max-width: 480px) {
    .topbar-logo img { height: 48px; }
    .topbar-container { padding: 0 16px; }
}

/* ============================================================
   Hero
   ============================================================ */
#hero {
    position: relative;
    min-height: 56vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--topbar-h) + 56px) 24px 64px;
    background:
        linear-gradient(rgba(10,20,40,.72), rgba(8,16,32,.82)),
        url('../img/van2.webp') center 30%/cover no-repeat;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 16px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    padding: 5px 14px;
    border-radius: 20px;
}

.hero-content h1 {
    font-size: clamp(1.9rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(.9rem, 2vw, 1.1rem);
    color: #fff;
    margin-bottom: 36px;
    font-weight: 600;
    line-height: 1.6;
}

.hero-br { display: none; }
@media (min-width: 600px) { .hero-br { display: inline; } }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ============================================================
   Stats strip
   ============================================================ */
.stats-strip {
    background: var(--purple);
    padding: 36px 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    .stat-item + .stat-item {
        border-left: 1px solid rgba(255,255,255,.18);
    }
}

.stat-number {
    display: block;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.4px;
}

.stat-label {
    display: block;
    font-size: .8rem;
    color: rgba(255,255,255,.6);
    margin-top: 5px;
    font-weight: 400;
}

/* ============================================================
   Section scaffolding
   ============================================================ */
section { padding: 80px 24px; }

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

.section-container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-container--narrow { max-width: var(--max-narrow); }

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-rule {
    width: 44px;
    height: 4px;
    background: var(--teal);
    border-radius: 2px;
    margin: 14px auto 0;
}

.section-intro {
    margin-top: 16px;
    font-size: 1rem;
    color: var(--text-muted);
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .about-grid { grid-template-columns: repeat(3, 1fr); }
}

.about-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s, transform .25s;
}

.about-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.about-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(20,151,171,.12) 0%, rgba(52,0,124,.08) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.about-icon svg { width: 24px; height: 24px; stroke: var(--teal); }
.about-card h3 { margin-bottom: 10px; }

/* ============================================================
   Services
   ============================================================ */
.services-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 768px) {
    .services-layout { grid-template-columns: 1fr 1fr; }
}

.services-img-wrap img {
    width: 115%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.services-list-wrap h3 { margin-bottom: 22px; }

.services-list { display: grid; gap: 10px; }

.services-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .97rem;
    font-weight: 500;
    color: var(--text);
    background: var(--bg);
    padding: 13px 18px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.services-list li svg {
    width: 17px;
    height: 17px;
    stroke: var(--teal);
    flex-shrink: 0;
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery-preview-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.preview {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0a0a0a;
    cursor: zoom-in;
    border: none;
    padding: 0;
    display: block;
}

.preview img {
    width: 100%;
    height: clamp(240px, 40vw, 420px);
    object-fit: contain;
    display: block;
    transition: opacity .2s;
}

.gallery-chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all .18s;
    box-shadow: var(--shadow-sm);
}
.gallery-chevron:hover {
    background: var(--purple);
    border-color: var(--purple);
}
.gallery-chevron svg { width: 19px; height: 19px; stroke: var(--text); transition: stroke .18s; }
.gallery-chevron:hover svg { stroke: #fff; }

.thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery-thumb-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    border-radius: 8px;
    outline: 3px solid transparent;
    outline-offset: 2px;
    transition: outline-color .18s;
}
.gallery-thumb-btn.active-thumb { outline-color: var(--purple); }
.gallery-thumb-btn:hover .gallery-thumb { opacity: .9; }

.gallery-thumb {
    height: 76px;
    width: auto;
    border-radius: 8px;
    opacity: .62;
    transition: opacity .18s;
    object-fit: cover;
    display: block;
}
.gallery-thumb-btn.active-thumb .gallery-thumb { opacity: 1; }

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0,0,0,.88);
    align-items: center;
    justify-content: center;
    padding: 24px;
    cursor: zoom-out;
}

.lightbox.open { display: flex; }

.lightbox-img-wrap {
    position: relative;
    max-width: min(90vw, 1200px);
    max-height: 90vh;
    cursor: default;
}

.lightbox-img-wrap img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 24px 80px rgba(0,0,0,.6);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 36px;
    height: 36px;
    background: var(--bg);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: background .18s;
}
.lightbox-close:hover { background: var(--purple); }
.lightbox-close svg { width: 18px; height: 18px; stroke: var(--text); transition: stroke .18s; }
.lightbox-close:hover svg { stroke: #fff; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .18s;
}
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox-prev svg,
.lightbox-next svg { width: 20px; height: 20px; stroke: #fff; }

@media (max-width: 640px) {
    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 580px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, rgba(20,151,171,.12) 0%, rgba(52,0,124,.08) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.contact-icon svg { width: 26px; height: 26px; stroke: var(--teal); }

.contact-card h3 { margin-bottom: 12px; }
.contact-card h4 {
    margin: 16px 0 4px;
    color: var(--text-muted);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .9px;
}
.contact-card p { margin-bottom: 2px; }
.contact-card a { color: var(--teal); }
.contact-card a:hover { color: var(--teal-dark); }

.card-rule {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

/* ============================================================
   Payment
   ============================================================ */
.payment-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.payment-icon {
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, rgba(20,151,171,.12) 0%, rgba(52,0,124,.08) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.payment-icon svg { width: 28px; height: 28px; stroke: var(--teal); }

.payment-content p { margin-bottom: 32px; }

.payment-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
    background: var(--navy);
    padding: 60px 24px 0;
}

.footer-container {
    max-width: var(--max-w);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

@media (min-width: 580px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.footer-col h4 {
    color: #fff;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col p { font-size: .875rem; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.footer-col ul { display: grid; gap: 8px; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.55); }
.footer-col a:hover { color: #fff; }

.footer-bar {
    padding: 20px 0;
    text-align: center;
}
.footer-bar p { font-size: .8rem; color: rgba(255,255,255,.3); }

/* ============================================================
   Mobile CTA bar
   ============================================================ */
.mobile-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 199;
    background: var(--purple);
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    color: #fff;
    font-weight: 700;
    font-size: .93rem;
    letter-spacing: .2px;
}
.mobile-cta a:hover { color: rgba(255,255,255,.88); }

@media (min-width: 768px) { .mobile-cta { display: none; } }
@media (max-width: 767px) { body { padding-bottom: 54px; } }
