:root {
    --bg: #06080f;
    --panel: #0b0f1c;
    --panel-soft: #0f1426;
    --surface: #121828;
    --line: rgba(201, 162, 39, 0.18);
    --primary: #c9a227;
    --primary-dark: #a07e18;
    --primary-soft: rgba(201, 162, 39, 0.12);
    --text: #f0f2f8;
    --muted: #9aa0b8;
    --black: #02030a;
    --shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1180px;
    --navy: #0d2d6b;
    --navy-light: #1a3f8f;
    --gold: #c9a227;
    --gold-light: #e8bc40;
    --green-accent: #2a6b2a;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    width: 100%;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(35, 75, 150, 0.35), transparent 40%),
        radial-gradient(circle at top right, rgba(201, 162, 39, 0.15), transparent 35%),
        linear-gradient(180deg, #0b1528 0%, #101c36 50%, #152445 100%);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 122px;
}

/* --- Announcement Bar --- */
.announce-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 40px;
    background: linear-gradient(90deg, #06080f, #0b0f1c, #06080f);
    border-bottom: 1px solid rgba(201, 162, 39, 0.18);
    display: flex;
    align-items: center;
}

.announce-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #c8bfa0;
    flex-wrap: wrap;
}

.announce-bar-inner i {
    color: var(--primary);
    font-size: 0.74rem;
    margin-right: 4px;
}

.announce-bar-inner a {
    color: #e8d898;
    transition: color 0.2s ease;
}

.announce-bar-inner a:hover {
    color: var(--primary);
}

.announce-divider {
    opacity: 0.3;
    font-size: 0.72rem;
}

@media (max-width: 680px) {
    .announce-bar {
        height: 32px;
    }
    .announce-bar-inner {
        font-size: 0.72rem;
        gap: 8px;
    }
    .announce-divider {
        display: none;
    }
    body {
        padding-top: 114px;
    }
    .site-header {
        top: 32px;
    }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

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

.section {
    padding: 100px 0;
    position: relative;
}

.section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.18), transparent);
}

.hero-section::before {
    display: none;
}

.section-title {
    max-width: 700px;
    margin-bottom: 52px;
}

.section-title-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title-center .eyebrow,
.section-title-center .page-crumbs {
    justify-content: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.10);
    border: 1px solid rgba(201, 162, 39, 0.22);
    color: #e8d898;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 14px var(--primary);
}

h1, h2, h3, h4 {
    margin: 0 0 14px;
    line-height: 1.08;
    color: #f0f2f8;
}

h1, h2 {
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.6rem, 5vw, 5.4rem); }
h2 { font-size: clamp(1.8rem, 2.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }

p {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.72;
}

.btn-row,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #e8bc40, #a07e18);
    color: #060408;
    box-shadow: 0 14px 30px rgba(201, 162, 39, 0.30);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(201, 162, 39, 0.40);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: rgba(201, 162, 39, 0.34);
    background: rgba(201, 162, 39, 0.08);
}

.site-header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(6, 8, 15, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #f3fff6;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18), 0 14px 30px rgba(0, 0, 0, 0.28);
}

.brand-text strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
}

.brand-text span {
    display: block;
    color: #86a88d;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a {
    color: #d0d5e8;
    font-weight: 600;
    font-size: 0.96rem;
    transition: color 0.2s ease;
}

.site-nav a:hover { color: var(--primary); }

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-dropdown-toggle i {
    font-size: 0.72rem;
    transition: transform 0.2s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 30;
    min-width: 300px;
    padding: 10px;
    border: 1px solid rgba(201, 162, 39, 0.18);
    border-radius: 18px;
    background: rgba(6, 8, 18, 0.98);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.36);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: #d8ddf0;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: rgba(201, 162, 39, 0.10);
    color: var(--primary);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #d8ddf0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.26);
    color: #e8d898;
    font-weight: 700;
    transition: 0.25s ease;
}

.nav-cta:hover {
    background: rgba(201, 162, 39, 0.22);
    transform: translateY(-1px);
}

.mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(6, 8, 18, 0.97);
    transition: max-height 0.3s ease;
}

.mobile-menu.is-open {
    max-height: 820px;
}

.mobile-menu-inner {
    display: grid;
    gap: 10px;
    padding: 18px 0 20px;
}

.mobile-menu-inner a {
    padding: 12px 0;
    color: #deeadf;
    font-weight: 600;
}

.mobile-menu-inner .mobile-sub-link {
    margin-top: -8px;
    padding-left: 18px;
    color: #9fb9a4;
    font-size: 0.94rem;
}

.mobile-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 8px;
    padding: 0 18px !important;
    border-radius: 999px;
    background: linear-gradient(135deg, #e8bc40, #a07e18);
    color: #060408 !important;
    font-weight: 800 !important;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

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

.form-control {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--panel-soft);
    color: var(--text);
    outline: none;
}

.form-control-full {
    grid-column: 1 / -1;
}

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

.mb-0 {
    margin: 0;
}

.card {
    background: linear-gradient(180deg, rgba(11, 15, 30, 0.95), rgba(6, 9, 20, 0.96));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 22%);
    pointer-events: none;
}

