@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600&family=Poppins:wght@600;700;800&display=swap');

:root {
    --navy: #1B2E5C;
    --navy-dark: #111d3a;
    --navy-light: #2b4585;
    --navy-transparent: rgba(27, 46, 92, 0.95);
    --red: #E63329;
    --red-hover: #cc2a22;
    --gold: #D9A441;
    --gold-glow: rgba(217, 164, 65, 0.3);
    --white: #ffffff;
    --light: #f4f7f9;
    --gray-bg: #eceff3;
    --text-main: #2b2b2b;
    --text-muted: #5a657a;

    --font-heading: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 15px 35px var(--gold-glow);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

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

a:hover {
    color: var(--red);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.z-relative {
    position: relative;
    z-index: 10;
}

.section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.py-5 {
    padding: 4rem 0;
}

.bg-light {
    background-color: var(--light);
    position: relative;
}

.bg-navy {
    background-color: var(--navy);
}

.bg-navy-dark {
    background-color: var(--navy-dark);
}

.bg-gold {
    background-color: var(--gold);
}

.bg-red {
    background-color: var(--red);
}

/* Textures & Orbs */
.bg-texture-dots::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(27, 46, 92, 0.08) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    z-index: 1;
    pointer-events: none;
}

.bg-texture-diagonal::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(217, 164, 65, 0.03) 0, rgba(217, 164, 65, 0.03) 1px, transparent 1px, transparent 15px);
    z-index: 1;
    pointer-events: none;
}

.bg-orb-1 {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(217, 164, 65, 0.15) 0%, transparent 70%);
    top: -100px;
    left: -150px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.bg-orb-2 {
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(27, 46, 92, 0.1) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.bg-orb-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 51, 41, 0.08) 0%, transparent 70%);
    top: 20%;
    right: -100px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.text-center {
    text-align: center;
}

.text-red {
    color: var(--red);
}

.text-gold {
    color: var(--gold);
}

.text-navy {
    color: var(--navy);
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--text-muted);
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.9rem;
}

.font-bold {
    font-weight: 700;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2.3rem, 4vw, 3.2rem);
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.text-gradient {
    display: inline-block;
    background: linear-gradient(135deg, var(--red) 0%, #ff5252 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, #f1c40f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    display: inline-block;
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.divider {
    height: 5px;
    width: 70px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1rem auto 2.5rem;
    border-radius: 3px;
}

.divider-left {
    margin-left: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    z-index: 5;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg) translateX(-150%);
    transition: var(--transition-slow);
}

.btn:hover::after {
    transform: skewX(-20deg) translateX(150%);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 51, 41, 0.2);
}

.btn-primary:hover {
    background-color: var(--red-hover);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 51, 41, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-secondary:hover {
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(27, 46, 92, 0.15);
}

/* Top Utility Bar */
.top-bar {
    font-size: 0.88rem;
    padding: 0.5rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--navy-dark);
    color: #d1d5df;
    font-weight: 500;
    position: relative;
    z-index: 1001;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-left a,
.top-bar-left span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d1d5df;
    transition: var(--transition);
}

.top-bar-left a:hover {
    color: var(--gold);
}

