﻿/* =================================================================
   OM DRIVING SCHOOL — PREMIUM REDESIGN
   Inspired by: Tesla · Apple · Uber · Arc Browser · Linear.app
   Dark Navy + Gold luxury palette — WOW-factor first impression
   ================================================================= */

/* ---------- FONTS & VARIABLES ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0A2248;
    --navy-deep: #060F1E;
    --navy-mid: #0d2d5e;
    --gold: #D4A447;
    --gold-light: #f0c96a;
    --gold-dark: #a87d28;
    --blue: #1F5EFF;
    --blue-light: #4d84ff;
    --white: #ffffff;
    --off-white: #F7F9FC;
    --gray-subtle: #eef1f7;
    --gray-mid: #8a94a6;
    --gray-dark: #3d4a5c;
    --dark: #060F1E;

    --font-h: 'Poppins', sans-serif;
    --font-b: 'Inter', sans-serif;

    --r-xl: 28px;
    --r-lg: 20px;
    --r-md: 14px;
    --r-sm: 8px;
    --r-pill: 100px;

    --shadow-card: 0 2px 20px rgba(10, 34, 72, 0.08), 0 1px 4px rgba(10, 34, 72, 0.04);
    --shadow-raised: 0 16px 48px rgba(10, 34, 72, 0.18), 0 4px 12px rgba(10, 34, 72, 0.08);
    --shadow-float: 0 32px 80px rgba(10, 34, 72, 0.28);
    --shadow-gold: 0 8px 32px rgba(212, 164, 71, 0.35);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t: 0.3s var(--ease);
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-b);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-h);
    line-height: 1.15;
    color: var(--navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--t);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}


.container {
    max-width: 1440px;
}

/* ---------- PAGE LOADER ---------- */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-wrap {
    text-align: center;
}

.loader-track {
    width: 160px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-fill {
    height: 100%;
    width: 0;
    background: var(--gold);
    animation: fillBar 1.8s ease forwards;
    border-radius: 2px;
}

@keyframes fillBar {
    to {
        width: 100%;
    }
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* ---------- SCROLL PROGRESS ---------- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    z-index: 10000;
    background: linear-gradient(90deg, var(--gold), var(--blue-light));
    width: 0%;
    transition: width 0.08s linear;
}

/* ---------- NAVBAR ---------- */
.om-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.4s var(--ease);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(6, 15, 30, 0.72);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: var(--t);
}

.mobile-nav-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    width: min(320px, 86vw);
    background: linear-gradient(180deg, rgba(6, 15, 30, 0.98), rgba(10, 34, 72, 0.98));
    border-left: 1px solid rgba(212, 164, 71, 0.16);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
    padding: 20px 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-panel.open {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.mobile-nav-brand-text {
    min-width: 0;
}

.mobile-nav-brand-title {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.mobile-nav-brand-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.62);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-nav-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-close:hover {
    background: rgba(212, 164, 71, 0.15);
    color: var(--gold);
}

.mobile-nav-section-label {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 4px 4px 6px;
    font-weight: 700;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 2px;
}

.mobile-nav-item {
    width: 100%;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.86);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(212, 164, 71, 0.12);
    color: var(--gold);
    border-color: rgba(212, 164, 71, 0.16);
}

.mobile-nav-cta {
    margin-top: 10px;
    background: var(--gold);
    color: var(--navy);
    justify-content: center;
    box-shadow: var(--shadow-gold);
    border-color: transparent;
}

.mobile-nav-cta:hover {
    background: var(--gold-light);
    color: var(--navy);
}

body.mobile-nav-open {
    overflow: hidden;
}

@media (min-width: 992px) {

    .mobile-nav-overlay,
    .mobile-nav-panel,
    .navbar-toggler {
        display: none !important;
    }

    /* Force desktop nav visible — we use custom mobile panel, not Bootstrap collapse */
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

@media (max-width: 991.98px) {

    /* Hide Bootstrap collapse on mobile — custom panel handles it */
    .navbar-collapse {
        display: none !important;
    }

    .om-navbar .container {
        padding-inline: 16px;
    }

    .om-navbar {
        padding: 8px 0;
    }
}

.om-navbar.scrolled {
    background: rgba(6, 15, 30, 0.92) !important;
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(212, 164, 71, 0.12);
    padding: 6px 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.om-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-pill {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--navy);
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 900;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(212, 164, 71, 0.4);
}

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.brand-name-text {
    font-family: var(--font-h);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--white);
}

.brand-sub-text {
    font-size: 0.68rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--t);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08);
}

.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.om-dropdown {
    background: rgba(8, 18, 36, 0.98) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 164, 71, 0.15) !important;
    border-radius: var(--r-lg) !important;
    padding: 10px;
    min-width: 230px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.om-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.87rem;
    border-radius: 10px;
    padding: 10px 14px;
    transition: var(--t);
}

.om-dropdown .dropdown-item:hover {
    background: rgba(212, 164, 71, 0.12) !important;
    color: var(--gold) !important;
}

.nav-book-btn {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 700 !important;
    font-size: 0.84rem !important;
    padding: 10px 22px !important;
    border-radius: var(--r-pill) !important;
    box-shadow: var(--shadow-gold);
    transition: var(--t) !important;
}

.nav-book-btn:hover {
    background: var(--gold-light) !important;
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 164, 71, 0.5) !important;
}

/* ================================================================
   HERO SECTION — Clean cinematic split layout
   ================================================================ */
.hero {
    min-height: 100vh;
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Single clean background — no animation, no clutter */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1511919884226-fd3cad34687c?w=1920&q=85');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.22) saturate(0.6);
}

/* One simple gradient — left dark, right slight blue tint */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(6, 15, 30, 0.96) 0%,
            rgba(10, 34, 72, 0.82) 50%,
            rgba(6, 15, 30, 0.75) 100%);
}

/* Subtle dot grid — very light, only visible on dark bg */
.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 36px 36px;
}

/* Orbs removed — cleaner without them */
.hero-orb {
    display: none;
}

.hero-inner {
    position: relative;
    z-index: 3;
    padding: 130px 0 80px;
    width: 100%;
}

/* Left hero column */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 164, 71, 0.1);
    border: 1px solid rgba(212, 164, 71, 0.3);
    border-radius: var(--r-pill);
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: blink 2s infinite;
    flex-shrink: 0;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(212, 164, 71, 0.6);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(212, 164, 71, 0);
    }
}

