/* ============================================================
   FLOURISH LOGISTICS LTD. — Main Stylesheet
   Design: Bold Navy & Cyan Industrial with Gold Accents
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --navy:        #0A1F5C;
    --navy-dark:   #060f33;
    --navy-mid:    #112477;
    --blue:        #1565C0;
    --blue-light:  #1976D2;
    --cyan:        #0097D6;
    --cyan-light:  #29B6F6;
    --red:         #D32F2F;
    --red-light:   #EF5350;
    --gold:        #FFB300;
    --gold-light:  #FFC933;
    --white:       #FFFFFF;
    --off-white:   #F4F6FB;
    --light-gray:  #E8EDF5;
    --mid-gray:    #8A96AC;
    --dark:        #111827;
    --text:        #2D3748;
    --text-light:  #64748B;

    --font-head:   'Barlow Condensed', sans-serif;
    --font-body:   'Nunito Sans', sans-serif;

    --radius:      6px;
    --radius-lg:   14px;
    --shadow-sm:   0 2px 12px rgba(10,31,92,.08);
    --shadow-md:   0 8px 32px rgba(10,31,92,.14);
    --shadow-lg:   0 20px 60px rgba(10,31,92,.2);

    --header-h:    80px;
    --topbar-h:    38px;
    --transition:  0.3s cubic-bezier(.4,0,.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* --- Preloader --- */
#preloader {
    position: fixed; inset: 0;
    background: var(--navy-dark);
    display: flex; align-items: center; justify-content: center;
    z-index: 9999;
    transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--font-head);
    font-size: 3rem; font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    animation: pulse 1s ease-in-out infinite alternate;
}
.preloader-logo span { color: var(--cyan); }
.preloader-bar {
    width: 200px; height: 3px;
    background: rgba(255,255,255,.15);
    border-radius: 99px; overflow: hidden;
    margin: 0 auto;
}
.preloader-bar span {
    display: block; height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    border-radius: 99px;
    animation: barLoad 1.4s ease-in-out infinite;
}
@keyframes barLoad {
    0%   { width: 0; transform: translateX(0); }
    50%  { width: 80%; }
    100% { width: 0; transform: translateX(200px); }
}
@keyframes pulse { from { opacity: .6; } to { opacity: 1; } }

/* --- Container --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* --- Topbar --- */
.topbar {
    background: var(--navy-dark);
    color: rgba(255,255,255,.8);
    font-size: .78rem;
    font-family: var(--font-body);
    height: var(--topbar-h);
    display: flex; align-items: center;
}
.topbar-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 1rem;
}
.topbar-contact { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-contact a {
    color: rgba(255,255,255,.8);
    transition: color var(--transition);
    display: flex; align-items: center; gap: .4rem;
}
.topbar-contact a:hover { color: var(--cyan); }
.topbar-contact i { color: var(--cyan); font-size: .75rem; }
.topbar-social { display: flex; gap: .75rem; }
.topbar-social a {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem; color: rgba(255,255,255,.7);
    transition: background var(--transition), color var(--transition);
}
.topbar-social a:hover { background: var(--cyan); color: var(--white); }

/* --- Header --- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--white);
    height: var(--header-h);
    display: flex; align-items: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(10,31,92,.16);
}
.header-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 2rem;
}

/* Logo */
.site-logo, .footer-logo { display: flex; align-items: center; gap: .75rem; }
.logo-mark {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 900; font-size: 1.1rem;
    letter-spacing: -1px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.logo-mark::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--red);
}
.logo-mark.sm { width: 38px; height: 38px; font-size: .9rem; }
.logo-f { color: var(--white); }
.logo-l { color: var(--cyan); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
    font-family: var(--font-head);
    font-weight: 800; font-size: 1.2rem;
    color: var(--navy); letter-spacing: 1px;
}
.logo-sub {
    font-family: var(--font-head);
    font-weight: 600; font-size: .7rem;
    color: var(--red); letter-spacing: 2px;
    background: var(--navy);
    color: var(--white);
    padding: 1px 4px;
    border-radius: 2px;
    margin-top: 2px;
}

