@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --ink: #0d1e33;
    --muted: #576b80;
    --line: #e2eaf1;
    --blue: #006d8d;
    --blue-dark: #004f66;
    --gold: #dca93a;
    --sea: #0f8aa5;
    --paper: #f8fafc;
    --white: #ffffff;
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-alt: #f4f7fa;
    --card: #ffffff;
    --header-bg: transparent;
    --header-scrolled-bg: rgba(7, 26, 44, 0.94);
    --footer-bg: #051624;
    --footer-text: rgba(255, 255, 255, 0.8);
    --field-bg: #ffffff;
    --field-border: #d4e0eb;
    --nav-pill: rgba(255, 255, 255, 0.1);
    --section-glow: linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
    --shadow: 0 16px 40px rgba(7, 26, 44, 0.08);
    --soft-shadow: 0 6px 20px rgba(7, 26, 44, 0.04);
    --wave-strong: rgba(255, 255, 255, 0.95);
    --wave-mid: rgba(255, 255, 255, 0.88);
    --radius: 12px;
    color-scheme: light;
}

[data-theme="dark"] {
    --ink: #f0f5fa;
    --muted: #9ab0c5;
    --line: rgba(255, 255, 255, 0.1);
    --blue: #008eb5;
    --blue-dark: #003647;
    --gold: #f9b646;
    --sea: #32b4d2;
    --paper: #0b1a28;
    --bg: #05101a;
    --surface: #0a1b2a;
    --surface-alt: #0e2439;
    --card: #0d2134;
    --header-bg: transparent;
    --header-scrolled-bg: rgba(5, 16, 26, 0.96);
    --footer-bg: #030a10;
    --footer-text: rgba(240, 245, 250, 0.75);
    --field-bg: #081622;
    --field-border: rgba(255, 255, 255, 0.12);
    --nav-pill: rgba(0, 0, 0, 0.25);
    --section-glow: linear-gradient(180deg, #05101a 0%, #0e2439 100%);
    --shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    --soft-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    --wave-strong: rgba(5, 16, 26, 0.98);
    --wave-mid: rgba(5, 16, 26, 0.9);
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background-color 300ms ease, color 300ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--ink);
    font-family: inherit;
    font-weight: 700;
    line-height: 1.2;
}

p,
ul,
ol,
dl,
blockquote,
.desc {
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 1.25em;
}

p:last-child,
li:last-child,
.desc:last-child {
    margin-bottom: 0;
}

body::selection {
    background: var(--gold);
    color: #111827;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.topbar,
.topbar-inner {
    display: none;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 30px 40px 0px;
    transition: all 300ms ease-in-out;
}

.site-header.is-scrolled {
    padding: 0;
}

.nav-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #ffffff;
    border-radius: 15px;
    padding: 12px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 300ms ease-in-out;
    position: relative;
}

.site-header.is-scrolled .nav-inner {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 30px 0px;
    padding: 15px 40px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 50;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transition: transform 300ms ease;
    background: #ffffff;
    border-radius: 50%;
    padding: 2px;
}

.brand:hover img {
    transform: rotate(-4deg) scale(1.05);
}

.brand strong {
    display: block;
    font-size: 15px;
    line-height: 1.15;
    color: #0d1e33;
    font-weight: 800;
    letter-spacing: -0.2px;
    transition: color 250ms ease;
    max-width: 180px;
}

.brand span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.3;
    transition: color 250ms ease;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #0d1e33;
    font-size: 24px;
    cursor: pointer;
    z-index: 50;
}

/* Floating Navigation Pill Wrapper */
.nav-menu-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: -100px;
    transition: all 300ms ease;
}

.nav-menu-wrapper .home-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgb(61, 61, 61);
    font-size: 18px;
    transition: all 300ms ease;
}

.nav-menu-wrapper .home-icon:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    color: rgb(61, 61, 61) !important;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    transition: all 300ms ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold) !important;
    background: transparent;
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 99px;
    transition: all 300ms ease;
}

.btn-enquire:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0, 109, 141, 0.25);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 24px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 300ms ease;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -70%;
    width: 45%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
    transform: skewX(-18deg);
    transition: left 500ms ease;
}

.btn:hover::before {
    left: 125%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: var(--gold);
    color: #0d1e33;
}

.btn-primary:hover {
    background: #ffb947;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
}

.hero {
    position: relative;
    min-height: 640px;
    display: grid;
    align-items: end;
    color: var(--white);
    overflow: hidden;
    background: var(--blue-dark);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 22, 36, 0.9), rgba(5, 32, 55, 0.58), rgba(5, 32, 55, 0.18));
    z-index: 1;
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 86px;
    z-index: 2;
    background:
        radial-gradient(120% 85% at 15% 100%, var(--wave-strong) 0 38%, transparent 39%),
        radial-gradient(110% 95% at 55% 100%, var(--wave-mid) 0 34%, transparent 35%),
        radial-gradient(105% 80% at 90% 100%, var(--wave-strong) 0 38%, transparent 39%);
    opacity: 0.95;
    pointer-events: none;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 1100ms ease-out;
}