.hero-h1 {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-h1 .gold {
    color: var(--gold);
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.8;
    max-width: 540px;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* Trust strip — simple, clear row of numbers */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.trust-item {
    padding: 0 22px 0 0;
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-num {
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 22px;
    flex-shrink: 0;
}

/* Right hero — image card */
.hero-visual {
    position: relative;
    transition: transform 0.6s ease;
}

.hero-card-main {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-card-main img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
}

.hero-card-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(6, 15, 30, 0.6) 100%);
    border-radius: 24px;
}

/* Floating info cards — clean glassmorphism, no competing gradients */
.hero-float-card {
    position: absolute;
    z-index: 4;
    background: rgba(10, 20, 40, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hfc-1 {
    bottom: 28px;
    left: -24px;
    min-width: 170px;
}

.hfc-2 {
    top: 28px;
    right: -20px;
    min-width: 155px;
}

.hfc-num {
    font-family: var(--font-h);
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.hfc-label {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.hfc-stars {
    color: #FFB800;
    font-size: 0.73rem;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.hfc-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* ================================================================
   BUTTONS — Premium variants
   ================================================================ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    color: var(--navy);
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 0.93rem;
    padding: 15px 32px;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(212, 164, 71, 0.55);
    color: var(--navy);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-weight: 600;
    font-size: 0.93rem;
    padding: 14px 30px;
    border-radius: var(--r-pill);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--t);
    cursor: pointer;
    white-space: nowrap;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 0.93rem;
    padding: 14px 30px;
    border-radius: var(--r-pill);
    border: none;
    transition: var(--t);
    cursor: pointer;
    box-shadow: var(--shadow-raised);
}

.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: var(--shadow-float);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: var(--r-pill);
    border: 2px solid var(--gold);
    transition: var(--t);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ================================================================
   SECTION UTILITIES
   ================================================================ */
.sec {
    padding: 90px 0;
}

.sec-sm {
    padding: 60px 0;
}

.sec-dark {
    background: var(--navy-deep);
}

.sec-navy {
    background: var(--navy);
}

.sec-light {
    background: var(--off-white);
}

.sec-white {
    background: var(--white);
}

.label-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(31, 94, 255, 0.08);
    border: 1px solid rgba(31, 94, 255, 0.2);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    margin-bottom: 16px;
}

.label-tag.gold {
    color: var(--gold);
    background: rgba(212, 164, 71, 0.1);
    border-color: rgba(212, 164, 71, 0.25);
}

.label-tag.white {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.sec-title {
    font-size: clamp(1.85rem, 4vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.4px;
    line-height: 1.12;
}

.sec-title .hi {
    color: var(--gold);
}

.sec-title.light {
    color: var(--white);
}

.sec-sub {
    font-size: 1rem;
    color: var(--gray-mid);
    line-height: 1.75;
    max-width: 560px;
}

.sec-sub.light {
    color: rgba(255, 255, 255, 0.55);
}

/* ================================================================
   STATS MARQUEE STRIP
   ================================================================ */
.stats-strip {
    background: var(--gold);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 22s linear infinite;
    white-space: nowrap;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    flex-shrink: 0;
    font-family: var(--font-h);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.marquee-item i {
    font-size: 1rem;
    opacity: 0.7;
}

.marquee-sep {
    color: var(--navy);
    opacity: 0.35;
    padding: 0 10px;
    font-size: 1.2rem;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ================================================================
   WHY CHOOSE — Clean feature grid (3 cols, 1 featured wide card)
   ================================================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.bento-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 30px 26px;
    border: 1px solid rgba(10, 34, 72, 0.07);
    box-shadow: var(--shadow-card);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    overflow: hidden;
    position: relative;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-raised);
}

.bento-card:hover .bc-icon {
    background: var(--navy);
    color: var(--gold);
}

/* Wide card spans full row */
.bc-wide {
    grid-column: span 2;
}

/* Tall card on the right */
.bc-dark {
    background: var(--navy);
}

.bc-gold-bg {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}

.bc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(31, 94, 255, 0.08);
    color: var(--blue);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--t);
    flex-shrink: 0;
}

.bc-dark .bc-icon {
    background: rgba(212, 164, 71, 0.15);
    color: var(--gold);
}

.bc-dark:hover .bc-icon {
    background: rgba(212, 164, 71, 0.25);
    color: var(--gold);
}

.bc-gold-bg .bc-icon {
    background: rgba(10, 34, 72, 0.12);
    color: var(--navy);
}

.bc-gold-bg:hover .bc-icon {
    background: rgba(10, 34, 72, 0.2);
    color: var(--navy);
}

.bc-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.bc-dark .bc-title {
    color: var(--white);
}

.bc-gold-bg .bc-title {
    color: var(--navy);
}

.bc-desc {
    font-size: 0.875rem;
    color: var(--gray-mid);
    line-height: 1.75;
    margin: 0;
}

.bc-dark .bc-desc {
    color: rgba(255, 255, 255, 0.55);
}

.bc-gold-bg .bc-desc {
    color: rgba(10, 34, 72, 0.7);
}

/* Big number inside wide card */
.bc-big-stat {
    font-family: var(--font-h);
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.bc-wide-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    height: 100%;
}

.bc-wide-img {
    flex-shrink: 0;
    width: 260px;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
    opacity: 0.75;
}

/* Star row */
.bc-stars {
    font-size: 1.1rem;
    letter-spacing: 4px;
    margin-top: 14px;
}

/* ================================================================
   COURSES — Horizontal scroll / grid with premium cards
   ================================================================ */
.courses-section {
    background: var(--off-white);
}

.course-card {
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(10, 34, 72, 0.06);
    transition: all 0.4s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-raised);
}

.course-card:hover .course-img img {
    transform: scale(1.08);
}

.course-card:hover .course-learn-btn {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.course-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.course-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6, 15, 30, 0.65) 100%);
}

.course-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--r-pill);
}

.course-price-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 8px 14px;
    color: white;
}

.course-price-badge .amount {
    font-family: var(--font-h);
    font-size: 1.2rem;
    font-weight: 800;
}

.course-price-badge .unit {
    font-size: 0.72rem;
    opacity: 0.8;
}

.course-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-body h4 {
    font-size: 1.04rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.course-body p {
    font-size: 0.86rem;
    color: var(--gray-mid);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.course-learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--r-pill);
    border: 2px solid var(--navy);
    color: var(--navy);
    font-size: 0.84rem;
    font-weight: 700;
    transition: var(--t);
    align-self: flex-start;
}