.landing-page .card:hover {
    border-color: rgba(201, 162, 39, 0.26);
    transform: translateY(-3px);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.stat-grid,
.feature-grid,
.products-grid,
.steps-grid,
.contact-grid,
.about-grid {
    display: grid;
    gap: 22px;
}

.stat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid,
.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.about-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
.contact-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }

.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #d0d5e8;
    font-size: 0.92rem;
}

.media-frame {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--radius) + 8px);
    min-height: 320px;
    background: #0c101e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.media-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.media-frame:hover img {
    transform: scale(1.04);
}

.floating-badge {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(5, 7, 18, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero-section {
    padding-top: 58px;
    padding-bottom: 96px;
}

.hero-section-home {
    padding-top: 46px;
}

.hero-layout {
    align-items: start !important;
    gap: 36px;
}

.hero-layout-centered {
    align-items: center !important;
}

.hero-copy {
    min-width: 0;
    padding-top: 20px;
}

.hero-copy-lead {
    font-size: 1.08rem;
    max-width: 620px;
}

.hero-form-wrap {
    display: block;
    min-width: 0;
}

.hero-form-card {
    z-index: 1;
    min-height: 100%;
}

.hero-form-card-spacious {
    padding: 34px !important;
}

.hero-form-title {
    margin-bottom: 24px;
}

.hero-actions-primary {
    margin: 28px 0 22px;
}

.hero-form-submit {
    grid-column: 1 / -1;
    border: 0;
}

.hero-form-bottom {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.blog-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: -12px 0 34px;
}

.blog-filter a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(26, 95, 63, 0.16);
    border-radius: 999px;
    background: #ffffff;
    color: #0d2b1e;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(13, 43, 30, 0.08);
    transition: 0.2s ease;
}

.blog-filter a.active,
.blog-filter a:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.hero-form-note {
    margin: 0;
    color: #bcecc9;
}

.inner-page .page-hero {
    padding-top: 0;
    padding-bottom: 0px;
}

.page-hero-banner {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.page-hero-overlay {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(4, 6, 18, 0.72), rgba(4, 6, 18, 0.80)),
        linear-gradient(90deg, rgba(4, 6, 18, 0.45), rgba(4, 6, 18, 0.45));
}

.page-hero-center {
    max-width: 760px;
    margin: 0 auto;
}

.page-hero-center h1 {
    margin-bottom: 16px;
}

.page-crumbs {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #dce9de;
    font-size: 0.95rem;
}

.page-crumbs a:hover {
    color: var(--primary);
}

.leadership-layout {
    gap: 28px;
}

.leadership-media {
    min-height: 420px;
}

.expertise-grid,
.trust-grid,
.leadership-grid {
    gap: 20px;
}

.leadership-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.leadership-card {
    padding: 26px;
}

.expertise-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-layout {
    align-items: center;
}

.trust-slider {
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.trust-slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.trust-slider-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #d8ddf0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.trust-arrow:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 162, 39, 0.34);
    background: rgba(201, 162, 39, 0.1);
}

.trust-track {
    display: flex;
    gap: 20px;
    transition: transform 0.7s ease;
    will-change: transform;
}

.trust-card {
    flex: 0 0 100%;
    padding: 26px;
    min-height: 100%;
}

.trust-media {
    min-height: 360px;
}

.trust-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.apply-section,
.about-section,
.process-section,
.testimonial-section {
    position: relative;
}

.about-section-home {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(13, 45, 107, 0.06));
}

.about-feature-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
}

.feature-card {
    padding: 24px;
}

.about-media-grid {
    gap: 18px;
}

.media-frame-sm {
    min-height: 230px;
}

.media-frame-wide {
    min-height: 240px;
    grid-column: 1 / -1;
}

.apply-section::after,
.about-section::after,
.process-section::after,
.testimonial-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 45, 107, 0.22), transparent 66%);
    filter: blur(20px);
    z-index: -1;
}

.apply-section::after { right: -120px; top: 40px; }
.about-section::after { left: -160px; top: 80px; }
.process-section::after { right: -160px; bottom: -60px; }
.testimonial-section::after { left: -140px; bottom: -40px; }

.apply-layout {
    gap: 28px;
}

.apply-intro-card .feature-grid {
    gap: 16px;
}

.apply-feature-grid .card,
.apply-trust-card {
    background:
        linear-gradient(180deg, rgba(10, 13, 28, 0.96), rgba(6, 8, 18, 0.98)),
        radial-gradient(circle at top right, rgba(13, 45, 107, 0.14), transparent 40%);
}

.apply-visual-grid {
    grid-template-rows: auto auto auto;
}

.products-grid {
    gap: 26px;
    align-items: stretch;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.7s ease;
    will-change: transform;
}

.product-card {
    padding: 22px !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background:
        linear-gradient(180deg, rgba(10, 13, 28, 0.98), rgba(6, 8, 18, 0.98)),
        radial-gradient(circle at top right, rgba(13, 45, 107, 0.16), transparent 34%);
}

.product-card-home {
    padding: 26px !important;
}

