/* =========================================================
   DeepFresh Cleaning Services — Public Site Stylesheet
   Unified: style.css + style-additions.css
   ========================================================= */

/* ──────────────────────────────────────────
   VARIABLES
────────────────────────────────────────── */
:root {
    --blue-dark:  #1e3a8a;
    --blue-mid:   #2563eb;
    --blue-light: #dbeafe;
    --green-dark:  #16a34a;
    --green-light: #22c55e;
    --bg-light: #f0f7ff;
    --bg-grey:  #f8fafc;
    --text:      #1e293b;
    --text-muted:#64748b;
    --white:     #ffffff;
    --border:    #e2e8f0;
    --shadow:    0 2px 12px rgba(30,58,138,.10);
    --shadow-lg: 0 8px 32px rgba(30,58,138,.14);
    --radius:    10px;
    --radius-lg: 18px;

    /* ─── Elevation tiers + interaction tokens (mirrors the
       dashboard's token system so both surfaces share the same
       brand hues while keeping their own selector names) ────── */
    --surface-1: #ffffff;
    --surface-2: #f5f5f5;
    --overlay-scrim: rgba(15, 23, 42, 0.45);
    --focus-ring: var(--blue-mid);
    color-scheme: light;
}

/* ──────────────────────────────────────────
   RESET & BASE
────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-mid); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ──────────────────────────────────────────
   TYPOGRAPHY
────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--blue-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { margin-bottom: .9rem; color: var(--text-muted); }

.section-label {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue-mid);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 99px;
    margin-bottom: .75rem;
}
.section-title { margin-bottom: .5rem; }
.section-intro { font-size: 1.05rem; max-width: 620px; margin: 0 auto 2.5rem; }

/* ──────────────────────────────────────────
   BUTTONS — BASE
────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: .45rem;
    padding: .75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s ease;
    text-decoration: none;
}
.btn-primary  { background: var(--green-dark);  color: var(--white); border-color: var(--green-dark); }
.btn-primary:hover { background: var(--green-light); border-color: var(--green-light); color: var(--white); text-decoration: none; }
.btn-outline  { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue-dark); text-decoration: none; }
.btn-blue     { background: var(--blue-mid);  color: var(--white); border-color: var(--blue-mid); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); text-decoration: none; }
.btn-whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn-whatsapp:hover { background: #128c7e; border-color: #128c7e; text-decoration: none; }

.btn-pill {
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Large hero buttons */
.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .9rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    background: var(--green-dark);
    color: #ffffff;
    border: 2px solid var(--green-dark);
    transition: all .2s;
    text-decoration: none;
}
.btn-primary-lg:hover { background: var(--green-light); border-color: var(--green-light); color: #ffffff; text-decoration: none; }

.btn-outline-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: .9rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,.7);
    transition: all .2s;
    text-decoration: none;
}
.btn-outline-lg:hover { background: #ffffff; color: var(--blue-dark); border-color: #ffffff; text-decoration: none; }

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 2.25rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    background: #ffffff;
    color: var(--blue-dark);
    border: 2px solid #ffffff;
    transition: all .2s;
    text-decoration: none;
}
.btn-cta-white:hover { background: transparent; color: #ffffff; text-decoration: none; }

/* ──────────────────────────────────────────
   LAYOUT HELPERS
────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.section      { padding: 5rem 0; }
.section-alt  { background: var(--bg-light); }
.section-dark { background: var(--blue-dark); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--white); }
.text-center  { text-align: center; }

/* ──────────────────────────────────────────
   BACKGROUND IMAGE SECTIONS
   Default: image flows naturally (non-hero).
   Hero overrides below use position:absolute.
────────────────────────────────────────── */
.bg-image-section { position: relative; width: 100%; overflow: hidden; }
.bg-image-section > .bg-section-image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* ──────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────── */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 1.25rem;
    max-width: 1180px;
    margin: 0 auto;
}
.nav-logo img { height: 56px; width: auto; }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    transition: color .18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-mid); text-decoration: none; }

.nav-actions { display: flex; align-items: center; gap: .75rem; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .9rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .78rem;
    background: var(--green-dark);
    color: #ffffff;
    border: 2px solid var(--green-dark);
    transition: all .2s;
    text-decoration: none;
}
.nav-cta:hover { background: var(--green-light); border-color: var(--green-light); color: #ffffff; text-decoration: none; }

.nav-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: .4rem .9rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .78rem;
    color: var(--blue-mid);
    border: 2px solid var(--blue-mid);
    background: transparent;
    transition: all .2s;
    text-decoration: none;
}
.nav-btn-secondary:hover { background: var(--blue-mid); color: #ffffff; text-decoration: none; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .35rem;
}
.nav-hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--blue-dark);
    border-radius: 2px;
    transition: all .25s;
}

.nav-mobile-menu {
    display: none;
    background: #ffffff;
    border-top: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul { padding: .5rem 0; }
.nav-mobile-menu li a {
    display: block;
    padding: .75rem 1.5rem;
    color: var(--text);
    font-weight: 500;
    font-size: .95rem;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
}
.nav-mobile-menu li a:hover { color: var(--blue-mid); }

/* ──────────────────────────────────────────
   THEME TOGGLE
────────────────────────────────────────── */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    cursor: pointer;
    color: var(--text-muted);
    transition: border-color .18s, color .18s, background .18s;
    flex-shrink: 0;
    padding: 0;
    line-height: 0;
}
.theme-toggle:hover { border-color: var(--blue-mid); color: var(--blue-mid); }
.theme-toggle svg { pointer-events: none; }
.theme-icon-sun  { display: none; }
.theme-icon-moon { display: block; }

.nav-mobile-theme {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.5rem;
    border-top: 1px solid var(--border);
    font-size: .93rem;
    font-weight: 500;
    color: var(--text);
}

/* ──────────────────────────────────────────
   HERO SECTION
   Image covers the section (position:absolute).
   Section height is controlled by min-height.
────────────────────────────────────────── */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background-color: var(--blue-dark);
    min-height: calc(870px * 7 / 8); /* 870px minus 1/8 of itself = ~761px — desktop / large screens */
}