/* ================================================================
   COURSES — Swiper overrides
   ================================================================ */

/* Clip wrapper — hides horizontal bleed, allows vertical shadow */
.courses-swiper-wrap {
    overflow: hidden;
    margin: 0 -8px;
    padding: 0 8px;
}

.courses-swiper {
    width: 100%;
    padding: 8px 0 60px !important;
    overflow: visible !important;
    /* allows card box-shadows to show */
}

.courses-swiper .swiper-wrapper {
    align-items: stretch;
}

.courses-swiper .swiper-slide {
    height: auto;
}

/* Courses pagination — same gold pill style */
.courses-pagination {
    bottom: 10px !important;
}

.courses-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(10, 34, 72, 0.18);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.35s var(--ease);
}

.courses-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
}

/* Controls row under slider */
.courses-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    flex-wrap: wrap;
    gap: 14px;
}

.courses-nav {
    display: flex;
    gap: 10px;
}

.courses-btn-prev,
.courses-btn-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid rgba(10, 34, 72, 0.12);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--t);
    box-shadow: var(--shadow-card);
}

.courses-btn-prev:hover,
.courses-btn-next:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
    transform: scale(1.08);
}

.courses-btn-prev.swiper-button-disabled,
.courses-btn-next.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.courses-hint {
    font-size: 0.8rem;
    color: var(--gray-mid);
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}

/* ================================================================
   PROCESS — Clean dark timeline
   ================================================================ */
.process-section {
    background: var(--navy-deep);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 94, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.process-step-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.process-step-wrap::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(10% + 28px);
    right: calc(10% + 28px);
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.step-bubble {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.step-bubble i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.25);
}

.step-bubble .step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
}

/* All steps show as active on load — sequential reveal via JS */
.process-step.active .step-bubble {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 0 10px rgba(212, 164, 71, 0.12);
}

.process-step.active .step-bubble i {
    color: var(--navy);
}

.process-step.active .step-bubble .step-number {
    background: var(--navy);
    color: var(--gold);
}

.step-label {
    font-family: var(--font-h);
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 5px;
}

.step-desc {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.5;
}

.process-step.active .step-label {
    color: var(--gold);
}

.process-step.active .step-desc {
    color: rgba(255, 255, 255, 0.5);
}

/* ================================================================
   ABOUT SECTION — Full-bleed split
   ================================================================ */
.about-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-img-stack {
    position: relative;
}

.about-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-float);
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}

.about-img-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 34, 72, 0.15) 0%, transparent 60%);
    border-radius: 24px;
}

.about-exp-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    border-radius: 20px;
    padding: 26px 30px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.about-exp-badge .n {
    font-family: var(--font-h);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.about-exp-badge .t {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.8;
    margin-top: 4px;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 26px 0;
}

.about-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(10, 34, 72, 0.06);
}

.about-features-list li:last-child {
    border: none;
}

.afl-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 164, 71, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.afl-text strong {
    display: block;
    font-size: 0.93rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 2px;
}

.afl-text span {
    font-size: 0.83rem;
    color: var(--gray-mid);
}

/* ================================================================
   TESTIMONIALS — Swiper slider
   ================================================================ */
.testimonials-section {
    background: var(--off-white);
    overflow: hidden;
}

/* Rating badge */
.reviews-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 16px 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(10, 34, 72, 0.07);
}

.rrb-score {
    font-family: var(--font-h);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.rrb-stars {
    color: #FFB800;
    font-size: 1rem;
    letter-spacing: 3px;
}

.rrb-count {
    font-size: 0.78rem;
    color: var(--gray-mid);
    margin-top: 3px;
}

/* Swiper container */
.reviews-swiper-wrap {
    overflow: hidden;
    margin: 0 -8px;
    padding: 0 8px;
}

.reviews-swiper {
    width: 100%;
    padding: 8px 0 56px !important;
    overflow: visible !important;
}

.reviews-swiper .swiper-wrapper {
    align-items: stretch;
}

.reviews-swiper .swiper-slide {
    height: auto;
}

/* Review card */
.review-card {
    background: var(--white);
    border: 1px solid rgba(10, 34, 72, 0.07);
    border-radius: var(--r-xl);
    padding: 30px 24px;
    box-shadow: var(--shadow-card);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-raised);
    border-color: rgba(212, 164, 71, 0.3);
}

.rc-quote {
    font-size: 1.3rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 14px;
    line-height: 1;
}

.review-stars {
    color: #FFB800;
    font-size: 0.88rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-body {
    font-size: 0.92rem;
    color: var(--gray-dark);
    line-height: 1.8;
    flex: 1;
    margin-bottom: 24px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(212, 164, 71, 0.25);
}

.reviewer-info {
    min-width: 0;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
}

.reviewer-loc {
    font-size: 0.76rem;
    color: var(--gray-mid);
    margin-top: 1px;
}

.g-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
}

.g-badge span {
    font-size: 0.7rem;
    color: var(--gray-mid);
}

/* Swiper pagination */
.reviews-pagination {
    bottom: 8px !important;
}

.reviews-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(10, 34, 72, 0.2);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.35s var(--ease);
}

.reviews-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Controls row */
.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    flex-wrap: wrap;
    gap: 16px;
}

.reviews-nav {
    display: flex;
    gap: 10px;
}

.reviews-btn-prev,
.reviews-btn-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid rgba(10, 34, 72, 0.12);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--t);
    box-shadow: var(--shadow-card);
}

.reviews-btn-prev:hover,
.reviews-btn-next:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
    transform: scale(1.08);
}

.reviews-btn-prev.swiper-button-disabled,
.reviews-btn-next.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ================================================================
   GALLERY — Simple and clean
   ================================================================ */
.gallery-section {
    background: var(--off-white);
    padding: 70px 0;
}

.gallery-simple {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gal-item {
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--white);
    box-shadow: var(--shadow-card);
    border: 0;
    padding: 0;
    cursor: pointer;
}

.gal-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s var(--ease);
}

.gal-item:hover img {
    transform: scale(1.03);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 23, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
}

.gallery-lightbox.open {
    display: flex;
}

.gallery-lightbox-content {
    position: relative;
    max-width: 980px;
    width: 100%;
    text-align: center;
}