.product-media-home {
    min-height: 230px !important;
    margin-bottom: 22px !important;
}

.product-card h3 {
    margin-bottom: 4px;
}

.product-card p {
    margin-bottom: 0;
}

.product-page-grid {
    align-items: stretch;
}

.product-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.product-benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-card {
    padding: 18px;
}

.blog-card-media {
    height: 240px;
    min-height: 240px;
    margin-bottom: 18px;
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-card-content {
    padding: 2px 4px 8px;
}

.blog-card-content h3 {
    margin-top: 14px;
}

.blog-readmore {
    display: inline-flex;
    margin-top: 18px;
    color: #bff3cf;
    font-weight: 700;
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.page-number,
.page-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: #d0d5e8;
    font-weight: 700;
}

.page-number.is-active {
    background: linear-gradient(135deg, #e8bc40, #a07e18);
    color: #060408;
    border-color: transparent;
}

.page-nav.disabled {
    opacity: 0.45;
    pointer-events: none;
}

.product-media {
    min-height: 260px !important;
    height: 320px;
    margin-bottom: 18px !important;
    border-radius: 22px;
}

.product-card:nth-child(1) .product-media img { object-position: center 24%; }
.product-card:nth-child(2) .product-media img { object-position: center 32%; }
.product-card:nth-child(3) .product-media img { object-position: center 35%; }
.product-card:nth-child(4) .product-media img { object-position: center 30%; }

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    padding: 26px;
    min-height: 100%;
}

.service-media {
    min-height: 190px !important;
    height: 190px;
    margin-bottom: 18px;
    border-radius: 20px;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card-hidden {
    display: none;
}

.service-card-hidden.is-visible {
    display: grid;
    animation: serviceCardReveal 0.28s ease;
}

@keyframes serviceCardReveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-cta {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.feature-grid .card,
.steps-grid .card,
.stat-grid .card {
    min-height: 100%;
    backdrop-filter: blur(10px);
}

.testimonial-section .card {
    background:
        linear-gradient(180deg, rgba(10, 13, 28, 0.98), rgba(6, 8, 18, 0.99)),
        radial-gradient(circle at top left, rgba(13, 45, 107, 0.18), transparent 35%);
}

.testimonial-card {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 100%;
    flex: 0 0 calc((100% - 48px) / 3);
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    flex: 0 0 72px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(201, 162, 39, 0.28);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    background: linear-gradient(135deg, rgba(13, 45, 107, 0.35), rgba(6, 8, 18, 0.95));
}

.testimonial-avatar i {
    font-size: 1.7rem;
    color: #c9a227;
}

.testimonial-user-meta h3 {
    margin-bottom: 4px;
    font-size: 1.15rem;
}

.testimonial-content {
    padding: 2px 2px 4px;
}

.testimonial-stars {
    display: inline-flex;
    margin-bottom: 12px;
    color: #c9a227;
    font-size: 1rem;
    letter-spacing: 0.16em;
}

.testimonial-quote {
    font-size: 1rem;
    color: #e8eaf4;
    margin-bottom: 0;
}

.testimonial-role {
    margin: 0;
    color: #9aa0b8;
    font-size: 0.92rem;
}

.cta-section .card {
    background:
        linear-gradient(135deg, rgba(10, 13, 28, 0.96), rgba(6, 8, 18, 0.98)),
        radial-gradient(circle at right top, rgba(201, 162, 39, 0.10), transparent 34%);
}

.cta-panel {
    padding: 42px !important;
}

.cta-panel-home {
    padding: 36px !important;
    overflow: hidden;
    position: relative;
}

.cta-layout {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 26px;
}

.cta-layout-centered {
    align-items: center;
}

.cta-copy {
    min-width: 0;
    max-width: 640px;
}

.cta-points {
    gap: 12px;
}

.cta-points-spaced {
    margin: 22px 0 8px;
}

.cta-actions {
    margin-top: 24px;
}

.cta-visuals {
    display: block;
    min-width: 0;
}

.cta-main-media {
    min-height: 360px;
    border-radius: 28px;
}

.cta-main-media img {
    object-position: center 35%;
}

.product-cta-media img {
    object-position: center center;
}

.product-read-more {
    width: fit-content;
    margin-top: 18px;
}

.service-detail-page .page-hero-banner img {
    object-position: center 28%;
}

.service-detail-hero {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: center;
}

.service-detail-copy {
    max-width: 660px;
}

.service-detail-copy p {
    font-size: 1.06rem;
    line-height: 1.8;
}

.service-detail-actions {
    margin-top: 24px;
}

.service-detail-media {
    height: 430px;
    min-height: 430px;
    border-radius: 28px;
}

.service-detail-media img {
    object-fit: cover;
    object-position: center 30%;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.service-detail-card,
.service-audience-card,
.service-process-card {
    padding: 28px;
}

.service-detail-card {
    grid-column: span 2;
    display: grid;
    gap: 14px;
    align-content: start;
}

.service-detail-grid .service-detail-card:nth-last-child(2) {
    grid-column: 2 / span 2;
}

.service-detail-grid .service-detail-card:last-child {
    grid-column: 4 / span 2;
}

.service-detail-card i,
.service-audience-card i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(201, 162, 39, 0.12);
    color: var(--primary);
    font-size: 1.35rem;
}

.service-detail-card h3,
.service-audience-card h3,
.service-process-card h3 {
    margin-bottom: 0;
}

.service-split-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
    align-items: center;
}

.service-check-card {
    padding: 30px;
}

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

.service-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d0d5e8;
    font-weight: 700;
}

.service-check-list i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 28px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.12);
    color: var(--primary);
    font-size: 0.9rem;
}