body.is-ready .hero img,
body.is-ready .page-hero img {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 104px 0 78px;
    opacity: 0;
    transform: translateY(24px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    background: color-mix(in srgb, var(--gold) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
    border-radius: 999px;
    padding: 8px 13px;
    align-self: flex-start;
    width: fit-content;
}

.hero h1,
.page-hero h1 {
    max-width: 880px;
    margin: 16px 0 18px;
    font-size: clamp(40px, 5.5vw, 68px);
    line-height: 1.03;
    letter-spacing: 0;
}

.hero p,
.page-hero p {
    max-width: 760px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-panel {
    position: relative;
    z-index: 3;
    background: var(--card);
    color: var(--ink);
    box-shadow: var(--shadow);
    width: min(1160px, calc(100% - 32px));
    margin: -44px auto 0;
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
}

.metric {
    padding: 22px 24px;
    border-right: 1px solid var(--line);
    transition: background 300ms ease, transform 300ms ease;
}

.metric:hover {
    background: var(--surface-alt);
    transform: translateY(-3px);
}

.metric:last-child {
    border-right: 0;
}

.metric strong {
    display: block;
    color: var(--blue);
    font-size: 28px;
    line-height: 1;
}

.metric span {
    color: var(--muted);
    font-size: 14px;
}

section {
   padding: 72px 0;
    position: relative;
}

main>section:not(.hero):not(.cta-band) {
    border-bottom: 1px solid var(--line);
}

.section-alt {
    background: var(--section-glow);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 28px;
}

.section-head>div,
.section-head>p {
    min-height: 190px;
}

.section-head>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-head>p {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--blue) 9%, transparent), transparent 58%),
        var(--card);
    box-shadow: var(--soft-shadow);
    padding: 28px 30px 28px 34px;
    overflow: hidden;
    isolation: isolate;
}

.section-head>p::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -52px;
    width: 180px;
    height: 180px;
    border: 28px solid color-mix(in srgb, var(--gold) 18%, transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.section-head h2,
.split h2,
.compact-hero h1 {
    margin: 8px 0 0;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.1;
    letter-spacing: 0;
}

.section-head p,
.split p {
    color: #244467;
    margin: 0;
    font-size: 16px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.image-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
   /* background: var(--surface-alt); */
    position: relative;
}

.image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 50%, rgba(255, 255, 255, 0.22));
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
}

.image-frame:hover::after {
    opacity: 1;
}

.image-frame img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    transition: transform 300ms ease;
}

.image-frame:hover img {
    transform: scale(1.045);
}

.check-list {
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    color: var(--ink);
}

.check-list i {
    color: var(--sea);
    margin-top: 5px;
}

.service-grid,
.quality-grid,
.career-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card,
.quality-card,
.contact-card,
.career-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    min-height: 100%;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
    will-change: transform;
}

.service-card,
.quality-card,
.career-card {
    display: flex;
    flex-direction: column;
}

.contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 18px;
    align-items: start;
    align-content: start;
    padding: 24px;
    min-height: auto;
}

.contact-card i {
    grid-row: 1 / span 2;
    margin: 0;
}

.contact-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    letter-spacing: 0;
    min-height: auto;
    grid-column: 2;
}

.contact-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
    grid-column: 2;
}

.service-card:hover,
.quality-card:hover,
.contact-card:hover,
.career-card:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 95, 159, 0.28);
    box-shadow: 0 18px 42px rgba(16, 32, 51, 0.12);
}

.service-card i,
.quality-card i,
.contact-card i,
.career-card i {
    color: var(--gold);
    font-size: 25px;
    margin: 0;
    transition: transform 300ms ease, color 250ms ease;
}

.service-card:hover i,
.quality-card:hover i,
.contact-card:hover i,
.career-card:hover i {
    color: var(--sea);
    transform: translateY(-3px) scale(1.08);
}

.service-card h3,
.quality-card h3,
.career-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: 0;
    min-height: 48px;
    grid-column: 2;
}

.service-card p,
.quality-card p,
.career-card p,
.contact-card p {
    margin: 0;
    color: #244467;
    font-size: 15.5px;
    grid-column: 2;
}

.contact-card {
    min-height: auto;
}

.contact-card i {
    grid-row: 1 / span 2;
}

.contact-card a {
    color: inherit;
    text-decoration: none;
}

.contact-map {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--line);
    max-width: 100%;
}

.contact-map .map-wrapper {
    width: 100%;
    max-height: 360px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 320px;
    min-height: 260px;
    border: 0;
}

.process {
    counter-reset: step;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.process-step {
    counter-increment: step;
    padding: 24px;
    border-top: 4px solid var(--blue);
    background: var(--card);
    box-shadow: var(--soft-shadow);
    border-radius: var(--radius);
    min-height: 100%;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.process-step:hover {
    transform: translateY(-7px);
    border-top-color: var(--gold);
    box-shadow: 0 18px 42px rgba(16, 32, 51, 0.13);
}

.process-step::before {
    content: "0" counter(step);
    display: block;
    color: var(--gold);
    font-weight: 900;
    margin-bottom: 14px;
}

.gallery-strip {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 18px;
}

.gallery-strip img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 300ms ease, filter 300ms ease;
}

.gallery-strip img:hover {
    transform: translateY(-6px) scale(1.025);
    filter: saturate(1.08) contrast(1.04);
}

.cta-band {
    background: linear-gradient(120deg, var(--blue-dark), var(--blue));
    color: var(--white);
    padding: 58px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 0 35%, rgba(255, 255, 255, 0.1) 46%, transparent 58% 100%);
    transform: translateX(-100%);
    animation: tide-sweep 6000ms ease-in-out infinite;
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.cta-inner h2 {
    margin: 0;
    font-size: clamp(28px, 3.6vw, 42px);
    letter-spacing: 0;
}

.cta-inner p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.page-hero {
    position: relative;
    color: var(--white);
    background: var(--blue-dark);
    padding: 128px 0 92px;
    overflow: hidden;
    height: 350px;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
   /* background: linear-gradient(90deg, rgba(5, 22, 36, 0.96), rgba(5, 32, 55, 0.72)); */
    z-index: 1;
}

.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 1100ms ease-out;
    filter: brightness(0.55) saturate(1.1);
}

.page-hero h1,
.page-hero .eyebrow,
.page-hero p {
    color: #ffffff;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.page-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.95;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
}

.contact-info-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    align-self: start;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-item i {
    color: var(--gold);
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 300ms ease, color 250ms ease;
}

.contact-info-item:hover i {
    color: var(--sea);
    transform: scale(1.1);
}