.gallery-lightbox-content img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: var(--r-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox-caption {
    margin-top: 14px;
    color: var(--white);
    font-size: 0.95rem;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    top: 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 0;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-lightbox-close {
    right: 20px;
    font-size: 1.6rem;
}

.gallery-lightbox-nav.prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox-nav.next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.section-intro {
    max-width: 720px;
}

.info-card {
    background: linear-gradient(135deg, rgba(10, 34, 72, 0.98), rgba(31, 94, 255, 0.88));
    border-radius: var(--r-xl);
    padding: 28px 28px;
    color: var(--white);
    box-shadow: var(--shadow-raised);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.info-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 12px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-list li {
    position: relative;
    padding-left: 18px;
    line-height: 1.6;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.9);
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.booking-step-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
}

/* ================================================================
   FAQ — Clean accordion
   ================================================================ */
.faq-section {
    background: var(--white);
}

.faq-sidebar-card {
    background: var(--white);
    border: 1px solid rgba(10, 34, 72, 0.08);
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.faq-jump-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: var(--r-md);
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--t);
    text-decoration: none;
    background: var(--off-white);
    margin-bottom: 8px;
    border: 1px solid rgba(10, 34, 72, 0.06);
}

.faq-jump-link:hover {
    background: var(--white);
    color: var(--gold);
    transform: translateX(2px);
}

.faq-jump-link i {
    color: var(--gold);
    font-size: 0.9rem;
    width: 16px;
}

.faq-panel {
    background: var(--white);
    border: 1px solid rgba(10, 34, 72, 0.08);
    border-radius: var(--r-xl);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-card);
}

.faq-panel-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(10, 34, 72, 0.08);
}

.faq-panel-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(212, 164, 71, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-panel-heading h4 {
    color: var(--navy);
    font-weight: 700;
    margin: 0;
    font-size: 1.05rem;
}

.faq-accordion .accordion-item {
    border: 1px solid rgba(10, 34, 72, 0.08) !important;
    border-radius: var(--r-lg) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: var(--white) !important;
    color: var(--navy);
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 18px 20px;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(10, 34, 72, 0.03) !important;
    color: var(--navy);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230A2248' fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-accordion .accordion-body {
    padding: 16px 20px 20px;
    font-size: 0.93rem;
    color: var(--gray-mid);
    line-height: 1.8;
}

/* ================================================================
   CTA BANNER — Full premium dark section
   ================================================================ */
.cta-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 100% 50%, rgba(31, 94, 255, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 0% 50%, rgba(212, 164, 71, 0.08) 0%, transparent 60%);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 164, 71, 0.3), transparent);
}

.cta-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.contact-section {
    background: var(--off-white);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 50px 44px;
    box-shadow: var(--shadow-raised);
    border: 1px solid rgba(10, 34, 72, 0.06);
}

.contact-info-card {
    background: var(--navy);
    border-radius: var(--r-xl);
    padding: 50px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(212, 164, 71, 0.06);
    pointer-events: none;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
}

.form-control,
.form-select {
    border: 1.5px solid rgba(10, 34, 72, 0.12);
    border-radius: var(--r-md);
    padding: 13px 18px;
    font-size: 0.93rem;
    font-family: var(--font-b);
    transition: var(--t);
    width: 100%;
    background: var(--white);
    color: var(--dark);
    appearance: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 164, 71, 0.15);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.ci-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(212, 164, 71, 0.12);
    color: var(--gold);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.ci-value {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
}

.ci-value a {
    color: var(--white);
}

.ci-value a:hover {
    color: var(--gold);
}

.map-embed {
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 24px;
    height: 200px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-embed-ph {
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}

.map-embed-ph i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
}

.map-embed-ph p {
    font-size: 0.82rem;
}

/* ================================================================
   FOOTER — Premium dark mega footer
   ================================================================ */
.om-footer {
    background: var(--navy-deep);
}

.footer-top {
    padding: 90px 0 60px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 0;
}

.footer-bottom {
    padding: 26px 0;
}

.footer-bottom p {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-bottom a {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
    color: var(--gold);
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-brand-logo .brand-pill {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
}

.footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
    margin-bottom: 26px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.f-social {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: var(--t);
}

.f-social:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
}

.footer-link-list li {
    margin-bottom: 11px;
}

.footer-link-list a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--t);
}

.footer-link-list a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-link-list a i {
    font-size: 0.6rem;
    color: var(--gold);
    opacity: 0.6;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.footer-contact-list li i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-list li span,
.footer-contact-list li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-contact-list li a:hover {
    color: var(--gold);
}

/* ================================================================
   FLOATING ACTIONS
   ================================================================ */
#back-to-top {
    position: fixed;
    bottom: 160px;
    right: 26px;
    z-index: 998;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--t);
    box-shadow: var(--shadow-raised);
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.float-wa,
.float-call {
    position: fixed;
    right: 20px;
    z-index: 998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-float);
    transition: all 0.35s var(--ease-spring);
    text-decoration: none;
}

.float-wa {
    bottom: 180px;
    background: #25D366;
    color: white;
}

.float-call {
    bottom: 110px;
    background: #1F5AA0;
    color: white;
}

.float-wa:hover,
.float-call:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.float-tooltip {
    position: absolute;
    right: 68px;
    background: rgba(10, 20, 40, 0.9);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--t);
}

.float-tooltip::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-right: none;
    border-left-color: rgba(10, 20, 40, 0.9);
}

.float-wa:hover .float-tooltip,
.float-call:hover .float-tooltip {
    opacity: 1;
}

@media (max-width: 767px) {

    .float-wa,
    .float-call {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        right: 16px;
    }

    .float-wa {
        bottom: 140px;
    }

    .float-call {
        bottom: 75px;
    }

    .float-tooltip {
        font-size: 0.68rem;
        padding: 6px 10px;
    }
}

@media (max-width: 575px) {
    .float-wa {
        bottom: 130px;
    }

    .float-call {
        bottom: 65px;
    }
}

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 996;
    padding: 12px 16px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 -4px 30px rgba(10, 34, 72, 0.15);
    border-top: 1px solid rgba(10, 34, 72, 0.08);
}

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
    background: var(--navy-deep);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 70% 50%, rgba(31, 94, 255, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, rgba(6, 15, 30, 0.6) 0%, transparent 100%);
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 164, 71, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 164, 71, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 30%, transparent 100%);
}

.page-hero-title {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.page-hero-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--gold);
    font-size: 0.85rem;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.25);
}

/* ================================================================
   PRICING CARDS
   ================================================================ */
.pricing-section {
    background: var(--off-white);
}

