/* ================================================================
   SalsaOil Petroleum Ltd — Public Website
   main.css  v2.0
   Brand: Navy #0D1F3C · Amber #E8960F · DM Sans
================================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --navy:        #472665;
    --navy-mid:    #5C3580;
    --navy-dark:   #2E1647;
    --amber:       #F47920;
    --amber-dark:  #D96A10;
    --grey:        #F5F6FA;
    --grey-border: #e2d9f0;
    --white:       #FFFFFF;
    --text:        #1c1c2e;
    --muted:       #6b7280;
    --success:     #15803d;
    --error:       #dc2626;
    --r:           8px;
    --r-lg:        14px;
    --shadow:      0 2px 12px rgba(71,38,101,.10);
    --shadow-md:   0 4px 24px rgba(71,38,101,.14);
    --shadow-lg:   0 8px 40px rgba(71,38,101,.18);
    --trans:       .25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--amber);
    color: var(--white);
    padding: .5rem 1rem;
    border-radius: 0 0 var(--r) var(--r);
    font-weight: 700;
    z-index: 9999;
    transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── Scroll Reveal ─────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.6rem;
    border-radius: var(--r);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .01em;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
    white-space: nowrap;
    cursor: pointer;
}
.btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--navy);  color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); }
.btn-amber   { background: var(--amber); color: var(--white); }
.btn-amber:hover { background: var(--amber-dark); }
.btn-outline { border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.btn-ghost   { border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }

/* ── Section shared ────────────────────────────────────────── */
.section { padding: 5.5rem 0; }
.section-header { margin-bottom: 3rem; }
.eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: .55rem;
}
.eyebrow.light { color: rgba(232,150,15,.9); }
h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: .6rem;
}
h2.light { color: var(--white); }
.section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 640px;
}
.section-sub.light { color: rgba(255,255,255,.6); }


/* ================================================================
   NAVBAR
================================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 500;
    background: #fff;
    border-bottom: 1px solid var(--grey-border);
    transition: padding var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
    padding: .2rem 0;
    box-shadow: 0 3px 20px rgba(71,38,101,.18);
    border-bottom-color: transparent;
}
.nav-inner {
    display: flex;
    align-items: center;
    padding: .85rem 0;
    gap: 1.5rem;
    transition: padding var(--trans);
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; }
.logo-text { font-size: 1.4rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }

/* Footer logo — invert to white on dark purple background */
.footer-logo { filter: brightness(0) invert(1); }
.footer-wordmark { font-size: 1.5rem; font-weight: 700; color: var(--white); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    margin-left: auto;
    border-radius: var(--r);
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--trans), opacity var(--trans);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: .1rem;
}
.nav-links li { position: relative; }
.nav-links a,
.dropdown-btn {
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .45rem .8rem;
    color: rgba(71,38,101,.78);
    font-size: .88rem;
    font-weight: 500;
    border-radius: 6px;
    transition: color var(--trans), background var(--trans);
}
.nav-links a:hover,
.dropdown-btn:hover { color: var(--navy); background: rgba(71,38,101,.07); }
.chevron { transition: transform var(--trans); flex-shrink: 0; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }
.nav-cta { padding: .5rem 1.1rem; font-size: .88rem; margin-left: .5rem; }

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
    padding: .4rem 0;
    z-index: 600;
    border: 1px solid var(--grey-border);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.dropdown a {
    display: block;
    padding: .6rem 1.1rem;
    color: var(--navy);
    font-size: .88rem;
    border-radius: 0;
}
.dropdown a:hover { background: var(--grey); color: var(--navy-dark); }


/* ================================================================
   HERO
================================================================ */
/* ── Hero Slider ──────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 91vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Track that holds all slides side-by-side */
.hero-track {
    position: absolute;
    inset: 0;
    display: flex;
    width: 100%;
    transition: transform .75s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

/* Each slide background */
.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Replace these URLs with your own photos when ready */
.hero-slide-1 { background-image: url('https://picsum.photos/seed/oilstation/1920/1080'); }
.hero-slide-2 { background-image: url('https://picsum.photos/seed/tankerfleet/1920/1080'); }
.hero-slide-3 { background-image: url('https://picsum.photos/seed/businessmeeting/1920/1080'); }

/* Dark gradient overlay on each slide */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(130deg, rgba(46,22,71,.88) 0%, rgba(71,38,101,.55) 100%);
}

/* Content sits on top of the track */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    color: var(--white);
    padding: 6rem 0 5rem;
}