.contact-info-item h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
}

.contact-info-item p {
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.5;
}

.contact-info-item p a {
    color: inherit;
    text-decoration: none;
    transition: color 200ms ease;
}

.contact-info-item p a:hover {
    color: var(--sea);
}

.contact-map {
    grid-column: 1 / -1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.contact-map .map-wrapper {
    width: 100%;
    min-height: 300px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
}

.contact-map-full {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 40px 24px 40px;
    background: var(--surface-alt);
}

.contact-map-full .contact-map {
    width: 100%;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.contact-map-full .contact-map .map-wrapper {
    min-height: 300px;
}

.contact-map-full .contact-map iframe {
    min-height: 300px;
}

.form-box {
    background: var(--card);
    border: 1px solid var(--field-border);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    margin-bottom: 16px;
}

.field label {
    display: block;
    font-weight: 800;
    margin-bottom: 7px;
    font-size: 14px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--ink);
    background: var(--field-bg);
    font: inherit;
    transition: border-color 250ms ease, box-shadow 250ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: 0;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(11, 95, 159, 0.1);
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.consent {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 18px;
}

.site-footer {
   /*  background: var(--footer-bg);
   color: var(--footer-text); */
    padding: 58px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr 1fr;
    gap: 42px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    background: var(--white);
    border-radius: 50%;
}

.site-footer h3 {
    color: var(--white);
    margin: 0 0 16px;
    font-size: 18px;
}

.footer-links {
    display: grid;
    gap: 9px;
}

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

.footer-meta {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 34px;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: #071c53;
    font-weight: 800;
}

.footer-meta a,
.footer-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-meta i {
    color: var(--gold);
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
}

.sticky-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: grid;
    gap: 10px;
}

.sticky-actions a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.sticky-actions a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 40px rgba(16, 32, 51, 0.2);
}

.sticky-actions .call {
    background: var(--blue);
}

.sticky-actions .whatsapp {
    background: #20b55b;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 600ms ease, transform 600ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

body.is-ready .hero-content {
    animation: hero-rise 700ms ease forwards 200ms;
}

body.is-ready .hero-panel {
    animation: panel-rise 700ms ease forwards 400ms;
}

@keyframes hero-rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes panel-rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tide-sweep {

    0%,
    42% {
        transform: translateX(-100%);
    }

    70%,
    100% {
        transform: translateX(100%);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .hero-content,
    .hero-panel {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media (max-width: 991px) {
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        padding: 8px 0;
        background: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 1px 15px rgba(0, 0, 0, 0.06);
    }

    .site-header + main,
    .site-header + section,
    .site-header + div {
        padding-top: 72px;
    }

    .nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: none;
        min-height: 72px;
        background: transparent;
        border-radius: 0;
        padding: 10px 16px;
        box-shadow: none;
    }

    .nav-brand {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 0;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .brand img {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        padding: 0;
        background: transparent;
        border-radius: 0;
    }

    .brand strong {
        display: inline-block;
        font-size: 15px;
        line-height: 1.15;
        color: #0d1e33;
        font-weight: 800;
        letter-spacing: -0.2px;
        max-width: 180px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        word-break: break-word;
    }

    .brand > span {
        display: block;
        min-width: 0;
        flex: 1;
    }

    .brand > span > span {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: #0d1e33;
        order: 3;
        flex-shrink: 0;
        align-self: center;
        margin-top: 0;
    }

    .nav-menu-wrapper {
        display: contents;
        position: static;
        left: auto;
        top: auto;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .nav-brand,
    .nav-toggle {
        z-index: 1001;
    }

    .nav-menu-wrapper .home-icon,
    .nav-menu-wrapper .btn-enquire,
    .nav-action {
        display: none !important;
    }

    .nav-menu {
        position: absolute;
        left: 12px;
        right: 12px;
        top: calc(100% + 12px);
        width: calc(100% - 24px);
        display: none;
        flex-direction: column;
        gap: 6px;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: 14px;
        box-shadow: var(--shadow);
        padding: 20px 16px;
        z-index: 2000;
        opacity: 0;
        transform: translateY(-8px);
        transition: opacity 300ms ease, transform 300ms ease;
    }

    .nav-menu.open {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu a {
        color: var(--ink) !important;
        width: 100%;
        justify-content: center;
        min-height: 40px;
        padding: 8px;
        font-size: 15px;
        font-weight: 700;
        text-align: center;
        text-transform: none;
        background: transparent !important;
    }

    .nav-menu a:not(.btn) {
        border-radius: 8px;
    }

    .nav-menu a:not(.btn)::after {
        display: none;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--blue);
        background: rgba(0, 109, 141, 0.06);
    }

    .nav-menu a.btn {
        min-height: 48px;
        margin-top: 10px;
        padding: 0 22px;
        border: none;
        border-radius: 24px;
        background: var(--gold);
        color: #0d1e33;
        box-shadow: none;
        font-size: 15px;
        font-weight: 700;
    }

    .nav-menu a.btn::before {
        display: none;
    }

    .hero {
        min-height: 620px;
    }

    .hero-panel,
    .service-grid,
    .quality-grid,
    .career-grid,
    .process,
    .split,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-head {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-head>div,
    .section-head>p {
        min-height: 0;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .nav-inner {
        min-height: 58px;
        border-radius: 18px;
        gap: 8px 10px;
        padding: 7px 8px;
    }

    .brand {
        min-width: 0;
        max-width: 100%;
        gap: 8px;
        overflow: hidden;
    }

    .brand img {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }

    .theme-toggle {
        min-width: 36px;
        width: 36px;
        min-height: 36px;
        height: 36px;
        padding: 0;
    }

    .nav-toggle {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .theme-toggle span {
        display: none;
    }

    .brand strong {
        display: block;
        max-width: 160px;
        font-size: 14px;
        line-height: 1.15;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        word-break: break-word;
    }

    .brand > span > span {
        display: none;
    }

    .brand>span>span {
        display: none;
    }

    .nav-menu a {
        justify-content: center;
        text-align: center;
    }

    .hero {
        min-height: 470px;
    }

    .hero-content {
        padding: 72px 0 54px;
    }

    .hero-panel {
        margin-top: -20px;
    }

    .metric {
        padding: 18px 20px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(32px, 11vw, 44px);
    }

    .section-head>p {
        padding: 22px;
    }

    .hero p,
    .page-hero p {
        font-size: 16px;
    }

    .hero-panel,
    .service-grid,
    .quality-grid,
    .career-grid,
    .process,
    .section-head,
    .split,
    .contact-layout,
    .footer-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .metric {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .gallery-strip {
        grid-template-columns: 1fr;
    }

    .gallery-strip img,
    .image-frame img {
        height: 260px;
    }

    section {
        padding: 68px 0;
    }
}

/* ==========================================================================
   HTK Redesign Styles
   ========================================================================== */

/* Hero Video Layout */
/* Primary Banner Hero Slideshow */
.primary-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #051624;
}

.primary-banner .swiper {
    width: 100%;
    height: 100%;
}

.primary-banner .swiper-slide {
    position: relative;
    overflow: hidden;
}

.primary-banner .wrap {
    position: relative;
    width: 100%;
}

.primary-banner .img {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    padding-top: 0;
}

@media (min-width: 992px) {
    .primary-banner .img {
        height: 100vh;
        min-height: 600px;
        padding-top: 0;
    }
}

.primary-banner img,
.primary-banner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.primary-banner .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 16, 26, 0.4) 0%, rgba(5, 16, 26, 0.75) 100%);
    z-index: 1;
}

.primary-banner .txt-wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    align-items: center;
}

.primary-banner .txt-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 110px;
    padding-bottom: 60px;
}

.primary-banner .txt {
    max-width: 800px;
    margin-bottom: 24px;
}

.primary-banner .txt h1,
.primary-banner .txt h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.primary-banner .txt .desc {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(255, 255, 255, 0.88);
    margin-top: 14px;
}

.primary-banner .swiper-nav {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 20;
}

.primary-banner .swiper-nav .prev,
.primary-banner .swiper-nav .next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    transition: all 300ms ease;
}

.primary-banner .swiper-nav .prev:hover,
.primary-banner .swiper-nav .next:hover {
    background: var(--gold);
    color: #0d1e33;
    border-color: var(--gold);
}

.primary-banner .pagination-wrap {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 20;
}

.primary-banner .swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    display: inline-block;
    margin: 0 4px !important;
    transition: all 300ms ease;
}