.top-bar-left i {
    color: var(--gold);
    font-size: 0.88rem;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.top-bar-right a {
    color: #d1d5df;
    transition: var(--transition);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.top-bar-right a:hover {
    color: var(--navy-dark);
    background: var(--gold);
    transform: translateY(-2px);
}

/* Header & Nav */
.header {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    position: sticky;
    top: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo-svg {
    max-height: 55px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

/* Nav links — scope to direct children only so dropdown items aren't affected */
.nav-links>a,
.nav-links>.dropdown-wrapper>.dropdown-toggle {
    font-weight: 600;
    color: var(--navy);
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.nav-links>a:hover,
.nav-links>.dropdown-wrapper>.dropdown-toggle:hover {
    color: var(--red);
}

.nav-links>a::after,
.nav-links>.dropdown-wrapper>.dropdown-toggle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -6px;
    left: 0;
    background-color: var(--red);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links>a:hover::after,
.nav-links>.dropdown-wrapper:hover>.dropdown-toggle::after {
    width: 100%;
}

/* ── Destinations Dropdown ── */
.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    min-width: 410px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.65rem;
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 9999;
}

/* Show on hover (desktop) or .active class (JS-toggled mobile) */
.dropdown-wrapper:hover .dropdown-menu,
.dropdown-wrapper:focus-within .dropdown-menu,
.dropdown-wrapper.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Small caret indicator above dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    color: var(--navy) !important;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    transition: var(--transition);
    white-space: nowrap;
}

/* Kill the underline pseudo-element on dropdown items */
.dropdown-item::after {
    display: none !important;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(217, 164, 65, 0.12), rgba(217, 164, 65, 0.04));
    color: var(--navy-dark) !important;
    padding-left: 1.15rem;
}

.dropdown-item img {
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .dropdown-menu {
        grid-template-columns: 1fr;
        min-width: 260px;
    }
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav {
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(230, 51, 41, 0.25);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--navy);
    cursor: pointer;
}

/* Hero Section - Designed strictly as per reference mockup */
.hero {
    position: relative;
    padding: 5rem 0 6rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: #f7f8fa;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 540px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #1e2530;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.8px;
}

.hero-title-bold {
    font-weight: 900;
    color: #111827;
}

.hero-desc {
    font-family: var(--font-body);
    font-size: 1.08rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 2.2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
}

.btn-blue-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
}

.btn-blue-pill:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
    color: #ffffff !important;
}

/* Hero Visual Landmarks Graphic */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-landmarks-container {
    position: relative;
    width: 100%;
    max-width: 750px;
}

.hero-landmarks-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.08));
}

/* Bottom Right Yellow Megaphone Badge */
.hero-apply-badge {
    position: absolute;
    bottom: -10px;
    right: 35px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffcc00;
    color: #000000 !important;
    padding: 0.5rem 1.4rem 0.5rem 0.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.hero-apply-badge::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 24px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #ffcc00;
}

.hero-apply-badge:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    background-color: #ffdb1a;
}

.badge-megaphone-circle {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.15rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: #000000;
    white-space: nowrap;
}

/* Far-Right Floating Social Bar - Attached Flush to Right Viewport Edge */
.hero-social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    background-color: #ffffff;
    padding: 1.1rem 0.55rem;
    border-radius: 24px 0 0 24px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08), -1px 0 4px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-right: none;
}

.social-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.social-chip:hover {
    transform: scale(1.22);
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(230, 51, 41, 0.1);
    color: var(--red);
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.88rem;
    border: 1px solid rgba(230, 51, 41, 0.2);
    white-space: nowrap;
}

/* ── Hero Top Badge & Inline Flag Marquee Ticker (Filling Hero Dead Space) ── */
.hero-top-badge-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
    width: 100%;
    overflow: hidden;
}

.hero-inline-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    flex-grow: 1;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hero-inline-track {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    animation: scrollHeroMarquee 28s linear infinite;
    width: max-content;
}

.hero-inline-marquee:hover .hero-inline-track {
    animation-play-state: paused;
}

@keyframes scrollHeroMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-flag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(27, 46, 92, 0.14);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-flag-chip:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 46, 92, 0.2);
}

.hero-flag-chip img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    object-fit: cover;
    flex-shrink: 0;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 90%;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-avatars {
    display: flex;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -18px;
    box-shadow: var(--shadow-sm);
    z-index: 1;
    background: var(--white);
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
    z-index: 3;
}

.avatar-group img:nth-child(2) {
    z-index: 2;
}

.avatar-text {
    margin-left: 20px;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    font-family: var(--font-heading);
}

.avatar-text strong {
    font-size: 1.2rem;
}

/* Hero Visual Depth */
.image-wrapper-hero {
    position: relative;
    width: 100%;
    padding-right: 2rem;
    padding-bottom: 2.5rem;
}

.main-hero-img {
    width: 100%;
    border-radius: 16px 50px 16px 50px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/5;
    border: 8px solid var(--white);
}

.shadow-card {
    background: var(--white);
    box-shadow: var(--shadow-gold);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 1px solid rgba(217, 164, 65, 0.3);
    backdrop-filter: blur(10px);
}

