/* =============================================================================
   SUPREME SERVICES — main stylesheet
   Navy · White · Gold  |  Bootstrap 5 companion styles
   ========================================================================== */

:root {
    --navy-950: #050F24;
    --navy-900: #0A1A3A;
    --navy-800: #10244D;
    --navy-700: #1A3466;
    --navy-600: #2A4A85;
    --gold-600: #B08A3A;
    --gold-500: #C9A24E;
    --gold-400: #D8B76C;
    --gold-300: #E8D29C;
    --gold-100: #F7EFD9;
    --ink: #0E1726;
    --body: #3C4658;
    --muted: #667085;
    --line: #E4E8EF;
    --surface: #F5F7FA;
    --white: #FFFFFF;
    --wa: #1FAF5A;

    --gold-grad: linear-gradient(135deg, #E3C47E 0%, #C9A24E 45%, #B08A3A 100%);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(10, 26, 58, .06);
    --shadow: 0 10px 30px -10px rgba(10, 26, 58, .18);
    --shadow-lg: 0 30px 60px -20px rgba(10, 26, 58, .35);
    --ease: cubic-bezier(.2, .7, .2, 1);
    --header-h: 76px;

    --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --font-display: "Barlow Condensed", "Plus Jakarta Sans", sans-serif;

    --bs-body-font-family: var(--font-body);
    --bs-body-color: var(--body);
    --bs-link-color-rgb: 26, 52, 102;
    --bs-link-hover-color-rgb: 176, 138, 58;
    --bs-border-radius: var(--radius-sm);
}

/* ---------------------------------------------------------------- Base */
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { font-family: var(--font-body); color: var(--body); background: var(--white); font-size: 1rem; line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { color: var(--ink); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
p { margin-bottom: 1rem; }
a { text-decoration: none; transition: color .2s var(--ease); }
img { max-width: 100%; height: auto; }
figure { margin: 0; }
::selection { background: var(--gold-300); color: var(--navy-900); }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 2px; border-radius: 4px; }
.text-gold { color: var(--gold-400) !important; }
.text-white-75 { color: rgba(255, 255, 255, .78) !important; }
.z-2 { z-index: 2; }

.skip-link { position: absolute; left: 1rem; top: -60px; z-index: 2000; background: var(--gold-500); color: var(--navy-900); padding: .6rem 1rem; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 1rem; }

.eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600); margin-bottom: .9rem; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold-grad); border-radius: 2px; }
.text-center .eyebrow::after, .eyebrow.eyebrow--center::after { content: ""; width: 28px; height: 2px; background: var(--gold-grad); border-radius: 2px; }
.eyebrow--light { color: var(--gold-300); }