/* Hero image fills section, no longer pushes height */
.hero-section .bg-section-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 59, 138, 0.713) 0%, rgba(22,163,74,.5) 100%);
    pointer-events: none;
    z-index: 1;
}
.hero-section .hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    line-height: 1.65;
    padding: 0;
}
.hero-content-inner {
    width: min(1180px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
}

.hero-badge {
    display: inline-block;
    background: var(--green-dark);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .85rem;
    border-radius: 99px;
    margin-bottom: 1.25rem;
}
.hero-title {
    color: #ffffff !important;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 1.1rem;
    line-height: 1.15;
}
.hero-subtitle {
    color: rgba(255,255,255,.87);
    font-size: 1.1rem;
    max-width: 580px;
    margin-bottom: 2rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.hero-stats {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
    width: fit-content;
}
.hs-item   { text-align: center; padding: 0 1.5rem; }
.hs-num    { display: block; font-size: 1.6rem; font-weight: 800; color: #ffffff; }
.hs-label  { display: block; font-size: .78rem; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .06em; }
.hs-divider{ width: 1px; height: 40px; background: rgba(255,255,255,.25); flex-shrink: 0; }

/* ──────────────────────────────────────────
   SCROLL INDICATOR
────────────────────────────────────────── */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    border: 2px solid rgba(255,255,255,.45);
    color: #ffffff;
    text-decoration: none;
    backdrop-filter: blur(6px);
    animation: scrollBounce 2.2s ease-in-out infinite;
    transition: background .2s, border-color .2s;
}
.scroll-indicator:hover { background: rgba(255,255,255,.28); border-color: rgba(255,255,255,.75); text-decoration: none; color: #ffffff; }
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(9px); }
}

/* ──────────────────────────────────────────
   SECTION VARIANTS
────────────────────────────────────────── */
.section-light    { padding: 5rem 0; background: #ffffff; }
.section-alt-pad  { padding: 5rem 0; background: var(--bg-light); }
.section-brand    { padding: 5rem 0; background: var(--blue-dark); }
.section-header   { text-align: center; margin-bottom: 3rem; }

.section-tag {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue-mid);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 99px;
    margin-bottom: .75rem;
}
.section-tag-light {
    display: inline-block;
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.9);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 99px;
    margin-bottom: .75rem;
}
.section-title-light { color: #ffffff !important; margin-bottom: .6rem; }
.section-title-left  { color: var(--blue-dark); margin-bottom: .6rem; text-align: left; }
.section-subtitle    { font-size: 1.05rem; max-width: 620px; margin: 0 auto; color: var(--text-muted); }
.section-cta-center  { text-align: center; margin-top: 2.5rem; }

/* ──────────────────────────────────────────
   SERVICES GRID (home page)
────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.sc-img { width: 100%; height: 210px; overflow: hidden; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; }
.sc-body { padding: 1.25rem 1.4rem 1.5rem; }
.sc-body h3 { margin-bottom: .4rem; font-size: 1.1rem; color: var(--blue-dark); }
.sc-body p  { font-size: .9rem; margin-bottom: .75rem; }
.sc-link { font-size: .88rem; font-weight: 600; color: var(--green-dark); text-decoration: none; }
.sc-link:hover { color: var(--green-light); text-decoration: none; }

/* ──────────────────────────────────────────
   FEATURES / WHY US GRID
────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.feature-item  { background: rgba(255,255,255,.08); border-radius: 18px; padding: 1.75rem 1.5rem; border: 1px solid rgba(255,255,255,.12); text-align: center; }
.fi-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.feature-item h4 { color: #ffffff !important; margin-bottom: .5rem; }
.feature-item p  { color: rgba(255,255,255,.75); margin-bottom: 0; font-size: .93rem; }

/* ──────────────────────────────────────────
   CTA SECTION (home page banner)
────────────────────────────────────────── */
.cta-section { position: relative; width: 100%; overflow: hidden; text-align: center; background-color: var(--blue-dark); min-height: 420px; }
.cta-section .bg-section-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.cta-overlay { position: absolute; inset: 0; background: rgba(30, 59, 138, 0.578); pointer-events: none; z-index: 1; }
.cta-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: clamp(1.5rem, 5vw, 4rem) 1.25rem;
}
.cta-content h2 { color: #ffffff !important; margin-bottom: .75rem; }
.cta-content p  { color: rgba(255,255,255,.83); font-size: 1.05rem; margin-bottom: 1.75rem; }

/* Legacy CTA banner (inner pages) */
.cta-banner { position: relative; overflow: hidden; background: var(--blue-dark); padding: 4.5rem 1.25rem; text-align: center; }
.cta-banner-bg { position: absolute; inset: 0; background-image: url('../images/cta-banner.png'); background-size: cover; background-position: center; opacity: .15; }
.cta-banner-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p  { color: rgba(255,255,255,.82); font-size: 1.05rem; margin-bottom: 1.75rem; }
.cta-actions   { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ──────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card  { background: #ffffff; border: 1px solid var(--border); border-radius: 18px; padding: 1.75rem 1.5rem; box-shadow: var(--shadow); }
.tc-stars  { color: #f59e0b; font-size: 1.1rem; margin-bottom: .75rem; }
.tc-text   { font-size: .95rem; color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: .85rem; }
.tc-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blue-dark); color: #ffffff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; flex-shrink: 0; }
.tc-name   { font-weight: 700; font-size: .93rem; color: var(--text); }
.tc-role   { font-size: .82rem; color: var(--text-muted); }

/* ──────────────────────────────────────────
   BOOKING STRIP
────────────────────────────────────────── */
.booking-strip { padding: 3rem 0; background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.bs-content { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.bs-text h3 { margin-bottom: .3rem; font-size: 1.3rem; }
.bs-text p  { margin-bottom: 0; }

/* ──────────────────────────────────────────
   CARDS (generic)
────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon { font-size: 2.4rem; margin-bottom: .9rem; }
.card h3 { margin-bottom: .5rem; color: var(--blue-dark); }
.card p  { margin-bottom: 0; font-size: .93rem; }

/* Service card (image + body) */
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img  { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 1.25rem 1.4rem 1.5rem; }
.service-card-body h3 { margin-bottom: .45rem; font-size: 1.1rem; }
.service-card-body p  { font-size: .9rem; margin-bottom: .75rem; }
.service-card-link { font-size: .88rem; font-weight: 600; color: var(--green-dark); }
.service-card-link:hover { color: var(--green-light); text-decoration: none; }

/* ──────────────────────────────────────────
   WHO WE SERVE
────────────────────────────────────────── */
.serve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.serve-item { display: flex; align-items: center; gap: .65rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: .85rem 1.1rem; font-weight: 500; font-size: .92rem; color: var(--text); }
.serve-item span.icon { font-size: 1.35rem; flex-shrink: 0; }

/* ──────────────────────────────────────────
   ABOUT PAGE
────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img  { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-text .section-label { margin-bottom: .75rem; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p  { margin-bottom: 1rem; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.tc-img-col img { border-radius: 18px; box-shadow: var(--shadow-lg); width: 100%; height: 500px; object-fit: cover; }

.stats-row { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem; text-align: center; }
.stat-box  { flex: 1; min-width: 140px; }
.stat-num  { display: block; font-size: 2.4rem; font-weight: 800; color: var(--blue-dark); }
.stat-label{ display: block; font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

.page-hero {
    position: relative;
    background-color: var(--blue-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 540px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7rem 1.25rem 9.5rem;
    text-align: center;
    overflow: hidden;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.page-hero p  { color: rgba(255,255,255,.9); margin-bottom: 0; max-width: 640px; margin-left: auto; margin-right: auto; font-size: 1.1rem; line-height: 1.7; text-shadow: 0 1px 4px rgba(0,0,0,.2); }
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 70px;
    background: #ffffff;
    clip-path: ellipse(58% 100% at 50% 100%);
    z-index: 4;
}
.page-hero.ph-alt-below::after { background: var(--bg-light); }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.value-card  { background: var(--white); border-left: 4px solid var(--green-dark); border-radius: var(--radius); padding: 1.5rem 1.25rem; box-shadow: var(--shadow); }
.value-card h3 { color: var(--blue-dark); margin-bottom: .4rem; font-size: 1.05rem; }
.value-card p  { font-size: .91rem; margin-bottom: 0; }

.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem; }
.mv-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 2.25rem 2rem; border: 1px solid var(--blue-light); }
.mv-card h3 { color: var(--blue-dark); margin-bottom: .75rem; display: flex; align-items: center; gap: .5rem; font-size: 1.3rem; }
.mv-card p  { margin-bottom: 0; font-size: .97rem; }

.mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.mvv-card { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 18px; padding: 2rem 1.75rem; }
.mvv-icon { font-size: 2.4rem; margin-bottom: .9rem; }
.mvv-card h3 { color: #ffffff !important; margin-bottom: .75rem; }
.mvv-card p  { color: rgba(255,255,255,.8); margin-bottom: 0; }
.mvv-list { display: flex; flex-direction: column; gap: .45rem; }
.mvv-list li { color: rgba(255,255,255,.8); font-size: .93rem; padding-left: 1.2rem; position: relative; }
.mvv-list li::before { content: "✓"; color: var(--green-light); position: absolute; left: 0; font-weight: 700; }

/* ──────────────────────────────────────────
   SERVICES PAGE
────────────────────────────────────────── */
.services-hero { background: var(--blue-dark); padding: 4rem 1.25rem; text-align: center; }
.services-hero h1, .services-hero p { color: var(--white); }
.services-hero p { margin-bottom: 0; }

.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; padding: 4rem 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse > * { direction: ltr; }
.service-detail.reverse { direction: rtl; }
.service-detail-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-detail-img img { width: 100%; height: 420px; object-fit: cover; }
.service-detail-text h2 { margin-bottom: .75rem; font-size: 1.75rem; }
.service-detail-text p  { margin-bottom: 1rem; }

.bullet-list { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.25rem; }
.bullet-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .93rem; color: var(--text-muted); }
.bullet-list li::before { content: "✓"; color: var(--green-dark); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }

.ideal-tag { display: inline-block; background: var(--bg-light); border: 1px solid var(--blue-light); color: var(--blue-dark); font-size: .82rem; font-weight: 600; padding: .3rem .75rem; border-radius: 99px; margin-top: .25rem; }

/* Service detail with sd- prefix */
.sd-img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); }
.sd-img img { width: 100%; height: 420px; object-fit: cover; }
.sd-tag { display: inline-block; background: var(--blue-light); color: var(--blue-mid); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .75rem; border-radius: 99px; margin-bottom: .75rem; }
.sd-body h2 { margin-bottom: .75rem; }
.sd-body p  { margin-bottom: 1rem; }
.sd-list { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.25rem; }
.sd-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .93rem; color: var(--text-muted); }
.sd-list li::before { content: "✓"; color: var(--green-dark); font-weight: 700; flex-shrink: 0; }
.sd-price { font-size: 1.05rem; color: var(--text); margin-bottom: 1.25rem; }
.sd-price strong { color: var(--blue-dark); font-size: 1.2rem; }

/* ──────────────────────────────────────────
   PAGE HERO (inner pages)
────────────────────────────────────────── */
.ph-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30,58,138,.78) 0%, rgba(22,163,74,.48) 100%);
    z-index: 1;
}
.ph-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.ph-breadcrumb { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.ph-breadcrumb a { color: rgba(255,255,255,.75); }
.ph-breadcrumb span { color: rgba(255,255,255,.4); margin: 0 .35rem; }

.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,.4); margin: 0 .35rem; }