.p-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 48px 36px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease);
    height: 100%;
    position: relative;
}

.p-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-raised);
}

.p-card.featured {
    background: var(--navy);
    border-color: var(--gold);
    transform: scale(1.04);
    box-shadow: 0 32px 80px rgba(10, 34, 72, 0.35);
}

.p-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.p-card.featured .p-title,
.p-card.featured .p-price,
.p-card.featured .p-feat {
    color: white;
}

.p-card.featured .p-price-period {
    color: rgba(255, 255, 255, 0.5);
}

.p-card.featured .p-divider {
    background: rgba(255, 255, 255, 0.1);
}

.p-card.featured .p-feat.off {
    color: rgba(255, 255, 255, 0.3);
}

.p-card.featured .p-feat.off i {
    color: rgba(255, 255, 255, 0.15);
}

.p-featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 18px;
    border-radius: var(--r-pill);
}

.p-icon {
    font-size: 2.8rem;
    margin-bottom: 14px;
}

.p-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.p-subtitle {
    font-size: 0.84rem;
    color: var(--gray-mid);
    margin-bottom: 18px;
}

.p-price {
    font-family: var(--font-h);
    font-size: 3.4rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.p-price sup {
    font-size: 1.4rem;
    vertical-align: top;
    padding-top: 10px;
    display: inline-block;
}

.p-price-period {
    font-size: 0.82rem;
    color: var(--gray-mid);
}

.p-divider {
    height: 1px;
    background: rgba(10, 34, 72, 0.08);
    margin: 24px 0;
}

.p-feats {
    list-style: none;
    padding: 0;
    text-align: left;
}

.p-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.88rem;
    color: var(--gray-dark);
}

.p-feat i {
    color: var(--gold);
    flex-shrink: 0;
}

.p-feat.off {
    color: var(--gray-mid);
}

.p-feat.off i {
    color: var(--gray-subtle);
}

/* ================================================================
   REVIEWS PAGE
   ================================================================ */
.r-bar-wrap {
    margin-bottom: 12px;
}

.r-bar-label {
    font-size: 0.84rem;
    color: var(--gray-mid);
}

.r-bar-track {
    height: 8px;
    background: var(--gray-subtle);
    border-radius: 8px;
    overflow: hidden;
}

.r-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 8px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1199px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bc-wide {
        grid-column: span 2;
    }
}

@media (max-width: 991px) {
    .sec {
        padding: 80px 0;
    }

    .hero-inner {
        padding: 120px 0 70px;
    }

    .hero-h1 {
        font-size: 2.6rem;
    }

    .hero-card-main img {
        height: 400px;
    }

    .hfc-1 {
        left: -10px;
    }

    .hfc-2 {
        right: -10px;
    }

    .hero-trust {
        gap: 12px;
        flex-wrap: wrap;
    }

    .trust-item {
        padding: 0 6px;
    }

    .trust-divider {
        margin: 0 6px;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .bc-wide {
        grid-column: span 2;
    }

    .bc-wide-img {
        width: 180px;
        height: 160px;
    }

    .gallery-masonry {
        columns: 2;
    }

    .p-card.featured {
        transform: scale(1);
    }

    .about-img-main img {
        height: 400px;
    }

    .about-exp-badge {
        right: 10px;
        bottom: -10px;
    }

    .process-step-wrap::before {
        display: none;
    }

    .process-step-wrap {
        flex-wrap: wrap;
        gap: 20px;
    }

    .process-step {
        flex: 0 0 calc(50% - 10px);
    }

    .reviews-controls,
    .courses-controls {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .sec {
        padding: 68px 0;
    }

    .hero-inner {
        padding: 96px 0 56px;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        padding: 7px 12px;
        margin-bottom: 20px;
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hero-trust {
        gap: 0;
        margin-top: 28px;
        padding-top: 20px;
    }

    .trust-item {
        padding: 0 12px 0 0;
    }

    .trust-divider {
        margin-right: 12px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bc-wide {
        grid-column: span 1;
    }

    .bc-wide-inner {
        flex-direction: column;
        gap: 20px;
    }

    .bc-wide-img {
        width: 100%;
        height: 180px;
    }

    .gallery-masonry {
        columns: 2;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 30px 24px;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .reviews-rating-badge {
        width: 100%;
        justify-content: center;
    }

    body {
        padding-bottom: 72px;
    }

    .stats-strip .marquee-item {
        padding: 14px 24px;
        font-size: 0.8rem;
    }

    .course-body {
        padding: 20px;
    }

    .review-card {
        padding: 24px 20px;
    }

    .review-body {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .hero-h1 {
        font-size: 2rem;
        line-height: 1.12;
    }

    .hero-sub {
        font-size: 0.92rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-gold,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .hero-card-main img {
        height: 300px;
    }

    .hfc-1,
    .hfc-2 {
        display: none;
    }

    .gallery-masonry {
        columns: 1;
    }

    .sec-title {
        font-size: 1.7rem;
    }

    .sec-sub {
        font-size: 0.93rem;
    }

    .label-tag {
        font-size: 0.68rem;
        padding: 6px 10px;
    }

    .course-img {
        height: 200px;
    }

    .reviews-nav,
    .courses-nav {
        width: 100%;
        justify-content: center;
    }

    .reviews-controls .btn-navy,
    .courses-controls .btn-navy {
        width: 100%;
        justify-content: center;
    }

    .footer-top {
        padding: 60px 0 36px;
    }

    .footer-bottom {
        padding: 18px 0;
    }
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

[data-aos] {
    transition-property: transform, opacity !important;
}

/* ================================================================
   LEGACY CLASS ALIASES
   Inner pages use the original class names — map them to the new
   design system so all pages render correctly without rewriting PHP
   ================================================================ */

/* CSS Variable aliases */
:root {
    --primary: var(--navy);
    --secondary: var(--gold);
    --accent: var(--blue);
    --light-bg: var(--off-white);
    --dark-bg: var(--navy-deep);
    --gray-500: var(--gray-mid);
    --gray-800: var(--gray-dark);
    --radius: var(--r-xl);
    --radius-sm: var(--r-lg);
    --shadow: var(--shadow-card);
    --shadow-hover: var(--shadow-raised);
    --transition: var(--t);
}

/* Typography aliases */
.section-title {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    color: var(--navy);
}

.section-title span {
    color: var(--gold);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-mid);
    line-height: 1.85;
    max-width: 560px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(31, 94, 255, 0.08);
    border: 1px solid rgba(31, 94, 255, 0.2);
    padding: 6px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 18px;
}

/* Button aliases */
.om-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% auto;
    color: var(--navy) !important;
    font-family: var(--font-b);
    font-weight: 700;
    font-size: 0.93rem;
    padding: 14px 30px;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: var(--shadow-gold);
    transition: all 0.4s var(--ease);
    text-decoration: none;
}

.om-btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(212, 164, 71, 0.55);
    color: var(--navy) !important;
}

.om-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.93rem;
    padding: 13px 28px;
    border-radius: var(--r-pill);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: var(--t);
    text-decoration: none;
}

.om-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    transform: translateY(-2px);
    color: var(--white) !important;
}

.om-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--navy) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 26px;
    border-radius: var(--r-pill);
    border: 2px solid var(--navy);
    transition: var(--t);
    text-decoration: none;
}

.om-btn-outline:hover {
    background: var(--navy);
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* About page aliases */
.about-img-wrapper {
    position: relative;
    padding-bottom: 30px;
}

.about-img-badge {
    position: absolute;
    bottom: 0;
    right: -10px;
    background: var(--gold);
    border-radius: 18px;
    padding: 22px 26px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.about-img-badge .num {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.about-img-badge .txt {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.8;
    margin-top: 4px;
}

.about-content {
    padding-left: 0;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(10, 34, 72, 0.07);
    font-size: 0.93rem;
    color: var(--gray-dark);
}

.about-features li:last-child {
    border: none;
}

.about-features li i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Stats section aliases (used on about.php) */
.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-raised);
    border: 1px solid rgba(10, 34, 72, 0.07);
    overflow: hidden;
}

.stat-item {
    text-align: center;
    padding: 36px 20px;
    border-right: 1px solid rgba(10, 34, 72, 0.07);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 52px;
    height: 52px;
    background: rgba(31, 94, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--blue);
    font-size: 1.2rem;
}

.stat-num {
    font-family: var(--font-h);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-num .suffix {
    color: var(--gold);
}

.stat-label {
    font-size: 0.83rem;
    color: var(--gray-mid);
    font-weight: 500;
}

/* Pricing page aliases */
.pricing-section {
    background: var(--off-white);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 44px 34px;
    text-align: center;
    border: 2px solid rgba(10, 34, 72, 0.07);
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease);
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-raised);
}

.pricing-card.featured {
    background: var(--navy);
    border-color: var(--gold);
    transform: scale(1.04);
    box-shadow: 0 32px 80px rgba(10, 34, 72, 0.35);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-subtitle {
    color: var(--white);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured .pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-card.featured .pricing-divider {
    background: rgba(255, 255, 255, 0.1);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 18px;
    border-radius: var(--r-pill);
}

.pricing-icon {
    font-size: 2.6rem;
    margin-bottom: 14px;
}

.pricing-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.pricing-subtitle {
    font-size: 0.84rem;
    color: var(--gray-mid);
    margin-bottom: 18px;
}

.pricing-price {
    font-family: var(--font-h);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.pricing-price sup {
    font-size: 1.3rem;
    vertical-align: top;
    padding-top: 8px;
    display: inline-block;
}

.pricing-price sub {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--gray-mid);
}

.pricing-divider {
    height: 1px;
    background: rgba(10, 34, 72, 0.08);
    margin: 22px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--gray-dark);
}

.pricing-features li i {
    color: var(--gold);
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: var(--gray-mid);
}

.pricing-features li.disabled i {
    color: rgba(10, 34, 72, 0.15);
}

/* Booking page aliases */
.booking-section {
    background: var(--off-white);
}

.booking-form-wrapper {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-raised);
    border: 1px solid rgba(10, 34, 72, 0.06);
}

.booking-info {
    background: var(--navy);
    border-radius: var(--r-xl);
    padding: 44px 36px;
    height: 100%;
}

.booking-info h4 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 26px;
}