.service-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-audience-card {
    display: grid;
    gap: 18px;
    min-height: 180px;
    align-content: center;
}

.service-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.service-process-card {
    min-height: 170px;
    display: grid;
    align-content: space-between;
    gap: 24px;
}

.service-process-card span {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.service-detail-cta {
    margin-bottom: 0;
}

.cta-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px 22px;
    background: rgba(5, 10, 6, 0.82);
}

.cta-badge-title {
    display: block;
    font-size: 1rem;
    margin-bottom: 6px;
}

.cta-badge-copy {
    margin: 0 0 12px;
}

.process-section-home {
    background: linear-gradient(180deg, rgba(13, 45, 107, 0.05), rgba(255, 255, 255, 0.01));
}

.process-card {
    padding: 28px;
}

.process-step-chip {
    margin-bottom: 18px;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    align-items: start;
}

.calculator-layout {
    align-items: stretch;
}

.calculator-info-card,
.calculator-form-card {
    padding: 30px;
}

.calculator-info-card {
    display: grid;
    align-content: center;
    gap: 16px;
}

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

.calculator-result {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 39, 0.20);
    background: rgba(201, 162, 39, 0.07);
    color: #e8d898;
    font-weight: 700;
}

.contact-page-main,
.contact-page-side {
    display: grid;
    gap: 24px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-info-card:first-child {
    grid-column: 1 / -1;
}

.contact-info-card,
.business-hours-card,
.enquiry-form-card,
.map-card {
    padding: 30px;
}

.contact-info-card {
    min-height: 140px;
    display: grid;
    align-content: start;
    gap: 12px;
}

.contact-info-grid .contact-info-card {
    padding: 26px 30px;
}

.contact-info-card:first-child {
    min-height: 0;
}

.contact-info-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.contact-info-card h3 i {
    color: var(--primary);
    font-size: 1.1em;
    line-height: 1;
}

.contact-info-card p {
    max-width: 620px;
    line-height: 1.6;
}

.map-frame {
    height: 420px;
    min-height: 420px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.hours-list {
    display: grid;
    gap: 14px;
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 18px;
}

.contact-enquiry-form input,
.contact-enquiry-form select,
.contact-enquiry-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--panel-soft);
    color: var(--text);
    outline: none;
}

.contact-enquiry-form textarea,
.upload-field,
.enquiry-submit {
    grid-column: 1 / -1;
}

.full-row-field {
    grid-column: 1 / -1;
}

.contact-enquiry-form textarea {
    min-height: 150px;
    resize: vertical;
}

.upload-field {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px dashed rgba(201, 162, 39, 0.24);
    background: rgba(255, 255, 255, 0.03);
    color: #d8ddf0;
}

.upload-field input[type="file"] {
    padding: 0;
    border: 0;
    background: transparent;
}

.form-alert {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
}

.form-alert-success {
    background: rgba(42, 107, 42, 0.14);
    border: 1px solid rgba(42, 107, 42, 0.26);
    color: #b8e8b8;
}

.form-alert-error {
    background: rgba(255, 99, 71, 0.10);
    border: 1px solid rgba(255, 99, 71, 0.18);
    color: #ffd2c9;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #34d26f, #1f9d4d);
    color: #031a06;
    font-weight: 800;
    box-shadow: 0 18px 34px rgba(42, 107, 42, 0.36);
}

.whatsapp-float i {
    font-size: 1.35rem;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 40;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 39, 0.28);
    background: rgba(6, 8, 18, 0.94);
    color: #e8d898;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #e8bc40, #a07e18);
    color: #060408;
}

.contact-section .card,
.apply-section .card,
.about-section .card {
    background:
        linear-gradient(180deg, rgba(10, 13, 28, 0.97), rgba(6, 8, 18, 0.98)),
        radial-gradient(circle at top right, rgba(13, 45, 107, 0.16), transparent 34%);
}

.site-footer {
    margin-top: 40px;
    padding: 60px 0 40px;
    border-top: 1px solid rgba(201, 162, 39, 0.14);
    background: rgba(3, 4, 12, 0.96);
}

.footer-top,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9aa0b8;
    font-size: 0.95rem;
}

.footer-top-spaced {
    padding-bottom: 18px;
}

.footer-text-reset {
    margin: 0;
}

.footer-contact-row {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal {
    padding-top: 12px;
}

.leadership-slider-wrap {
    position: relative !important;
    padding: 0 58px !important;
    overflow: visible !important;
}

.leadership-profile-grid.leadership-card-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-auto-columns: calc((100% - 48px) / 3) !important;
    grid-template-columns: none !important;
    gap: 24px !important;
    align-items: start !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    padding: 6px 2px 14px !important;
    width: 100% !important;
}