.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--tint { background: var(--surface); }
.section--navy { background: var(--navy-900); color: rgba(255, 255, 255, .82); }
.section--deep { background: var(--navy-950); color: rgba(255, 255, 255, .82); }
.section-head { margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-title { font-size: clamp(1.75rem, 3.2vw, 2.6rem); margin-bottom: 1rem; }
.section-lead { font-size: 1.08rem; color: var(--muted); max-width: 680px; }
.section-subhead { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; margin: 4rem 0 1.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.lead-sm { font-size: 1.1rem; color: var(--ink); font-weight: 500; }

/* -------------------------------------------------------------- Buttons */
.btn { font-weight: 700; border-radius: 999px; padding: .7rem 1.5rem; letter-spacing: .01em; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s; display: inline-flex; align-items: center; justify-content: center; }
.btn-lg { padding: .9rem 1.9rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .85rem; }
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--gold-grad); color: var(--navy-900); border: 0; box-shadow: 0 8px 22px -8px rgba(201, 162, 78, .7); }
.btn-gold:hover, .btn-gold:focus-visible { color: var(--navy-950); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(201, 162, 78, .85); }
.btn-navy { background: var(--navy-900); color: #fff; border: 0; }
.btn-navy:hover { background: var(--navy-700); color: #fff; transform: translateY(-2px); }
.btn-outline-light { border: 1.5px solid rgba(255, 255, 255, .45); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy-900); border-color: #fff; }
.btn-outline-gold { border: 1.5px solid var(--gold-500); color: var(--gold-400); background: transparent; }
.btn-outline-gold:hover { background: var(--gold-500); color: var(--navy-900); }
.btn-outline-navy { border: 1.5px solid var(--navy-900); color: var(--navy-900); }
.btn-outline-navy:hover { background: var(--navy-900); color: #fff; }
.btn-whatsapp { background: var(--wa); color: #fff; border: 0; }
.btn-whatsapp:hover { background: #17964c; color: #fff; }
.link-arrow { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--navy-700); font-size: .95rem; }
.link-arrow i { transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--gold-600); }
.link-arrow:hover i, a:hover .link-arrow i, .core-card:hover .link-arrow i, .service-card:hover .link-arrow i { transform: translateX(4px); }

/* --------------------------------------------------------------- Topbar */
.topbar { background: var(--navy-950); color: rgba(255, 255, 255, .72); font-size: .82rem; padding: .5rem 0; }
.topbar-list { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.topbar-list li { display: flex; align-items: center; gap: .45rem; }
.topbar-list a { color: rgba(255, 255, 255, .78); display: inline-flex; align-items: center; gap: .45rem; }
.topbar-list a:hover { color: var(--gold-300); }
.topbar-list i { color: var(--gold-400); }

/* --------------------------------------------------------------- Header */
.site-header { position: sticky; top: 0; z-index: 1030; background: rgba(255, 255, 255, .97); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid transparent; transition: box-shadow .3s var(--ease), border-color .3s; }
.site-header.is-scrolled { box-shadow: 0 6px 24px -12px rgba(10, 26, 58, .28); border-color: var(--line); }
.navbar-main { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); transition: min-height .3s var(--ease); }
.is-scrolled .navbar-main { min-height: 64px; }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--navy-900); flex-shrink: 0; }
.brand-emblem { width: 52px; height: 52px; border-radius: 12px; box-shadow: 0 4px 12px -4px rgba(10, 26, 58, .45); transition: width .3s, height .3s; }
.is-scrolled .brand .brand-emblem { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.75rem; letter-spacing: .06em; color: var(--navy-900); }
.brand-sub { font-family: var(--font-display); font-weight: 600; font-size: .78rem; letter-spacing: .5em; color: var(--gold-600); margin-top: .2rem; display: flex; align-items: center; gap: .35rem; }
.brand-sub::before, .brand-sub::after { content: ""; width: 10px; height: 1.5px; background: var(--gold-500); }
.brand--light .brand-name { color: #fff; }
.brand--light .brand-sub { color: var(--gold-400); }

.nav-desktop { list-style: none; margin: 0 auto; padding: 0; align-items: center; gap: .1rem; }
.nav-desktop .nav-link { position: relative; display: inline-flex; align-items: center; gap: .3rem; padding: .6rem .62rem; font-size: .9rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
.nav-desktop .nav-link::after { content: ""; position: absolute; left: .62rem; right: .62rem; bottom: .25rem; height: 2px; background: var(--gold-grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-desktop .nav-link:hover, .nav-desktop .nav-link.active { color: var(--navy-700); }
.nav-desktop .nav-link:hover::after, .nav-desktop .nav-link.active::after { transform: scaleX(1); }
.nav-caret { font-size: .7rem; transition: transform .25s var(--ease); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }

/* Mega menu */
.has-mega { position: relative; }
.mega { position: absolute; top: calc(100% + 14px); left: 50%; width: 720px; transform: translate(-50%, 10px); opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s; z-index: 50; }
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.has-mega:hover .mega, .has-mega:focus-within .mega, .has-mega.is-open .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.has-mega:hover .nav-caret, .has-mega.is-open .nav-caret { transform: rotate(180deg); }
.mega-inner { display: grid; grid-template-columns: 1.1fr 1fr; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--line); }
.mega-primary { background: var(--navy-900); padding: 1.4rem; display: flex; flex-direction: column; gap: .4rem; }
.mega-secondary { padding: 1.4rem; }
.mega-heading { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-500); margin-bottom: .6rem; }
.mega-feature { display: flex; gap: .85rem; align-items: flex-start; padding: .7rem .75rem; border-radius: 12px; color: #fff; transition: background .2s; }
.mega-feature strong { display: block; font-size: .95rem; }
.mega-feature small { display: block; color: rgba(255, 255, 255, .62); font-size: .78rem; line-height: 1.45; margin-top: .15rem; }
.mega-feature:hover, .mega-feature.active { background: rgba(255, 255, 255, .07); color: #fff; }
.mega-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--gold-grad); color: var(--navy-900); font-size: 1.1rem; }
.mega-secondary ul { list-style: none; padding: 0; margin: 0 0 .8rem; }
.mega-secondary li a { display: flex; align-items: center; gap: .6rem; padding: .48rem .5rem; border-radius: 8px; color: var(--ink); font-weight: 600; font-size: .9rem; }
.mega-secondary li a i { color: var(--gold-600); }
.mega-secondary li a:hover, .mega-secondary li a.active { background: var(--surface); color: var(--navy-700); }
.mega-all { font-weight: 700; font-size: .88rem; color: var(--navy-700); display: inline-flex; gap: .4rem; align-items: center; padding-left: .5rem; }

/* Hamburger */
.nav-toggle { width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--line); background: #fff; display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav-toggle span { width: 20px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .3s; }
.nav-toggle span:nth-child(2) { width: 14px; margin-left: 6px; }

/* Mobile offcanvas */
.mobile-nav { background: var(--navy-900); color: #fff; width: min(360px, 88vw) !important; }
.mobile-nav .offcanvas-header { border-bottom: 1px solid rgba(255, 255, 255, .08); padding: 1rem 1.25rem; }
.mobile-nav .brand-emblem { width: 44px; height: 44px; }
.mobile-nav .brand-name { font-size: 1.5rem; }
.mobile-menu { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.mobile-link { display: flex; width: 100%; justify-content: space-between; align-items: center; padding: .9rem .25rem; color: #fff; font-weight: 600; font-size: 1.02rem; border: 0; background: none; border-bottom: 1px solid rgba(255, 255, 255, .07); text-align: left; min-height: 48px; }
.mobile-link:hover, .mobile-link.active { color: var(--gold-400); }
.mobile-toggle i { transition: transform .3s; }
.mobile-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.mobile-sub { list-style: none; padding: .4rem 0 .6rem; margin: 0; }
.mobile-sub a { display: flex; align-items: center; gap: .7rem; padding: .62rem .8rem; color: rgba(255, 255, 255, .8); font-size: .95rem; border-radius: 10px; min-height: 44px; }
.mobile-sub a i { color: var(--gold-500); width: 20px; }
.mobile-sub a.is-primary { color: #fff; font-weight: 600; }
.mobile-sub a:hover, .mobile-sub a.active { background: rgba(255, 255, 255, .06); color: var(--gold-300); }

.social-row { display: flex; gap: .6rem; }
.social-row a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .18); color: #fff; transition: all .25s var(--ease); }
.social-row a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }

/* ----------------------------------------------------------------- Hero */
.hero { position: relative; background: var(--navy-950); color: #fff; padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(7rem, 12vw, 10rem); overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg picture, .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-bg img { animation: kenburns 24s ease-in-out infinite alternate; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background:
    linear-gradient(100deg, rgba(5, 15, 36, .97) 0%, rgba(5, 15, 36, .9) 42%, rgba(10, 26, 58, .72) 70%, rgba(10, 26, 58, .55) 100%),
    radial-gradient(1200px 500px at 0% 100%, rgba(201, 162, 78, .12), transparent 60%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-500), transparent); opacity: .6; }
.hero-title { font-size: clamp(2.3rem, 5.4vw, 4.1rem); color: #fff; font-weight: 800; line-height: 1.08; margin-bottom: 1.4rem; letter-spacing: -.03em; }
.hero-lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: rgba(255, 255, 255, .8); max-width: 620px; margin-bottom: 1.8rem; }
.hero-pillars { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; margin: 0 0 2.2rem; }
.hero-pillars li { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: 999px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(232, 210, 156, .25); font-weight: 600; font-size: .9rem; letter-spacing: .02em; }
.hero-pillars i { color: var(--gold-400); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2rem; }
.hero-call { display: inline-flex; align-items: center; gap: .85rem; color: #fff; font-weight: 700; font-size: 1.15rem; }
.hero-call small { display: block; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-300); }
.hero-call-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; border: 1.5px solid var(--gold-500); color: var(--gold-400); position: relative; }
.hero-call-icon::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid rgba(201, 162, 78, .35); animation: pulse 2.4s var(--ease) infinite; }
.hero-call:hover { color: var(--gold-300); }

.hero-collage { position: relative; height: 500px; }
.hc { position: absolute; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 3px solid rgba(232, 210, 156, .55); }
.hc img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hc picture { display: block; height: 100%; }
.hc-1 { width: 64%; height: 58%; top: 0; right: 0; }
.hc-2 { width: 62%; height: 46%; bottom: 0; left: 0; }
.hc-3 { width: 40%; height: 38%; bottom: 4%; right: 4%; }
.hc-badge { position: absolute; left: 4%; top: 22%; display: flex; align-items: center; gap: .7rem; background: #fff; color: var(--ink); padding: .8rem 1.1rem; border-radius: 14px; box-shadow: var(--shadow-lg); font-size: .85rem; animation: floaty 6s ease-in-out infinite; }
.hc-badge i { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--navy-900); color: var(--gold-400); font-size: 1.1rem; }
.hc-badge strong { display: block; font-size: 1.15rem; color: var(--navy-900); line-height: 1; }

/* ------------------------------------------------------------ Highlights */
.highlights { position: relative; margin-top: clamp(-5.5rem, -8vw, -4rem); z-index: 3; }
.highlights-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(1.5rem, 3vw, 2.4rem); border: 1px solid var(--line); }
.stats-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; padding-bottom: 1.6rem; margin-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.stat { text-align: center; }
.stat-value { display: block; font-family: var(--font-display); font-size: clamp(2.3rem, 4vw, 3.2rem); font-weight: 700; color: var(--navy-900); line-height: 1; }
.stat-value span { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { display: block; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }
.trust-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem 1.2rem; list-style: none; margin: 0; padding: 0; }
.trust-row li { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .9rem; color: var(--ink); }
.trust-row i { width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center; background: var(--gold-100); color: var(--gold-600); }

/* ------------------------------------------------------------- Cards */
.core-card { position: relative; height: 100%; display: flex; flex-direction: column; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.core-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--gold-grad); z-index: 3; }
.core-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.core-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-900); }
.core-card-media picture, .core-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.core-card:hover .core-card-media img { transform: scale(1.06); }
.core-card-art { width: 100%; height: 100%; display: grid; place-items: center; background:
    radial-gradient(400px 200px at 80% 20%, rgba(201, 162, 78, .28), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 14px),
    linear-gradient(160deg, var(--navy-700), var(--navy-950)); }