.primary-banner .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 48px;
}

@media (max-width: 991px) {
    .primary-banner .txt-container {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .primary-banner .swiper-nav,
    .primary-banner .pagination-wrap {
        bottom: 20px;
    }

    .primary-banner .swiper-nav {
        right: 20px;
    }

    .primary-banner .pagination-wrap {
        left: 20px;
    }
}

/* Why Choose Us Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-left {
    grid-column: span 5;
}

.why-right {
    grid-column: span 7;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-featured-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 480px;
    height: 100%;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.why-featured-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
    z-index: 0;
}

.why-featured-card:hover img {
    transform: scale(1.05);
}

.why-featured-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(360deg, rgba(0, 109, 141, 0.95) 0%, rgba(0, 109, 141, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.why-featured-content {
    position: relative;
    z-index: 2;
    padding: 34px;
    color: #ffffff;
}

.why-featured-content h3 {
    font-size: 26px;
    margin: 0 0 14px;
    line-height: 1.25;
}

.why-featured-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 24px;
}

.why-card {
    background: #f6f6f6;
    border: 2px solid transparent;
    border-radius: var(--radius);
    padding: 30px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue);
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 109, 141, 0.08);
}

.why-card .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 300ms ease;
}

.why-card:hover .icon-wrapper {
    background: var(--blue);
    color: #ffffff;
    transform: rotate(360deg);
}

.why-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 700;
    color: #0d1e33;
}

.why-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
}

/* Services Slider Showcase (Swiper) */
.services-slider-section {
    background: var(--blue);
    padding: 90px 0;
    overflow: hidden;
}

.services-slider-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.services-slider-left {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    height: 480px;
}

.services-slider-left .swiper {
    width: 100%;
    height: 100%;
}

.services-slider-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-slider-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-slider-text-swiper {
    width: 100%;
}

.services-slider-right h2 {
    font-size: 34px;
    margin: 0 0 14px;
    line-height: 1.2;
    color: #ffffff;
}

.services-slider-right .desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.services-slider-right .eyebrow {
    margin-bottom: 15px;
    align-self: flex-start;
}

.services-navigation {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 10px;
}

.services-index {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.services-index .total {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 15px;
}

.services-arrows {
    display: flex;
    gap: 8px;
}

.services-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 14px;
    transition: all 300ms ease;
}

.services-arrow:hover {
    background: var(--gold);
    color: #0d1e33;
    border-color: var(--gold);
}

@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-left,
    .why-right {
        grid-column: span 12;
    }

    .why-featured-card {
        min-height: 380px;
    }

    .services-slider-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-slider-left {
        height: 340px;
    }
}

@media (max-width: 640px) {
    .why-right {
        grid-template-columns: 1fr;
    }
}

/* Glassmorphic card overlay on hero slider */
.chart-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(5, 16, 26, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    max-width: 650px;
    margin-top: 40px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
    border-left: 4px solid var(--blue);
}

.chart-wrap .number-wrap {
    flex: 0 0 140px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    padding-right: 20px;
}

.chart-wrap .counter p {
    font-size: 34px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.chart-wrap .caption p {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--gold);
    margin: 4px 0 0 0;
    letter-spacing: 0.5px;
}

