/* ============================================================
   GPS REMOVALS — STYLESHEET
   Navy · Gold · White · Black — Prestige · Reliability · Trust
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
    --navy:      #0b1c35;
    --navy-mid:  #0f2744;
    --navy-light:#1a3a6b;
    --gold:      #c9a84c;
    --gold-light:#e2c97e;
    --gold-dark: #a8882e;
    --cream:     #f7f3e9;
    --white:     #ffffff;
    --charcoal:  #1a1a1a;
    --grey:      #6b7280;
    --grey-light:#e5e7eb;
    --shadow:    0 4px 24px rgba(11, 28, 53, 0.12);
    --shadow-lg: 0 12px 48px rgba(11, 28, 53, 0.2);
    --radius:    10px;
    --radius-lg: 18px;
    --transition: 0.3s ease;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.gold-text { color: var(--gold); }
.container  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   LOGO (shared between sidebar + footer)
   ============================================================ */
.logo-emblem {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(201, 168, 76, 0.4);
    flex-shrink: 0;
}

.logo-emblem.small {
    width: 40px; height: 40px;
    font-size: 15px;
}

.logo-text { display: flex; flex-direction: column; }
.logo-name  { font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--white); line-height: 1.1; }
.logo-tagline { font-size: 11px; color: var(--gold-light); letter-spacing: 1.5px; text-transform: uppercase; }

/* ============================================================
   TOP NAV BAR
   ============================================================ */
.topnav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(11, 28, 53, 0.97);
    border-bottom: 2px solid var(--gold);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s;
}
.topnav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.45);
}
.topnav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.topnav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}
.topnav-logo-img {
    height: 38px;
    width: 38px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
}
.topnav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}
.topnav-logo-gold { color: var(--gold); }
.topnav-links {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}
.topnav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.45rem 0.85rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}
.topnav-links a:hover,
.topnav-links a.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}
.topnav-cta {
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
}

/* Seven links plus the logo and the CTA is a tight fit on a small
   laptop — tighten the padding rather than let the bar wrap. Below
   768px the links are hidden entirely and the burger takes over. */
@media (max-width: 960px) {
    .topnav-links a { padding: 0.45rem 0.55rem; font-size: 0.83rem; }
    .topnav-cta { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
}

/* Push page content below the topnav */
#pageWrapper { padding-top: 64px; }

/* Mobile header: burger sits inside the bar, logo clears it, CTA hidden.
   Selectors are doubled to out-specify later base rules (.btn sets
   display:inline-flex at equal specificity, so source order alone loses). */
@media (max-width: 768px) {
    .topnav-links { display: none; }
    .topnav-cta.topnav-cta { display: none; }
    .topnav-inner {
        justify-content: flex-start;
        gap: 0;
        padding: 0 16px 0 76px; /* 16 left inset + 48 burger + 12 breathing room */
    }
    .sidebar-toggle.sidebar-toggle {
        top: 8px;   /* (64 - 48) / 2 — vertically centred in the bar */
        left: 16px;
    }
}

@media (max-width: 380px) {
    .topnav-logo-text { font-size: 1rem; }
    .topnav-logo-img { height: 34px; width: 34px; }
}

/* ============================================================
   SIDEBAR TOGGLE BUTTON
   ============================================================ */
.sidebar-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
    width: 48px; height: 48px;
    background: var(--navy);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 10px;
    display: none; /* hidden on desktop — shown only on mobile via media query */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(11,28,53,0.45);
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.sidebar-toggle:hover {
    background: var(--navy-mid);
    border-color: rgba(201,168,76,0.6);
    box-shadow: 0 6px 28px rgba(11,28,53,0.55);
}

.sidebar-toggle span {
    display: block;
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

/* Burger is desktop-hidden by default (display:none above); reveal on mobile.
   Placed after the base rule so it wins on source order at equal specificity. */
@media (max-width: 768px) {
    .sidebar-toggle { display: flex; }
}

/* ============================================================
   PAGE WRAPPER — squishes to remaining width when sidebar opens
   ============================================================ */
#pageWrapper {
    transition: margin-left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-sizing: border-box;
    overflow-x: clip;
}

body.sidebar-open #pageWrapper {
    margin-left: 300px;
    width: calc(100% - 300px);
}