.core-card-art i { font-size: 5rem; color: rgba(232, 210, 156, .85); filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .35)); }
.core-card-icon { position: absolute; left: 1.25rem; bottom: -22px; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--navy-900); color: var(--gold-400); font-size: 1.4rem; border: 3px solid #fff; box-shadow: var(--shadow); z-index: 2; }
.core-card-body { padding: 2.2rem 1.4rem 1rem; flex: 1; }
.core-card-title { font-size: 1.22rem; margin-bottom: .35rem; }
.core-card-title a { color: var(--ink); }
.core-card-tag { font-size: .85rem; font-weight: 700; color: var(--gold-600); margin-bottom: .7rem; }
.core-card-text { font-size: .93rem; color: var(--muted); }
.core-card-foot { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.4rem 1.3rem; border-top: 1px solid var(--line); }

.service-card { position: relative; height: 100%; display: flex; flex-direction: column; gap: .7rem; padding: 1.6rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.service-card-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--navy-900); color: var(--gold-400); font-size: 1.35rem; transition: background .3s, color .3s; }
.service-card:hover .service-card-icon { background: var(--gold-grad); color: var(--navy-900); }
.service-card-title { font-size: 1.08rem; margin: .3rem 0 0; }
.service-card-title a { color: var(--ink); }
.service-card-text { font-size: .9rem; color: var(--muted); flex: 1; margin: 0; }
.service-card--cta { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); border-color: var(--navy-900); justify-content: center; }
.service-card--cta .service-card-title { color: #fff; }
.service-card--cta .service-card-text { color: rgba(255, 255, 255, .72); }
.service-card--cta .service-card-icon { background: var(--gold-grad); color: var(--navy-900); }
.service-card--cta:hover { border-color: var(--gold-500); }

/* Lists */
.check-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: .65rem; color: var(--ink); font-weight: 500; }
.check-list li::before { content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: .05rem; width: 1.3rem; height: 1.3rem; border-radius: 50%; background: var(--gold-100); color: var(--gold-600); font-size: .85rem; display: grid; place-items: center; }
.check-list--sm li { font-size: .88rem; margin-bottom: .45rem; font-weight: 500; color: var(--body); }
.check-list--2col { display: grid; grid-template-columns: 1fr; gap: 0 1.5rem; }
.section--navy .check-list li, .section--deep .check-list li { color: rgba(255, 255, 255, .88); }
.pill-grid { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin: 1.4rem 0 0; }
.pill-grid li { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .9rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .86rem; font-weight: 600; color: var(--ink); }
.pill-grid i { color: var(--gold-600); }