.booking-feature {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.booking-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 164, 71, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.booking-feature h6 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.booking-feature p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Reviews page aliases */
.r-bar-wrap {
    margin-bottom: 12px;
}

.r-bar-label {
    font-size: 0.84rem;
    color: var(--gray-mid);
    margin-bottom: 6px;
}

.r-bar-track {
    height: 8px;
    background: rgba(10, 34, 72, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.r-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 8px;
}

/* Contact / form aliases */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-raised);
    border: 1px solid rgba(10, 34, 72, 0.06);
}

.contact-info-wrapper {
    background: var(--navy);
    border-radius: var(--r-xl);
    padding: 48px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    background: rgba(212, 164, 71, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.93rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.6;
    display: block;
}

.contact-info-item a:hover {
    color: var(--gold);
}

.map-wrapper {
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-top: 24px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
}

.map-placeholder i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
}

.map-placeholder p {
    font-size: 0.82rem;
}

/* FAQ aliases */
.faq-section {
    background: var(--white);
}

/* Page hero — ensure z-index on content inside */
.page-hero {
    z-index: 1;
}

.page-hero>.container {
    position: relative;
    z-index: 2;
}

/* Gallery page aliases */
.gallery-section {
    background: var(--off-white);
}

.gallery-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-btn {
    padding: 9px 22px;
    border-radius: var(--r-pill);
    border: 1.5px solid rgba(10, 34, 72, 0.15);
    background: var(--white);
    color: var(--gray-dark);
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--t);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.gallery-grid {
    columns: 3;
    column-gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 15, 30, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--t);
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Responsive aliases */
@media (max-width: 991px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(10, 34, 72, 0.07);
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .gallery-grid {
        columns: 2;
    }

    .booking-form-wrapper,
    .contact-form-wrapper {
        padding: 30px 24px;
    }

    .booking-info,
    .contact-info-wrapper {
        padding: 30px 24px;
    }
}

@media (max-width: 767px) {
    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        columns: 2;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        columns: 1;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ================================================================

/* ================================================================
   ABOUT PAGE — Story-driven inner page styles
   ================================================================ */

/* ---- Story image stack ---- */
.au-img-stack {
    position: relative;
    padding-bottom: 48px;
    padding-right: 48px;
}

.au-img-main {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
    box-shadow: var(--shadow-raised);
}

.au-img-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gold);
    border-radius: 18px;
    padding: 22px 28px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.au-badge-num {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.au-badge-txt {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.8;
    margin-top: 5px;
}

/* ---- Mission & Vision cards ---- */
.au-purpose-card {
    border-radius: var(--r-xl);
    padding: 44px 40px;
    height: 100%;
    border: 1px solid rgba(10, 34, 72, 0.08);
    box-shadow: var(--shadow-card);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.au-purpose-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-raised);
}