/* Nav */
.main-nav ul { display: flex; align-items: center; gap: .25rem; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: flex; align-items: center; gap: .35rem;
    padding: .5rem .85rem;
    font-family: var(--font-head);
    font-weight: 600; font-size: 1rem;
    letter-spacing: .5px;
    color: var(--navy);
    border-radius: var(--radius);
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.main-nav > ul > li > a i { font-size: .65rem; transition: transform var(--transition); }
.main-nav > ul > li:hover > a i { transform: rotate(180deg); }
.main-nav > ul > li > a.active,
.main-nav > ul > li > a:hover { color: var(--cyan); background: rgba(0,151,214,.07); }
.main-nav > ul > li > a.active { color: var(--navy); background: var(--off-white); font-weight: 700; }

/* Dropdown */
.dropdown {
    position: absolute; top: calc(100% + .5rem); left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--cyan);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 50;
    padding: .5rem 0;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown li a {
    display: flex; align-items: center; gap: .75rem;
    padding: .6rem 1.25rem;
    font-size: .88rem; color: var(--text);
    transition: background var(--transition), color var(--transition);
}
.dropdown li a i { color: var(--cyan); width: 16px; text-align: center; }
.dropdown li a:hover { background: var(--off-white); color: var(--navy); }
.dropdown-all a { color: var(--blue) !important; font-weight: 600; border-top: 1px solid var(--light-gray); margin-top: .25rem; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 1rem; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .65rem 1.5rem; border-radius: var(--radius); font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .5px; transition: all var(--transition); cursor: pointer; }
.btn-cta { background: var(--red); color: var(--white); }
.btn-cta:hover { background: var(--red-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(211,47,47,.35); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--blue); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-cyan { background: var(--cyan); color: var(--white); }
.btn-cyan:hover { background: var(--cyan-light); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,151,214,.4); }
.btn-lg { padding: .9rem 2.2rem; font-size: 1.05rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO / SLIDER
   ============================================================ */
.hero-slider {
    position: relative;
    height: calc(100vh - var(--header-h) - var(--topbar-h));
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
    background: var(--navy-dark);
}
.slide {
    position: absolute; inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        120deg,
        rgba(6,15,51,.85) 0%,
        rgba(10,31,92,.6) 50%,
        rgba(0,97,150,.25) 100%
    );
}
.slide-content {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    z-index: 2;
}
.slide-content .container { width: 100%; }
.slide-inner { max-width: 700px; animation: slideIn .8s ease .3s both; }
@keyframes slideIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
}
.slide-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--cyan);
    color: var(--white);
    font-family: var(--font-head); font-weight: 700; font-size: .8rem;
    letter-spacing: 2px; text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 99px;
    margin-bottom: 1.25rem;
}
.slide-title {
    font-family: var(--font-head);
    font-weight: 900; font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: 1.0;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.slide-title span { color: var(--gold); }
.slide-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 2rem;
    max-width: 560px;
    line-height: 1.7;
}
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Slider Controls */
.slider-controls {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: .75rem;
    z-index: 10;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 99px;
    background: rgba(255,255,255,.4);
    border: none; cursor: pointer;
    transition: all var(--transition);
}
.slider-dot.active { width: 28px; background: var(--cyan); }
.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white); font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10;
    backdrop-filter: blur(6px);
    transition: all var(--transition);
}
.slider-arrow:hover { background: var(--cyan); border-color: var(--cyan); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* Video mute toggle */
.video-mute-btn {
    position: absolute; bottom: 2rem; right: 2rem;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,.4);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10;
    transition: background var(--transition);
}
.video-mute-btn:hover { background: var(--cyan); }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: var(--font-head); font-weight: 700; font-size: .8rem;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--cyan); margin-bottom: .75rem;
}
.section-label::before, .section-label::after {
    content: ''; width: 30px; height: 2px; background: var(--cyan);
}
.section-title {
    font-family: var(--font-head);
    font-weight: 900; font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--navy); text-transform: uppercase; line-height: 1.1;
}
.section-title span { color: var(--cyan); }
.section-sub {
    max-width: 640px; margin: 1rem auto 0;
    color: var(--text-light); font-size: 1rem;
}
.divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    border-radius: 99px; margin: 1rem auto 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--blue) 100%);
    padding: 5rem 0 4rem;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-title {
    font-family: var(--font-head);
    font-weight: 900; font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white); text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: .75rem;
}
.page-hero-title span { color: var(--gold); }
.page-hero-text { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; }
.breadcrumb {
    display: flex; align-items: center; gap: .5rem;
    font-size: .85rem; color: rgba(255,255,255,.6);
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--cyan); }
.breadcrumb i { font-size: .65rem; }

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats-bar {
    background: var(--navy);
    padding: 2.5rem 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.stat-item { text-align: center; padding: 1.5rem; position: relative; }
.stat-item:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
    width: 1px; background: rgba(255,255,255,.1);
}
.stat-number {
    font-family: var(--font-head);
    font-weight: 900; font-size: clamp(2rem, 4vw, 3rem);
    color: var(--cyan); line-height: 1;
}
.stat-suffix { color: var(--gold); }
.stat-label {
    font-family: var(--font-head); font-size: .85rem; letter-spacing: 1px;
    color: rgba(255,255,255,.65); text-transform: uppercase; margin-top: .35rem;
}