/* ------------------------------------------------------------- About media */
.about-media { position: relative; padding: 0 12% 16% 0; }
.am { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.am img { width: 100%; height: 100%; object-fit: cover; display: block; }
.am picture { display: block; height: 100%; }
.am-1 { aspect-ratio: 4 / 3.4; }
.am-2 { position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 1; border: 6px solid var(--surface); }
.am-card { position: absolute; left: -4%; bottom: 6%; display: flex; align-items: center; gap: .8rem; background: var(--navy-900); color: #fff; padding: .9rem 1.2rem; border-radius: 14px; box-shadow: var(--shadow-lg); max-width: 60%; }
.am-card img { width: 46px; height: 46px; border-radius: 10px; }
.am-card p { margin: 0; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-300); line-height: 1.4; }

/* ----------------------------------------------------- Vision / mission */
.vm-section { overflow: hidden; }
.vm-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 400px at 100% 0%, rgba(201, 162, 78, .14), transparent 60%), radial-gradient(700px 400px at 0% 100%, rgba(42, 74, 133, .5), transparent 60%); pointer-events: none; }
.vm-card { position: relative; height: 100%; padding: clamp(1.8rem, 3.5vw, 2.8rem); border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02)); border: 1px solid rgba(232, 210, 156, .18); }
.vm-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: var(--gold-grad); color: var(--navy-900); font-size: 1.5rem; margin-bottom: 1.4rem; }
.vm-quote { font-size: clamp(1.15rem, 2vw, 1.4rem); line-height: 1.55; color: #fff; font-weight: 600; margin-bottom: 1.2rem; border: 0; padding: 0; }
.vm-quote--sm { font-size: clamp(1.05rem, 1.7vw, 1.2rem); }
.vm-text { color: rgba(255, 255, 255, .72); margin: 0; }
.mission-grid { display: grid; grid-template-columns: 1fr; gap: .6rem; list-style: none; padding: 0; margin: 0; }
.mission-grid li { display: flex; align-items: center; gap: .65rem; font-size: .92rem; color: rgba(255, 255, 255, .88); font-weight: 500; }
.mission-grid i { color: var(--gold-400); }

/* ---------------------------------------------------------------- Why */
.why-sticky { position: sticky; top: calc(var(--header-h) + 30px); }
.why-img { margin: 1.4rem 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 9; }
.why-img picture, .why-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.why-item { position: relative; padding: 1.5rem 1.5rem 1.4rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: all .35s var(--ease); overflow: hidden; }
.why-item::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold-grad); transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease); }
.why-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.why-item:hover::after { transform: scaleY(1); }
.why-num { position: absolute; right: 1.2rem; top: .8rem; font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--surface); line-height: 1; -webkit-text-stroke: 1px var(--line); }
.why-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-100); color: var(--gold-600); font-size: 1.2rem; margin-bottom: .9rem; }
.why-title { font-size: 1.02rem; margin-bottom: .35rem; }
.why-text { font-size: .9rem; color: var(--muted); margin: 0; }

/* ----------------------------------------------------------- Training */
.training-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 400px at 50% 0%, rgba(201, 162, 78, .12), transparent 60%), repeating-linear-gradient(135deg, rgba(255, 255, 255, .018) 0 2px, transparent 2px 18px); pointer-events: none; }
.training-grid { display: grid; grid-template-columns: 1fr; gap: .8rem; }
.training-item { display: flex; align-items: center; gap: .9rem; padding: 1rem 1.1rem; border-radius: 14px; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08); color: #fff; font-weight: 600; font-size: .93rem; transition: background .3s, border-color .3s, transform .3s var(--ease); }
.training-item i { flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(201, 162, 78, .14); color: var(--gold-400); font-size: 1.1rem; }
.training-item:hover { background: rgba(255, 255, 255, .07); border-color: rgba(232, 210, 156, .35); transform: translateY(-3px); }

/* ---------------------------------------------------------------- HSE */
.hse-visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hse-visual picture, .hse-visual img { display: block; width: 100%; aspect-ratio: 4 / 3.3; object-fit: cover; }
.hse-quote { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; margin: 0; padding: 1.3rem 1.4rem; background: rgba(10, 26, 58, .92); backdrop-filter: blur(6px); border-radius: var(--radius); border-left: 4px solid var(--gold-500); color: #fff; }
.hse-quote i { color: var(--gold-400); font-size: 1.8rem; line-height: 1; }
.hse-quote p { font-weight: 600; font-size: 1.02rem; margin: .3rem 0 .5rem; }
.hse-quote cite { font-style: normal; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-300); }

/* ------------------------------------------------------------ Clients */
.marquee-wrap { padding: 1rem 0 clamp(4rem, 7vw, 6rem); display: grid; gap: 1rem; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee { overflow: hidden; }
.marquee-track { display: flex; gap: 1rem; width: max-content; animation: marquee 55s linear infinite; }
.marquee--reverse .marquee-track { animation-direction: reverse; animation-duration: 60s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.client-chip { display: inline-flex; align-items: center; gap: .7rem; padding: .95rem 1.4rem; border-radius: 14px; background: #fff; border: 1px solid var(--line); font-weight: 700; color: var(--navy-900); white-space: nowrap; box-shadow: var(--shadow-sm); font-size: .95rem; }
.client-chip i { color: var(--gold-600); font-size: 1.1rem; }

.client-card { height: 100%; display: flex; gap: 1rem; align-items: flex-start; padding: 1.3rem 1.3rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: all .3s var(--ease); }
.client-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--gold-300); }
.client-mono { flex-shrink: 0; width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: var(--navy-900); color: var(--gold-400); font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: .04em; }
.client-name { font-size: 1rem; margin: 0 0 .15rem; }
.client-loc { font-size: .8rem; color: var(--muted); margin-bottom: .55rem; }
.tag { display: inline-flex; align-items: center; gap: .3rem; font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: .25rem .6rem; border-radius: 999px; background: var(--gold-100); color: var(--gold-600); margin: 0 .25rem .25rem 0; }
.tag--navy { background: #E8EDF7; color: var(--navy-700); }
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-bottom: 2rem; }
.filter-btn { border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 600; font-size: .88rem; padding: .5rem 1.1rem; border-radius: 999px; transition: all .2s; }
.filter-btn:hover { border-color: var(--gold-500); }
.filter-btn.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

/* ---------------------------------------------------------- Compliance */
.reg-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.reg-grid > .reg-badge { flex: 0 1 calc(50% - .5rem); }
.reg-badge { position: relative; display: flex; flex-direction: column; align-items: flex-start; padding: 1.3rem 1.2rem; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: all .3s var(--ease); }
.reg-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-300); }
.reg-check { color: var(--gold-500); font-size: 1.4rem; line-height: 1; margin-bottom: .7rem; }
.reg-label { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--navy-900); line-height: 1; letter-spacing: .02em; }
.reg-full { font-size: .76rem; color: var(--muted); margin: .35rem 0 .7rem; line-height: 1.4; }
.reg-number { margin-top: auto; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .85rem; font-weight: 600; color: var(--navy-700); background: var(--surface); padding: .25rem .55rem; border-radius: 6px; word-break: break-all; }
.reg-number--muted { font-family: var(--font-body); color: var(--muted); font-weight: 500; }
.reg-badge--muted .reg-check { color: var(--muted); }