.au-mission {
    background: var(--navy);
}

.au-vision {
    background: var(--white);
}

.au-purpose-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
}

.au-mission .au-purpose-icon {
    background: rgba(212, 164, 71, 0.15);
    color: var(--gold);
}

.au-vision .au-purpose-icon {
    background: rgba(31, 94, 255, 0.08);
    color: var(--blue);
}

.au-purpose-title {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.au-mission .au-purpose-title {
    color: var(--white);
}

.au-vision .au-purpose-title {
    color: var(--navy);
}

.au-purpose-text {
    font-size: 0.93rem;
    line-height: 1.85;
    margin-bottom: 22px;
}

.au-mission .au-purpose-text {
    color: rgba(255, 255, 255, 0.62);
}

.au-vision .au-purpose-text {
    color: var(--gray-mid);
}

.au-purpose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.au-purpose-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

.au-purpose-list li i {
    font-size: 0.75rem;
    flex-shrink: 0;
}

.au-mission .au-purpose-list li {
    color: rgba(255, 255, 255, 0.7);
}

.au-mission .au-purpose-list li i {
    color: var(--gold);
}

.au-vision .au-purpose-list li {
    color: var(--gray-dark);
}

.au-vision .au-purpose-list li i {
    color: var(--blue);
}

/* ---- Stat cards on navy ---- */
.au-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--r-xl);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.35s var(--ease);
}

.au-stat-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(212, 164, 71, 0.25);
    transform: translateY(-5px);
}

.au-stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(212, 164, 71, 0.12);
    color: var(--gold);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.au-stat-num {
    font-family: var(--font-h);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.au-stat-label {
    font-family: var(--font-h);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.au-stat-desc {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin: 0;
}

/* ---- Instructor cards ---- */
.au-instructor-card {
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(10, 34, 72, 0.07);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    height: 100%;
}

.au-instructor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-raised);
}

.au-instructor-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.au-instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.au-instructor-card:hover .au-instructor-img img {
    transform: scale(1.05);
}

.au-instructor-cert {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    gap: 6px;
}

.au-instructor-body {
    padding: 26px 24px;
}

.au-instructor-name {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.au-instructor-role {
    font-size: 0.8rem;
    color: var(--gray-mid);
    margin-bottom: 12px;
}

.au-instructor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.au-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--blue);
    background: rgba(31, 94, 255, 0.08);
    border: 1px solid rgba(31, 94, 255, 0.18);
    padding: 4px 10px;
    border-radius: var(--r-pill);
}

.au-instructor-bio {
    font-size: 0.85rem;
    color: var(--gray-mid);
    line-height: 1.75;
    margin: 0;
}

/* ---- Values cards on light bg ---- */
.au-value-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 34px 28px;
    height: 100%;
    border: 1px solid rgba(10, 34, 72, 0.07);
    box-shadow: var(--shadow-card);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.au-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-raised);
}

.au-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(10, 34, 72, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: var(--t);
}

.au-value-title {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.au-value-desc {
    font-size: 0.875rem;
    color: var(--gray-mid);
    line-height: 1.8;
    margin: 0;
}

/* ---- Bottom CTA bar ---- */
.au-bottom-cta {
    background: var(--navy-deep);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 56px 0;
}

.au-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.au-cta-title {
    font-family: var(--font-h);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 8px;
}

.au-cta-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.au-cta-right {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .au-img-main {
        height: 360px;
    }

    .au-instructor-img {
        height: 240px;
    }

    .au-purpose-card {
        padding: 34px 28px;
    }

    .au-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .au-cta-right {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .au-img-stack {
        padding-bottom: 40px;
        padding-right: 40px;
    }

    .au-img-main {
        height: 300px;
    }

    .au-img-badge {
        padding: 16px 20px;
    }

    .au-badge-num {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .au-img-stack {
        padding-bottom: 0;
        padding-right: 0;
    }

    .au-img-badge {
        display: none;
    }

    .au-img-main {
        height: 260px;
    }
}

/* ================================================================
   NAVBAR DROPDOWN — Hover on desktop, click on mobile
   ================================================================ */

/* Desktop: show dropdown on hover */
@media (min-width: 992px) {

    .om-services-dropdown:hover>.om-dropdown,
    .om-services-dropdown:focus-within>.om-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Smooth slide-in animation */
    .om-dropdown {
        display: block !important;
        /* override Bootstrap d-none */
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
        pointer-events: none;
    }
}

/* "All Services" top link styling */
.om-dropdown-heading {
    color: var(--gold) !important;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.5px;
}

.om-dropdown-heading:hover {
    background: rgba(212, 164, 71, 0.15) !important;
    color: var(--gold) !important;
}

/* ================================================================
   SERVICE DETAIL PAGE
   ================================================================ */

/* Hero */
.sd-hero {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--navy-deep);
}

/* Background photo via pseudo-element — reliable cross-browser */
.sd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--sd-hero-img);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.22) saturate(0.6);
    z-index: 0;
}

/* Dark gradient overlay */
.sd-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
            rgba(6, 15, 30, 0.97) 0%,
            rgba(10, 34, 72, 0.85) 50%,
            rgba(6, 15, 30, 0.7) 100%);
    z-index: 1;
}

.sd-hero-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 36px 36px;
}

.sd-tag {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--r-pill);
}

.sd-title {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.sd-subtitle {
    font-size: 1.15rem;
    color: var(--gold);
    font-weight: 600;
}

.sd-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.85;
    max-width: 580px;
}

/* Trust pills row */
.sd-trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sd-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--r-pill);
    padding: 7px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.sd-trust-pill i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Right image card */
.sd-hero-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.sd-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Price badge bottom-left */
.sd-hero-price-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: rgba(10, 20, 40, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.sd-hpb-from {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sd-hpb-price {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.sd-hpb-unit {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* Tag badge top-right of image */
.sd-hero-img-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    z-index: 2;
    box-shadow: var(--shadow-gold);
}

/* Feature cards */
.sd-feature-card {
    background: var(--off-white);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    height: 100%;
    border: 1px solid rgba(10, 34, 72, 0.07);
    box-shadow: var(--shadow-card);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.sd-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-raised);
}

.sd-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(31, 94, 255, 0.08);
    color: var(--blue);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--t);
}