/* Slide copy panels — only active one is visible */
.hero-copy {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity .55s ease;
}
.hero-copy.active {
    opacity: 1;
    pointer-events: auto;
}
.hero-copy-inner {
    max-width: 680px;
    color: var(--white);
    padding: 6rem 0 5rem;
}
.hero-copy-inner .eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: .9rem;
}
.hero-copy-inner h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.hero-sub {
    font-size: 1.1rem;
    opacity: .88;
    max-width: 520px;
    margin-bottom: 2.25rem;
    line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Prev / Next arrows */
.slider-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 48px; height: 48px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50%;
    background: rgba(13,31,60,.35);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--amber); border-color: var(--amber); }
.slider-arrow svg  { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* Dot indicators */
.slider-dots {
    position: absolute;
    bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 10;
    display: flex; gap: .55rem;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none; cursor: pointer;
    transition: background .25s, transform .25s;
}
.slider-dot.active {
    background: var(--amber);
    transform: scale(1.3);
}


/* ================================================================
   STATS STRIP
================================================================ */
.stats-strip {
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,.07);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    padding: 2rem 0;
}
.stat-item {
    padding: 1.25rem 1rem;
    border-right: 1px solid rgba(255,255,255,.08);
    color: var(--white);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
    display: inline;
}
.stat-suffix {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--amber);
}
.stat-label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-top: .5rem;
}
@media (max-width: 640px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
}


/* ================================================================
   FUEL PRICES
================================================================ */
.prices-section { background: var(--grey); }
.prices-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.price-card {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--amber);
    text-align: center;
    transition: transform var(--trans);
}
.price-card:hover { transform: translateY(-4px); }
.price-card.skeleton {
    min-height: 180px;
    background: linear-gradient(90deg, #e8eaf0 25%, #f0f2f7 50%, #e8eaf0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-top-color: #d8dae8;
}
@keyframes shimmer { to { background-position: -200% 0; } }
.pc-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    margin-bottom: .9rem;
}
.pc-price {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -.02em;
}
.pc-unit   { font-size: .9rem; color: var(--muted); margin-top: .3rem; }
.pc-date   { font-size: .75rem; color: var(--muted); margin-top: .9rem; padding-top: .9rem; border-top: 1px solid var(--grey-border); }
.prices-note { margin-top: 1.25rem; font-size: .82rem; color: var(--muted); font-style: italic; }


/* ================================================================
   MISSION & VALUES
================================================================ */
.mission-section { background: var(--navy); }
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-bottom: 3rem;
}
.mission-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    transition: background var(--trans), transform var(--trans);
}
.mission-card:hover { background: rgba(255,255,255,.09); transform: translateY(-3px); }
.mission-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.25rem;
}
.mission-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .65rem;
}
.mission-card p { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.7; }

.mission-statement {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 2.5rem;
    text-align: center;
}
.mission-statement blockquote {
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    font-style: italic;
    color: rgba(255,255,255,.78);
    max-width: 780px;
    margin: 0 auto .75rem;
    line-height: 1.7;
}
.mission-statement cite {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--amber);
    font-style: normal;
}


/* ================================================================
   OUR STORY
================================================================ */
.story-section { background: var(--white); }
.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
.story-text .story-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.65;
    margin-bottom: 1.3rem;
}
.story-text p { font-size: 1rem; color: var(--muted); margin-bottom: 1.1rem; line-height: 1.75; }
.story-values {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-top: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--grey);
    border-radius: var(--r);
    border-left: 4px solid var(--amber);
}
.story-values span { font-size: .9rem; font-weight: 500; color: var(--navy); }

/* Timeline */
.timeline { padding-left: 1.75rem; position: relative; }
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--grey-border);
}
.tl-item {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: .75rem 1rem;
    align-items: start;
    padding-bottom: 2.25rem;
}
.tl-dot {
    position: absolute;
    left: -1.75rem;
    top: 8px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--grey-border);
    border: 2.5px solid var(--white);
    box-shadow: 0 0 0 2px var(--grey-border);
    transform: translateX(-5px);
    transition: background var(--trans), box-shadow var(--trans);
}
.tl-item.active .tl-dot {
    background: var(--amber);
    box-shadow: 0 0 0 3px rgba(232,150,15,.3);
}
.tl-year {
    font-size: .8rem;
    font-weight: 700;
    color: var(--amber);
    padding-top: 3px;
}
.tl-body h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
.tl-body p  { font-size: .85rem; color: var(--muted); line-height: 1.65; }