/* ============================================================
   SERVICES GRID (homepage)
   ============================================================ */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    group: true;
}
.service-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--navy));
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--cyan);
    margin-bottom: 1.25rem;
    transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-card h3 {
    font-family: var(--font-head); font-weight: 800;
    font-size: 1.15rem; color: var(--navy);
    text-transform: uppercase; letter-spacing: .5px;
    margin-bottom: .6rem;
}
.service-card p { color: var(--text-light); font-size: .9rem; line-height: 1.65; }
.service-card .card-link {
    display: inline-flex; align-items: center; gap: .4rem;
    color: var(--cyan); font-weight: 700; font-size: .85rem;
    margin-top: 1rem; transition: gap var(--transition);
}
.service-card:hover .card-link { gap: .7rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-image-wrap { position: relative; }
.why-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.why-badge {
    position: absolute; bottom: -1rem; right: -1rem;
    background: var(--navy);
    color: var(--white); border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.why-badge-num {
    font-family: var(--font-head);
    font-weight: 900; font-size: 2.5rem;
    color: var(--gold); line-height: 1;
}
.why-badge-label {
    font-family: var(--font-head);
    font-size: .75rem; letter-spacing: 1.5px;
    color: rgba(255,255,255,.7); text-transform: uppercase;
}
.why-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.why-feature {
    display: flex; gap: 1rem;
    padding: 1.25rem;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 4px solid var(--cyan);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.why-feature:hover { border-left-color: var(--gold); box-shadow: var(--shadow-sm); }
.why-feature-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--navy); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan); font-size: 1.1rem;
}
.why-feature-text h4 {
    font-family: var(--font-head); font-weight: 700;
    font-size: 1rem; color: var(--navy); margin-bottom: .25rem;
}
.why-feature-text p { font-size: .875rem; color: var(--text-light); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(120deg, var(--navy) 0%, var(--blue) 60%, var(--cyan) 100%);
    padding: 5rem 0;
    position: relative; overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; top: -50%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-title {
    font-family: var(--font-head);
    font-weight: 900; font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white); text-transform: uppercase; margin-bottom: 1rem;
}
.cta-title span { color: var(--gold); }
.cta-text { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.6rem,3vw,2.4rem); color: var(--navy); text-transform: uppercase; margin-bottom: 1rem; }
.about-text p { color: var(--text-light); margin-bottom: 1rem; font-size: .97rem; }
.about-tagline {
    font-family: var(--font-head); font-size: 1.6rem; font-weight: 800;
    color: var(--navy); border-left: 5px solid var(--gold);
    padding-left: 1rem; margin: 1.5rem 0;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.value-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 2rem; text-align: center;
    border: 1px solid var(--light-gray);
    transition: all var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--cyan); }
.value-card i { font-size: 2rem; color: var(--cyan); margin-bottom: 1rem; }
.value-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 1rem; color: var(--navy); text-transform: uppercase; margin-bottom: .5rem; }
.value-card p { font-size: .87rem; color: var(--text-light); }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 2rem; }
.team-card { text-align: center; }
.team-avatar {
    width: 120px; height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--cyan));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 2.5rem; font-weight: 900;
    color: var(--white); margin: 0 auto 1rem;
}
.team-name { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--navy); }
.team-role { color: var(--cyan); font-size: .85rem; margin-top: .25rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.service-full-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.service-full-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-full-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    padding: 2rem;
    display: flex; align-items: center; gap: 1.25rem;
}
.service-full-header i { font-size: 2rem; color: var(--cyan); }
.service-full-header h3 {
    font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
    color: var(--white); text-transform: uppercase; letter-spacing: .5px;
}
.service-full-body { padding: 1.75rem; }
.service-full-body p { color: var(--text-light); font-size: .92rem; line-height: 1.7; }

/* ============================================================
   TRAINING PAGE
   ============================================================ */