.chart-wrap .right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chart-wrap .desc p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.chart-wrap .btn-wrap {
    margin: 0;
    padding: 0;
}

.chart-wrap .btn-primary {
    background: #ffffff;
    color: var(--blue) !important;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 18px;
    min-height: 36px;
    border-radius: 4px;
}

.chart-wrap .btn-primary:hover {
    background: var(--gold);
    color: #0d1e33 !important;
    transform: translateY(-1px);
}

/* Swiper Thumbnail Previews */
.swiper-thumb {
    margin-top: 28px;
    width: 100%;
}

.swiper-thumb .swiper-slide {
    width: 110px;
    height: 74px;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0.5;
    transition: all 300ms ease;
    border: 2px solid transparent;
}

.swiper-thumb .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--blue);
    box-shadow: 0 6px 16px rgba(0, 109, 141, 0.25);
}

.swiper-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 640px) {
    .chart-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
    }

    .chart-wrap .number-wrap {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-right: 0;
        padding-bottom: 12px;
        flex: none;
    }
}

/* Key Figures Section (home-dealer) */
.home-dealer {
    padding: 90px 0;
    background: #ffffff;
}

.home-dealer .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.home-dealer .item {
    position: relative;
    padding: 10px;
    text-align: center;
}

.home-dealer .item::after {
    content: "";
    width: 2px;
    height: 90px;
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(rgba(220, 169, 58, 0) 0%, rgb(220, 169, 58) 50%, rgba(220, 169, 58, 0) 100%);
}

.home-dealer .item:last-child::after {
    display: none;
}

.home-dealer .icon img {
    margin: 0 auto 16px;
    transition: transform 300ms ease;
}

.home-dealer .item:hover .icon img {
    transform: scale(1.1) rotate(5deg);
}

.home-dealer .counter {
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 800;
    color: var(--blue);
    line-height: 1.1;
}

.home-dealer .desc {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 6px;
}

.home-dealer .img-map {
    margin-top: 50px;
    text-align: center;
}

.home-dealer .img-map img {
    max-width: 100%;
    height: auto;
    opacity: 0.88;
    transition: opacity 300ms ease;
}

.home-dealer .img-map:hover img {
    opacity: 1;
}

@media (max-width: 991px) {
    .home-dealer .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .home-dealer .item::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .home-dealer .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Custom Additions */
.service-card {
    padding: 0 !important;
    overflow: hidden;
}

.service-card-img-wrapper {
    width: 100%;
    height: 190px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--line);
}

.service-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 350ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-card-img-wrapper img {
    transform: scale(1.07);
}

.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body i {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--gold);
    transition: transform 300ms ease, color 250ms ease;
}

.service-card:hover .service-card-body i {
    color: var(--sea);
    transform: translateY(-2px) scale(1.05);
}

.service-card-body h3 {
    margin: 0 0 10px;
    font-size: 19px;
    min-height: auto !important;
}

.service-card-body p {
    margin: 0;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.6;
}

@media (min-width: 992px) {
    .why-right .why-card:last-child {
        grid-column: span 2;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    background: rgba(13, 30, 51, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(150%);
    transition: transform 350ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-banner-actions .btn {
    min-height: 38px;
    padding: 0 16px;
    font-size: 13px;
    border-radius: 8px;
}

@media (max-width: 576px) {
    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
}

/* Key Figures FontAwesome Icon Styling */
.home-dealer .icon i {
    font-size: 42px;
    color: var(--gold);
    margin: 0 auto 16px;
    display: inline-block;
    transition: transform 300ms ease, color 250ms ease;
}

.home-dealer .item:hover .icon i {
    transform: scale(1.1) rotate(5deg);
    color: var(--sea);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--soft-shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 13px;
    display: flex;
    gap: 4px;
}

.testimonial-card .quote {
    margin: 0;
    font-size: 15px;
    font-style: italic;
    color: var(--ink);
    line-height: 1.6;
}

.testimonial-card .author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

.testimonial-card .author strong {
    font-size: 14.5px;
    color: var(--blue);
}

.testimonial-card .author span {
    font-size: 12.5px;
    color: var(--muted);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: color-mix(in srgb, var(--gold) 12%, transparent);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    border: 1px solid color-mix(in srgb, var(--gold) 25%, transparent);
}

.team-card h3 {
    margin: 0 0 4px;
    font-size: 18px;
    color: var(--ink);
}

.team-card .role {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}

.team-card .desc {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: color-mix(in srgb, var(--gold) 6%, var(--card));
    border: 1px solid color-mix(in srgb, var(--gold) 25%, var(--line));
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-top: 24px;
    text-align: left;
}

.trust-badge .badge-icon {
    font-size: 32px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-badge h4 {
    margin: 0 0 4px;
    font-size: 15px;
    color: var(--ink);
    font-weight: 800;
}

.trust-badge p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.45;
}

/* Header link spacing responsive fix */
@media (min-width: 992px) and (max-width: 1240px) {
    .nav-menu a {
        padding: 8px 8px;
        font-size: 13px;
    }

    .brand strong {
        font-size: 13px;
        max-width: 150px;
    }

    .btn-enquire {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* FAQ Accordion/Card Layout styling */
.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}

.faq-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--soft-shadow);
}

.faq-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    color: var(--ink);
}

.faq-card p {
    margin: 0;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.6;
}

/* Print Stylesheet */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
        font-size: 12pt;
    }

    .site-header,
    .sticky-actions,
    .cookie-banner,
    .cta-band,
    .swiper-nav,
    .pagination-wrap,
    .nav-toggle,
    .btn,
    .form-box,
    .why-left,
    .hero-actions {
        display: none !important;
    }

    .container {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    h1,
    h2,
    h3,
    p {
        color: #000000 !important;
    }

    .site-footer {
        background: transparent !important;
        color: #000000 !important;
        border-top: 1px solid #ccc;
        page-break-inside: avoid;
    }

    .site-footer a {
        text-decoration: underline !important;
        color: #000000 !important;
    }
}