.sd-feature-card:hover .sd-feature-icon {
    background: var(--navy);
    color: var(--gold);
}

.sd-feature-title {
    font-family: var(--font-h);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.sd-feature-desc {
    font-size: 0.86rem;
    color: var(--gray-mid);
    line-height: 1.75;
    margin: 0;
}

/* Pricing table */
.sd-pricing-table {
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-raised);
    overflow: hidden;
    border: 1px solid rgba(10, 34, 72, 0.07);
}

.sd-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 22px 32px;
    border-bottom: 1px solid rgba(10, 34, 72, 0.07);
    transition: background 0.25s var(--ease);
}

.sd-price-row:last-child {
    border-bottom: none;
}

.sd-price-row:hover {
    background: var(--off-white);
}

.sd-price-label {
    font-family: var(--font-h);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
}

.sd-price-note {
    font-size: 0.8rem;
    color: var(--gray-mid);
}

.sd-price-amount {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--navy);
    white-space: nowrap;
    text-align: right;
}

.sd-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: var(--r-pill);
    white-space: nowrap;
    transition: var(--t);
    text-decoration: none;
}

.sd-book-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Related cards */
.sd-related-card {
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(10, 34, 72, 0.07);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.sd-related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-raised);
}

.sd-related-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.sd-related-body {
    padding: 20px 22px;
}

.sd-related-title {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.sd-related-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--t);
}

.sd-related-link:hover {
    color: var(--gold);
    gap: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .sd-hero-img {
        height: 380px;
    }

    .sd-hero-img-wrap {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .sd-hero {
        min-height: auto;
    }

    .sd-hero-img {
        height: 300px;
    }

    .sd-price-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 18px 20px;
    }

    .sd-price-note {
        display: none;
    }

    .sd-price-amount {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .sd-hero-img {
        height: 240px;
    }

    .sd-hero-price-badge {
        bottom: 14px;
        left: 14px;
        padding: 12px 16px;
    }

    .sd-hpb-price {
        font-size: 1.6rem;
    }

    .sd-trust-row {
        gap: 8px;
    }

    .sd-price-row {
        grid-template-columns: 1fr auto;
    }

    .sd-price-note,
    .sd-price-label+.sd-price-note {
        display: none;
    }
}

/* ================================================================
   SERVICES OVERVIEW PAGE
   ================================================================ */

/* Trust strip */
.svc-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 24px 36px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(10, 34, 72, 0.07);
}

.svc-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 28px;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.svc-trust-item i {
    color: var(--gold);
    font-size: 1rem;
}

.svc-trust-item strong {
    color: var(--navy);
}

.svc-trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(10, 34, 72, 0.1);
}

/* Service card */
.svc-card {
    background: var(--white);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(10, 34, 72, 0.07);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-raised);
}

.svc-card:hover .svc-card-img img {
    transform: scale(1.06);
}

.svc-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s var(--ease);
    display: block;
}

.svc-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(6, 15, 30, 0.7) 100%);
}

.svc-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--r-pill);
}

.svc-card-price {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(10, 20, 40, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: var(--font-h);
    font-size: 0.88rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 10px;
}

.svc-card-body {
    padding: 28px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: rgba(31, 94, 255, 0.08);
    color: var(--blue);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--t);
}

.svc-card:hover .svc-card-icon {
    background: var(--navy);
    color: var(--gold);
}

.svc-card-title {
    font-family: var(--font-h);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.svc-card-intro {
    font-size: 0.875rem;
    color: var(--gray-mid);
    line-height: 1.75;
    margin-bottom: 18px;
    flex: 1;
}

.svc-card-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.svc-card-highlights li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    color: var(--gray-dark);
}

.svc-card-highlights li i {
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.svc-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.svc-btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 1;
    justify-content: center;
    padding: 11px 16px;
    border-radius: var(--r-pill);
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-size: 0.83rem;
    font-weight: 700;
    transition: var(--t);
    text-decoration: none;
}

.svc-btn-detail:hover {
    background: var(--navy);
    color: var(--white);
    gap: 10px;
}

.svc-btn-book {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 18px;
    border-radius: var(--r-pill);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.83rem;
    font-weight: 700;
    transition: var(--t);
    box-shadow: var(--shadow-gold);
    text-decoration: none;
    white-space: nowrap;
}

.svc-btn-book:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    color: var(--navy);
}

/* Why cards on navy */
.svc-why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--r-xl);
    padding: 32px 26px;
    text-align: center;
    transition: all 0.35s var(--ease);
    height: 100%;
}

.svc-why-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(212, 164, 71, 0.25);
    transform: translateY(-5px);
}

.svc-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(212, 164, 71, 0.12);
    color: var(--gold);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--t);
}

.svc-why-card:hover .svc-why-icon {
    background: var(--gold);
    color: var(--navy);
}

.svc-why-title {
    font-family: var(--font-h);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.svc-why-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .svc-trust-strip {
        padding: 18px 20px;
        gap: 0;
    }

    .svc-trust-item {
        padding: 8px 16px;
        font-size: 0.84rem;
    }
}

@media (max-width: 767px) {
    .svc-trust-strip {
        flex-direction: column;
        gap: 4px;
    }

    .svc-trust-divider {
        width: 80px;
        height: 1px;
    }

    .svc-trust-item {
        padding: 10px 0;
    }
}

/* ================================================================
   LOGO IMAGES
   ================================================================ */

/* Navbar logo — light version on dark navbar */
.navbar-logo {
    height: 90px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s var(--ease);
}

.navbar-logo:hover {
    opacity: 0.85;
}

/* Footer logo */
.footer-brand-logo {
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 110px;
    width: auto;
    max-width: 340px;
    object-fit: contain;
    display: block;
}

/* Footer bottom logo + copyright inline */
.footer-bottom-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom-logo {
    height: 44px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.55;
    flex-shrink: 0;
}

.footer-bottom-brand p {
    margin: 0;
}

/* Page loader logo */
.loader-logo-img {
    height: 130px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
    display: block;
    margin: 0 auto 28px;
    filter: brightness(0) invert(1);
    animation: logoPulse 1.6s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.97);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-logo {
        height: 72px;
    }
}

@media (max-width: 767px) {
    .navbar-logo {
        height: 58px;
    }

    .footer-logo-img {
        height: 80px;
    }

    .footer-bottom-brand {
        justify-content: center;
    }
}