/* On small screens sidebar fully covers page — no squish */
@media (max-width: 600px) {
    body.sidebar-open #pageWrapper {
        margin-left: 0;
        width: 100%;
    }
}

/* Hide hamburger toggle once sidebar is open (close button inside handles it) */
body.sidebar-open .sidebar-toggle {
    opacity: 0;
    pointer-events: none;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
    position: fixed;
    top: 0; left: 0;
    width: 300px;
    height: 100vh;
    background: linear-gradient(170deg, var(--navy) 0%, #060d1a 100%);
    z-index: 1200;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 60px rgba(0,0,0,0.55);
    overflow-y: auto;
}

.sidebar.open { transform: translateX(0); }

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 24px 22px;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(201,168,76,0.3);
}

.sidebar-close {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45);
    cursor: pointer;
    font-size: 15px;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
    flex-shrink: 0;
}

.sidebar-close:hover {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.3);
    color: var(--gold);
}

.sidebar-divider {
    height: 1px;
    background: rgba(201,168,76,0.15);
    margin: 0 20px;
}

.sidebar-nav {
    padding: 20px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: background var(--transition), color var(--transition), padding-left var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-nav a i {
    width: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--gold);
    opacity: 0.65;
    transition: opacity var(--transition);
    flex-shrink: 0;
}

.sidebar-nav a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--white);
    padding-left: 20px;
}

.sidebar-nav a:hover i { opacity: 1; }

.sidebar-nav a.active {
    background: rgba(201,168,76,0.1);
    color: var(--gold-light);
    border-left-color: var(--gold);
}

.sidebar-nav a.active i { opacity: 1; }

.sidebar-cta {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.sidebar-quote-btn {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 13px 20px;
}

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-container {
    position: fixed;
    top: 80px; right: 20px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.flash {
    background: var(--navy);
    border-left: 4px solid var(--gold);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.4s ease;
}

.flash i { color: var(--gold); flex-shrink: 0; }

.flash-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    font-size: 20px;
    margin-left: auto;
    padding: 0 4px;
    line-height: 1;
    transition: color var(--transition);
}

.flash-close:hover { color: var(--white); }

@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 90vh;
    background:
        linear-gradient(rgba(6,11,28,0.70), rgba(6,11,28,0.70)),
        url('../images/hero-bg.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 24px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    width: 100%;
}

.hero-logo {
    width: min(400px, 80vw);
    height: auto;
    display: block;
    margin: 0 auto 24px;
    mix-blend-mode: screen;
}


.hero-label {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

/* Gold outlined spans inside hero title */
.hero-gold {
    color: var(--gold);
    -webkit-text-stroke: 0.9px rgba(0,0,0,0.85);
    paint-order: stroke fill;
}

/* Company name — the main attraction */
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.6rem, 9vw, 7.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

/* "Moving Made Effortless" — secondary tagline */
.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: rgba(255,255,255,0.9);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Description paragraph */
.hero-desc {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: 44px;
    line-height: 1.7;
}

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.5);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-large { padding: 16px 40px; font-size: 16px; }

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section { padding: 100px 0; }

.section-dark {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
}

.section-light { background: var(--cream); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.section-label.light { color: var(--gold-light); }

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 18px;
}

.section-title.light { color: var(--white); }
.section-dark .section-title { color: var(--white); }

.section-subtitle {
    font-size: 17px;
    color: var(--grey);
    line-height: 1.7;
}

.section-subtitle.light { color: rgba(255,255,255,0.65); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.3);
}

.service-card.featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
}