/* Navigation Dropdown Menu Styling */
.nav-menu li {
    position: relative;
}

.nav-menu li.has-dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle i {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 300ms ease;
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        min-width: 280px;
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        padding: 12px 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 300ms cubic-bezier(0.165, 0.84, 0.44, 1), transform 300ms cubic-bezier(0.165, 0.84, 0.44, 1), visibility 300ms ease;
        z-index: 1100;
        list-style: none;
        margin: 0;
    }

    /* Arrow Pointer */
    .dropdown-menu::before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: transparent transparent #ffffff transparent;
    }

    /* Hover State to trigger */
    .nav-menu li.has-dropdown:hover .dropdown-menu,
    .nav-menu li.has-dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }

    .nav-menu li.has-dropdown:hover .dropdown-toggle i,
    .nav-menu li.has-dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu li {
        display: block;
        width: 100%;
        margin: 0;
    }

    .dropdown-menu a {
        display: block !important;
        width: 100%;
        padding: 10px 24px !important;
        color: #2b3947 !important;
        font-weight: 600;
        font-size: 13.5px !important;
        text-align: left !important;
        transition: all 300ms ease;
    }

    .dropdown-menu a:hover {
        background: rgba(0, 109, 141, 0.05) !important;
        color: var(--blue) !important;
        padding-left: 28px !important;
    }
}

/* Mobile Dropdown (inline collapsible) */
@media (max-width: 991px) {
    .dropdown-menu {
        display: none;
        list-style: none;
        padding: 4px 0 4px 12px;
        margin: 6px 0 0 0;
        width: 100%;
        border-left: 2px solid var(--line);
    }

    .dropdown-menu.open {
        display: block;
    }

    .nav-menu li.has-dropdown.open .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu li {
        display: block;
        width: 100%;
        margin: 0;
    }

    .dropdown-menu a {
        padding: 8px 12px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        color: var(--muted) !important;
        text-align: center !important;
        width: 100%;
        background: transparent !important;
    }

    .dropdown-menu a:hover {
        color: var(--blue) !important;
        background: rgba(0, 109, 141, 0.04) !important;
    }
}




/* --- Advanced Animation System --- */

/* 1. Hero Banner - Cinematic Entry */
.hero-curtain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-curtain::before,
.hero-curtain::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: #001224;
    /* deep navy */
    transition: transform 1100ms cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: 200ms;
}

.hero-curtain::before {
    top: 0;
}

.hero-curtain::after {
    bottom: 0;
}

.is-ready .hero-curtain::before {
    transform: translateY(-100%);
}

.is-ready .hero-curtain::after {
    transform: translateY(100%);
}

.word-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.25em;
    /* approximate space */
}

.word-inner {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease;
}

.swiper-slide-active .word-inner {
    transform: translateY(0);
    opacity: 1;
}

.chart-wrap {
    transform: translateX(-40px);
    opacity: 0;
    transition: transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 700ms ease;
    transition-delay: 200ms;
}

.swiper-slide-active .chart-wrap {
    transform: translateX(0);
    opacity: 1;
}

@keyframes kenBurnsAdvanced {
    0% {
        transform: scale(1) rotate(0deg);
    }

    100% {
        transform: scale(1.08) rotate(0.3deg);
    }
}

.swiper-slide-active .img:not(.video) img {
    animation: kenBurnsAdvanced 8000ms ease-out forwards;
}

.swiper-slide .img {
    filter: blur(6px);
    transition: filter 800ms ease;
}

.swiper-slide-active .img {
    filter: blur(0px);
}

/* 2. Scroll Reveal - Depth Layers */
.reveal-tier-1 {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-tier-1.in-view {
    clip-path: inset(0 0 0 0);
}

.reveal-tier-2 {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity;
}

.reveal-tier-2.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-tier-3 {
    position: relative;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 700ms cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-tier-3::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: var(--primary);
    opacity: 1;
    transition: opacity 400ms ease 600ms;
}

.reveal-tier-3.in-view {
    clip-path: inset(0 0 0 0);
}

.reveal-tier-3.in-view::after {
    opacity: 0;
}

/* 3. Stats Section */
.counter.flash-gold {
    color: #C9A84C !important;
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
    transition: color 250ms ease, text-shadow 250ms ease;
}

.icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
    stroke-width: 1.5;
    fill: none;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset 1500ms ease-in-out;
}

.in-view .icon svg {
    stroke-dashoffset: 0;
}

/* 4. Navigation Precision */
.nav-menu {
    position: relative;
}

.nav-pill {
    position: absolute;
    bottom: -2px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 250ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    pointer-events: none;
}

.nav-menu.has-active-pill .nav-pill {
    opacity: 1;
}

.site-header {
    transition: background-color 300ms ease, backdrop-filter 300ms ease, border-bottom 300ms ease;
}

.site-header.is-scrolled {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 109, 141, 0.15);
    /* primary slightly transparent */
}

.site-header.is-scrolled .brand img {
    transform: scale(0.88);
    transform-origin: left center;
    transition: transform 300ms ease;
}

/* 5. Service Cards - 3D Tilt */
.tilt-card {
    perspective: 1000px;
    transform-style: preserve-3d;
    position: relative;
}

.tilt-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 80ms linear, box-shadow 80ms linear;
    transform: rotateX(var(--rotateX, 0)) rotateY(var(--rotateY, 0));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.tilt-card:hover .tilt-card-inner {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tilt-card .icon-wrapper,
.tilt-card i {
    transform: translateZ(20px);
    transition: transform 300ms ease;
}

.tilt-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouseX, 50%) var(--mouseY, 50%), rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 300ms ease;
    mix-blend-mode: overlay;
}