.leadership-profile-grid.leadership-card-grid::-webkit-scrollbar {
    display: none !important;
}

.leadership-member-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 18px !important;
    overflow: hidden !important;
    scroll-snap-align: start !important;
}

.leadership-member-card .leadership-profile-image {
    width: 100% !important;
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    background: var(--panel-soft) !important;
}

.leadership-member-card .leadership-profile-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
}

.leadership-member-card .leadership-modal-content {
    display: none !important;
}

body.modal-open {
    overflow: hidden;
}

.leadership-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.leadership-modal.is-open {
    display: flex;
}

.leadership-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.leadership-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: 86vh;
    overflow-y: auto;
    padding: 34px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, rgba(9, 25, 16, 0.98), rgba(3, 12, 8, 0.98));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.48);
}

.leadership-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
}

.leadership-modal-dialog h3 {
    margin: 16px 0 18px;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.leadership-modal-body p {
    margin-bottom: 14px;
    color: #c7d8c9;
    line-height: 1.8;
}

.leadership-member-card .leadership-profile-content {
    display: block !important;
    padding: 18px 2px 4px !important;
}

.leadership-member-card .leadership-profile-content h3 {
    margin: 14px 0 12px !important;
    font-size: 1.25rem !important;
}

.leadership-member-card .leadership-profile-content p {
    font-size: 0.94rem !important;
    line-height: 1.7 !important;
}

.leadership-slider-prev {
    left: 4px !important;
}

.leadership-slider-next {
    right: 4px !important;
}

.leadership-member-card.is-expanded .leadership-more {
    display: block !important;
}

.leadership-readmore {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin-top: 12px !important;
    padding: 10px 16px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(201, 162, 39, 0.14) !important;
    color: #e8d898 !important;
    font-weight: 800 !important;
    box-shadow: none !important;
    cursor: pointer !important;
    transform: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    line-height: 1 !important;
}

.leadership-slider-btn {
    position: absolute !important;
    top: 50% !important;
    z-index: 5 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #e8bc40, #a07e18) !important;
    color: #ffffff !important;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28) !important;
    cursor: pointer !important;
    transform: translateY(-50%) !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    line-height: 1 !important;
    overflow: visible !important;
}

.leadership-slider-btn i {
    color: #ffffff !important;
    font-size: 1rem !important;
    line-height: 1 !important;
}

@media (max-width: 1024px) {
    .leadership-profile-grid.leadership-card-grid {
        grid-auto-columns: calc((100% - 24px) / 2) !important;
    }
}

@media (max-width: 640px) {
    .leadership-slider-wrap {
        padding: 0 10px !important;
    }

    .leadership-profile-grid.leadership-card-grid {
        grid-auto-columns: 100% !important;
    }
}

@media (max-width: 1024px) {
    .section { padding: 84px 0; }
    .grid-2,
    .about-grid,
    .contact-grid,
    .products-grid,
    .services-grid,
    .product-benefit-grid,
    .blog-grid,
    .feature-grid,
    .steps-grid,
    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .site-nav,
    .nav-cta { display: none; }
    .menu-toggle { display: inline-flex; }
    .mobile-menu { display: block; }
    .product-media { height: 230px; min-height: 230px !important; }
    .hero-layout,
    .apply-layout,
    .leadership-layout,
    .contact-page-grid,
    .service-detail-hero,
    .service-split-layout,
    .calculator-layout {
        grid-template-columns: 1fr;
    }
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }
    .expertise-grid-three {
        grid-template-columns: 1fr 1fr;
    }
    .service-detail-grid,
    .service-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .service-detail-card,
    .service-detail-grid .service-detail-card:nth-last-child(2),
    .service-detail-grid .service-detail-card:last-child {
        grid-column: auto;
    }
    .service-process-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .cta-main-media {
        min-height: 300px;
    }
    .map-frame {
        height: 360px;
        min-height: 360px;
    }
    .testimonial-card {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 680px) {
    .section { padding: 70px 0; }
    .grid-2,
    .about-grid,
    .contact-grid,
    .products-grid,
    .services-grid,
    .product-benefit-grid,
    .blog-grid,
    .feature-grid,
    .steps-grid,
    .stat-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-grid,
    .service-audience-grid,
    .service-process-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card,
    .service-detail-grid .service-detail-card:nth-last-child(2),
    .service-detail-grid .service-detail-card:last-child {
        grid-column: auto;
    }

    .service-detail-media {
        height: 300px;
        min-height: 300px;
    }

    .service-audience-card,
    .service-process-card {
        min-height: 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
    .expertise-grid-three {
        grid-template-columns: 1fr;
    }

    .apply-form { grid-template-columns: 1fr; }
    .contact-enquiry-form { grid-template-columns: 1fr; }
    .calculator-form { grid-template-columns: 1fr; }
    .container { width: min(var(--container), calc(100% - 22px)); }
    .contact-info-grid .contact-info-card {
        min-height: 0;
        padding: 24px;
    }
    .header-wrap { min-height: 74px; }
    .section-title { margin-bottom: 36px; }
    .hero-section { padding-top: 34px; padding-bottom: 72px; }
    .inner-page .page-hero { padding-bottom: 64px; }
    .page-hero-banner,
    .page-hero-overlay {
        min-height: 300px;
    }
    .product-media { height: 220px; min-height: 220px !important; }
    .testimonial-track { gap: 16px; }
    .testimonial-card { flex-basis: 100%; }
    .cta-panel {
        padding: 24px !important;
    }
    .cta-layout {
        gap: 24px;
    }
    .cta-main-media {
        min-height: 240px;
    }
    .map-frame {
        height: 300px;
        min-height: 300px;
    }
    .testimonial-avatar {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }
    .hero-form-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
    .page-crumbs {
        font-size: 0.85rem;
        padding: 9px 14px;
    }
    .whatsapp-float {
        right: 14px;
        bottom: 78px;
        min-height: 52px;
        padding: 0 16px;
    }
    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 52px;
        height: 52px;
    }
    .floating-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 14px;
    }
}