.training-banner {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: center;
}
.course-outline { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.course-item {
    display: flex; gap: 1.25rem; align-items: flex-start;
    background: var(--white); border-radius: var(--radius);
    padding: 1.25rem; border: 1px solid var(--light-gray);
    transition: box-shadow var(--transition);
}
.course-item:hover { box-shadow: var(--shadow-sm); }
.course-num {
    width: 38px; height: 38px; flex-shrink: 0;
    background: var(--navy); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 800;
    color: var(--gold); font-size: 1rem;
}
.course-item p { font-size: .9rem; color: var(--text-light); margin-top: .2rem; }
.course-item strong { font-family: var(--font-head); color: var(--navy); font-size: .95rem; }

/* Entry requirements */
.entry-box {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center; color: var(--white);
    margin-top: 2rem;
}
.entry-box h3 { font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 1px; color: var(--gold); margin-bottom: .75rem; }
.entry-box p { font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-tabs { display: flex; gap: .5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.gallery-tab {
    padding: .5rem 1.25rem;
    border: 2px solid var(--light-gray);
    border-radius: 99px;
    font-family: var(--font-head); font-size: .9rem; font-weight: 600;
    color: var(--text-light); cursor: pointer;
    transition: all var(--transition);
}
.gallery-tab.active, .gallery-tab:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden; position: relative;
    aspect-ratio: 4/3;
    background: var(--light-gray);
    cursor: pointer;
}
.gallery-item img, .gallery-item video {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform .5s ease;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.06); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(10,31,92,.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity var(--transition);
    color: var(--white); font-size: 1.75rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
    display: flex; gap: 1rem;
    padding: 1.5rem; background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.contact-info-item:hover { box-shadow: var(--shadow-md); }
.contact-info-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    border-radius: var(--radius); color: var(--cyan);
    font-size: 1.25rem;
    display: flex; align-items: center; justify-content: center;
}
.contact-info-text h4 { font-family: var(--font-head); font-weight: 700; color: var(--navy); margin-bottom: .35rem; font-size: 1rem; }
.contact-info-text a, .contact-info-text p { color: var(--text-light); font-size: .9rem; display: block; line-height: 1.65; }
.contact-info-text a:hover { color: var(--cyan); }

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}
.contact-form-wrap h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--navy); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .85rem; color: var(--navy); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: .75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-family: var(--font-body); font-size: .92rem;
    color: var(--text); background: var(--off-white);
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--cyan); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; }
.form-success {
    display: none;
    background: #e6f9f0; border: 1px solid #4caf50;
    border-radius: var(--radius); padding: 1rem 1.25rem;
    color: #2e7d32; font-size: .9rem; margin-top: 1rem;
}

/* Map embed */
.map-section { padding: 0; }
.map-section iframe { display: block; width: 100%; height: 420px; border: none; filter: hue-rotate(180deg) brightness(.8); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-dark); color: var(--white); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.2fr 1.5fr; gap: 3rem; }
.footer-tagline {
    font-family: var(--font-head); font-size: 1rem; font-weight: 700;
    color: var(--gold); letter-spacing: 1px;
    border-left: 3px solid var(--gold); padding-left: .75rem;
    margin: 1rem 0 .75rem;
}
.footer-about { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .75rem; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); font-size: .9rem;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--cyan); border-color: var(--cyan); color: var(--white); }
.footer-heading {
    font-family: var(--font-head); font-weight: 800;
    font-size: 1rem; letter-spacing: 1px; text-transform: uppercase;
    color: var(--white); margin-bottom: 1.25rem;
    padding-bottom: .5rem; border-bottom: 2px solid rgba(255,255,255,.1);
}
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
    color: rgba(255,255,255,.55); font-size: .88rem;
    display: flex; align-items: center; gap: .5rem;
    transition: color var(--transition), gap var(--transition);
}
.footer-links a i { font-size: .6rem; color: var(--cyan); }
.footer-links a:hover { color: var(--cyan); gap: .75rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li { display: flex; gap: .85rem; align-items: flex-start; }
.footer-contact-list i { color: var(--cyan); font-size: 1rem; margin-top: .2rem; flex-shrink: 0; }
.footer-contact-list a, .footer-contact-list div { color: rgba(255,255,255,.65); font-size: .87rem; line-height: 1.65; }
.footer-contact-list a:hover { color: var(--cyan); }
.footer-bottom {
    background: rgba(0,0,0,.3);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-bottom-inner {
    display: flex; justify-content: space-between;
    align-items: center; gap: 1rem; flex-wrap: wrap;
    font-size: .8rem; color: rgba(255,255,255,.4);
}

/* Back to top */
.back-to-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--navy);
    color: var(--white); font-size: .85rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0; pointer-events: none;
    transition: all var(--transition);
    z-index: 50;
    border: 2px solid var(--cyan);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--cyan); transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .why-grid, .about-intro, .contact-grid, .training-banner { grid-template-columns: 1fr; gap: 2rem; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 68px; --topbar-h: 0px; }
    .topbar { display: none; }
    .main-nav {
        position: fixed; inset: 0; top: var(--header-h);
        background: var(--white); z-index: 99;
        transform: translateX(100%); transition: transform var(--transition);
        overflow-y: auto; padding: 1.5rem;
    }
    .main-nav.open { transform: none; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav > ul > li > a { font-size: 1.15rem; padding: .85rem 1rem; }
    .dropdown {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none; border: none;
        padding-left: 1rem; display: none;
    }
    .has-dropdown.open .dropdown { display: block; }
    .hamburger { display: flex; }
    .services-grid, .services-full-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .slider-arrow { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    section { padding: 3rem 0; }
    .slide-title { font-size: 2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-cyan { color: var(--cyan); }
.text-gold { color: var(--gold); }
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.highlight-box {
    background: linear-gradient(135deg, rgba(0,151,214,.08), rgba(10,31,92,.06));
    border-left: 5px solid var(--cyan);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