/* ================================================================
   BOARD OF DIRECTORS
================================================================ */
.board-section { background: var(--navy); }
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
}
.board-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--trans), box-shadow var(--trans);
}
.board-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.35); }
.board-photo {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--navy-mid);
}
.board-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .4s ease;
}
.board-card:hover .board-photo img { transform: scale(1.05); }
.board-info { padding: 1.5rem 1.4rem; }
.board-info h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.board-role {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--amber);
    margin-bottom: .85rem;
}
.board-info p { font-size: .85rem; color: rgba(255,255,255,.58); line-height: 1.7; }


/* ================================================================
   OUR TEAM
================================================================ */
.team-section { background: var(--grey); }
.team-block { margin-bottom: 3.5rem; }
.team-block:last-child { margin-bottom: 0; }
.dept-heading {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--amber);
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--grey-border);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 1.25rem;
}
.team-card {
    background: var(--white);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--trans), box-shadow var(--trans);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--grey);
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .35s;
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: .9rem 1rem 1.1rem; }
.team-info h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: .2rem; }
.team-info span { font-size: .78rem; color: var(--muted); }


/* ================================================================
   SERVICES
================================================================ */
.services-section { background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--amber);
    transition: transform var(--trans), box-shadow var(--trans);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-icon { width: 48px; height: 48px; margin-bottom: 1.1rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .6rem; }
.service-card p  { font-size: .9rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.svc-list { padding-left: 1rem; }
.svc-list li {
    font-size: .82rem;
    color: var(--muted);
    padding: .25rem 0;
    list-style: disc;
    line-height: 1.5;
}


/* ================================================================
   STATION LOCATOR
================================================================ */
.locator-section { background: var(--grey); }
.locator-search {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.search-wrap {
    position: relative;
    flex: 1;
    min-width: 240px;
}
.search-ico {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
    width: 17px;
    height: 17px;
}
#station-search {
    width: 100%;
    padding: .85rem 1rem .85rem 2.75rem;
    border: 2px solid var(--grey-border);
    border-radius: var(--r);
    font-size: .95rem;
    background: var(--white);
    transition: border-color var(--trans);
}
#station-search:focus { outline: none; border-color: var(--amber); }
.btn-geo { flex-shrink: 0; }

.locator-body {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 1.5rem;
    min-height: 520px;
    align-items: start;
}
.station-panel {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
    scroll-behavior: smooth;
}
.station-panel::-webkit-scrollbar { width: 4px; }
.station-panel::-webkit-scrollbar-thumb { background: var(--grey-border); border-radius: 4px; }

/* Station card */
.st-card {
    background: var(--white);
    border-radius: var(--r);
    padding: 1.1rem 1.2rem;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--trans), transform var(--trans);
}
.st-card:hover, .st-card.active { border-color: var(--amber); transform: translateX(4px); }
.st-card.nearest { border-color: var(--amber); }
.st-name {
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .25rem;
}
.nearest-tag {
    font-size: .62rem;
    font-weight: 700;
    background: var(--amber);
    color: var(--white);
    padding: 2px 7px;
    border-radius: 20px;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.st-addr   { font-size: .83rem; color: var(--muted); margin-bottom: .4rem; }
.st-dist   { font-size: .8rem;  font-weight: 700; color: var(--amber); margin-bottom: .3rem; }
.st-phone  { font-size: .8rem;  color: var(--muted); }
.st-hours  { font-size: .78rem; color: var(--muted); }
.st-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .75rem; }
.st-link {
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .7rem;
    border-radius: 5px;
    border: 1px solid var(--grey-border);
    color: var(--navy);
    transition: background var(--trans);
    cursor: pointer;
}
.st-link:hover { background: var(--grey); }

/* Map */
.map-wrap { position: relative; }
#map {
    width: 100%;
    height: 520px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    background: var(--grey);
}
.map-fallback {
    display: none;
    margin-top: 1rem;
    font-size: .85rem;
    color: var(--muted);
    font-style: italic;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--r);
    border: 1px solid var(--grey-border);
}


/* ================================================================
   SOCIAL
================================================================ */
.social-section { background: #f8f9fc; }

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.1rem;
    margin-top: .5rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    padding: 1.8rem 1rem 1.6rem;
    border-radius: 16px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,.13);
    position: relative;
    overflow: hidden;
}
.social-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background .22s;
}
.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,.2);
    filter: brightness(1.07);
}