/* ──────────────────────────────────────────
   BOOKING / FORM
────────────────────────────────────────── */
.booking-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.booking-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem 2rem; box-shadow: var(--shadow); }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .35rem; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .65rem .9rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: .95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color .18s;
    font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: .85rem; font-size: 1rem; justify-content: center; }
.form-help   { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }

.success-msg { background: #dcfce7; border: 1.5px solid #86efac; color: #15803d; padding: 1.1rem 1.25rem; border-radius: var(--radius); font-weight: 600; margin-bottom: 1.5rem; }
.error-msg   { background: #fef2f2; border: 1.5px solid #fca5a5; color: #dc2626; padding: 1.1rem 1.25rem; border-radius: var(--radius); font-weight: 600; margin-bottom: 1.5rem; }

.booking-sidebar h3 { margin-bottom: 1rem; font-size: 1.15rem; }
.contact-info-card  { background: var(--bg-light); border: 1px solid var(--blue-light); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; margin-bottom: 1.5rem; }
.contact-info-item  { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.1rem; font-size: .93rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .ci-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: .1rem; }
.contact-info-item strong    { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--blue-dark); margin-bottom: .15rem; }
.contact-info-item span      { color: var(--text-muted); }

/* ──────────────────────────────────────────
   FAQ
────────────────────────────────────────── */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq-item input[type="checkbox"] { display: none; }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 1.4rem;
    cursor: pointer;
    font-weight: 600;
    font-size: .97rem;
    color: var(--blue-dark);
    user-select: none;
    gap: 1rem;
}
.faq-question::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--green-dark); flex-shrink: 0; transition: transform .25s; }
.faq-item input:checked ~ .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; padding: 0 1.4rem; font-size: .95rem; color: var(--text-muted); }
.faq-item input:checked ~ .faq-answer { max-height: 300px; padding: 0 1.4rem 1.25rem; }

/* ──────────────────────────────────────────
   CAREERS PAGE
────────────────────────────────────────── */
.careers-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.career-perks   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.perk-item  { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; }
.perk-icon  { font-size: 1.4rem; flex-shrink: 0; }
.perk-title { font-weight: 600; color: var(--blue-dark); display: block; margin-bottom: .15rem; }
.perk-desc  { font-size: .85rem; color: var(--text-muted); }
.availability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; }
.availability-grid .avail-label { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: .85rem; font-weight: 400; cursor: pointer; padding: .4rem .6rem; border: 1.5px solid var(--border); border-radius: 10px; transition: all .18s; margin-bottom: 0; }
.availability-grid .avail-label input { margin: 0; width: auto; padding: 0; border: none; background: none; accent-color: var(--green-dark); flex-shrink: 0; box-shadow: none; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.site-footer { background: var(--blue-dark); color: rgba(255,255,255,.82); padding: 4rem 1.25rem 0; }
.footer-container { max-width: 1180px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 2.5rem; max-width: 1180px; margin: 0 auto; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-logo    { height: 60px; width: auto; }
.footer-heading { color: #ffffff !important; font-size: 1rem; margin-bottom: 1.1rem; }
.footer-tagline { font-size: .92rem; color: rgba(255,255,255,.7); margin-top: .9rem; margin-bottom: 1.25rem; max-width: 300px; }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,.7); margin-top: .9rem; margin-bottom: 1.25rem; max-width: 300px; }
.footer-col h4  { color: var(--white); font-size: 1rem; margin-bottom: 1.1rem; }

.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .9rem; transition: color .18s; }
.footer-links a:hover { color: var(--green-light); text-decoration: none; }