.hero-float-card {
    position: absolute;
    z-index: 4;
    width: max-content;
    transition: var(--transition-slow);
}

.hero-float-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 25px 45px rgba(217, 164, 65, 0.4);
}

.hero-float-card.bottom-left {
    bottom: 20px;
    left: -15%;
}

.hero-float-card.top-right {
    top: 15%;
    right: -5%;
}

.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    color: var(--navy);
    font-size: 1.7rem;
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -0.5px;
}

.card-text span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.image-wrapper-about {
    position: relative;
    border-radius: 20px;
    z-index: 2;
}

.image-wrapper-about::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--navy-dark);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.05;
}

.main-about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    aspect-ratio: 1;
    object-fit: cover;
}

.about-float-card {
    position: absolute;
    right: -30px;
    bottom: 50px;
    background: var(--white);
    border-radius: 16px;
    z-index: 3;
    border-left: 6px solid var(--gold);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-heading);
    padding: 1.5rem;
    gap: 1rem;
}

.feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-bullets li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(217, 164, 65, 0.3);
}

.bullet-icon {
    width: 35px;
    height: 35px;
    background: rgba(230, 51, 41, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1.1rem;
}

.bullet-text h4 {
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
    color: var(--navy);
}

.bullet-text p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Destinations Depth */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.dest-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.dest-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(27, 46, 92, 0.15);
}

.dest-img {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
}

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

.dest-img-container {
    overflow: hidden;
    height: 240px;
    position: relative;
}

.dest-img-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 29, 58, 0.9), transparent);
    z-index: 1;
}

.flag-badge {
    position: absolute;
    bottom: 20px;
    left: 25px;
    width: 60px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--white);
}

.flag-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-card:hover .flag-badge {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.dest-content {
    padding: 2.2rem;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    z-index: 2;
}

.dest-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.dest-content p {
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    flex-grow: 1;
    font-size: 1.05rem;
}

.dest-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    margin-top: auto;
    padding: 0.5rem 0;
}

.dest-link:hover {
    color: var(--navy);
    gap: 15px;
}

/* Services Hover Pattern */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card-rich {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service-card-rich::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-rich:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-rich:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: rgba(27, 46, 92, 0.05);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

/* Alternating icon backgrounds */
.service-card-rich:nth-child(even) .service-icon {
    background: rgba(217, 164, 65, 0.1);
    color: var(--gold);
}

.service-card-rich:nth-child(3n) .service-icon {
    background: rgba(230, 51, 41, 0.08);
    color: var(--red);
}

.service-card-rich:hover .service-icon {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(27, 46, 92, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card-rich h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card-rich p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.service-hover-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-20px) scale(0.8);
    transition: var(--transition-slow);
    box-shadow: 0 5px 15px rgba(230, 51, 41, 0.3);
    font-size: 1.1rem;
}

.service-card-rich:hover .service-hover-btn {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.service-hover-btn:hover {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.15) !important;
}

/* Process Redesign */
.timeline-zigzag {
    position: relative;
    max-width: 900px;
    margin: 5rem auto 0;
    padding: 2rem 0;
}

.timeline-zigzag::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: transparent;
    border-left: 3px dashed rgba(217, 164, 65, 0.8);
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    margin-bottom: 5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step:nth-child(odd) {
    flex-direction: row-reverse;
}

.step-num {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 0 0 10px var(--light), 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 3;
    transition: var(--transition);
}

.timeline-step:hover .step-num {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 10px rgba(217, 164, 65, 0.2), 0 10px 30px rgba(217, 164, 65, 0.4);
}

.step-card {
    width: 43%;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    text-align: left;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 164, 65, 0.3);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    background: var(--white);
    transform: translateY(-50%) rotate(45deg);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.timeline-step:nth-child(odd) .step-card {
    text-align: right;
}

.timeline-step:nth-child(odd) .step-card::before {
    left: -12.5px;
    border-right: none;
    border-top: none;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.02);
}

.timeline-step:nth-child(even) .step-card::before {
    right: -12.5px;
    border-left: none;
    border-bottom: none;
    box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.02);
}