.iso-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.iso-head { display: flex; align-items: center; gap: 1rem; background: var(--navy-900); color: #fff; padding: 1.5rem 1.6rem; }
.iso-seal { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-grad); color: var(--navy-900); font-size: 1.7rem; flex-shrink: 0; box-shadow: 0 0 0 6px rgba(201, 162, 78, .18); }
.iso-head h3 { color: #fff; margin: 0; font-size: 1.35rem; }
.iso-head p { margin: 0; color: rgba(255, 255, 255, .7); font-size: .9rem; }
.iso-body { padding: 1.6rem; }
.iso-table { width: 100%; font-size: .93rem; }
.iso-table th { width: 44%; color: var(--muted); font-weight: 600; padding: .55rem 0; vertical-align: top; }
.iso-table td { color: var(--ink); font-weight: 600; padding: .55rem 0; }
.iso-table tr + tr { border-top: 1px dashed var(--line); }
.status-pill { display: inline-flex; align-items: center; gap: .4rem; padding: .3rem .8rem; border-radius: 999px; font-size: .8rem; font-weight: 700; }
.status-pill--ok { background: #E6F6EC; color: #137A3D; }
.status-pill--warn { background: #FFF4E0; color: #9A5B00; }

.doc-card { height: 100%; display: flex; flex-direction: column; padding: 1.4rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; transition: all .3s var(--ease); }
.doc-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.doc-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-100); color: var(--gold-600); font-size: 1.3rem; margin-bottom: 1rem; }
.doc-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.doc-meta { font-size: .8rem; color: var(--muted); margin-bottom: 1rem; display: flex; align-items: center; gap: .35rem; }
.doc-card .btn { margin-top: auto; align-self: flex-start; }

/* ------------------------------------------------------------- Quote */
.quote-shell { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); background: #fff; }
.quote-aside { background: var(--navy-900); padding: clamp(2rem, 4vw, 3rem); position: relative; overflow: hidden; }
.quote-aside::after { content: ""; position: absolute; right: -120px; bottom: -120px; width: 320px; height: 320px; border-radius: 50%; border: 50px solid rgba(201, 162, 78, .08); }
.quote-main { padding: clamp(1.6rem, 4vw, 3rem); }
.quote-contact { list-style: none; padding: 0; margin: 1.6rem 0; display: grid; gap: 1rem; }
.quote-contact li { display: flex; gap: .8rem; color: rgba(255, 255, 255, .85); font-size: .95rem; }
.quote-contact i { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; display: grid; place-items: center; background: rgba(201, 162, 78, .14); color: var(--gold-400); }
.quote-contact a { color: #fff; }
.quote-contact a:hover { color: var(--gold-300); }

/* ------------------------------------------------------------- Forms */
.site-form .form-label { font-weight: 600; font-size: .86rem; color: var(--ink); margin-bottom: .35rem; }
.site-form .req { color: #C0392B; }
.site-form .form-control, .site-form .form-select { border-radius: 12px; border: 1.5px solid var(--line); padding: .72rem .95rem; font-size: .95rem; background-color: #FBFCFE; transition: border-color .2s, box-shadow .2s, background-color .2s; }
.site-form .form-control:focus, .site-form .form-select:focus { border-color: var(--gold-500); box-shadow: 0 0 0 4px rgba(201, 162, 78, .18); background-color: #fff; }
.site-form .form-control.is-invalid, .site-form .form-select.is-invalid { border-color: #DC3545; }
.site-form .form-check-input:checked { background-color: var(--navy-900); border-color: var(--navy-900); }
.site-form .form-status:empty { display: none; }
.site-form .form-status .alert { border-radius: 12px; font-size: .92rem; }
.site-form .btn[disabled] { opacity: .75; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.file-drop { position: relative; border: 2px dashed var(--line); border-radius: 14px; padding: 1.3rem; text-align: center; background: #FBFCFE; transition: border-color .2s, background .2s; cursor: pointer; }
.file-drop:hover, .file-drop.is-drag { border-color: var(--gold-500); background: var(--gold-100); }
.file-drop input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-drop i { font-size: 1.6rem; color: var(--gold-600); }
.file-drop .file-name { font-weight: 600; color: var(--navy-700); font-size: .9rem; }
.file-drop.is-invalid { border-color: #DC3545; }

/* ----------------------------------------------------------- Modal */
.enquiry-modal .modal-content { border: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.enquiry-modal.fade .modal-dialog { transform: translateY(24px) scale(.98); transition: transform .35s var(--ease); }
.enquiry-modal.show .modal-dialog { transform: none; }
.enquiry-aside { flex-direction: column; justify-content: space-between; background: linear-gradient(170deg, var(--navy-800), var(--navy-950)); padding: 2.2rem; }
.enquiry-points { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.enquiry-points li { display: flex; gap: .55rem; color: rgba(255, 255, 255, .88); font-size: .92rem; }
.enquiry-points i { color: var(--gold-400); }
.enquiry-contact { display: grid; gap: .6rem; margin-top: 2rem; }
.enquiry-contact a { display: inline-flex; align-items: center; gap: .55rem; color: #fff; font-weight: 700; }
.enquiry-contact a i { color: var(--gold-400); }
.enquiry-contact a:hover { color: var(--gold-300); }
.enquiry-modal .modal-header { padding: 1.6rem 1.6rem 0; align-items: flex-start; }
.enquiry-modal .modal-body { padding: 1rem 1.6rem 1.6rem; }
.modal-backdrop.show { opacity: .65; background: var(--navy-950); }

/* -------------------------------------------------------- Page hero */
.page-hero { position: relative; overflow: hidden; background: var(--navy-950); color: #fff; padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3.5rem, 7vw, 5rem); isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background:
    radial-gradient(900px 380px at 100% 0%, rgba(201, 162, 78, .16), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .02) 0 2px, transparent 2px 18px),
    linear-gradient(120deg, var(--navy-950), var(--navy-800)); }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--gold-grad); }
.page-hero-media { position: absolute; inset: 0 0 0 45%; z-index: -1; }
.page-hero-media picture, .page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy-950) 0%, rgba(5, 15, 36, .75) 35%, rgba(5, 15, 36, .35) 100%); }
.page-hero-icon { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); font-size: clamp(8rem, 18vw, 15rem); color: rgba(232, 210, 156, .08); z-index: -1; line-height: 1; }
.page-hero-content { max-width: 760px; }
.page-hero-title { color: #fff; font-size: clamp(2rem, 4.6vw, 3.3rem); margin-bottom: 1rem; letter-spacing: -.03em; }
.page-hero-lead { font-size: clamp(1rem, 1.5vw, 1.15rem); color: rgba(255, 255, 255, .78); margin: 0; max-width: 640px; }
.breadcrumb-lite { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 0 0 1.6rem; font-size: .84rem; }
.breadcrumb-lite li { color: var(--gold-300); display: inline-flex; align-items: center; gap: .5rem; }
.breadcrumb-lite li + li::before { content: "/"; color: rgba(255, 255, 255, .35); }
.breadcrumb-lite a { color: rgba(255, 255, 255, .72); }
.breadcrumb-lite a:hover { color: #fff; }

/* ---------------------------------------------------------- CTA band */
.cta-band { padding: 0 0 clamp(4rem, 7vw, 6rem); }
.cta-band-inner { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 1.6rem; padding: clamp(2rem, 4.5vw, 3.4rem); border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #fff; box-shadow: var(--shadow-lg); }
.cta-band-inner::before { content: ""; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 162, 78, .35), transparent 70%); }
.cta-band-title { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: .6rem; }
.cta-band-text { color: rgba(255, 255, 255, .78); margin: 0; max-width: 620px; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; position: relative; }

/* ---------------------------------------------------- Service detail */
.facts-card { position: sticky; top: calc(var(--header-h) + 24px); border-radius: var(--radius-lg); background: var(--navy-900); color: #fff; padding: 1.8rem; box-shadow: var(--shadow-lg); }
.facts-card h2, .facts-card h3 { color: #fff; }
.facts-card .facts-list { list-style: none; padding: 0; margin: 1.2rem 0 1.4rem; display: grid; gap: .7rem; }
.facts-card .facts-list li { display: flex; gap: .6rem; font-size: .92rem; color: rgba(255, 255, 255, .85); }
.facts-card .facts-list i { color: var(--gold-400); }
.facts-card .btn { width: 100%; margin-bottom: .6rem; }
.benefit-card { height: 100%; padding: 1.6rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: all .3s var(--ease); }
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.benefit-card i { font-size: 1.5rem; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--navy-900); color: var(--gold-400); margin-bottom: 1rem; }
.benefit-card h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.benefit-card p { font-size: .9rem; color: var(--muted); margin: 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.gallery-grid figure { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.gallery-grid figure:first-child { grid-column: span 2; aspect-ratio: 16 / 9; }
.gallery-grid picture, .gallery-grid img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.05); }
.provide-panel { padding: clamp(1.6rem, 3vw, 2.4rem); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 100%; }

.process { display: grid; grid-template-columns: 1fr; gap: 1.2rem; counter-reset: step; position: relative; }
.process-step { position: relative; padding: 1.6rem 1.4rem; border-radius: var(--radius); background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .09); }
.process-step::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--gold-grad); color: var(--navy-900); font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; margin-bottom: 1rem; box-shadow: 0 0 0 6px rgba(201, 162, 78, .15); }
.process-step h3 { color: #fff; font-size: 1.08rem; margin-bottom: .4rem; }
.process-step p { color: rgba(255, 255, 255, .7); font-size: .9rem; margin: 0; }

.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.industry { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .6rem; padding: 1.3rem .8rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); font-weight: 700; font-size: .9rem; color: var(--ink); transition: all .3s var(--ease); }
.industry i { font-size: 1.6rem; color: var(--gold-600); }
.industry:hover { border-color: var(--gold-300); box-shadow: var(--shadow); transform: translateY(-3px); }

.faq .accordion-item { border: 1px solid var(--line); border-radius: var(--radius) !important; overflow: hidden; margin-bottom: .8rem; background: #fff; }
.faq .accordion-button { font-weight: 700; color: var(--ink); padding: 1.15rem 1.3rem; font-size: 1rem; background: #fff; box-shadow: none; }
.faq .accordion-button:not(.collapsed) { color: var(--navy-700); background: var(--surface); }
.faq .accordion-button:focus { box-shadow: 0 0 0 3px rgba(201, 162, 78, .25); }
.faq .accordion-button::after { background-image: none; content: "\F4FE"; font-family: "bootstrap-icons"; font-size: 1.2rem; color: var(--gold-600); transform: none; width: auto; height: auto; transition: transform .3s; }
.faq .accordion-button:not(.collapsed)::after { content: "\F2EA"; }
.faq .accordion-body { color: var(--body); padding: 0 1.3rem 1.3rem; background: var(--surface); }

/* --------------------------------------------------- Director */
.director-card { position: sticky; top: calc(var(--header-h) + 24px); border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.director-photo { aspect-ratio: 4 / 4.6; background: linear-gradient(160deg, var(--navy-700), var(--navy-950)); display: grid; place-items: center; position: relative; overflow: hidden; }
.director-photo img { width: 100%; height: 100%; object-fit: cover; }
.director-mono { width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center; border: 2px solid var(--gold-500); color: var(--gold-300); font-family: var(--font-display); font-size: 3.6rem; font-weight: 700; letter-spacing: .05em; box-shadow: 0 0 0 10px rgba(201, 162, 78, .1); }
.director-photo-note { position: absolute; bottom: .8rem; left: 0; right: 0; text-align: center; font-size: .72rem; color: rgba(255, 255, 255, .45); letter-spacing: .08em; text-transform: uppercase; }
.director-meta { padding: 1.5rem 1.6rem; }
.director-meta h2 { font-size: 1.35rem; margin-bottom: .2rem; }
.director-meta p { color: var(--gold-600); font-weight: 700; font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; }
.letter { font-size: 1.05rem; line-height: 1.85; }
.letter p:first-of-type::first-letter { font-family: var(--font-display); float: left; font-size: 4.2rem; line-height: .85; padding: .35rem .6rem 0 0; color: var(--gold-600); font-weight: 700; }
.letter-sign { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.letter-sign .sig { font-family: var(--font-display); font-size: 2rem; color: var(--navy-900); letter-spacing: .02em; line-height: 1; }
.pull-quote { margin: 2rem 0; padding: 1.6rem 1.8rem; border-radius: var(--radius); background: var(--navy-900); color: #fff; font-size: 1.15rem; font-weight: 600; position: relative; border-left: 4px solid var(--gold-500); }

/* ------------------------------------------------------ Values / misc */
.value-card { height: 100%; padding: 1.5rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: all .3s var(--ease); }
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--gold-300); }
.value-card i { font-size: 1.4rem; color: var(--gold-600); }
.value-card h3 { font-size: 1.05rem; margin: .7rem 0 .35rem; }
.value-card p { font-size: .9rem; color: var(--muted); margin: 0; }
.policy-box { padding: clamp(1.8rem, 4vw, 3rem); border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--gold-100), #fff); border: 1px solid var(--gold-300); position: relative; }
.policy-box .bi-quote { position: absolute; right: 1.5rem; top: 1rem; font-size: 4rem; color: rgba(201, 162, 78, .25); line-height: 1; }
.policy-box p { font-size: 1.12rem; color: var(--ink); font-weight: 500; margin: 0; position: relative; }
.big-quote { font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.45; font-weight: 700; color: #fff; max-width: 900px; margin: 0 auto; }
.big-quote::before { content: "\201C"; display: block; font-family: Georgia, serif; font-size: 4rem; line-height: .6; color: var(--gold-500); margin-bottom: 1rem; }
.icon-list-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 1.3rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); height: 100%; transition: all .3s var(--ease); }
.icon-list-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--gold-300); }
.icon-list-card i { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--navy-900); color: var(--gold-400); font-size: 1.2rem; }
.icon-list-card h3 { font-size: .98rem; margin: .7rem 0 0; line-height: 1.4; }
.icon-list-card .num { font-family: var(--font-display); font-weight: 700; color: var(--gold-600); font-size: .9rem; letter-spacing: .1em; display: block; }

.contact-card { height: 100%; display: flex; gap: 1rem; padding: 1.5rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: all .3s var(--ease); }
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-card i.ci { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--gold-grad); color: var(--navy-900); font-size: 1.3rem; }
.contact-card h3 { font-size: 1rem; margin-bottom: .35rem; }
.contact-card p, .contact-card a { font-size: .93rem; margin: 0; }
.contact-card a { color: var(--navy-700); font-weight: 600; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--surface); position: relative; }
.map-wrap iframe { display: block; width: 100%; height: 440px; border: 0; }
.map-overlay { position: absolute; left: 1rem; bottom: 1rem; background: #fff; border-radius: var(--radius); padding: 1rem 1.2rem; box-shadow: var(--shadow-lg); max-width: 330px; }
.map-overlay p { font-size: .88rem; margin-bottom: .7rem; }
.form-tabs { display: inline-flex; padding: .3rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); margin-bottom: 1.6rem; }
.form-tabs .nav-link { border-radius: 999px; font-weight: 700; color: var(--muted); padding: .55rem 1.2rem; font-size: .9rem; }
.form-tabs .nav-link.active { background: var(--navy-900); color: #fff; }

.position-card { height: 100%; display: flex; flex-direction: column; gap: .7rem; padding: 1.5rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: all .3s var(--ease); }
.position-card:hover { box-shadow: var(--shadow); border-color: var(--gold-300); transform: translateY(-3px); }
.position-card i { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-100); color: var(--gold-600); font-size: 1.3rem; }
.position-card h3 { font-size: 1.05rem; margin: 0; }
.position-card p { font-size: .9rem; color: var(--muted); margin: 0; flex: 1; }
.position-card .apply-link { font-weight: 700; font-size: .9rem; color: var(--navy-700); border: 0; background: none; padding: 0; text-align: left; display: inline-flex; gap: .4rem; align-items: center; }
.position-card .apply-link:hover { color: var(--gold-600); }

.legal { max-width: 860px; }
.legal h2 { font-size: 1.35rem; margin: 2.4rem 0 .8rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.legal h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: .4rem; }
.legal-note { padding: 1rem 1.2rem; border-radius: 12px; background: var(--gold-100); border: 1px solid var(--gold-300); font-size: .9rem; color: var(--ink); margin-bottom: 2rem; }
.toc { position: sticky; top: calc(var(--header-h) + 24px); padding: 1.4rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.toc ol { padding-left: 1.1rem; margin: 0; font-size: .88rem; }
.toc li { margin-bottom: .4rem; }
.toc a { color: var(--body); }
.toc a:hover { color: var(--gold-600); }

.notice { display: flex; gap: .9rem; padding: 1.1rem 1.3rem; border-radius: var(--radius); background: #FFF8EA; border: 1px solid #F1D9A6; color: #6B4A0B; font-size: .92rem; }
.notice i { font-size: 1.3rem; color: #B7791F; }

/* ------------------------------------------------------------ Footer */
.site-footer { background: var(--navy-950); color: rgba(255, 255, 255, .7); font-size: .93rem; position: relative; }
.site-footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--gold-grad); }
.footer-top { padding: clamp(3.5rem, 6vw, 5rem) 0 3rem; }
.site-footer .brand { display: inline-flex; }
.footer-tagline { font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-400); margin: 1rem 0 .6rem; }
.footer-about { max-width: 360px; margin-bottom: 1.4rem; }
.footer-title { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.footer-links a { color: rgba(255, 255, 255, .7); display: inline-flex; align-items: center; gap: .4rem; transition: color .2s, transform .2s; }
.footer-links a:hover { color: var(--gold-300); transform: translateX(3px); }
.footer-contact { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: .9rem; }
.footer-contact li { display: flex; gap: .7rem; }
.footer-contact i { color: var(--gold-400); margin-top: .15rem; }
.footer-contact a { color: rgba(255, 255, 255, .85); }
.footer-contact a:hover { color: var(--gold-300); }
.footer-contact address { font-style: normal; }
.footer-contact small { color: rgba(255, 255, 255, .5); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 1.3rem 0 1.4rem; font-size: .85rem; }
.footer-bottom a { color: rgba(255, 255, 255, .75); }
.footer-bottom a:hover { color: var(--gold-300); }
.footer-bottom span { margin: 0 .4rem; opacity: .4; }

/* ---------------------------------------------------- Floating widgets */
.float-widgets { position: fixed; right: 16px; bottom: 16px; z-index: 1040; display: flex; flex-direction: column; align-items: flex-end; gap: .7rem; }
.float-btn { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 999px; color: #fff; font-size: 1.45rem; box-shadow: 0 10px 25px -8px rgba(0, 0, 0, .45); transition: transform .25s var(--ease), box-shadow .25s; position: relative; }
.float-btn:hover { color: #fff; transform: translateY(-3px) scale(1.04); }
.float-label { display: none; }
.float-wa { background: var(--wa); }
.float-wa::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: var(--wa); z-index: -1; animation: ring 2.6s ease-out infinite; }
.float-call { background: var(--navy-900); border: 2px solid var(--gold-500); color: var(--gold-300); }
.float-call:hover { color: var(--gold-300); }
.float-top { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--navy-900); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s var(--ease); order: -1; }
.float-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* ------------------------------------------------------ Reveal motion */
html.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0ms); }
html.js [data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.1) translate(-1%, -1%); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulse { 0% { transform: scale(.9); opacity: .9; } 100% { transform: scale(1.35); opacity: 0; } }
@keyframes ring { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.6); opacity: 0; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - .5rem)); } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    html.js [data-reveal] { opacity: 1; transform: none; }
    .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
    .marquee-track [aria-hidden="true"] { display: none; }
}