.site-footer .footer-panel {
    padding: 52px !important;
    border-radius: 28px;
}

.site-footer .footer-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
    margin-bottom: 52px !important;
    padding-bottom: 52px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr !important;
    gap: 48px !important;
    align-items: start !important;
    margin-bottom: 48px !important;
}

.site-footer .footer-column,
.site-footer .footer-brand-block,
.site-footer .footer-contact-card {
    min-width: 0;
}

.site-footer .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

.site-footer .footer-links a {
    display: inline-flex !important;
    color: #9aa0b8 !important;
    line-height: 1.4;
    font-size: 0.94rem;
    transition: color 0.2s ease;
}

.site-footer .footer-brand {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.site-footer .footer-contact-card {
    height: 100%;
}

.site-footer .footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.site-footer .footer-panel {
    background:
        linear-gradient(180deg, rgba(6, 8, 22, 0.95), rgba(3, 4, 14, 0.98)),
        radial-gradient(circle at top left, rgba(13, 45, 107, 0.20), transparent 32%) !important;
}

.site-footer .footer-cta {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 50px rgba(201, 162, 39, 0.08);
}

.site-footer .footer-cta .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border: 1px solid rgba(201, 162, 39, 0.26);
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.10);
}

.site-footer .footer-cta .eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 18px rgba(201, 162, 39, 0.8);
}

.site-footer .footer-column:not(.footer-contact-card),
.site-footer .footer-brand-block {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.025);
    transition: 0.25s ease;
}

.site-footer .footer-column:not(.footer-contact-card):hover,
.site-footer .footer-brand-block:hover,
.site-footer .footer-contact-card:hover {
    border-color: rgba(201, 162, 39, 0.26);
    transform: translateY(-3px);
}

.site-footer .footer-links a::before {
    content: "›";
    margin-right: 8px;
    color: var(--primary);
    font-weight: 900;
    transition: transform 0.2s ease;
}

.site-footer .footer-links a:hover::before {
    transform: translateX(3px);
}

.site-footer .footer-links a:hover {
    color: var(--primary) !important;
}

.site-footer .footer-contact-card p {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .footer-contact-card p:last-child {
    border-bottom: 0;
}

.site-footer .footer-contact-card i {
    width: 34px !important;
    height: 34px;
    display: grid;
    flex: 0 0 34px;
    place-items: center;
    margin-top: -4px !important;
    border-radius: 12px;
    background: rgba(201, 162, 39, 0.12);
}

.site-footer .footer-socials a {
    box-shadow: 0 12px 24px rgba(201, 162, 39, 0.10);
}

.site-footer .footer-socials a:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(201, 162, 39, 0.22);
}

.site-footer .footer-bottom {
    padding: 20px 28px !important;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    margin-top: 0 !important;
}

@media (max-width: 1100px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 900px) {
    .site-footer .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px !important;
    }
}

@media (max-width: 720px) {
    .site-footer .footer-panel {
        padding: 32px 24px !important;
    }

    .site-footer .footer-cta,
    .site-footer .footer-bottom {
        align-items: flex-start !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .site-footer .footer-cta {
        margin-bottom: 32px !important;
        padding-bottom: 32px !important;
    }
}

/* =============================================
   PROFESSIONAL DESIGN ENHANCEMENTS
   ============================================= */

/* --- Scroll-triggered Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- Header Scroll Shrink --- */
.site-header.is-scrolled {
    min-height: 68px !important;
    background: rgba(4, 5, 16, 0.97) !important;
    border-bottom-color: rgba(201, 162, 39, 0.14) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,0.32) !important;
    transition: all 0.3s ease;
}

.site-header {
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, min-height 0.3s ease;
}

.header-wrap {
    transition: min-height 0.3s ease;
}

.site-header.is-scrolled .header-wrap {
    min-height: 68px;
}

/* --- Active Nav Link --- */
.site-nav a.nav-active,
.mobile-menu-inner a.nav-active {
    color: var(--primary) !important;
}

.site-nav a.nav-active::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    margin-top: 3px;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.6);
}