.step-card h3 {
    color: var(--navy);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.step-card p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Partner Strip & Infinite Marquee */
.partner-strip {
    padding: 3.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: linear-gradient(180deg, var(--white) 0%, #f9fbfd 100%);
    position: relative;
    overflow: hidden;
}

.partner-heading {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0.8rem 0;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    display: flex;
    gap: 1.8rem;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 0.85rem 1.6rem;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(27, 46, 92, 0.08);
    white-space: nowrap;
    transition: var(--transition);
}

.partner-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.partner-card i {
    font-size: 1.2rem;
}

.partner-card span {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}

.partner-card small {
    background: rgba(217, 164, 65, 0.15);
    color: var(--navy);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Testimonials Carousel */
.testimonials {
    position: relative;
}

.testimonial-carousel-wrapper {
    position: relative;
    margin-top: 3.5rem;
    overflow: hidden;
    padding: 1rem 0.5rem 2rem;
}

.testimonial-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 2rem;
}

.test-card-slide {
    flex: 0 0 calc(33.333% - 1.34rem);
    min-width: 300px;
    background: var(--white);
    padding: 3rem 2.2rem 2.2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-slow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.test-card-slide:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 164, 65, 0.3);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    border: 1px solid rgba(27, 46, 92, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.carousel-arrow:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: scale(1.08);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(27, 46, 92, 0.2);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.carousel-dot.active {
    width: 28px;
    border-radius: 12px;
    background: var(--red);
}

/* Advisory & Founder Note */
.advisory-note {
    background: linear-gradient(135deg, var(--navy-dark) 0%, #0d172e 100%);
    color: var(--white);
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}

.advisory-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.advisory-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(217, 164, 65, 0.15);
    color: var(--gold);
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(217, 164, 65, 0.3);
}

.advisory-card h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.advisory-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.advisory-quote {
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(217, 164, 65, 0.95);
    border-left: 3px solid var(--gold);
    padding-left: 1.2rem;
    margin: 1.5rem 0;
}

.advisor-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.advisor-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Transparency Section */
.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.transparency-card {
    background: var(--white);
    padding: 2.2rem;
    border-radius: 16px;
    border-top: 4px solid var(--gold);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.doc-checklist {
    margin-top: 1rem;
}

.doc-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.doc-checklist i {
    color: var(--gold);
}

.author-details h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-details span {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, rgba(27, 46, 92, 0.95), rgba(17, 29, 58, 0.98)), url('https://images.pexels.com/photos/1438072/pexels-photo-1438072.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover fixed;
    padding: 6rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.cta-shadow {
    box-shadow: 0 10px 30px rgba(230, 51, 41, 0.5);
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--gold);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--navy);
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
}

.faq-item h3::before {
    content: '\f059';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    margin-right: 12px;
    font-size: 1.4rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 1.05rem;
    padding-left: 2rem;
}

.faq-item:hover h3::before {
    color: var(--navy);
}


/* Split Contact Section - Rebalanced */
.contact-split {
    padding-top: 6rem;
    padding-bottom: 8rem;
}

.relative-container {
    position: relative;
    z-index: 5;
}

.contact-card-layered {
    display: grid;
    grid-template-columns: 5fr 6fr;
    align-items: center;
    z-index: 5;
}

.contact-panel-dark {
    background: linear-gradient(145deg, var(--navy-dark), var(--navy));
    color: var(--white);
    padding: 4rem;
    border-radius: 20px;
    position: relative;
    z-index: 5;
    left: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-panel-dark h2 {
    font-size: 2.5rem;
}

.contact-info-list {
    margin-top: 2rem;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-info-list li a {
    color: var(--white);
    font-weight: 500;
}

.contact-info-list li a:hover {
    color: var(--gold);
}

.contact-info-list .info-icon {
    width: 45px;
    height: 45px;
    background: rgba(217, 164, 65, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-info-list li:hover .info-icon {
    background: var(--gold);
    color: var(--navy-dark);
    transform: scale(1.1);
}

.map-embedded iframe {
    border-radius: 12px;
    filter: grayscale(30%) contrast(1.1);
    transition: all 0.5s ease;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.map-embedded iframe:hover {
    filter: grayscale(0%);
}

.contact-form-layered {
    background: var(--white);
    padding: 4.5rem;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 6;
    right: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.1rem 1.25rem;
    border: 2px solid #eef1f6;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.05rem;
    background: #f8fafc;
    transition: var(--transition);
    color: var(--navy);
    font-weight: 500;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(217, 164, 65, 0.15);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B2E5C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 3rem;
}

/* Footer Multi-column */
.footer-rich {
    background: var(--navy-dark);
    color: #b8c4df;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.footer-rich::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.footer-grid-4 {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2.2fr 1.3fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-heading {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-list li {
    margin-bottom: 1rem;
}

.footer-list-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 1rem;
}

.footer-list-2col li {
    margin-bottom: 0.6rem;
}

.footer-list a {
    color: #b8c4df;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    margin-right: 0.8rem;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(217, 164, 65, 0.4);
}

.newsletter-form {
    position: relative;
}

.newsletter-input {
    display: flex;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.newsletter-input input {
    flex-grow: 1;
    padding: 1rem 1.2rem;
    border: none;
    border-radius: 6px 0 0 6px;
    outline: none;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: var(--transition);
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input input:focus {
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input button {
    border-radius: 0 6px 6px 0;
    border: none;
    padding: 0 1.5rem;
    background: var(--gold);
    color: var(--navy-dark);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-input button:hover {
    background: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    background: #0c1527;
    margin-top: 5rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background-color: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.floating-wa:hover {
    transform: scale(1.15) rotate(-10deg);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-in {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-float {
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Numbers */
.counter-value {
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .contact-card-layered {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-panel-dark {
        left: 0;
        border-radius: 20px 20px 0 0;
        padding: 4rem 3rem;
    }

    .contact-form-layered {
        right: 0;
        border-radius: 0 0 20px 20px;
        padding: 4rem 3rem;
        border-top: none;
    }

    .hero-content {
        gap: 3rem;
    }

    .about-grid {
        gap: 3rem;
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: 2;
        margin-top: 2rem;
    }

    .about-text {
        order: 1;
    }

    .bg-orb-1,
    .bg-orb-2 {
        display: none;
    }
}

@media (max-width: 900px) {
    .footer-grid-4 {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .hero-bg {
        display: none;
    }

    .hero-stripe-motif {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-float-card.bottom-left,
    .hero-float-card.top-right {
        position: relative;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;
        margin: 1.5rem auto;
        width: 85%;
        justify-content: flex-start;
        transform: none !important;
        animation: none;
    }

    .image-wrapper-hero {
        padding: 0;
        margin-top: 2rem;
    }

    .trust-avatars {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }

    /* Top Utility Bar Mobile Fix */
    .top-bar {
        padding: 0.35rem 0;
    }

    .top-bar-container {
        justify-content: center;
    }

    .top-bar-left {
        gap: 1.2rem;
        width: 100%;
        justify-content: center;
    }

    .top-bar-text {
        display: none !important;
    }

    .top-bar-right {
        display: none !important;
    }

    .top-bar-left a,
    .top-bar-left span {
        padding: 0.25rem 0.6rem;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        font-size: 0.85rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1.5rem 0;
        flex-direction: column;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        border-top: 1px solid #f0f0f0;
    }

    .nav-links.active {
        display: flex;
    }

    /* Mobile dropdown: accordion, no absolute popup */
    .dropdown-wrapper {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: rgba(27, 46, 92, 0.05);
        border-radius: 8px;
        padding: 0.25rem 0.5rem;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.35s ease, opacity 0.25s ease;
        left: auto;
        pointer-events: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-wrapper.open .dropdown-menu {
        max-height: 800px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .dropdown-item {
        justify-content: center;
        padding: 0.65rem 1rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .btn-nav {
        display: none;
    }

    .timeline-zigzag::before {
        left: 30px;
    }

    .step-num {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-step {
        flex-direction: column !important;
        align-items: flex-end;
        margin-bottom: 3rem;
    }

    .step-card {
        width: calc(100% - 80px);
        text-align: left !important;
        padding: 2rem;
    }

    .timeline-step:nth-child(even) .step-card::before,
    .timeline-step:nth-child(odd) .step-card::before {
        left: -12.5px;
        right: auto;
        border: 1px solid rgba(0, 0, 0, 0.03);
        border-right: none;
        border-top: none;
        box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.02);
    }

    .about-float-card {
        right: 10px;
        bottom: 10px;
        padding: 1.2rem;
    }

    .footer-grid-4 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Footer Bottom Bar Fix */
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 0.8rem;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .footer-nap {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
    }

    .footer-nap span {
        justify-content: center;
    }

    .contact-panel-dark,
    .contact-form-layered {
        padding: 3rem 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    /* Testimonials Carousel Mobile */
    .test-card-slide {
        flex: 0 0 100%;
        min-width: 0;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .test-card-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

/* ==========================================
   NEW INTERACTION PATTERNS & COMPONENTS
   ========================================== */

/* ── Item 2.A: Hero Trust Outcomes Card (Spacious & Clean) ── */
.hero-trust-outcomes {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(217, 164, 65, 0.4);
    border-radius: 16px;
    padding: 1.5rem 1.8rem;
    box-shadow: 0 12px 32px rgba(27, 46, 92, 0.08);
    max-width: 520px;
}

.trust-outcomes-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(27, 46, 92, 0.08);
}

.trust-outcomes-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.outcome-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--navy);
    line-height: 1.4;
}

.outcome-row img {
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

/* ── Item 2.B: Country Auto-Scrolling Marquee ── */
.country-marquee-section {
    padding: 1.8rem 0;
    overflow: hidden !important;
    position: relative;
    background: linear-gradient(135deg, #0d1730 0%, #1B2E5C 50%, #111d3a 100%);
    border-top: 2px solid rgba(217, 164, 65, 0.35);
    border-bottom: 2px solid rgba(217, 164, 65, 0.35);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 5;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.country-marquee-section::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.marquee-container {
    display: flex;
    overflow: hidden !important;
    user-select: none;
    width: 100%;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.marquee-container::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollMarquee 35s linear infinite;
    width: max-content;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.marquee-track::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.country-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.7rem 1.4rem;
    border-radius: 40px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.98rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.country-marquee-item:hover {
    background: rgba(217, 164, 65, 0.28);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(217, 164, 65, 0.25);
}

.country-marquee-item img {
    width: 26px;
    height: 18px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    flex-shrink: 0;
}

.country-marquee-item .country-name {
    font-weight: 700;
    color: var(--white);
}

.country-marquee-item small.text-gold {
    font-size: 0.82rem;
    opacity: 0.9;
    background: rgba(217, 164, 65, 0.15);
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 2px;
}

/* ── Item 3: Certification Strip Badges ── */
.certification-strip {
    background: #f8fafc;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.certification-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cert-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: var(--white);
    padding: 1rem 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(27, 46, 92, 0.08);
}

.cert-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ── Item 1: Scroll-Linked Animated Journey Pathway ── */
#journey-pathway-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

#journey-pathway-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.waypoint-marker {
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.4;
}

.waypoint-outer {
    transition: r 0.4s ease, stroke 0.4s ease, fill 0.4s ease;
}

.waypoint-inner {
    transition: r 0.4s ease, fill 0.4s ease;
}

.waypoint-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    fill: var(--navy);
    letter-spacing: 1.5px;
    opacity: 0.6;
    transition: opacity 0.4s ease, fill 0.4s ease;
}

.waypoint-marker.active {
    opacity: 1;
}

.waypoint-marker.active .waypoint-outer {
    r: 18px;
    stroke: var(--gold);
    fill: rgba(217, 164, 65, 0.15);
    filter: drop-shadow(0 0 8px rgba(217, 164, 65, 0.6));
}

.waypoint-marker.active .waypoint-inner {
    r: 8px;
    fill: var(--gold);
}

.waypoint-marker.active .waypoint-label {
    opacity: 1;
    fill: var(--red);
    font-weight: 800;
}

/* ── Item 4: Stacked Cards Process Section ── */
.stacked-cards-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 12vh;
    padding-bottom: 25vh;
}

.stacked-card {
    position: sticky;
    top: calc(110px + (var(--card-index) * 55px));
    z-index: calc(10 + var(--card-index));
    background: var(--white);
    border-radius: 20px;
    padding: 2.2rem 2.8rem;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.05), 0 20px 40px rgba(27, 46, 92, 0.12);
    border: 1px solid rgba(27, 46, 92, 0.12);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stacked-card:hover {
    box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.08), 0 25px 50px rgba(27, 46, 92, 0.18);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.stacked-card-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    min-width: 60px;
    text-align: center;
}

.stacked-card-body {
    flex-grow: 1;
    text-align: left;
}

.stacked-card-body h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stacked-card-body p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 0;
}

.stacked-card-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 0.45rem 1.2rem;
    border-radius: 30px;
    white-space: nowrap;
    background: rgba(27, 46, 92, 0.03);
    transition: var(--transition);
}

.stacked-card:hover .stacked-card-tag {
    background: var(--navy);
    color: var(--white);
}

@media (max-width: 768px) {
    .stacked-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 1.8rem 1.5rem;
        position: relative;
        top: auto !important;
    }

    .stacked-card-num {
        font-size: 2.4rem;
    }

    .stacked-card-tag {
        align-self: flex-start;
    }

    #journey-pathway-overlay {
        display: none;
    }
}

/* Accessibility: Respect Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        overflow-x: auto;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    .marquee-track::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    #journey-active-path {
        stroke-dashoffset: 0 !important;
        transition: none !important;
    }

    .waypoint-marker {
        opacity: 1 !important;
        transition: none !important;
    }

    .stacked-card {
        transition: none !important;
    }
}

/* ── Brand Logo Styles ── */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 4px 0;
}

.logo img {
    height: 75px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.03);
}

.logo-footer img {
    height: 70px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.98;
}

/* ─────────────────────────────────────────────────────────────
   DESTINATIONS DIRECTORY & DETAIL PAGE STYLES
   ───────────────────────────────────────────────────────────── */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .dest-grid {
        grid-template-columns: 1fr;
    }
}

.dest-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(27, 46, 92, 0.08);
    box-shadow: 0 10px 30px rgba(27, 46, 92, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
    position: relative;
    height: 100%;
}

.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(27, 46, 92, 0.14);
    border-color: rgba(217, 164, 65, 0.4);
}

.dest-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.dest-card:hover .dest-card-img-wrapper img {
    transform: scale(1.08);
}

.dest-flag-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dest-flag-badge img {
    width: 22px;
    height: 15px;
    border-radius: 3px;
    object-fit: cover;
}

.dest-tag-top {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--navy-dark);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(217, 164, 65, 0.3);
}

.dest-card-body {
    padding: 1.8rem 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dest-card-body h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
    font-weight: 800;
    line-height: 1.3;
}

.dest-card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.dest-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    padding: 0.9rem;
    background: rgba(27, 46, 92, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(27, 46, 92, 0.05);
}

.dest-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
}

.dest-stat-item i {
    color: var(--gold);
    font-size: 0.9rem;
}

.dest-card .btn {
    margin-top: auto;
    border-radius: 10px;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
}

/* Destination Detail Page Styles */
.destination-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1.8rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(27, 46, 92, 0.08);
    box-shadow: 0 15px 35px rgba(27, 46, 92, 0.08);
}

@media (max-width: 992px) {
    .destination-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .destination-stats-bar {
        grid-template-columns: 1fr;
    }
}

.dest-stat-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.dest-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(27, 46, 92, 0.06);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.dest-stat-icon.gold {
    background: rgba(217, 164, 65, 0.12);
    color: var(--gold);
}

.dest-stat-icon.red {
    background: rgba(230, 51, 41, 0.1);
    color: var(--red);
}

.dest-stat-info label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.dest-stat-info strong {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--navy);
}

.uni-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (max-width: 992px) {
    .uni-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.uni-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid rgba(27, 46, 92, 0.08);
    box-shadow: 0 10px 25px rgba(27, 46, 92, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.uni-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(27, 46, 92, 0.12);
    border-color: rgba(217, 164, 65, 0.3);
}

.uni-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.uni-badge {
    background: rgba(217, 164, 65, 0.15);
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: 20px;
}

.uni-card h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.uni-location {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.uni-courses {
    border-top: 1px solid rgba(27, 46, 92, 0.06);
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 0.88rem;
    color: var(--navy);
    font-weight: 600;
}