/* =========================================================== Responsive */
@media (min-width: 576px) {
    .trust-row { grid-template-columns: repeat(3, 1fr); }
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
    .training-grid { grid-template-columns: repeat(2, 1fr); }
    .check-list--2col { grid-template-columns: 1fr 1fr; }
    .mission-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
    .stats-row { grid-template-columns: repeat(4, 1fr); }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .process { grid-template-columns: repeat(2, 1fr); }
    .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
    .cta-band-actions { flex-shrink: 0; }
    .reg-grid > .reg-badge { flex-basis: calc(33.333% - .67rem); }
}
@media (min-width: 992px) {
    .trust-row { grid-template-columns: repeat(6, 1fr); }
    .trust-row li { flex-direction: column; text-align: center; font-size: .85rem; }
    .training-grid { grid-template-columns: repeat(3, 1fr); }
    .process { grid-template-columns: repeat(4, 1fr); }
    .process-step:not(:last-child)::after { content: ""; position: absolute; top: 3.2rem; right: -1.2rem; width: 1.2rem; height: 1px; background: rgba(232, 210, 156, .4); }
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
    .reg-grid > .reg-badge { flex-basis: calc(25% - .75rem); }
    .float-btn { width: auto; padding: 0 1.2rem 0 1rem; height: 50px; font-size: 1.15rem; gap: .55rem; }
    .float-label { display: inline; font-size: .9rem; font-weight: 700; letter-spacing: .02em; }
}
@media (min-width: 1200px) {
    .training-grid { grid-template-columns: repeat(4, 1fr); }
    .industry-grid--6 { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 991.98px) {
    :root { --header-h: 68px; }
    .why-sticky, .facts-card, .director-card, .toc { position: static; }
    .page-hero-media { inset: 0; opacity: .45; }
    .map-overlay { position: static; max-width: none; box-shadow: none; border-top: 1px solid var(--line); border-radius: 0; }
}
@media (max-width: 575.98px) {
    .brand-name { font-size: 1.45rem; }
    .brand-emblem { width: 44px; height: 44px; }
    .brand-sub { letter-spacing: .38em; font-size: .7rem; }
    .reg-number { font-size: .74rem; }
    .hero-actions .btn { width: 100%; }
    .hero-pillars li { font-size: .82rem; padding: .45rem .8rem; }
    .about-media { padding: 0 0 18% 0; }
    .am-card { left: 0; max-width: 70%; }
    .enquiry-modal .modal-header { padding: 1.2rem 1.2rem 0; }
    .enquiry-modal .modal-body { padding: 1rem 1.2rem 1.4rem; }
    .map-wrap iframe { height: 320px; }
    .float-widgets { right: 12px; bottom: 12px; }
    .float-btn { width: 52px; height: 52px; }
}

/* File upload feedback */
.file-drop.is-invalid + .invalid-feedback { display: block; }

/* Keep large gutters from causing horizontal scroll on small screens */
@media (max-width: 991.98px) {
    .row.g-5, .row.g-lg-5 { --bs-gutter-x: 1.5rem; }
}