.footer-social { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: #ffffff; transition: transform .18s, box-shadow .18s; }
.footer-social a:hover { transform: translateY(-2px) scale(1.06); box-shadow: 0 6px 14px rgba(0,0,0,.28); text-decoration: none; }
.footer-social svg { display: block; }

.footer-contact { display: flex; flex-direction: column; gap: .8rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: rgba(255,255,255,.72); }
.footer-contact-list { display: flex; flex-direction: column; gap: .8rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: rgba(255,255,255,.72); }
.footer-contact-item .fci-icon { font-size: 1rem; flex-shrink: 0; margin-top: .15rem; }
.fc-icon { font-size: 1rem; flex-shrink: 0; margin-top: .15rem; }
.footer-contact a { color: rgba(255,255,255,.72); }
.footer-contact a:hover { color: var(--green-light); text-decoration: none; }

.footer-bottom { max-width: 1180px; margin: 0 auto; padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-copy  { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: 1rem; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.45); }
.footer-legal a:hover { color: #ffffff; text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   PAGE REDESIGN ENHANCEMENTS
══════════════════════════════════════════════════════════════ */

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-story-img {
    position: relative;
    padding: 0 1.5rem 1.5rem 0;
}
.about-story-img img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    display: block;
    transition: transform .5s ease;
}
.about-story-img:hover img { transform: scale(1.02); }
.about-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--green-dark);
    color: #ffffff;
    border-radius: 14px;
    padding: 1.1rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}
.about-badge span {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .88;
    margin-top: .25rem;
    font-weight: 600;
}
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-top: 1.25rem;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .95rem;
    color: var(--text-muted);
}
.check-list li::before {
    content: "✓";
    color: var(--green-dark);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .05rem;
}

.stats-impact {
    background: linear-gradient(135deg, var(--blue-dark) 0%, #1d4ed8 100%);
    padding: 4rem 1.25rem;
}
.stats-impact-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2.5rem;
    text-align: center;
    max-width: 1180px;
    margin: 0 auto;
}
.si-item { flex: 1; min-width: 130px; }
.si-num  { display: block; font-size: 2.8rem; font-weight: 800; color: #ffffff; line-height: 1; margin-bottom: .4rem; }
.si-label{ display: block; font-size: .8rem; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .07em; }

.mvv-light-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}
.mvv-light-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    border-top: 4px solid var(--blue-mid);
    box-shadow: var(--shadow);
    text-align: center;
}
.mvv-light-card.card-values { border-top-color: var(--green-dark); }
.mvv-light-icon { font-size: 2.2rem; margin-bottom: .85rem; line-height: 1; }
.mvv-light-card h3 { color: var(--blue-dark); margin-bottom: .65rem; font-size: 1.15rem; }
.mvv-light-card p  { font-size: .93rem; margin-bottom: 0; }
.mvv-value-list { list-style: none; display: flex; flex-direction: column; gap: .4rem; text-align: left; }
.mvv-value-list li { font-size: .92rem; color: var(--text-muted); padding-left: 1.2rem; position: relative; }
.mvv-value-list li::before { content: "✓"; color: var(--green-dark); position: absolute; left: 0; font-weight: 700; }

/* ─── SERVICES PAGE ──────────────────────────────────────── */
.svc-nav-section { padding: 3rem 0; background: var(--bg-light); }
.svc-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.svc-nav-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: var(--shadow);
}
.svc-nav-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.svc-nav-card:hover img { transform: scale(1.07); }
.svc-nav-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.1rem .95rem;
    background: linear-gradient(transparent, rgba(0,0,0,.85));
    text-decoration: none;
}
.svc-nav-card-body h3 { color: #ffffff; font-size: 1rem; margin-bottom: .2rem; font-weight: 700; }
.svc-nav-card-body span { color: rgba(255,255,255,.78); font-size: .8rem; font-weight: 500; }

.service-detail-alt {
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--border);
}
.service-detail-alt:last-of-type { border-bottom: none; }
.service-detail-alt.sda-tint { background: var(--bg-light); }
.sda-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.sda-inner.sda-reverse { direction: rtl; }
.sda-inner.sda-reverse > * { direction: ltr; }
.sda-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: box-shadow .3s ease;
}
.sda-img:hover { box-shadow: 0 16px 48px rgba(30,58,138,.22); }
.sda-img img { width: 100%; height: 440px; object-fit: cover; display: block; transition: transform .5s ease; }
.sda-img:hover img { transform: scale(1.03); }
.sda-body h2 { margin-bottom: .75rem; font-size: 1.75rem; }
.sda-body p  { margin-bottom: 1rem; }
.sda-tag { display: inline-block; background: var(--blue-light); color: var(--blue-mid); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .25rem .75rem; border-radius: 99px; margin-bottom: .75rem; }
.sda-list { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.25rem; }
.sda-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .93rem; color: var(--text-muted); }
.sda-list li::before { content: "✓"; color: var(--green-dark); font-weight: 700; flex-shrink: 0; }
.sda-price { font-size: 1.05rem; color: var(--text); margin-bottom: 1.25rem; }
.sda-price strong { color: var(--blue-dark); font-size: 1.2rem; }

/* ─── FAQ PAGE ───────────────────────────────────────────── */
.faq-page-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}
.faq-sidebar-box { position: sticky; top: 100px; }
.faq-sidebar-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}
.faq-sidebar-img-wrap img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform .4s ease; }
.faq-sidebar-img-wrap:hover img { transform: scale(1.04); }
.faq-contact-card {
    background: var(--blue-dark);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    margin-bottom: 1.25rem;
}
.faq-contact-card h3 { color: #ffffff; font-size: 1.05rem; margin-bottom: 1.1rem; }
.fcc-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    margin-bottom: .85rem;
    font-size: .9rem;
    color: rgba(255,255,255,.8);
}
.fcc-item:last-child { margin-bottom: 0; }
.fcc-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
.fcc-item a { color: rgba(255,255,255,.85); }
.fcc-item a:hover { color: #ffffff; text-decoration: none; }
.fcc-item strong { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.5); margin-bottom: .2rem; font-weight: 600; }
.faq-cta-card {
    background: var(--green-dark);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    text-align: center;
}
.faq-cta-card h3 { color: #ffffff; font-size: 1.05rem; margin-bottom: .45rem; }
.faq-cta-card p  { color: rgba(255,255,255,.85); font-size: .88rem; margin-bottom: 1.1rem; }
.faq-cta-card .btn-cta-white { display: block; text-align: center; }

/* ─── CAREERS PAGE ───────────────────────────────────────── */
.careers-feature {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.careers-feature-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.careers-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15,23,42,.90) 40%, rgba(30,58,138,.55) 75%, rgba(30,58,138,.2) 100%);
}
.careers-feature-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 4rem 1.25rem;
}
.careers-feature-text { max-width: 560px; }
.careers-feature-text h2 { color: #ffffff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: .85rem; }
.careers-feature-text p  { color: rgba(255,255,255,.85); font-size: 1rem; margin-bottom: 1.5rem; }
.careers-feat-stats { display: flex; gap: 3rem; margin-top: .5rem; }
.cfs-item { }
.cfs-num   { display: block; font-size: 2rem; font-weight: 800; color: #ffffff; line-height: 1; }
.cfs-label { display: block; font-size: .75rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .07em; margin-top: .25rem; }

.perks-section { padding: 4.5rem 0; background: var(--bg-light); }
.perks-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.perk-card-new {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid var(--blue-mid);
    transition: transform .2s, box-shadow .2s;
}
.perk-card-new:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.perk-card-new.perk-green { border-left-color: var(--green-dark); }
.pcn-icon  { font-size: 2rem; flex-shrink: 0; line-height: 1; margin-top: .1rem; }
.pcn-title { font-weight: 700; color: var(--blue-dark); font-size: .97rem; display: block; margin-bottom: .2rem; }
.pcn-desc  { font-size: .86rem; color: var(--text-muted); margin-bottom: 0; }

.careers-form-section { padding: 4.5rem 0; background: #ffffff; }
.careers-form-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}

/* ─── BOOKING PAGE ───────────────────────────────────────── */
.hiw-section { padding: 4rem 0; background: var(--bg-light); }
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.hiw-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .2s, box-shadow .2s;
}
.hiw-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hiw-icon { font-size: 2.6rem; margin-bottom: .5rem; line-height: 1; }
.hiw-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-dark);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto .85rem;
}
.hiw-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.hiw-card p  { font-size: .9rem; margin-bottom: 0; }