.service-card.featured h3 { color: var(--white); }
.service-card.featured p  { color: rgba(255,255,255,0.7); }

.featured-badge {
    position: absolute;
    top: -12px; left: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
}

.service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--gold);
}

.service-card.featured .service-icon {
    background: rgba(201,168,76,0.2);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14.5px;
    color: var(--grey);
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
}

.service-link:hover { gap: 10px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.why-us-text {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.why-us-features { display: flex; flex-direction: column; gap: 24px; }

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 44px; height: 44px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
}

/* ── Fleet photo (Why Choose Us) ──────────────────────────── */
.why-us-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.fleet-photo-frame {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: none;
    background: url('../images/truck-fleet.jpg') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-photo-frame::before {
    content: '';
    font-family: var(--font-sans);
    white-space: pre;
    text-align: center;
    color: rgba(201,168,76,0.75);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.fleet-photo-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(11,28,53,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
}

/* ── About team photo ─────────────────────────────────────── */
.about-team-photo-frame {
    position: relative;
    max-width: 720px;
    margin: 0 auto 52px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 7;
    border: none;
    background: url('../images/team.jpg') center top / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-team-photo-frame::before {
    content: '';
    font-family: var(--font-sans);
    white-space: pre;
    text-align: center;
    color: rgba(11,28,53,0.55);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index: 1;
}

.about-team-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11,28,53,0.82));
    padding: 32px 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.about-team-caption span {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font-serif);
}

.about-team-caption small {
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.visual-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    width: 100%;
    backdrop-filter: blur(6px);
}

.visual-icon-large { font-size: 72px; color: var(--gold); margin-bottom: 20px; opacity: 0.9; }
.visual-label { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.visual-sub { font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 1px; margin-bottom: 24px; }
.visual-divider { height: 1px; background: rgba(201,168,76,0.2); margin-bottom: 24px; }

.visual-stats-row { display: flex; justify-content: space-around; }
.vs-stat { text-align: center; }
.vs-stat span { display: block; font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.vs-stat small { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 1px; text-transform: uppercase; }

/* ============================================================
   ENQUIRY SECTION (QUOTE + BOOKING TABS)
   ============================================================ */
.enquiry-section { position: relative; }

.section-anchor {
    position: absolute;
    top: 0;
    visibility: hidden;
    pointer-events: none;
}

.enquiry-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.enquiry-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 32px;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
}

.enquiry-tab:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
    transform: translateY(-2px);
}

.enquiry-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: transparent;
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    transform: translateY(-2px);
}

.enquiry-tab.active:hover { transform: translateY(-3px); }

#panelBooking.hidden,
#panelQuote.hidden { display: none; }

/* ============================================================
   FORMS
   ============================================================ */
.form-wrapper {
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.form-wrapper.hidden { display: none; }

.gps-form { }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group-full { grid-column: 1 / -1; }

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.3px;
}

.required { color: var(--gold-dark); }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--grey-light);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 14.5px;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab3be; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-footer {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.form-note {
    font-size: 12.5px;
    color: var(--grey);
    display: flex;
    /* flex-start, not center: the note runs to two lines on a phone and a
       centred icon would float against the middle of the block. */
    align-items: flex-start;
    gap: 6px;
    line-height: 1.5;
}

.form-note i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.form-note a {
    color: var(--navy-light);
    font-weight: 600;
    text-decoration: underline;
}

.form-note a:hover { color: var(--gold-dark); }

/* Checkbox grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--charcoal);
    cursor: pointer;
    padding: 10px 14px;
    border: 1.5px solid var(--grey-light);
    border-radius: 8px;
    transition: border-color var(--transition), background var(--transition);
    user-select: none;
}

.checkbox-item:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }

.checkbox-item input[type="checkbox"] {
    width: 16px; height: 16px;
    accent-color: var(--gold-dark);
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    border: none;
}

/* ============================================================
   PACKAGING
   ============================================================ */
.packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.packaging-card {
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.packaging-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(201,168,76,0.3);
}

.packaging-card.featured-pkg {
    border-color: var(--gold);
    background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}

.packaging-card.featured-pkg h3,
.packaging-card.featured-pkg p { color: var(--white); }
.packaging-card.featured-pkg p { color: rgba(255,255,255,0.7); }
.packaging-card.featured-pkg .pkg-sizes span {
    background: rgba(201,168,76,0.2);
    border-color: rgba(201,168,76,0.35);
    color: var(--gold-light);
}

.pkg-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.04));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 26px;
    color: var(--gold);
}