/* --- Gradient Hero Heading --- */
.hero-gradient-text {
    background: linear-gradient(135deg, #f0f2f8 20%, #e8bc40 60%, #c9a227 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Hero Ticker / Trust Bar --- */
.hero-ticker {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding: 14px 20px;
    border-radius: 16px;
    background: rgba(201, 162, 39, 0.06);
    border: 1px solid rgba(201, 162, 39, 0.14);
}

.hero-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #e8d898;
}

.hero-ticker-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* --- Stat Counter Section --- */
.stat-section {
    padding: 0 0 0;
}

.stat-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201, 162, 39, 0.08);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 39, 0.16);
}

.stat-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 18px;
    gap: 6px;
    background: rgba(8, 10, 24, 0.88);
    transition: background 0.3s ease;
    text-align: center;
}

.stat-bar-item:hover {
    background: rgba(201, 162, 39, 0.07);
}

.stat-bar-item:not(:last-child) {
    border-right: 1px solid rgba(201, 162, 39, 0.10);
}

.stat-bar-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-bar-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #a09070;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* --- Enhanced Card Hover with Glow --- */
.card-glow:hover {
    border-color: rgba(201, 162, 39, 0.30) !important;
    box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.12), 0 26px 60px rgba(0,0,0,0.36), 0 0 40px rgba(201, 162, 39, 0.07) !important;
    transform: translateY(-4px) !important;
}

/* --- Feature / Why Card Icon Badges --- */
.feature-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.20);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.card:hover .feature-icon-badge {
    background: rgba(201, 162, 39, 0.20);
    transform: scale(1.08);
}

/* --- Process Step Enhanced --- */
.steps-grid {
    position: relative;
}

.steps-grid::before {
    content: "";
    position: absolute;
    top: 48px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.28), rgba(201, 162, 39, 0.28), transparent);
    z-index: 0;
    pointer-events: none;
}

.process-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.16), rgba(13, 45, 107, 0.18));
    border: 2px solid rgba(201, 162, 39, 0.30);
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 16px rgba(201, 162, 39, 0.14);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.card:hover .process-step-number {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.26), rgba(13, 45, 107, 0.24));
    box-shadow: 0 0 24px rgba(201, 162, 39, 0.24);
}

/* --- Enhanced Form Inputs --- */
.form-control:focus,
.contact-enquiry-form input:focus,
.contact-enquiry-form select:focus,
.contact-enquiry-form textarea:focus {
    border-color: rgba(201, 162, 39, 0.44) !important;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.10) !important;
    background: rgba(10, 12, 28, 0.98) !important;
}

.form-control,
.contact-enquiry-form input,
.contact-enquiry-form select,
.contact-enquiry-form textarea {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

select.form-control,
.contact-enquiry-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23c9a227' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

/* --- Testimonial Enhanced Stars --- */
.testimonial-stars i {
    color: #c9a227;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 6px rgba(201,162,39,0.5));
}

/* --- Section Title Underline Accent --- */
.section-title h2 {
    position: relative;
    display: block;
}

.section-title-center h2::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin: 12px auto 0;
}

.section-title:not(.section-title-center) h2::after {
    content: "";
    display: block;
    width: 52px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), transparent);
    margin: 12px 0 0;
}

/* --- Eyebrow Pulse Dot --- */
.eyebrow::before {
    animation: pulseDot 2.2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.5); }
    50% { box-shadow: 0 0 0 5px rgba(201, 162, 39, 0); }
}

/* --- Service Card Enhanced --- */
.service-card .service-icon-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

/* --- Blog Card Enhanced --- */
.blog-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.24);
    box-shadow: 0 28px 64px rgba(0,0,0,0.4);
}

.blog-readmore {
    gap: 6px;
    transition: gap 0.2s ease;
}

.blog-readmore::after {
    content: "→";
    transition: transform 0.2s ease;
}

.blog-readmore:hover::after {
    transform: translateX(4px);
}

/* --- Nav Dropdown Enhanced --- */
.nav-dropdown-menu {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-dropdown-menu a {
    position: relative;
    transition: all 0.18s ease;
}

.nav-dropdown-menu a::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
    transform: translateY(-50%) scale(0);
    transition: transform 0.18s ease;
}

.nav-dropdown-menu a:hover::before {
    transform: translateY(-50%) scale(1);
}

.nav-dropdown-menu a:hover {
    padding-left: 24px;
}

/* --- CTA Panel Ambient Glow --- */
.cta-panel-home::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 45, 107, 0.22), transparent 66%);
    filter: blur(28px);
    pointer-events: none;
    z-index: 0;
}

.cta-panel-home > * {
    position: relative;
    z-index: 1;
}

/* --- Page Hero Overlay Enhanced --- */
.page-hero-overlay {
    background:
        linear-gradient(180deg, rgba(4, 6, 18, 0.65) 0%, rgba(4, 6, 18, 0.82) 100%),
        linear-gradient(90deg, rgba(13, 45, 107, 0.10), transparent 60%);
}