/* ─── AUTH PAGES ─────────────────────────────────────────── */
.auth-section {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.25rem;
    background: var(--bg-light);
}
.auth-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem 2.25rem;
    width: 100%;
    max-width: 460px;
}
.auth-logo {
    text-align: center;
    margin-bottom: 1.75rem;
}
.auth-logo img { height: 112px; width: auto; margin: 0 auto; display: block; }
.auth-title    { text-align: center; font-size: 1.5rem; color: var(--blue-dark); margin-bottom: .35rem; }
.auth-subtitle { text-align: center; font-size: .9rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.auth-status   { background: #dcfce7; border: 1.5px solid #86efac; color: #15803d; padding: .9rem 1.1rem; border-radius: var(--radius); font-size: .9rem; font-weight: 600; margin-bottom: 1.25rem; }
.auth-footer   { text-align: center; font-size: .88rem; color: var(--text-muted); margin-top: 1.25rem; }
.auth-footer a { color: var(--blue-mid); font-weight: 600; }
.auth-footer a:hover { color: var(--blue-dark); text-decoration: underline; }
.auth-links    { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; font-size: .88rem; }
.auth-links a  { color: var(--blue-mid); }
.auth-links a:hover { color: var(--blue-dark); }
.auth-remember { display: flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--text); cursor: pointer; }
.auth-remember input { width: auto; padding: 0; border: none; background: none; accent-color: var(--green-dark); }
.auth-verify-text { font-size: .93rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.65; }
.auth-actions  { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Password show/hide toggle */
.pw-wrap          { position: relative; }
.pw-wrap input    { padding-right: 2.75rem; }
.pw-toggle {
    position: absolute;
    right: .75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.pw-toggle:hover { color: var(--blue-mid); }
.pw-toggle .eye-off { display: none; }
.pw-toggle.visible .eye-on  { display: none; }
.pw-toggle.visible .eye-off { display: block; }

/* ─── DARK MODE OVERRIDES for new classes ─────────────────── */
html[data-theme="dark"] .auth-section { background: #0f172a; }
html[data-theme="dark"] .auth-card    { background: #1e293b; }
html[data-theme="dark"] .auth-title   { color: #e2e8f0; }
html[data-theme="dark"] .auth-subtitle{ color: #94a3b8; }
html[data-theme="dark"] .auth-footer  { color: #94a3b8; }
html[data-theme="dark"] .auth-remember{ color: #e2e8f0; }
html[data-theme="dark"] .auth-verify-text { color: #94a3b8; }
html[data-theme="dark"] .auth-links a { color: #60a5fa; }

/* ─── DARK MODE OVERRIDES for new classes ─────────────────── */
html[data-theme="dark"] .mvv-light-card { background: #1e293b; border-color: #334155; }
html[data-theme="dark"] .mvv-light-card h3 { color: #e2e8f0; }
html[data-theme="dark"] .mvv-light-card p  { color: #94a3b8; }
html[data-theme="dark"] .mvv-value-list li { color: #94a3b8; }
html[data-theme="dark"] .check-list li     { color: #94a3b8; }
html[data-theme="dark"] .perk-card-new     { background: #1e293b; border-color: #334155; }
html[data-theme="dark"] .pcn-title         { color: #e2e8f0; }
html[data-theme="dark"] .pcn-desc          { color: #94a3b8; }
html[data-theme="dark"] .hiw-card          { background: #1e293b; }
html[data-theme="dark"] .hiw-card h3       { color: #e2e8f0; }
html[data-theme="dark"] .hiw-card p        { color: #94a3b8; }
html[data-theme="dark"] .sda-list li       { color: #94a3b8; }
html[data-theme="dark"] .sda-price         { color: #e2e8f0; }
html[data-theme="dark"] .sda-price strong  { color: #60a5fa; }
html[data-theme="dark"] .sda-tag           { background: #1e3a5f; color: #60a5fa; }
html[data-theme="dark"] .service-detail-alt.sda-tint { background: #1e293b; }
html[data-theme="dark"] .service-detail-alt { border-bottom-color: #334155; }
html[data-theme="dark"] .svc-nav-section   { background: #1e293b; }
html[data-theme="dark"] .perks-section     { background: #1e293b; }
html[data-theme="dark"] .hiw-section       { background: #1e293b; }
html[data-theme="dark"] .careers-form-section { background: #0f172a; }

/* ─── RESPONSIVE for new classes ─────────────────────────── */
@media (max-width: 900px) {
    .about-story-grid,
    .sda-inner,
    .faq-page-grid,
    .careers-form-grid { grid-template-columns: 1fr; }
    .sda-inner.sda-reverse { direction: ltr; }
    .svc-nav-grid { grid-template-columns: repeat(2, 1fr); }
    .hiw-grid { grid-template-columns: 1fr; }
    .careers-feat-stats { gap: 2rem; }
    .faq-sidebar-box { position: static; }
}
@media (max-width: 600px) {
    .svc-nav-grid { grid-template-columns: 1fr 1fr; }
    .hiw-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .about-grid,
    .two-col,
    .service-detail,
    .mission-vision-grid,
    .booking-layout,
    .careers-layout { grid-template-columns: 1fr; }
    .service-detail.reverse { direction: ltr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats  { flex-wrap: wrap; }
    .hs-divider  { display: none; }
    .hs-item     { padding: .5rem 1rem; }
}

@media (max-width: 768px) {
    /* Nav */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: .5rem 0;
        box-shadow: 0 6px 20px rgba(0,0,0,.1);
        z-index: 99;
    }
    .nav-links.open { display: flex; }
    .nav-links a    { padding: .75rem 1.5rem; border-bottom: 1px solid var(--border); width: 100%; }
    .nav-actions .nav-cta { display: none; }
    .nav-hamburger  { display: flex; }

    /* Hero — tablet/mobile height */
    .hero-section { min-height: calc(780px * 7 / 8); }
    .cta-section  { min-height: 380px; }
    .hero-content-inner { padding: 2.5rem 0 3.5rem; width: calc(100% - 2rem); }
    .hero-title   { font-size: clamp(1.8rem, 7vw, 2.6rem) !important; }
    .hero-subtitle{ font-size: .97rem; margin-bottom: 1.5rem; }
    .hero-actions { flex-direction: column; gap: .75rem; }
    .hero-actions .btn-primary-lg,
    .hero-actions .btn-outline-lg { width: 100%; justify-content: center; }
    .hero-stats   { display: flex; border-radius: 12px; padding: .85rem 1rem; gap: 0; flex-wrap: nowrap; overflow-x: auto; }
    .hs-item      { padding: 0 .85rem; flex-shrink: 0; }
    .hs-num       { font-size: 1.25rem; }
    .hs-label     { font-size: .68rem; }

    /* Layout */
    .services-grid     { grid-template-columns: 1fr 1fr; }
    .bs-content        { flex-direction: column; text-align: center; }
    .availability-grid { grid-template-columns: repeat(2, 1fr); }
    .career-perks      { grid-template-columns: 1fr; }
    .stats-row         { justify-content: center; }
    .form-row          { grid-template-columns: 1fr; }
    .footer-grid       { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom     { flex-direction: column; gap: .5rem; text-align: center; }
    .serve-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero-section  { min-height: calc(690px * 7 / 8); }
    .cta-section   { min-height: 340px; }
    .hero-badge    { font-size: .72rem; padding: .25rem .65rem; margin-bottom: .85rem; }
    .hero-stats    { display: none; }
    .scroll-indicator { display: none; }
    .services-grid { grid-template-columns: 1fr; }
    .serve-grid    { grid-template-columns: 1fr; }
    .cta-actions   { flex-direction: column; align-items: center; }
    .hero-actions  { flex-direction: column; }
    .hero-actions .btn-primary-lg,
    .hero-actions .btn-outline-lg { width: 100%; justify-content: center; }
    .booking-sidebar { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   DARK THEME  (html[data-theme="dark"])
   Init script in <head> prevents FOUC.
══════════════════════════════════════════════════════════════ */
html[data-theme="dark"] {
    --text:      #e2e8f0;
    --text-muted:#94a3b8;
    --blue-mid:  #60a5fa;
    --blue-light:#1e3a5f;
    --bg-light:  #1e293b;
    --bg-grey:   #111827;
    --border:    #334155;
    --shadow:    0 2px 12px rgba(0,0,0,.4);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.55);

    --surface-1: #1e293b;
    --surface-2: #334155;
    --overlay-scrim: rgba(0, 0, 0, 0.65);
    --focus-ring: #60a5fa;
    color-scheme: dark;

    /* --blue-dark, --green-dark, --green-light, --white are
       intentionally NOT redefined here: they're used mostly as
       decorative, theme-invariant brand colors (hero/CTA/footer
       backgrounds, button fills, checkmarks) that should look the
       same in both themes, not as page-surface tokens. The few
       spots where --blue-dark/--green-dark were instead used as
       plain TEXT color on a card surface (and would otherwise go
       low-contrast on a dark card) get their own explicit
       overrides below instead of a blanket var redefinition. */
}
html[data-theme="dark"] body { background: #0f172a; color: #e2e8f0; }
html[data-theme="dark"] h1,
html[data-theme="dark"] h2,
html[data-theme="dark"] h3,
html[data-theme="dark"] h4 { color: #e2e8f0; }

/* Card-surface headings/links that use --blue-dark/--green-dark as
   plain text color (not a decorative section background) and had
   no prior dark treatment — would render low-contrast on a dark
   card without this. */
html[data-theme="dark"] .value-card h3,
html[data-theme="dark"] .mv-card h3,
html[data-theme="dark"] .mvv-light-card h3,
html[data-theme="dark"] .pcn-title,
html[data-theme="dark"] .auth-title,
html[data-theme="dark"] .auth-footer a:hover,
html[data-theme="dark"] .auth-links a:hover { color: #60a5fa; }
html[data-theme="dark"] .service-card-link,
html[data-theme="dark"] .sc-link { color: #4ade80; }
html[data-theme="dark"] .service-card-link:hover,
html[data-theme="dark"] .sc-link:hover { color: #86efac; }

/* Nav */
html[data-theme="dark"] .main-nav                  { background: #1e293b; box-shadow: 0 2px 8px rgba(0,0,0,.35); }
html[data-theme="dark"] .nav-links a               { color: #e2e8f0; }
html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .nav-links a.active        { color: #60a5fa; text-decoration: none; }
html[data-theme="dark"] .nav-links                 { background: #1e293b; }
html[data-theme="dark"] .nav-links a               { border-bottom-color: #334155; }
html[data-theme="dark"] .nav-btn-secondary         { color: #60a5fa; border-color: #60a5fa; }
html[data-theme="dark"] .nav-btn-secondary:hover   { background: #60a5fa; color: #0f172a; }
html[data-theme="dark"] .nav-hamburger span        { background: #e2e8f0; }
html[data-theme="dark"] .nav-mobile-menu           { background: #1e293b; border-top-color: #334155; }
html[data-theme="dark"] .nav-mobile-menu li a      { color: #e2e8f0; border-bottom-color: #334155; }
html[data-theme="dark"] .nav-mobile-menu li a:hover{ color: #60a5fa; }
html[data-theme="dark"] .nav-mobile-theme          { color: #e2e8f0; border-top-color: #334155; }

/* Theme toggle */
html[data-theme="dark"] .theme-toggle       { border-color: #334155; color: #94a3b8; }
html[data-theme="dark"] .theme-toggle:hover { border-color: #60a5fa; color: #60a5fa; }
html[data-theme="dark"] .theme-icon-sun     { display: block; }
html[data-theme="dark"] .theme-icon-moon    { display: none; }

/* Sections */
html[data-theme="dark"] .section-light      { background: #0f172a; }
html[data-theme="dark"] .section-alt-pad    { background: #1e293b; }
html[data-theme="dark"] .section-alt        { background: #1e293b; }
html[data-theme="dark"] .booking-strip      { background: #1e293b; border-color: #334155; }
html[data-theme="dark"] .section-title-left { color: #e2e8f0; }
html[data-theme="dark"] .section-subtitle   { color: #94a3b8; }

/* Cards & surfaces */
html[data-theme="dark"] .card,
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .value-card,
html[data-theme="dark"] .booking-form-card,
html[data-theme="dark"] .testimonial-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .serve-item,
html[data-theme="dark"] .contact-info-card { background: #1e293b; border-color: #334155; }
html[data-theme="dark"] .serve-item { color: #e2e8f0; }
html[data-theme="dark"] .mv-card    { background: #1e293b; border-color: #334155; }
html[data-theme="dark"] .sc-body h3 { color: #e2e8f0; }

/* Tags */
html[data-theme="dark"] .section-tag   { background: #1e3a5f; color: #60a5fa; }
html[data-theme="dark"] .section-label { background: #1e3a5f; color: #60a5fa; }
html[data-theme="dark"] .sd-tag        { background: #1e3a5f; color: #60a5fa; }
html[data-theme="dark"] .ideal-tag     { background: #1e293b; border-color: #334155; color: #94a3b8; }

/* FAQ */
html[data-theme="dark"] .faq-question { color: #e2e8f0; }
html[data-theme="dark"] .faq-answer   { color: #94a3b8; }
html[data-theme="dark"] .faq-item     { border-color: #334155; }

/* Forms */
html[data-theme="dark"] .form-group label { color: #e2e8f0; }
html[data-theme="dark"] .form-group input,
html[data-theme="dark"] .form-group select,
html[data-theme="dark"] .form-group textarea { background: #0f172a; border-color: #334155; color: #e2e8f0; }
html[data-theme="dark"] .form-group input::placeholder,
html[data-theme="dark"] .form-group textarea::placeholder { color: #475569; }
html[data-theme="dark"] .form-group select option { background: #1e293b; color: #e2e8f0; }
html[data-theme="dark"] .form-group input:focus,
html[data-theme="dark"] .form-group select:focus,
html[data-theme="dark"] .form-group textarea:focus { border-color: #60a5fa; box-shadow: 0 0 0 3px rgba(96,165,250,.15); }
html[data-theme="dark"] .availability-grid .avail-label { border-color: #334155; color: #e2e8f0; }
html[data-theme="dark"] .form-help   { color: #64748b; }
html[data-theme="dark"] .success-msg { background: #14532d; border-color: #16a34a; color: #86efac; }
html[data-theme="dark"] .error-msg   { background: #450a0a; border-color: #dc2626; color: #fca5a5; }

/* Service detail */
html[data-theme="dark"] .service-detail   { border-bottom-color: #334155; }
html[data-theme="dark"] .bullet-list li,
html[data-theme="dark"] .sd-list li       { color: #94a3b8; }
html[data-theme="dark"] .sd-price         { color: #e2e8f0; }
html[data-theme="dark"] .sd-price strong  { color: #60a5fa; }

/* Contact info */
html[data-theme="dark"] .contact-info-item strong { color: #60a5fa; }
html[data-theme="dark"] .contact-info-item span   { color: #94a3b8; }

/* Stats */
html[data-theme="dark"] .stat-num   { color: #60a5fa; }
html[data-theme="dark"] .stat-label { color: #94a3b8; }

/* Testimonials */
html[data-theme="dark"] .tc-name { color: #e2e8f0; }

/* Careers */
html[data-theme="dark"] .perk-title { color: #60a5fa; }
html[data-theme="dark"] .perk-desc  { color: #94a3b8; }

/* ══════════════════════════════════════════════════════════════
   VISUAL POLISH — Redesign 2025
   Improvements to spacing, typography, cards, transitions
══════════════════════════════════════════════════════════════ */

/* ── Section spacing improvements ─────────────────────────── */
.section-light,
.section-alt-pad { padding: 5.5rem 0; }

.service-detail-alt { padding: 5.5rem 0; }

/* ── Enhanced section headers ──────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title  { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -.015em; }
.section-subtitle { font-size: 1.06rem; max-width: 640px; margin: .75rem auto 0; color: var(--text-muted); line-height: 1.75; }

/* ── MVV light cards — improved hover ─────────────────────── */
.mvv-light-card {
    transition: transform .25s ease, box-shadow .25s ease;
}
.mvv-light-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ── About story section improvements ─────────────────────── */
.about-story-grid { gap: 5rem; }
.about-story-img  { padding: 0 2rem 2rem 0; }

/* ── Stats impact — richer visuals ────────────────────────── */
.stats-impact {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1d4ed8 100%);
    padding: 5rem 1.25rem;
}
.si-num  { font-size: 3rem; }
.si-item { flex: 1; min-width: 120px; }

/* ── Service nav card improvements ────────────────────────── */
.svc-nav-section { padding: 4rem 0; }
.svc-nav-card {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(30,58,138,.12);
    transition: transform .3s ease, box-shadow .3s ease;
}
.svc-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(30,58,138,.22);
}

/* ── Service detail alt — left-right layout polish ─────────── */
.sda-body h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: .85rem; letter-spacing: -.015em; }
.sda-body p  { font-size: 1rem; line-height: 1.75; }
.sda-list li { font-size: .95rem; color: var(--text-muted); line-height: 1.6; }
.sda-price   { background: var(--bg-light); border: 1px solid var(--blue-light); border-radius: var(--radius); padding: .75rem 1rem; display: inline-block; margin-bottom: 1.5rem; }
.sda-price strong { color: var(--blue-dark); font-size: 1.3rem; }

/* ── Service detail — padding in sda-inner ─────────────────── */
.sda-inner { padding: 0 1.5rem; }

/* ── Booking form card enhancements ────────────────────────── */
.booking-form-card { border-radius: 20px; padding: 2.5rem 2.25rem; box-shadow: 0 4px 24px rgba(30,58,138,.10); }
.booking-form-card h2 { font-size: 1.55rem; margin-bottom: 1.75rem !important; }

/* ── Booking how-it-works ──────────────────────────────────── */
.hiw-section { padding: 5rem 0; }
.hiw-card { border-radius: 20px; padding: 2.25rem 1.75rem; }
.hiw-num  { width: 52px; height: 52px; font-size: 1.3rem; background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%); }

/* ── FAQ improvements ──────────────────────────────────────── */
.faq-question { font-size: 1rem; padding: 1.25rem 1.5rem; }
.faq-item input:checked ~ .faq-answer { max-height: 400px; padding: 0 1.5rem 1.4rem; }
.faq-item input:checked ~ .faq-question { color: var(--blue-mid); }
.faq-contact-card { border-radius: 16px; padding: 2rem 1.75rem; }
.faq-cta-card     { border-radius: 16px; padding: 2rem 1.75rem; }
.faq-sidebar-img-wrap { border-radius: 16px; }

/* ── Careers perks grid ─────────────────────────────────────── */
.perks-section { padding: 5.5rem 0; }
.perk-card-new { border-radius: 16px; padding: 1.85rem 1.6rem; }
.pcn-title { font-size: 1rem; }

/* ── Careers feature text ──────────────────────────────────── */
.careers-feature-text h2 { font-size: clamp(1.75rem, 3.5vw, 2.4rem); }
.careers-feature-text p  { font-size: 1.05rem; opacity: .92; }

/* ── Careers form section ──────────────────────────────────── */
.careers-form-section { padding: 5.5rem 0; }

/* ── Booking strip – more visual punch ─────────────────────── */
.booking-strip {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0ecff 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.bs-text h3 { font-size: 1.4rem; color: var(--blue-dark); }

/* ── Contact info card ─────────────────────────────────────── */
.contact-info-card { border-radius: 16px; padding: 2rem 1.75rem; }

/* ── Availability grid ─────────────────────────────────────── */
.availability-grid .avail-label:has(input:checked) {
    background: var(--blue-light);
    border-color: var(--blue-mid);
    color: var(--blue-dark);
    font-weight: 600;
}


/* ── Dark mode fixes for new styles ────────────────────────── */
html[data-theme="dark"] .sda-price  { background: #1e293b; border-color: #334155; }
html[data-theme="dark"] .sda-price strong { color: #60a5fa; }
html[data-theme="dark"] .booking-strip {
    background: linear-gradient(135deg, #1e293b 0%, #1e3a5f 100%);
    border-color: #334155;
}
html[data-theme="dark"] .bs-text h3 { color: #e2e8f0; }

/* Page-hero wave: match body background in dark mode for pages without ph-alt-below */
html[data-theme="dark"] .page-hero::after          { background: #0f172a; }
/* ph-alt-below wave: match var(--bg-light) = #1e293b in dark mode */
html[data-theme="dark"] .page-hero.ph-alt-below::after { background: #1e293b; }

/* ── Careers showcase — two-column (text left, image right) ─── */
.careers-showcase {
    background: var(--blue-dark);
    padding: 5.5rem 0;
}

/* Wave variant that transitions into the brand royal blue */
.page-hero.ph-below-blue::after { background: var(--blue-dark); }
html[data-theme="dark"] .page-hero.ph-below-blue::after { background: var(--blue-dark); }
.careers-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.careers-showcase-text h2 { color: #ffffff; font-size: clamp(1.75rem, 3.5vw, 2.4rem); margin-bottom: .85rem; letter-spacing: -.015em; }
.careers-showcase-text p  { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2rem; }
.careers-showcase-img {
    position: relative;
    padding: 0 0 2rem 2rem;
}
.careers-showcase-img img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(0,0,0,.45);
    display: block;
    transition: transform .5s ease;
}
.careers-showcase-img:hover img { transform: scale(1.02); }
.careers-showcase-badge {
    position: absolute;
    bottom: 0;
    left: 2rem;
    background: var(--green-dark);
    color: #ffffff;
    border-radius: 14px;
    padding: 1.1rem 1.6rem;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
}
.careers-showcase-badge strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}
.careers-showcase-badge span {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity: .88;
    margin-top: .25rem;
    font-weight: 600;
}

/* ── Responsive adjustments for new heights ─────────────────── */
@media (max-width: 900px) {
    .page-hero { min-height: 420px; padding: 5.5rem 1.25rem 8rem; }
    .sda-img img { height: 360px; }
    .about-story-img img { height: 420px; }
    .about-story-grid { gap: 3rem; }
    .about-story-img  { padding: 0 1rem 1rem 0; }
    .svc-nav-grid     { grid-template-columns: repeat(2, 1fr); }
    .svc-nav-card img { height: 200px; }
    .careers-showcase-grid { grid-template-columns: 1fr; gap: 3rem; }
    .careers-showcase-img  { padding: 0 0 1.5rem 0; }
    .careers-showcase-img img { height: 380px; }
    .careers-showcase-badge { left: 0; }
}

@media (max-width: 768px) {
    .page-hero { min-height: 380px; padding: 5rem 1.25rem 7.5rem; }
    .page-hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
    .page-hero p  { font-size: 1rem; }
    .sda-img img  { height: 300px; }
    .about-story-img img { height: 340px; }
    .sd-img img   { height: 300px; }
    .svc-nav-card img { height: 180px; }
    .faq-sidebar-img-wrap img { height: 240px; }
    .careers-showcase-img img { height: 300px; }
    .careers-showcase { padding: 4rem 0; }
}

@media (max-width: 480px) {
    .page-hero { min-height: 340px; padding: 4.5rem 1.25rem 7rem; }
    .page-hero::after { height: 52px; }
    .sda-img img { height: 260px; }
    .svc-nav-card img { height: 160px; }
    .careers-showcase-img img { height: 260px; }
}

/* ══════════════════════════════════════════════════════════════
   CHAT WIDGET (components/chat-widget.blade.php)
══════════════════════════════════════════════════════════════ */
.df-chat-widget { position: fixed; bottom: 20px; right: 20px; z-index: 9999; font-family: inherit; }
.df-chat-toggle { width: 56px; height: 56px; border-radius: 50%; background: var(--green-dark); color: #fff; border: none; font-size: 24px; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.df-chat-toggle:hover { background: var(--green-light); }
.df-chat-panel { display: none; position: absolute; bottom: 70px; right: 0; width: 320px; height: 420px; background: var(--surface-1); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-lg); flex-direction: column; overflow: hidden; }
.df-chat-panel-header { background: var(--green-dark); color: #fff; padding: 12px 16px; font-weight: 600; }
.df-chat-messages { flex: 1; overflow-y: auto; padding: 12px; font-size: 0.85rem; }
.df-chat-form { display: flex; border-top: 1px solid var(--border); }
.df-chat-input { flex: 1; border: none; padding: 10px; font-size: 0.85rem; outline: none; background: var(--surface-1); color: var(--text); }
.df-chat-send { border: none; background: var(--green-dark); color: #fff; padding: 0 16px; cursor: pointer; }
.df-chat-send:hover { background: var(--green-light); }
.df-chat-msg-row { margin-bottom: 8px; }
.df-chat-msg-row.is-out { text-align: right; }
.df-chat-msg-row.is-in  { text-align: left; }
.df-chat-bubble { display: inline-block; padding: 6px 10px; border-radius: 8px; }
.df-chat-msg-row.is-out .df-chat-bubble { background: var(--green-dark); color: #fff; }
.df-chat-msg-row.is-in  .df-chat-bubble { background: var(--surface-2); color: var(--text); }

/* ══════════════════════════════════════════════════════════════
   TOAST / TOOLTIP / SKELETON / PROGRESS BAR
   Same tokens/patterns as the dashboard surface's equivalents,
   ported for the handful of public-site/guest forms that need
   submission feedback (contact/booking forms).
══════════════════════════════════════════════════════════════ */
.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 1300; display: flex; flex-direction: column; gap: 10px; max-width: 360px; }
.toast { display: flex; align-items: flex-start; gap: 10px; background: var(--surface-1); border: 1px solid var(--border); border-left: 4px solid var(--blue-mid); border-radius: 10px; box-shadow: var(--shadow-lg); padding: 12px 14px; font-size: .92rem; color: var(--text); }
.toast-success { border-left-color: var(--green-dark); }
.toast-danger  { border-left-color: #dc2626; }
.toast-warning { border-left-color: #d97706; }
.toast-body { flex: 1; min-width: 0; }
.toast-close { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 1.1rem; line-height: 1; padding: 0; }

[data-tooltip] { position: relative; }
[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
    background: var(--text); color: var(--surface-1);
    font-size: 12px; font-weight: 500; white-space: nowrap;
    padding: 5px 9px; border-radius: 6px; box-shadow: var(--shadow);
    opacity: 0; pointer-events: none; transition: opacity .15s ease;
    z-index: 700;
}
[data-tooltip]:hover::after, [data-tooltip]:focus-within::after { opacity: 1; }

.skeleton { background: linear-gradient(90deg, var(--surface-2) 25%, var(--bg-light) 50%, var(--surface-2) 75%); background-size: 200% 100%; animation: skeletonShine 1.4s ease-in-out infinite; border-radius: 6px; }
.skeleton-text { height: 12px; margin-bottom: 8px; width: 100%; }
.skeleton-text.short { width: 60%; }
@keyframes skeletonShine { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) { .skeleton { animation: none; } }

.progress-bar { width: 100%; height: 8px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.progress-bar-fill { height: 100%; border-radius: 999px; background: var(--blue-mid); transition: width .3s ease; }
.progress-bar-fill.success { background: var(--green-dark); }

/* ─── Theme transition ────────────────────────────────────────
   200ms color-only transition on theme switch, disabled for
   users who requested reduced motion. */
@media (prefers-reduced-motion: no-preference) {
    body, .main-nav, .card, .service-card, .value-card, .booking-form-card,
    .testimonial-card, .faq-item, .form-group input, .form-group select,
    .form-group textarea, .toast, .df-chat-panel {
        transition: background-color .25s ease, color .25s ease, border-color .25s ease;
    }
}

:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