.tilt-card:hover .tilt-card-inner::before {
    opacity: 1;
}

/* Mobile graceful degradation */
@media (pointer: coarse) {
    .tilt-card-inner {
        transform: none !important;
        transition: transform 150ms ease !important;
    }

    .tilt-card:active .tilt-card-inner {
        transform: scale(0.97) !important;
    }

    .tilt-card-inner::before {
        display: none;
    }

    .service-card {
        border-top: 3px solid transparent;
        transition: border-top-color 200ms ease;
    }

    .service-card:active {
        border-top-color: var(--primary);
    }
}

/* Disable motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* 6. Process Steps Chain */
.process {
    position: relative;
}

.process-svg-line {
    position: absolute;
    top: 24px;
    /* Adjust based on step circle center */
    left: 0;
    width: 100%;
    height: 2px;
    z-index: -1;
}

@media (max-width: 768px) {
    .process-svg-line {
        top: 0;
        left: 24px;
        width: 2px;
        height: 100%;
    }
}

.process-svg-line line {
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 1100ms ease-in-out;
}

.process.in-view .process-svg-line line {
    stroke-dashoffset: 0;
}

.process-step {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 500ms ease, transform 500ms ease;
}

.process-step.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes nodePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 109, 141, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 109, 141, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 109, 141, 0);
    }
}

.process-step.active h3::before {
    animation: nodePulse 800ms ease-out;
}

/* 7. CTA Band Mesh */
@keyframes meshGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-band {
    background: linear-gradient(-45deg, #001224, #006D8D, #003b4d);
    background-size: 200% 200%;
    animation: meshGradient 8000ms ease infinite;
    position: relative;
    z-index: 1;
}

.cta-band:hover .cta-inner>div {
    opacity: 0.7;
    transition: opacity 300ms ease;
}

.btn-primary.liquid-fill {
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: color 250ms ease;
}

.btn-primary.liquid-fill::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--blue);
    border-radius: 40%;
    transition: bottom 500ms ease, transform 500ms ease;
    z-index: -1;
}

.btn-primary.liquid-fill:hover::before {
    bottom: -10%;
    transform: rotate(180deg);
}

/* 8. Sticky FAB Breathing */
@keyframes breatheScale {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
    }
}

.sticky-actions .whatsapp {
    animation: breatheScale 2100ms infinite ease-in-out;
}

.sticky-actions .whatsapp:hover {
    animation: none;
    transform: scale(1.05);
}

.sticky-actions .whatsapp i {
    transition: transform 300ms ease;
}

.sticky-actions .whatsapp:hover i {
    transform: rotate(12deg);
}

/* Tooltip */
.fab-tooltip {
    position: absolute;
    right: 120%;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #fff;
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #fff;
}

.fab-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@keyframes callRing {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 109, 141, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 109, 141, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 109, 141, 0);
    }
}

.sticky-actions .call {
    animation: callRing 1500ms infinite ease-out;
}

/* 9. Gallery Parallax */
.gallery-strip {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    /* Add padding for parallax travel */
}

.gallery-strip img {
    transition: transform 300ms linear, clip-path 300ms ease;
    clip-path: inset(0 round 0);
    transform-origin: center;
}

@media (hover: hover) {
    .gallery-strip img:hover {
        clip-path: inset(0 round 12px) !important;
        transform: scale(1.08) translateY(0) !important;
        /* overrides parallax slightly */
        z-index: 2;
        position: relative;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    transform: translateY(100%);
    transition: transform 300ms ease;
}

.gallery-img-wrap {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.gallery-img-wrap:hover .gallery-caption {
    transform: translateY(0);
}

/* 10. Page Transitions */
#nprogress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--navy);
    z-index: 9999;
    width: 0;
    transition: width 300ms ease-out, opacity 300ms ease;
}

body {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-ready {
    opacity: 1;
    transform: none;
}

body.is-leaving {
    opacity: 0.6;
}



/* --- New White Why Choose Us Grid --- */
.why-choose-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) 1.95fr;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}

.why-choose-us .section-head {
    text-align: center;
    margin-bottom: 24px;
}

.navy-panel {
    background: #0D223B;
    /* Deep Navy */
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* content at bottom */
    min-height: 480px;
    height: 100%;
    padding: 0;
}

.navy-panel .panel-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 240px;
    overflow: hidden;
    z-index: 1;
}

.navy-panel .panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.navy-panel .panel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #0D223B, transparent);
}

.navy-panel .panel-content {
    position: relative;
    z-index: 2;
    padding: 36px 32px 32px;
}

.navy-panel .rpsl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: #C9A84C;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.navy-panel .panel-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff !important;
    line-height: 1.3;
}

.navy-panel p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Right Grid */
.why-grid-light {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* Light Cards */
.why-card-light {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 300ms ease, box-shadow 300ms ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    min-height: 220px;
}

.why-card-light .gold-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #C9A84C;
    transition: width 300ms ease;
    z-index: 5;
}

.why-card-light:hover .gold-border {
    width: 100%;
}

.why-card-light .card-index {
    position: absolute;
    top: 32px;
    right: 32px;
    color: #C9A84C;
    font-size: 12px;
    font-weight: 700;
    opacity: 0.5;
}