.social-card-icon {
    width: 44px; height: 44px;
    background: rgba(255,255,255,.2);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.social-card-icon svg { width: 24px; height: 24px; fill: #fff; }

.social-card-name  { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.social-card-handle { font-size: .78rem; font-weight: 400; opacity: .85; }

/* Platform colours */
.social-card.facebook  { background: linear-gradient(145deg, #1877F2, #0a5cc5); }
.social-card.instagram { background: linear-gradient(145deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); }
.social-card.tiktok    { background: linear-gradient(145deg, #010101, #2e2e2e); }
.social-card.whatsapp  { background: linear-gradient(145deg, #25D366, #128C7E); }
.social-card.twitter   { background: linear-gradient(145deg, #14171A, #2d3748); }
.social-card.youtube   { background: linear-gradient(145deg, #FF0000, #c20000); }


/* ================================================================
   BUSINESS ENQUIRIES
================================================================ */
.business-section { background: var(--navy); }
.biz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.biz-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background var(--trans), transform var(--trans);
}
.biz-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.biz-icon { width: 48px; height: 48px; color: var(--amber); }
.biz-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.biz-card p  { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; flex: 1; }
.biz-list {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding-left: 1.1rem;
}
.biz-list li {
    font-size: .82rem;
    color: rgba(255,255,255,.55);
    list-style: disc;
}
.biz-apply { align-self: flex-start; font-size: .88rem; padding: .6rem 1.2rem; }


/* ================================================================
   CONTACT
================================================================ */
.contact-section { background: var(--grey); }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4.5rem;
    align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-ico {
    font-size: 1.35rem;
    flex-shrink: 0;
    width: 2.4rem;
    height: 2.4rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}
.contact-item strong { display: block; font-size: .8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .2rem; }
.contact-item a, .contact-item span { font-size: .95rem; color: var(--text); line-height: 1.55; }
.contact-item a:hover { color: var(--amber); }
.wa-btn { margin-top: .5rem; align-self: flex-start; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .02em;
}
.form-field label span { color: var(--error); }
.form-field input,
.form-field textarea,
.form-field select {
    padding: .78rem 1rem;
    border: 2px solid var(--grey-border);
    border-radius: var(--r);
    font-size: .95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--trans);
    resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { outline: none; border-color: var(--amber); }
.form-field input.error, .form-field textarea.error { border-color: var(--error); }
.field-error { font-size: .78rem; color: var(--error); min-height: 1rem; }
.form-status { font-size: .9rem; min-height: 1.2rem; }
.form-status.success { color: var(--success); }
.form-status.error   { color: var(--error); }
#cf-submit { align-self: flex-start; }
#cf-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }


/* ================================================================
   FOOTER
================================================================ */
.footer { background: var(--navy); }
.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
}
.fc-brand img { height: 48px; margin-bottom: 1rem; }
.fc-brand p {
    font-size: .88rem;
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.65);
    transition: background var(--trans), color var(--trans);
}
.footer-social a:hover { background: var(--amber); color: var(--white); }

.fc-links h4, .fc-hours h4, .fc-contact h4 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.4);
    margin-bottom: 1.25rem;
}
.fc-links nav { display: flex; flex-direction: column; gap: .5rem; }
.fc-links nav a {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    transition: color var(--trans), transform var(--trans);
}
.fc-links nav a:hover { color: var(--amber); transform: translateX(3px); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    padding: .3rem 0;
    vertical-align: top;
}
.hours-table td:first-child { color: rgba(255,255,255,.45); width: 50%; }
.hours-note { font-size: .75rem; color: rgba(255,255,255,.35); margin-top: .75rem; }

.fc-contact p { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1rem; }
.fc-contact strong { color: rgba(255,255,255,.45); font-size: .75rem; text-transform: uppercase; letter-spacing: .07em; }
.fc-contact a { color: rgba(255,255,255,.65); }
.fc-contact a:hover { color: var(--amber); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 1.5rem 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }


/* ================================================================
   BACK TO TOP
================================================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232,150,15,.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity var(--trans), transform var(--trans);
    z-index: 400;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--amber-dark); transform: translateY(-2px); }


/* ================================================================
   GOOGLE MAPS INFO WINDOW
================================================================ */
.gm-iw h3 { font-family: 'DM Sans', sans-serif; font-size: .95rem; color: var(--navy); margin-bottom: .3rem; }
.gm-iw p  { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: var(--muted); margin-bottom: .2rem; }
.gm-iw a  { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: var(--amber); font-weight: 700; }


/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
    .footer-cols { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .fc-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
    .story-layout  { grid-template-columns: 1fr; gap: 3rem; }
    .locator-body  { grid-template-columns: 1fr; }
    .station-panel { max-height: 320px; }
    #map           { height: 380px; }
    .contact-layout{ grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row      { grid-template-columns: 1fr; }
    .footer-cols   { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .cta-band-inner { flex-direction: column; text-align: center; }
    .cta-band-btns  { justify-content: center; }
}

@media (max-width: 768px) {
    /* Mobile nav */
    .hamburger { display: flex; }
    .nav-menu {
        display: none;
        position: fixed;
        inset: 0;
        top: 66px;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        gap: 0;
        overflow-y: auto;
        z-index: 499;
    }
    .nav-menu.open { display: flex; }
    .nav-links { flex-direction: column; gap: 0; }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,.08); }
    .nav-links a,
    .dropdown-btn {
        padding: .85rem .5rem;
        font-size: .95rem;
        border-radius: 0;
        justify-content: space-between;
        color: rgba(255,255,255,.85);
    }
    .nav-links a:hover,
    .dropdown-btn:hover { color: #fff; background: rgba(255,255,255,.08); }
    .dropdown {
        display: block;
        position: static;
        background: rgba(255,255,255,.05);
        box-shadow: none;
        border-radius: 0;
        border: none;
        padding: 0 0 0 1rem;
    }
    .dropdown a { color: rgba(255,255,255,.65); }
    .hamburger span { background: var(--navy); }
    .nav-cta { margin-top: 1.5rem; justify-content: center; width: 100%; }
    .hero-copy-inner h1 { font-size: 2.3rem; }
    .section { padding: 4rem 0; }
    .slider-arrow { width: 38px; height: 38px; }
    .social-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
    .hero { min-height: 85vh; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; justify-content: center; }
    .biz-grid { grid-template-columns: 1fr; }
    .board-grid { grid-template-columns: 1fr; }
    .back-to-top { bottom: 1.25rem; right: 1.25rem; }
    .slider-arrow { display: none; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
    position: relative;
    background-color: var(--navy-dark);
    background-image: var(--page-hero-img, none);
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--amber);
    padding: 5.5rem 0 4.5rem;
    text-align: center;
    overflow: hidden;
}
/* Dark gradient overlay so text stays readable over any photo */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46,22,71,.90) 0%, rgba(71,38,101,.75) 100%);
}
.page-hero .container {
    position: relative;
    z-index: 1;
}
.page-hero .eyebrow { margin-bottom: .75rem; }
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: .75rem;
}
.page-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.65);
    max-width: 600px;
    margin: 0 auto;
}

/* Active nav link */
.nav-links a[aria-current="page"] { color: var(--amber) !important; }

/* Section CTA row */
.section-cta { margin-top: 2.5rem; display: flex; justify-content: center; }

/* Full-width service cards on Services page */
.services-grid-full { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.svc-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.25rem; }

/* CTA band */
.cta-band {
    background: var(--navy);
    padding: 3.5rem 0;
}
.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-band h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: .4rem; }
.cta-band p  { font-size: .95rem; color: rgba(255,255,255,.6); }
.cta-band-btns { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* Branch detail cards */
.branch-details-section { background: var(--grey); }
.branch-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.branch-detail-card {
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--amber);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.bdc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.bdc-header h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); }
.badge-open {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: #dcfce7;
    color: #15803d;
    padding: 3px 10px;
    border-radius: 20px;
    flex-shrink: 0;
}
.bdc-body p { font-size: .88rem; color: var(--muted); line-height: 1.6; margin-bottom: .3rem; }
.bdc-body strong { color: var(--navy); }
.bdc-body a { color: var(--amber); }
.bdc-map-btn { align-self: flex-start; font-size: .85rem; padding: .55rem 1rem; }

/* Highlight pulse (business cards → form) */
.highlight-pulse { animation: pulse-border .6s ease; }
@keyframes pulse-border {
    0%   { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(232,150,15,.3); }
    100% { border-color: var(--grey-border); box-shadow: none; }
}


/* ── Print ──────────────────────────────────────────────────── */
@media print {
    .navbar, .back-to-top, .hero-ctas, .social-section,
    .locator-section, .business-section, .contact-form { display: none !important; }
    .hero { min-height: auto; padding: 2rem 0; }
    body { color: #000; }
}