.page-hero-center h1 {
    text-shadow: 0 4px 32px rgba(0,0,0,0.5);
    animation: heroFadeUp 0.7s ease both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-crumbs {
    animation: heroFadeUp 0.7s 0.2s ease both;
}

/* --- WhatsApp Float Enhanced --- */
.whatsapp-float {
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 18px 34px rgba(42, 107, 42, 0.36); }
    50% { box-shadow: 0 18px 46px rgba(42, 107, 42, 0.52); }
}

/* --- Footer Column Headings --- */
.site-footer .footer-column h3,
.site-footer .footer-brand-block h3,
.site-footer .footer-contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #f0f2f8;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 12px;
}

.site-footer .footer-column h3::after,
.site-footer .footer-contact-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
}

.site-footer .footer-brand-block .brand-logo-img img {
    height: 72px !important;
    width: auto !important;
    max-width: 180px !important;
}

.site-footer .footer-brand-block > p:not(.footer-brand-tagline) {
    font-size: 0.93rem;
    line-height: 1.7;
    color: #9aa0b8;
    margin-top: 10px;
    margin-bottom: 4px;
}

.site-footer .footer-contact-card p {
    color: #9aa0b8;
    font-size: 0.93rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.site-footer .footer-contact-card a {
    color: #d0d5e8;
    transition: color 0.2s ease;
}

.site-footer .footer-contact-card a:hover {
    color: var(--primary);
}

.site-footer .footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer .footer-legal-links a {
    color: #9aa0b8;
    font-size: 0.87rem;
    transition: color 0.2s ease;
}

.site-footer .footer-legal-links a:hover {
    color: var(--primary);
}

.site-footer .footer-text-reset {
    color: #6e7490;
    font-size: 0.87rem;
}

/* --- Footer Brand Tagline --- */
.footer-brand-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-top: 6px;
    opacity: 0.8;
}

/* --- Footer Social Icons Enhanced --- */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(201, 162, 39, 0.10);
    border: 1px solid rgba(201, 162, 39, 0.20);
    display: grid;
    place-items: center;
    color: #e8d898;
    font-size: 1rem;
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background: rgba(201, 162, 39, 0.22);
    border-color: rgba(201, 162, 39, 0.40);
    color: #fff;
    transform: translateY(-3px);
}

/* --- Footer CTA Enhanced --- */
.site-footer .footer-cta h2 {
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
    max-width: 520px;
}

/* --- Trust Row in Footer --- */
.footer-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.footer-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.16);
    color: #e8d898;
}

.footer-trust-row span strong {
    color: var(--primary);
}

/* --- Buttons Arrow Animation --- */
.btn-primary .btn-arrow {
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(3px);
}

/* --- About Feature Cards Icon --- */
.about-feature-grid .feature-card {
    padding: 22px !important;
    border-left: 3px solid rgba(201, 162, 39, 0.24);
    border-radius: 20px !important;
}

.about-feature-grid .feature-card:hover {
    border-left-color: var(--primary);
    box-shadow: 0 12px 36px rgba(0,0,0,0.32), -4px 0 20px rgba(201, 162, 39, 0.10);
}

/* --- Why Choose Us Cards Icon --- */
.why-grid .feature-card {
    padding: 26px !important;
}

.why-grid .feature-card::before {
    content: "✦";
    display: block;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 12px;
    opacity: 0.7;
}

/* --- Media Frame Shine --- */
.media-frame::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.035), transparent);
    transform: skewX(-12deg);
    pointer-events: none;
    transition: left 0.8s ease;
    z-index: 1;
}

.media-frame:hover::before {
    left: 125%;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, #c9a227, #e8bc40, #a07e18);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(201, 162, 39, 0.7);
}

/* --- Section Background Subtle Patterns --- */
.why-section {
    background: linear-gradient(180deg, rgba(13, 45, 107, 0.04), rgba(255,255,255,0.005));
}

.cta-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.005), rgba(13, 45, 107, 0.04));
}

/* --- Contact Cards Enhanced Icon --- */
.contact-info-card h3 i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(201, 162, 39, 0.12);
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* --- Products Page Grid Enhancement --- */
.services-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* --- Leadership Card Enhanced --- */
.leadership-member-card {
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.leadership-member-card:hover {
    border-color: rgba(201, 162, 39, 0.28) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 28px 64px rgba(0,0,0,0.4) !important;
}

/* --- Section Top Divider Glow --- */
.section::before {
    background: linear-gradient(90deg, transparent 5%, rgba(201, 162, 39, 0.16) 40%, rgba(201, 162, 39, 0.16) 60%, transparent 95%);
}

/* --- Input Placeholder Color --- */
::placeholder {
    color: rgba(154, 160, 184, 0.50) !important;
}

/* --- Smooth Image Scale on Service Cards --- */
.service-card:hover .service-media img,
.product-card:hover .product-media img {
    transform: scale(1.06);
}

/* --- Responsive Stat Bar --- */
@media (max-width: 680px) {
    .stat-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-bar-item:nth-child(2) {
        border-right: none;
    }

    .stat-bar-item:nth-child(3) {
        border-right: 1px solid rgba(201, 162, 39, 0.10);
    }

    .hero-ticker {
        gap: 16px;
    }

    .steps-grid::before {
        display: none;
    }
}