.packaging-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.packaging-card p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: 16px;
}

.pkg-sizes { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }

.pkg-sizes span {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border: 1px solid var(--grey-light);
    border-radius: 50px;
    color: var(--grey);
    letter-spacing: 0.3px;
}

.packaging-cta { text-align: center; margin-bottom: 32px; }
.packaging-cta p { font-size: 16px; color: var(--grey); margin-bottom: 20px; }

/* ============================================================
   AREAS
   ============================================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.area-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.area-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}

.area-card.primary-area {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.25);
}

.area-card.area-card-wide {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.area-icon {
    width: 42px; height: 42px;
    background: rgba(201,168,76,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.area-card.area-card-wide .area-icon { margin-bottom: 0; margin-top: 4px; }

.area-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
}

.area-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 12px; }

.area-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.12);
    padding: 3px 10px;
    border-radius: 50px;
}

.area-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition);
    margin-top: 4px;
}

.area-link:hover { gap: 10px; }

.area-card.area-card-wide > div { flex: 1; min-width: 200px; }
.area-card.area-card-wide h3 { font-size: 1.3rem; margin-bottom: 10px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-placeholder {
    max-width: 800px;
    margin: 0 auto;
}

.about-text-block { text-align: center; }

.about-intro {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
}

.about-intro strong { font-weight: 700; }

/* ── Story prose ──────────────────────────────────────────── */
.about-prose { text-align: left; }

.about-prose p {
    font-size: 15.5px;
    color: var(--grey);
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-prose p:last-child { margin-bottom: 0; }

.about-prose strong { color: var(--navy); font-weight: 600; }

/* ── Meet the team ────────────────────────────────────────── */
.about-people {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 44px 0;
    text-align: left;
}

.person-card {
    display: flex;
    gap: 18px;
    background: var(--cream);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.person-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(201,168,76,0.35);
}

.person-initial {
    flex-shrink: 0;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(201,168,76,0.32);
}

.person-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 2px;
}

.person-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 12px;
}

.person-text {
    font-size: 14.5px;
    color: var(--grey);
    line-height: 1.75;
}

/* ── Closing line ─────────────────────────────────────────── */
.about-closing {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.65;
    max-width: 640px;
    margin: 44px auto 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(201,168,76,0.35);
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.value-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.value-pill i { color: var(--gold); font-size: 13px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(201,168,76,0.3);
}

.contact-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 22px;
    color: var(--gold);
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p { font-size: 14px; color: var(--grey); margin-bottom: 14px; line-height: 1.5; }

.contact-link {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--gold-dark);
    transition: color var(--transition);
    display: block;
}

.contact-link:hover { color: var(--navy); }