.why-card-light .icon-sq {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    font-size: 20px;
    margin-bottom: 24px;
    transition: transform 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card-light:hover .icon-sq {
    transform: translateY(-4px);
}

.why-card-light h3 {
    color: #102B4E !important;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-card-light p {
    color: #244467 !important;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    transition: transform 300ms ease, opacity 300ms ease;
}

.why-card-light:hover p {
    transform: none;
    opacity: 1;
}

.why-card-light .card-arrow {
    display: none;
}

/* Override old why-left/why-right styles */
.why-left {
    grid-column: auto !important;
}

.why-right {
    grid-column: auto !important;
    display: block !important;
}

/* 7th Card Full Width */
.why-feat-light {
    grid-column: 1 / -1;
    /* Spans all columns */
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.why-feat-light .feat-col-left {
    padding: 32px 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-feat-light .feat-col-right {
    padding: 32px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-feat-light .icon-sq-feat {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    font-size: 20px;
    margin-bottom: 16px;
    transition: transform 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-feat-light:hover .icon-sq-feat {
    transform: translateY(-4px) rotate(5deg);
}

.why-feat-light h3 {
    color: #102B4E !important;
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 700;
}

.why-feat-light p {
    color: #244467 !important;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.why-feat-light .feat-link {
    color: #C9A84C !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 300ms ease;
}

.why-feat-light:hover .feat-link {
    gap: 12px;
    color: #dcb856 !important;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .navy-panel {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .why-grid-light {
        grid-template-columns: 1fr;
    }

    .why-feat-light {
        grid-template-columns: 1fr;
    }

    .why-feat-light .feat-col-left {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 30px;
    }

    .why-feat-light .feat-col-right {
        padding: 30px;
    }

    /* Fix responsive tilt wrapper layout on mobile */
    .why-feat-light .tilt-card-inner {
        display: block !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
    }

    .why-feat-light .tilt-card-inner .feat-col-left {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        padding: 30px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .why-feat-light .tilt-card-inner .feat-col-right {
        padding: 30px !important;
        display: flex !important;
        flex-direction: column !important;
    }
}



/* --- Mobile Nav Overlay Customization --- */
@media (max-width: 991px) {

    /* Prevent wrapper from hiding if we want a fullscreen overlay */
    .site-header.nav-open .nav-menu-wrapper {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #006A8E !important;
        z-index: 10000;
        overflow-y: auto;
    }

    .mobile-nav-header {
        display: flex !important;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: flex-end;
        /* Usually close is on the right, but img has it centered? No, img shows 'x Close' centered top? Let's check image 3 */
    }

    .mobile-nav-header .nav-close {
        background: none;
        border: none;
        color: #ffffff;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin: 0 auto;
        /* Center the close button */
    }

    .site-header.nav-open .nav-menu {
        display: block !important;
        position: static !important;
        background: transparent !important;
        padding: 24px !important;
        box-shadow: none !important;
        height: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .site-header.nav-open .nav-menu>li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin: 0 !important;
        width: 100%;
    }

    .site-header.nav-open .nav-menu>li>a {
        color: #ffffff !important;
        text-transform: uppercase;
        font-size: 14px !important;
        font-weight: 600 !important;
        padding: 18px 0 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left !important;
    }

    /* Active Home Block */
    .site-header.nav-open .nav-menu>li:first-child {
        border-bottom: none !important;
        margin-bottom: 16px !important;
    }

    .site-header.nav-open .nav-menu>li:first-child>a {
        background: rgba(255, 255, 255, 0.15) !important;
        color: #C9A84C !important;
        padding: 12px 20px !important;
        border-radius: 4px;
        display: inline-flex !important;
        justify-content: center !important;
        gap: 10px;
    }

    /* Dropdown inside Mobile */
    .site-header.nav-open .nav-menu>li.has-dropdown>a {
        display: flex !important;
        justify-content: space-between !important;
    }

    /* The dropdown list */
    .site-header.nav-open .dropdown-menu {
        position: static !important;
        display: none;
        /* hidden by default until active */
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 0 16px 20px !important;
        border-left: 2px solid rgba(255, 255, 255, 0.2);
        margin-left: 10px;
        min-width: 100%;
    }

    .site-header.nav-open .nav-menu>li.has-dropdown.open .dropdown-menu {
        display: block !important;
    }

    .site-header.nav-open .dropdown-menu li {
        border-bottom: none !important;
        margin: 0 !important;
    }

    .site-header.nav-open .dropdown-menu a {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        padding: 10px 0 !important;
        text-transform: none;
        display: block;
        text-align: left !important;
    }

    .site-header.nav-open .dropdown-menu a:hover {
        color: #ffffff !important;
    }
}

@media (min-width: 992px) {
    .mobile-nav-header {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
        padding: 8px 0 !important;
    }

    .site-header.is-scrolled {
        padding: 8px 0 !important;
    }

    .site-header .nav-inner {
        background: transparent !important;
    }

    .site-header.is-scrolled .nav-inner {
        padding: 10px 16px !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .site-header.is-scrolled .brand img {
        transform: none !important;
    }

    .site-header + main,
    .site-header + section,
    .site-header + div {
        padding-top: 82px !important;
    }

    .brand,
    .nav-toggle {
        z-index: 100001 !important;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 6px 0 !important;
    }

    .site-header.is-scrolled {
        padding: 6px 0 !important;
    }

    .site-header.is-scrolled .nav-inner {
        padding: 7px 8px !important;
        border-radius: 18px !important;
        background: transparent !important;
        box-shadow: none !important;
    }
}

/* Scroll entry reveal animations */
[class*="reveal-tier-"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[class*="reveal-tier-"].in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-tier-1 {
    transition-delay: 100ms;
}

.reveal-tier-2 {
    transition-delay: 250ms;
}

.reveal-tier-3 {
    transition-delay: 400ms;
}

/* About Page Premium Redesign Styles */
.lead-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 24px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.about-stat-card {
    background: var(--surface-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease, border-color 300ms ease;
}

.about-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--blue) 25%, transparent);
}

.about-stat-card .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 4px;
}

.about-stat-card .stat-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-extra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.about-extra-card {
    background: var(--card);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
    transition: transform 300ms ease, box-shadow 300ms ease;
}

.about-extra-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.about-extra-card h3 {
    color: var(--ink);
    margin: 0 0 16px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-extra-card h3 i {
    color: var(--blue);
    font-size: 22px;
}

.about-extra-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .about-extra-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}