.contact-phone-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-phone-name {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(135deg, #050e08 0%, var(--navy) 100%);
    color: var(--white);
    padding: 72px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 56px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    background: var(--white);
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social a:hover {
    background: rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.35);
    color: var(--gold);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links li,
.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
    cursor: default;
}

.footer-links a:hover { color: var(--gold-light); cursor: pointer; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
}

.footer-contact-item i { color: var(--gold); width: 16px; text-align: center; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }

.footer-cta { margin-top: 8px; width: fit-content; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 92px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    padding: 12px 16px 12px 14px;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 901;
    transition: transform 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    overflow: hidden;
    max-width: 52px;
}

.whatsapp-float:hover {
    max-width: 180px;
    padding: 12px 20px 12px 14px;
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
    color: #fff;
}

.whatsapp-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.whatsapp-label {
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    max-width: 0;
    transition: opacity 0.25s ease 0.05s, max-width 0.3s ease;
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    max-width: 120px;
}

@keyframes whatsapp-pulse {
    0%   { box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
    70%  { box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

.whatsapp-float { animation: whatsapp-pulse 2.5s infinite; }
.whatsapp-float:hover { animation: none; }

.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    z-index: 900;
}

.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip { background: var(--charcoal); }

.photo-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* Two of the three tiles are anchors into #gallery — display:block
   stops the inline gap under the image from showing as a seam. */
.photo-strip-item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    text-decoration: none;
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.photo-strip-item:hover img { transform: scale(1.04); }

/* The tips graphic is square and carries text — cropping it to the
   strip's 4:3 cell cut the last line off mid-sentence. Fit the whole
   thing instead and let the navy show in the letterbox. */
.photo-strip-item-fit { background: var(--navy); }
.photo-strip-item-fit img { object-fit: contain; }
.photo-strip-item-fit:hover img { transform: scale(1.02); }

.photo-strip-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11,28,53,0.82));
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 28px 16px 14px;
    text-align: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.photo-strip-item:hover .photo-strip-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .photo-strip-grid { grid-template-columns: 1fr; }
    .photo-strip-item { aspect-ratio: 16 / 9; }
}

/* ============================================================
   GALLERY

   A fixed-row grid rather than true masonry: rows are 190px and
   portrait shots span two of them, which gives the staggered look
   without a JS layout pass. Column count comes from auto-fill, so
   the grid reflows on its own between phone and desktop.
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    grid-auto-rows: 190px;
    gap: 14px;
    /* dense: the column count changes with the viewport, so mixed
       1- and 2-cell tiles leave holes at some widths no matter what
       order they are in. Dense backfills them. It can reorder tiles
       visually — fine here, since no photo depends on the one before
       it (the lightbox still steps through them in DOM order). */
    grid-auto-flow: dense;
}

.gallery-item.is-tall { grid-row: span 2; }
.gallery-item.is-wide { grid-column: span 2; }

/* Buttons, not links: the lightbox is the destination and there is
   no URL to point at, so a button keeps keyboard and screen-reader
   behaviour honest. These resets undo the UA button chrome. */
.gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(201, 168, 76, 0.16);
    border-radius: 6px;
    background: var(--navy-mid);
    cursor: pointer;
    display: block;
    font: inherit;
    color: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.06); }

.gallery-item:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Caption rides in on hover/focus on pointer devices; on touch there
   is no hover, so the touch block near the bottom pins it open. */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(11, 28, 53, 0.9));
    color: var(--gold-light);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-align: left;
    padding: 30px 12px 10px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-footnote {
    margin-top: 28px;
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.gallery-footnote a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.gallery-footnote a:hover { color: var(--gold-light); }
.gallery-footnote i { font-size: 12px; margin-left: 4px; }

/* Below ~520px the grid is a single column, so a .is-wide tile would
   ask for two columns that do not exist. Reset both spans and let
   every photo take one square-ish cell. */
@media (max-width: 520px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 130px;
        gap: 10px;
    }
    .gallery-item.is-wide { grid-column: span 2; }
    .gallery-item.is-tall { grid-row: span 1; }
    .gallery-caption { font-size: 11px; padding: 24px 9px 8px; }
}

/* No hover on touch — show captions permanently, slightly dimmer. */
@media (hover: none) {
    .gallery-caption { opacity: 1; transform: none; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(6, 13, 26, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

/* [hidden] wins the display battle only if it is stated after the
   flex rule above — the attribute selector and the class have the
   same specificity, so source order decides. */
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox-figure {
    margin: 0;
    max-width: min(1100px, 100%);
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lightbox-figure img {
    max-width: 100%;
    /* Leave room for the caption line and the padding above/below. */
    max-height: calc(100vh - 140px);
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
    text-align: center;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.lightbox-caption small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
}

.lightbox-close,
.lightbox-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.4);
    background: rgba(11, 28, 53, 0.85);
    color: var(--gold);
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.06);
}

.lightbox-close:focus-visible,
.lightbox-arrow:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
}

/* On phones the arrows sit over the bottom corners of the photo
   rather than stealing width from it. */
@media (max-width: 640px) {
    .lightbox { padding: 16px; }
    .lightbox-arrow {
        position: absolute;
        bottom: 22px;
        width: 42px;
        height: 42px;
    }
    .lightbox-prev { left: 18px; }
    .lightbox-next { right: 18px; }
    .lightbox-figure img { max-height: calc(100vh - 170px); }
}

@media (prefers-reduced-motion: reduce) {
    .lightbox,
    .gallery-item img,
    .gallery-caption { transition: none; }
    .gallery-item:hover img,
    .gallery-item:focus-visible img { transform: none; }
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   ============================================================ */
.reviews-carousel {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews-track {
    display: grid;
    flex: 1;
    min-height: 280px;
}

.review-slide {
    grid-area: 1 / 1;
    opacity: 0;
    transition: opacity 0.65s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 44px 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(4px);
}

.review-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.review-quote-mark {
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.55;
    margin-bottom: 20px;
    line-height: 1;
}

.review-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.85;
    margin-bottom: 24px;
    max-width: 620px;
}

.review-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 18px;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}

.review-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.review-location {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.4px;
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
}

.review-source i { color: #4285f4; font-size: 13px; }

.reviews-arrow {
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50%;
    color: var(--gold);
    font-size: 15px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.reviews-arrow:hover {
    background: rgba(201,168,76,0.12);
    border-color: var(--gold);
    transform: scale(1.1);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.reviews-dot {
    width: 8px; height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.18);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), width var(--transition);
}

.reviews-dot.active {
    background: var(--gold);
    width: 26px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
    .why-us-visual { display: none; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .packaging-grid { grid-template-columns: 1fr 1fr; }
    .areas-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .form-wrapper { padding: 32px 24px; }
    .review-slide { padding: 36px 28px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    .sidebar { width: 280px; }

    .services-grid { grid-template-columns: 1fr; }
    .packaging-grid { grid-template-columns: 1fr; }

    .areas-grid { grid-template-columns: 1fr; }
    .area-card.area-card-wide { flex-direction: column; }

    .contact-grid { grid-template-columns: 1fr; }

    .reviews-arrow { display: none; }
    .review-slide { padding: 32px 20px; }
    .review-text { font-size: 1rem; }
    .reviews-track { min-height: 300px; }

    .footer-container { grid-template-columns: 1fr; gap: 32px; }

    .form-grid { grid-template-columns: 1fr; }
    .form-group-full { grid-column: 1; }

    .about-people { grid-template-columns: 1fr; gap: 18px; margin: 34px 0; }
    .about-intro { font-size: 1.15rem; }
    .about-closing { font-size: 1.1rem; margin: 34px auto 30px; padding-top: 26px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.6rem; }
    .hero-subtitle { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }

    .person-card { flex-direction: column; gap: 14px; padding: 22px 20px; }
    .person-initial { width: 48px; height: 48px; font-size: 1.35rem; }

    .footer-bottom { flex-direction: column; text-align: center; }
    .back-to-top { bottom: 20px; right: 20px; }
    .whatsapp-float { bottom: 76px; right: 16px; padding: 10px 12px; }
    .whatsapp-float:hover { max-width: 52px; padding: 10px 12px; }
    .whatsapp-float:hover .whatsapp-label { opacity: 0; max-width: 0; }
}
