:root {
    --midnight: #070B1A;
    --deep-blue: #0A1D3F;
    --electric: #2F80FF;
    --cyan: #00D4FF;
    --platinum: #F5F7FA;
    --soft-gray: #AAB4C5;
    --gold: #D4AF37;
    --emerald: #1EE3A8;
    --teal: #1B8FA8;
    --glass-bg: rgba(10, 29, 63, 0.45);
    --glass-border: rgba(47, 128, 255, 0.25);
    --glow: 0 0 30px rgba(47, 128, 255, 0.35);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--midnight);
    color: var(--platinum);
    overflow-x: hidden;
    line-height: 1.7;
}

main {
    width: 100%;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Sora', sans-serif;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--midnight);
}

::-webkit-scrollbar-thumb {
    background: var(--electric);
    border-radius: 4px;
}

/* NAVBAR */
.navbar {
    background: transparent;
    padding: 1.2rem 0;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(7, 11, 26, 0.92) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(47, 128, 255, 0.2);
}

.navbar-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--platinum) !important;
    letter-spacing: 0.5px;
}

.navbar-brand img {
    width: 200px;
}

.navbar-brand span {
    color: var(--cyan);
}

.navbar-brand .brand-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    margin-left: 4px;
    animation: pulse-dot 2s infinite;
    vertical-align: middle;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.nav-link {
    color: var(--soft-gray) !important;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 0.4rem 1rem !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--platinum) !important;
}

.btn-nav {
    background: linear-gradient(135deg, var(--electric), var(--cyan));
    color: #fff !important;
    border-radius: 999px;
    padding: 0.45rem 1.4rem !important;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 0 18px rgba(47, 128, 255, 0.4);
    transition: box-shadow 0.3s, transform 0.2s;
}

.btn-nav:hover {
    box-shadow: 0 0 28px rgba(0, 212, 255, 0.55);
    transform: translateY(-1px);
}

.navbar-toggler {
    border-color: rgba(47, 128, 255, 0.4);
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* HERO */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.0);
}

.hero-slide:nth-child(1) {
    background-image: url('../images/hero/slide2.webp');
}

.hero-slide:nth-child(2) {
    background-image: url('../images/hero/slide1.webp');
}

.hero-slide:nth-child(3) {
    background-image: url('../images/hero/slide3.webp');
}

.hero-slide:nth-child(4) {
    background-image: url('https://images.unsplash.com/photo-1609340552905-4e49a3f87c59?w=1920&q=90');
}

.hero-slide:nth-child(5) {
    background-image: url('https://images.unsplash.com/photo-1541348263662-e068662d82af?w=1920&q=90');
}

.hero-overlay-base {
    display: none;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(7, 11, 26, 0.92) 0%,
            rgba(7, 11, 26, 0.80) 35%,
            rgba(7, 11, 26, 0.40) 60%,
            rgba(7, 11, 26, 0.00) 100%);
}

.hero-overlay-vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to bottom, rgba(7, 11, 26, 0.30) 0%, transparent 30%, transparent 65%, rgba(7, 11, 26, 0.95) 100%);
}

.hero-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    z-index: 4;
    background: linear-gradient(to bottom, rgba(7, 11, 26, 0.7) 0%, transparent 100%);
}

.hero-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: background 0.4s, width 0.4s;
    border: none;
    padding: 0;
}

.hero-dot.active {
    background: var(--cyan);
    width: 48px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.hero-slide-counter {
    position: absolute;
    bottom: 2.4rem;
    right: 2.5rem;
    z-index: 10;
    font-family: 'Sora', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 2px;
}

.hero-slide-counter span {
    color: var(--cyan);
}

.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-lines::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(90deg, rgba(47, 128, 255, 0.03) 0px, transparent 1px, transparent 80px);
}

.light-streak {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.6), transparent);
    animation: streak 4s ease-in-out infinite;
    opacity: 0;
}

.light-streak:nth-child(1) {
    top: 30%;
    width: 40%;
    left: -40%;
    animation-delay: 0s;
}

.light-streak:nth-child(2) {
    top: 55%;
    width: 30%;
    left: -30%;
    animation-delay: 1.5s;
}

.light-streak:nth-child(3) {
    top: 70%;
    width: 50%;
    left: -50%;
    animation-delay: 3s;
}

@keyframes streak {
    0% {
        left: -60%;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        left: 110%;
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(47, 128, 255, 0.12);
    border: 1px solid rgba(47, 128, 255, 0.3);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge .live-dot {
    width: 7px;
    height: 7px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.hero-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--platinum);
    margin-bottom: 1.5rem;
}

.hero-headline .gradient-word {
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--soft-gray);
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.btn-primary-cta {
    background: linear-gradient(135deg, var(--electric), var(--cyan));
    border: none;
    border-radius: 999px;
    padding: 0.85rem 2.2rem;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 0 30px rgba(47, 128, 255, 0.45), 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(0, 212, 255, 0.55), 0 12px 28px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 0.85rem 2.2rem;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--platinum);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-glass:hover {
    background: rgba(47, 128, 255, 0.15);
    border-color: rgba(47, 128, 255, 0.4);
    color: var(--platinum);
    transform: translateY(-2px);
}

.hero-glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), var(--glow);
    animation: float-card 5s ease-in-out infinite;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stat-pill {
    background: rgba(47, 128, 255, 0.1);
    border: 1px solid rgba(47, 128, 255, 0.2);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    text-align: center;
}

.stat-pill .stat-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cyan);
}

.stat-pill .stat-label {
    font-size: 0.7rem;
    color: var(--soft-gray);
    letter-spacing: 0.5px;
}

.fleet-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 227, 168, 0.1);
    border: 1px solid rgba(30, 227, 168, 0.25);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--emerald);
    margin-top: 1rem;
}

/* SECTIONS */
.section {
    padding: 7rem 0;
}

.section-alt {
    background: var(--deep-blue);
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--platinum);
    margin-bottom: 1rem;
}

.section-title .highlight {
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-body {
    font-size: 1rem;
    color: var(--soft-gray); 
    font-weight: 400; 
}

.divider-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    border-radius: 999px;
    margin-bottom: 1.2rem;
}

/* GLASS CARDS */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow), 0 20px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(47, 128, 255, 0.5);
}

.glass-card.gold-card {
    border-color: rgba(212, 175, 55, 0.3);
}

.glass-card.gold-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.service-icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.3rem;
    background: rgba(47, 128, 255, 0.12);
    border: 1px solid rgba(47, 128, 255, 0.2);
    transition: background 0.3s;
}

.glass-card:hover .service-icon-wrap {
    background: rgba(47, 128, 255, 0.22);
}

.gold-card .service-icon-wrap {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.25);
}

.service-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(47, 128, 255, 0.12);
    color: var(--cyan);
    display: inline-block;
    margin-bottom: 0.8rem;
}

.gold-tag {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.safe-tag {
    background: rgba(30, 227, 168, 0.1);
    color: var(--emerald);
}

/* VALUES */
.value-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--teal);
    background: rgba(27, 143, 168, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--platinum);
    letter-spacing: 1px;
    transition: all 0.3s;
    margin: 0 auto;
}

.value-circle:hover {
    background: rgba(27, 143, 168, 0.25);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(27, 143, 168, 0.4);
}

/* WHY US */
.metric-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.metric-card {
    background: rgba(10, 29, 63, 0.5);
    border: 1px solid rgba(47, 128, 255, 0.15);
    border-radius: 16px;
    padding: 1.6rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.metric-card:hover {
    border-color: rgba(47, 128, 255, 0.4);
    box-shadow: var(--glow);
}

.metric-icon {
    font-size: 1.8rem;
    color: var(--electric);
    flex-shrink: 0;
    margin-top: 2px;
}

.metric-number {
    font-family: 'Sora', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--platinum);
    line-height: 1;
}

.metric-label {
    font-size: 0.82rem;
    color: var(--soft-gray);
    margin-top: 2px;
}

.progress-bar-custom {
    height: 3px;
    background: rgba(47, 128, 255, 0.15);
    border-radius: 999px;
    margin-top: 0.7rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    border-radius: 999px;
    width: 0;
    transition: width 1.5s ease;
}

/* DIFFERENTIATORS */
.diff-card {
    background: rgba(10, 29, 63, 0.5);
    border: 1px solid rgba(47, 128, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.diff-card:hover {
    border-color: rgba(47, 128, 255, 0.45);
    box-shadow: var(--glow);
    transform: translateY(-5px);
}

.diff-num {
    font-family: 'Sora', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(47, 128, 255, 0.08);
    position: absolute;
    top: -10px;
    right: 15px;
    line-height: 1;
}

/* APP SECTION */
#app {
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

#app::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(47, 128, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.app-phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.app-phone-img {
    /* max-width: 260px; */
    filter: drop-shadow(0 20px 60px rgba(47, 128, 255, 0.35));
    animation: float-card 5s ease-in-out infinite;
}

.app-phone-img2 {
    max-width: 210px;
    position: absolute;
    top: 40px;
    right: 0;
    filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.2));
    animation: float-card 5s ease-in-out infinite 1.5s;
    opacity: 0.75;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(10, 29, 63, 0.6);
    border: 1px solid rgba(47, 128, 255, 0.18);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s, transform 0.3s;
}

.feature-chip:hover {
    border-color: rgba(47, 128, 255, 0.4);
    transform: translateX(5px);
}

.chip-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(47, 128, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--cyan);
    flex-shrink: 0;
}

.chip-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--platinum);
}

.chip-sub {
    font-size: 0.75rem;
    color: var(--soft-gray);
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 0.7rem 1.5rem;
    color: var(--platinum);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.store-btn:hover {
    background: rgba(47, 128, 255, 0.15);
    border-color: rgba(47, 128, 255, 0.4);
    color: var(--platinum);
}

.store-btn .store-name {
    font-weight: 700;
    display: block;
    font-size: 0.95rem;
}

/* TRAINING */
.training-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(47, 128, 255, 0.1);
}

.training-item:last-child {
    border-bottom: none;
}

.ti-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(27, 143, 168, 0.15);
    border: 1px solid rgba(27, 143, 168, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
    font-size: 1rem;
}

/* TRUST */
#trust {
    background: var(--deep-blue);
}

.trust-badge {
    background: rgba(7, 11, 26, 0.6);
    border: 1px solid rgba(47, 128, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.trust-badge:hover {
    border-color: rgba(47, 128, 255, 0.5);
    box-shadow: var(--glow);
    transform: translateY(-5px);
}

.trust-badge i {
    font-size: 2.2rem;
    color: var(--electric);
    display: block;
    margin-bottom: 0.8rem;
}

.trust-badge .tb-title {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.trust-badge .tb-sub {
    font-size: 0.78rem;
    color: var(--soft-gray);
}

.live-support-card {
    background: rgba(30, 227, 168, 0.06);
    border: 1px solid rgba(30, 227, 168, 0.2);
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.live-dot-lg {
    width: 12px;
    height: 12px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
    flex-shrink: 0;
}

/* PARTNERS */
#partners {
    background: var(--midnight);
}

.partner-logo {
    background: rgba(10, 29, 63, 0.4);
    border: 1px solid rgba(47, 128, 255, 0.1);
    border-radius: 14px;
    padding: 1.2rem 2rem;
    text-align: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(170, 180, 197, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.partner-logo:hover {
    color: var(--platinum);
    border-color: rgba(47, 128, 255, 0.35);
    box-shadow: var(--glow);
}

/* CONTACT */
#contact {
    background: var(--deep-blue);
}

.contact-card {
    background: rgba(7, 11, 26, 0.7);
    border: 1px solid rgba(47, 128, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.form-control-dark {
    background: rgba(47, 128, 255, 0.06) !important;
    border: 1px solid rgba(47, 128, 255, 0.2) !important;
    color: var(--platinum) !important;
    border-radius: 12px !important;
    padding: 0.85rem 1.2rem !important;
    font-size: 0.9rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control-dark:focus {
    border-color: rgba(47, 128, 255, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(47, 128, 255, 0.12) !important;
    background: rgba(47, 128, 255, 0.08) !important;
}

.form-control-dark::placeholder {
    color: var(--soft-gray) !important;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(47, 128, 255, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(47, 128, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--electric);
    flex-shrink: 0;
}

.ci-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--soft-gray);
}

.ci-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--platinum);
}

/* WHATSAPP FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fab-bounce 3s ease-in-out infinite;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes fab-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* FOOTER */
footer {
    background: #040712;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(47, 128, 255, 0.1);
}

.footer-link {
    color: var(--soft-gray);
    text-decoration: none;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--electric);
}

.footer-social {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(47, 128, 255, 0.1);
    border: 1px solid rgba(47, 128, 255, 0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-gray);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    margin-right: 8px;
}

.footer-social:hover {
    background: rgba(47, 128, 255, 0.25);
    border-color: var(--electric);
    color: var(--electric);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(35px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.neon-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--electric), var(--cyan), transparent);
    margin: 0;
    opacity: 0.4;
}

.map-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(47, 128, 255, 0.2);
    height: 300px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(0.85) hue-rotate(200deg) brightness(0.85);
}

@media (max-width: 768px) {
    .hero-glass-card {
        margin-top: 3rem;
    }

    .app-phone-img2 {
        display: none;
    }
}

/* ── VIDEO HERO ── */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Placeholder shown while no video src is supplied */
.hero-video-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #070B1A 0%, #0A1D3F 40%, #0d2b5e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 1;
}

.hero-video-placeholder i {
    font-size: 3.5rem;
    color: rgba(47, 128, 255, 0.35);
}

.hero-video-placeholder p {
    font-size: 0.8rem;
    color: rgba(170, 180, 197, 0.45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    max-width: 260px;
    line-height: 1.6;
}

/* overlay layers — same IDs as before */
.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(7, 11, 26, 0.92) 0%,
            rgba(7, 11, 26, 0.80) 35%,
            rgba(7, 11, 26, 0.40) 60%,
            rgba(7, 11, 26, 0.00) 100%);
}

.hero-overlay-vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(to bottom,
            rgba(7, 11, 26, 0.30) 0%,
            transparent 30%,
            transparent 65%,
            rgba(7, 11, 26, 0.95) 100%);
}

.hero-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 160px;
    z-index: 4;
    background: linear-gradient(to bottom, rgba(7, 11, 26, 0.7) 0%, transparent 100%);
}

.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.hero-lines::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            rgba(47, 128, 255, 0.03) 0px, transparent 1px, transparent 80px);
}

.light-streak {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.6), transparent);
    animation: streak 4s ease-in-out infinite;
    opacity: 0;
}

.light-streak:nth-child(1) {
    top: 30%;
    width: 40%;
    left: -40%;
    animation-delay: 0s;
}

.light-streak:nth-child(2) {
    top: 55%;
    width: 30%;
    left: -30%;
    animation-delay: 1.5s;
}

.light-streak:nth-child(3) {
    top: 70%;
    width: 50%;
    left: -50%;
    animation-delay: 3s;
}

@keyframes streak {
    0% {
        left: -60%;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        left: 110%;
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 6;
}

/* ── IMPACT / STATS SECTION ── */
.stats-section {
    background: var(--midnight);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, rgba(47, 128, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.stat-impact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
    height: 100%;
}

.stat-impact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow), 0 20px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(47, 128, 255, 0.5);
}

.stat-impact-num {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.4rem, 5vw, 2.6rem);
    font-weight: 800;
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.6rem;
}

.stat-impact-label {
    font-size: 0.88rem;
    color: var(--soft-gray);
    font-weight: 500;
}

/* ── FAQ SECTION ── */
.faq-section {
    background: var(--deep-blue);
    padding: 6rem 0;
}

.faq-item {
    background: rgba(7, 11, 26, 0.6);
    border: 1px solid rgba(47, 128, 255, 0.15);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(47, 128, 255, 0.35);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 1.8rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--platinum);
    gap: 1rem;
    user-select: none;
}

.faq-question i {
    color: var(--cyan);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.88rem;
    color: var(--soft-gray);
    line-height: 1.7;
    padding: 0 1.8rem;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.8rem 1.3rem;
}

/* ── MAP SECTION ── */
.map-section {
    background: var(--midnight);
    padding: 6rem 0;
}

.city-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(47, 128, 255, 0.1);
    border: 1px solid rgba(47, 128, 255, 0.25);
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cyan);
    transition: all 0.3s;
}

.city-chip:hover {
    background: rgba(47, 128, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 14px rgba(47, 128, 255, 0.3);
}

.oman-map-embed {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(47, 128, 255, 0.2);
    box-shadow: var(--glow), 0 20px 50px rgba(0, 0, 0, 0.35);
}

.oman-map-embed iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    filter: invert(0.88) hue-rotate(195deg) brightness(0.8) saturate(1.2);
}

/* HERO */
.hero {
    padding: 6rem 0 5rem;
    background: radial-gradient(ellipse 80% 60% at 60% 0%, rgba(47, 128, 255, 0.12) 0%, transparent 70%);
}

.hero-badge {
    display: inline-block;
    background: rgba(47, 128, 255, 0.12);
    border: 0.5px solid rgba(47, 128, 255, 0.35);
    color: var(--cyan);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.hero h1 .grad {
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.05rem;
    color: var(--soft-gray);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.btn-primary-mb {
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    color: #070B1A;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: opacity .2s;
}

.btn-primary-mb:hover {
    opacity: 0.88;
    color: #070B1A;
}

.btn-outline-mb {
    background: transparent;
    border: 0.5px solid var(--glass-border);
    color: var(--platinum);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: border-color .2s;
}

.btn-outline-mb:hover {
    border-color: var(--electric);
    color: var(--platinum);
}

.hero-stat-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.hero-stat {}

.hero-stat .num {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .lbl {
    font-size: 0.78rem;
    color: var(--soft-gray);
    letter-spacing: 0.5px;
    margin-top: -4px;
}

.hero-img-card {
    background: var(--glass-bg);
    border: 0.5px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.hero-icon-big {
    font-size: 5rem;
    color: var(--electric);
    margin-bottom: 1rem;
    display: block;
}

/* GLASS CARD */
.glass-card {
    background: var(--glass-bg);
    border: 0.5px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.6rem;
    height: 100%;
    transition: border-color .25s;
}

.glass-card:hover {
    border-color: rgba(47, 128, 255, 0.5);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.icon-blue {
    background: rgba(47, 128, 255, 0.14);
    color: var(--electric);
}

.icon-cyan {
    background: rgba(0, 212, 255, 0.12);
    color: var(--cyan);
}

.icon-emerald {
    background: rgba(30, 227, 168, 0.12);
    color: var(--emerald);
}

.icon-gold {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.card-title-sm {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 0.4rem;
}

.card-body-text {
    font-size: 0.88rem;
    color: var(--soft-gray);
    line-height: 1.65;
    margin: 0;
}

/* SECTION HELPERS */
.section-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.7rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--platinum);
    margin-bottom: 1rem;
}

.section-title .grad {
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-body {
    font-size: 0.95rem;
    color: var(--soft-gray);
    line-height: 1.75;
    max-width: 540px;
}

section {
    padding: 5rem 0;
}

/* HOW IT WORKS */
.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric), var(--cyan));
    color: #070B1A;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.2rem;
}

.step-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 0.3rem;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--soft-gray);
    margin: 0;
    line-height: 1.6;
}

/* PRICING */
.price-card {
    background: var(--glass-bg);
    border: 0.5px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: border-color .25s;
}

.price-card.featured {
    border-color: var(--electric);
    border-width: 1.5px;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    color: #070B1A;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.price-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 0.3rem;
}

.price-card .price-val {
    font-size: 2.2rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    color: var(--platinum);
    margin: 0.8rem 0;
}

.price-card .price-val span {
    font-size: 0.9rem;
    color: var(--soft-gray);
    font-weight: 400;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.8rem;
}

.price-features li {
    font-size: 0.87rem;
    color: var(--soft-gray);
    padding: 0.45rem 0;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.price-features li i {
    color: var(--emerald);
    font-size: 16px;
    flex-shrink: 0;
}

/* TESTIMONIAL */
.testimonial-card {
    background: var(--glass-bg);
    border: 0.5px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.quote-mark {
    font-size: 4rem;
    line-height: 1;
    color: var(--electric);
    opacity: 0.4;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: var(--platinum);
    font-style: italic;
    line-height: 1.8;
    margin: 0.5rem 0 1.5rem;
}

.testimonial-card .author {
    font-size: 0.88rem;
    color: var(--cyan);
    font-weight: 700;
}

.testimonial-card .role {
    font-size: 0.82rem;
    color: var(--soft-gray);
}

/* CONTACT FORM */
.form-card {
    background: var(--glass-bg);
    border: 0.5px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--soft-gray);
    margin-bottom: 0.4rem;
}

.form-control,
.form-select {
    background: rgba(10, 29, 63, 0.6);
    border: 0.5px solid var(--glass-border);
    color: var(--platinum);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
}

.form-control:focus,
.form-select:focus {
    background: rgba(10, 29, 63, 0.8);
    border-color: var(--electric);
    box-shadow: 0 0 0 3px rgba(47, 128, 255, 0.15);
    color: var(--platinum);
}

.form-control::placeholder {
    color: rgba(170, 180, 197, 0.5);
}

.form-select option {
    background: #0A1D3F;
    color: var(--platinum);
}

.gov-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(47, 128, 255, 0.1) 0%, transparent 70%);
}

.gov-hero__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.8rem;
    display: block;
}

.gov-hero__h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.gov-hero__h1 .grad {
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gov-hero__sub {
    font-size: 1rem;
    color: var(--soft-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.78;
}

/* SECTION */
.gov-section {
    padding: 5rem 0;
}

.gov-section--alt {
    background: rgba(10, 29, 63, 0.2);
}

.gov-section__label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.7rem;
    display: block;
}

.gov-section__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 1rem;
}

.gov-section__title .grad {
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gov-section__body {
    font-size: 0.95rem;
    color: var(--soft-gray);
    line-height: 1.75;
}

/* VMV CARDS */
.gov-card {
    background: var(--glass-bg);
    border: 0.5px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.8rem;
    height: 100%;
    transition: border-color .25s, transform .25s;
}

.gov-card:hover {
    border-color: rgba(47, 128, 255, 0.55);
    transform: translateY(-3px);
}

.gov-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 1rem;
}

.gov-icon--blue {
    background: rgba(47, 128, 255, 0.14);
    color: var(--electric);
}

.gov-icon--cyan {
    background: rgba(0, 212, 255, 0.12);
    color: var(--cyan);
}

.gov-icon--emerald {
    background: rgba(30, 227, 168, 0.12);
    color: var(--emerald);
}

.gov-icon--gold {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.gov-card__title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 0.5rem;
}

.gov-card__body {
    font-size: 0.88rem;
    color: var(--soft-gray);
    line-height: 1.65;
    margin: 0;
}

/* VALUES LIST */
.gov-values {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.gov-values li {
    background: rgba(47, 128, 255, 0.1);
    border: 0.5px solid rgba(47, 128, 255, 0.28);
    color: var(--soft-gray);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.gov-values li i {
    color: var(--emerald);
    font-size: 14px;
}

/* PERSON CARD */
.gov-person {
    background: var(--glass-bg);
    border: 0.5px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.8rem;
    height: 100%;
    transition: border-color .25s;
}

.gov-person:hover {
    border-color: rgba(47, 128, 255, 0.45);
}

.gov-person__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--electric), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #070B1A;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.gov-person__avatar img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 50%;
}

.gov-person__role {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.3rem;
    display: block;
}

.gov-person__name {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 0.7rem;
}

.gov-person__bio {
    font-size: 0.85rem;
    color: var(--soft-gray);
    line-height: 1.65;
    margin: 0;
}

/* DIVIDER */
.gov-divider {
    border: none;
    border-top: 0.5px solid var(--glass-border);
    margin: 0;
}

/* FOOTER */
.gov-footer {
    background: #050810;
    border-top: 0.5px solid var(--glass-border);
    padding: 2rem 0;
    text-align: center;
}

.gov-footer p {
    font-size: 0.82rem;
    color: var(--soft-gray);
    margin: 0;
}

@media (max-width: 767px) {
    .gov-hero {
        padding: 6rem 0 3rem;
    }

    .gov-section {
        padding: 3.5rem 0;
    }
}


.legal-hero {
    position: relative;
    padding:150px 0px 50px !important;
    background: linear-gradient(160deg, rgba(0, 212, 255, 0.07) 0%, var(--midnight) 60%);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.legal-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 50% at 75% 50%, rgba(0, 212, 255, 0.1), transparent);
    pointer-events: none;
}

.legal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.legal-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.legal-hero .meta {
    font-size: 0.82rem;
    color: var(--soft-gray);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 1.4rem;
}

.legal-hero .meta i {
    color: var(--cyan);
}

/* Layout */
.legal-content {
    padding: 80px 0 100px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    align-items: start;
}

/* TOC */
.toc-sidebar {
    position: sticky;
    top: 100px;
}

.toc-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--electric);
    margin-bottom: 1.2rem;
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 4px;
}

.toc-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--soft-gray);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.toc-list a i {
    font-size: 0.9rem;
    opacity: 0.7;
}

.toc-list a:hover {
    color: var(--platinum);
    background: var(--glass-bg);
    border-color: var(--glass-border);
}

.toc-list a.active {
    color: var(--cyan);
    background: rgba(0, 212, 255, 0.07);
    border-color: rgba(0, 212, 255, 0.25);
}

/* Sections */
.policy-section {
    margin-bottom: 64px;
    scroll-margin-top: 100px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.policy-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.icon-blue {
    background: rgba(47, 128, 255, 0.15);
    color: var(--electric);
}

.icon-cyan {
    background: rgba(0, 212, 255, 0.12);
    color: var(--cyan);
}

.icon-green {
    background: rgba(30, 227, 168, 0.12);
    color: var(--emerald);
}

.icon-gold {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.icon-teal {
    background: rgba(27, 143, 168, 0.15);
    color: var(--teal);
}

.policy-section-header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--platinum);
}

.intro-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 28px;
}

.intro-box p {
    color: var(--soft-gray);
    font-size: 0.97rem;
    line-height: 1.75;
}

/* Data table layout */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 4px;
}

.data-table th {
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--electric);
    padding: 10px 16px;
    border-bottom: 1px solid var(--glass-border);
}

.data-table td {
    padding: 14px 16px;
    font-size: 0.875rem;
    color: var(--soft-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: top;
    line-height: 1.6;
}

.data-table td:first-child {
    color: var(--platinum);
    font-weight: 600;
    white-space: nowrap;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: rgba(47, 128, 255, 0.04);
}

.table-wrap {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.table-head-label {
    padding: 14px 16px 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
}

/* Tag pills for data types */
.pill {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    margin: 2px 2px 2px 0;
}

.pill-blue {
    background: rgba(47, 128, 255, 0.15);
    color: var(--electric);
}

.pill-cyan {
    background: rgba(0, 212, 255, 0.12);
    color: var(--cyan);
}

.pill-green {
    background: rgba(30, 227, 168, 0.12);
    color: var(--emerald);
}

.pill-gold {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

/* Two-col cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.policy-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.policy-card:hover {
    border-color: rgba(47, 128, 255, 0.55);
    box-shadow: var(--glow);
}

.card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.card-head h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--platinum);
}

.item-list {
    list-style: none;
}

.item-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--soft-gray);
    line-height: 1.6;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.item-list li:last-child {
    border-bottom: none;
}

.item-list li i {
    color: var(--electric);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.78rem;
}

/* Location highlight row */
.location-banner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.loc-stat {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    transition: border-color 0.2s;
}

.loc-stat:hover {
    border-color: rgba(0, 212, 255, 0.4);
}

.loc-stat i {
    font-size: 1.5rem;
    color: var(--cyan);
    margin-bottom: 10px;
    display: block;
}

.loc-stat h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 4px;
}

.loc-stat p {
    font-size: 0.8rem;
    color: var(--soft-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .toc-sidebar {
        position: static;
    }

    .location-banner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .location-banner {
        grid-template-columns: 1fr;
    }

    .legal-hero {
        padding: 90px 0 60px;
    }

    .data-table td:first-child {
        white-space: normal;
    }
}

/* Incident table */
.incident-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 8px;
}

.incident-card {
    background: rgba(10, 29, 63, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 20px;
    transition: border-color 0.2s;
}

.incident-card:hover {
    border-color: rgba(47, 128, 255, 0.5);
}

.incident-num {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 8px;
}

.incident-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 6px;
}

.incident-card p {
    font-size: 0.825rem;
    color: var(--soft-gray);
    line-height: 1.55;
}

/* ESG rows */
.esg-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.esg-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 22px;
    transition: border-color 0.2s;
}

.esg-item:hover {
    border-color: rgba(30, 227, 168, 0.45);
}

.esg-item-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.esg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-emerald {
    background: var(--emerald);
    box-shadow: 0 0 8px var(--emerald);
}

.dot-electric {
    background: var(--electric);
    box-shadow: 0 0 8px var(--electric);
}

.dot-gold {
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
}

.dot-teal {
    background: var(--teal);
    box-shadow: 0 0 8px var(--teal);
}

.esg-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--platinum);
}

/* ── Container ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .toc-sidebar {
        position: static;
    }

    .esg-block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .card-grid {
        grid-template-columns: 1fr;
    }

    .incident-grid {
        grid-template-columns: 1fr 1fr;
    }

    .legal-hero {
        padding: 90px 0 60px;
    }
}

.hero1 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Carousel backdrop */
.hero-carousel1 {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-carousel1 .carousel,
.hero-carousel .carousel-inner,
.hero-carousel1 .carousel-item {
    height: 100%;
}

.hero-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Placeholder gradient slides (swap with real images) */
.slide-1 {
    background: linear-gradient(135deg, #0d1b3e 0%, #1a3a6e 40%, #0e2355 100%);
}

.slide-2 {
    background: linear-gradient(135deg, #0a2a1e 0%, #1a4a35 40%, #0d3a2a 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #2a1a0d 0%, #4a3a1a 40%, #3a2a10 100%);
}

.slide-4 {
    background: linear-gradient(135deg, #1a0d2a 0%, #3a1a4a 40%, #2a0d3a 100%);
}

/* Each slide has a person silhouette placeholder */
.slide-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 8% 0 0;
}

.slide-visual img {
    height: 85%;
    object-fit: cover;
    object-position: top;
    border-radius: 0;
    opacity: 0.6;
    filter: saturate(0.8);
}

/* Slide placeholder icon (shown when no real image) */
.slide-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 380px;
    height: 80%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 5rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg,
            rgba(7, 11, 26, 0.97) 0%,
            rgba(7, 11, 26, 0.88) 45%,
            rgba(7, 11, 26, 0.35) 75%,
            rgba(7, 11, 26, 0.15) 100%);
}

.hero-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    height: 180px;
    background: linear-gradient(to top, var(--midnight), transparent);
}

.hero-content1 {
    position: relative;
    z-index: 3;
    padding: 50px 20px 0px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
}

.hero-badge i {
    font-size: 0.85rem;
    color: var(--emerald);
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-title .grad {
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--soft-gray);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, var(--electric), #1a6aff);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(47, 128, 255, 0.35);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(47, 128, 255, 0.5);
    color: #fff;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    color: var(--platinum);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-outline-custom:hover {
    border-color: var(--electric);
    color: var(--cyan);
}

/* Hero stats row */
.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric);
    font-size: 1rem;
}

.hero-stat-val {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    color: var(--platinum);
    line-height: 1.1;
}

.hero-stat-lbl {
    font-size: 0.75rem;
    color: var(--soft-gray);
}

/* Carousel dots override */
.carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
}

.carousel-indicators .active {
    background-color: var(--electric);
}

/* ══════════════════════════════
       SERVICES
    ══════════════════════════════ */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--midnight) 0%, rgba(10, 29, 63, 0.15) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.service-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 32px 28px;
    text-decoration: none;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    overflow: hidden;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    border-color: rgba(47, 128, 255, 0.55);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.855rem;
    color: var(--soft-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--electric);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-link i {
    transition: transform 0.2s;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

.service-card-corner {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 5rem;
    opacity: 0.04;
    color: var(--electric);
    pointer-events: none;
}

.si-blue {
    background: rgba(47, 128, 255, 0.15);
    color: var(--electric);
}

.si-cyan {
    background: rgba(0, 212, 255, 0.12);
    color: var(--cyan);
}

.si-green {
    background: rgba(30, 227, 168, 0.12);
    color: var(--emerald);
}

.si-gold {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.si-teal {
    background: rgba(27, 143, 168, 0.15);
    color: var(--teal);
}

.si-pink {
    background: rgba(255, 100, 200, 0.1);
    color: #ff80d5;
}

/* ══════════════════════════════
       WHY CHOOSE US
    ══════════════════════════════ */
.why-section {
    padding: 100px 0;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(47, 128, 255, 0.05), transparent);
    pointer-events: none;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-visual {
    position: relative;
}

.why-main-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
}

.why-main-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--electric), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 32px rgba(47, 128, 255, 0.4);
}

.why-main-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 8px;
}

.why-main-card p {
    font-size: 0.875rem;
    color: var(--soft-gray);
    line-height: 1.65;
}

.why-float-stat {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-float-stat i {
    font-size: 1.3rem;
}

.why-float-stat .val {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
}

.why-float-stat .lbl {
    font-size: 0.72rem;
    color: var(--soft-gray);
}

.stat-tl {
    top: -24px;
    left: -24px;
}

.stat-br {
    bottom: -24px;
    right: -24px;
}

/* Feature list */
.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 18px;
    transition: border-color 0.2s;
}

.feature-item:hover {
    border-color: rgba(47, 128, 255, 0.5);
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.feature-item h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 0.78rem;
    color: var(--soft-gray);
    line-height: 1.5;
}

/* ══════════════════════════════
       RIGHTS & RESPONSIBILITIES
    ══════════════════════════════ */
.rights-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 29, 63, 0.12) 0%, var(--midnight) 100%);
}

.rights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.rights-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
}

.rights-panel-head {
    padding: 28px 32px 24px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.rights-head-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.rights-panel-head h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 2px;
}

.rights-panel-head p {
    font-size: 0.8rem;
    color: var(--soft-gray);
}

.rights-panel-body {
    padding: 20px 32px 28px;
}

.rights-list {
    list-style: none;
}

.rights-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.88rem;
    color: var(--soft-gray);
    line-height: 1.6;
}

.rights-list li:last-child {
    border-bottom: none;
}

.rights-list li i {
    flex-shrink: 0;
    margin-top: 3px;
    font-size: 0.8rem;
}

.icon-check {
    color: var(--emerald);
}

.icon-resp {
    color: var(--electric);
}

/* ══════════════════════════════
       DOWNLOAD CTA
    ══════════════════════════════ */
.download-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 20% 50%, rgba(47, 128, 255, 0.12), transparent),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(0, 212, 255, 0.08), transparent);
    pointer-events: none;
}

.download-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 64px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--electric), var(--cyan), var(--emerald));
}

.download-card::after {
    content: '\f1e6';
    font-family: 'bootstrap-icons';
    position: absolute;
    bottom: -20px;
    right: 40px;
    font-size: 12rem;
    opacity: 0.04;
    color: var(--electric);
    line-height: 1;
    pointer-events: none;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 227, 168, 0.1);
    border: 1px solid rgba(30, 227, 168, 0.25);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 1.6rem;
}

.download-card h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--platinum);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.download-card p {
    font-size: 1rem;
    color: var(--soft-gray);
    max-width: 480px;
    margin: 0 auto 2.4rem;
    line-height: 1.7;
}

.store-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 14px 24px;
    text-decoration: none;
    color: var(--platinum);
    transition: all 0.25s ease;
}

.store-btn:hover {
    background: rgba(47, 128, 255, 0.15);
    border-color: var(--electric);
    color: var(--platinum);
    transform: translateY(-2px);
}

.store-btn i {
    font-size: 1.8rem;
}

.store-btn-text {
    text-align: left;
}

.store-btn-text small {
    font-size: 0.68rem;
    color: var(--soft-gray);
    display: block;
    letter-spacing: 1px;
}

.store-btn-text strong {
    font-size: 0.95rem;
    font-family: 'Sora', sans-serif;
}

.app-features {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--soft-gray);
}

.app-feat i {
    color: var(--emerald);
    font-size: 0.85rem;
}

/* ══════════════════════════════
       GENERIC UTILS
    ══════════════════════════════ */
.section-header-centered {
    text-align: center;
}

.section-header-centered .section-body {
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .download-card {
        padding: 40px 24px;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        gap: 20px;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── HERO ── */
.about-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}

.about-hero .hero-bg {
    position: absolute;
    inset: 0;
    background: url('team-photo.jpg') center center / cover no-repeat;
    filter: brightness(0.35) saturate(0.7);
    z-index: 0;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.about-hero:hover .hero-bg {
    transform: scale(1);
}

.about-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(7, 11, 26, 0.1) 0%,
            rgba(7, 11, 26, 0.55) 50%,
            rgba(7, 11, 26, 0.98) 100%);
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
}

.hero-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 1.4rem;
}

.hero-year-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 10px var(--emerald);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-headline {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.4rem;
}

.hero-subtext {
    font-size: 1.05rem;
    color: var(--soft-gray);
    max-width: 600px;
    line-height: 1.8;
}

.hero-stat-row {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.4rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .num {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-stat .lbl {
    font-size: 0.75rem;
    color: var(--soft-gray);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.hero-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
    align-self: center;
}

/* ── STORY SECTION ── */
.story-section {
    padding: 100px 0;
}

.story-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.story-img-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.story-img-wrapper .img-accent {
    position: absolute;
    bottom: -1px;
    left: -1px;
    right: -1px;
    height: 50%;
    background: linear-gradient(to top, var(--midnight), transparent);
}

.story-img-wrapper .est-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
}

.est-badge .est-year {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.est-badge .est-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--soft-gray);
    margin-top: 4px;
}

/* ── VMV CARDS ── */
.vmv-section {
    padding: 0 0 100px;
}

.vmv-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 36px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
}

.vmv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.vmv-card.vision::before {
    background: linear-gradient(90deg, var(--electric), var(--cyan));
}

.vmv-card.mission::before {
    background: linear-gradient(90deg, var(--gold), #f0c96a);
}

.vmv-card.values::before {
    background: linear-gradient(90deg, var(--emerald), var(--teal));
}

.vmv-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.vmv-card.vision .vmv-icon {
    background: rgba(47, 128, 255, 0.12);
    color: var(--cyan);
}

.vmv-card.mission .vmv-icon {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.vmv-card.values .vmv-icon {
    background: rgba(30, 227, 168, 0.12);
    color: var(--emerald);
}

.vmv-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.vmv-card p {
    font-size: 0.95rem;
    color: var(--soft-gray);
    line-height: 1.75;
}

/* ── VALUES GRID ── */
.values-section {
    padding: 0 0 100px;
}

.values-header {
    margin-bottom: 56px;
}

.value-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px 26px;
    height: 100%;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-item:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 128, 255, 0.5);
}

.value-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: rgba(47, 128, 255, 0.1);
    color: var(--electric);
}

.value-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--platinum);
}

.value-text p {
    font-size: 0.88rem;
    color: var(--soft-gray);
    line-height: 1.65;
}

/* ── LEADERSHIP ── */
.leadership-section {
    padding: 0 0 100px;
}

.leadership-header {
    margin-bottom: 56px;
}

.leader-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
}

.leader-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--deep-blue), var(--midnight));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-gray);
    font-size: 4rem;
}
.leader-photo img{
     width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 999;
}

 

.leader-info {
    padding: 24px;
}

.leader-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 4px;
}

.leader-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cyan);
}

.leader-team-note {
    margin-top: 48px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.leader-team-note i {
    font-size: 2rem;
    color: var(--electric);
    flex-shrink: 0;
}

.leader-team-note p {
    font-size: 0.95rem;
    color: var(--soft-gray);
    margin: 0;
}

/* ── FORWARD SECTION ── */
.forward-section {
    padding: 0 0 120px;
}

.forward-card {
    background: linear-gradient(135deg, rgba(47, 128, 255, 0.12), rgba(0, 212, 255, 0.06));
    border: 1px solid rgba(47, 128, 255, 0.35);
    border-radius: 24px;
    padding: 72px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.forward-card::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 128, 255, 0.12), transparent 70%);
    pointer-events: none;
}

.forward-card .section-title {
    margin-bottom: 1.2rem;
}

.forward-card .section-body {
    margin: 0 auto 2rem;
    text-align: center;
}

.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--electric), var(--cyan));
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary-glow:hover {
    opacity: 0.88;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(47, 128, 255, 0.45);
    color: #fff;
}

/* responsive tweaks */
@media (max-width: 767px) {
    .about-hero {
        min-height: 100svh;
        padding-bottom: 60px;
    }

    .hero-stat-row {
        gap: 1rem;
    }

    .hero-divider {
        display: none;
    }

    .forward-card {
        padding: 48px 28px;
    }
}

/* ── HERO ── */
.ir-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(47, 128, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 128, 255, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(47, 128, 255, 0.14), transparent 65%);
}

.orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08), transparent 65%);
}

.ir-hero .hero-content {
    position: relative;
    z-index: 1;
}

.invest-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

.invest-badge i {
    font-size: 0.85rem;
}

.hero-headline {
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.4rem;
}

.hero-subtext {
    font-size: 1.05rem;
    color: var(--soft-gray);
    max-width: 580px;
    line-height: 1.8;
    margin-bottom: 2.4rem;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--gold), #f0c96a);
    color: var(--midnight);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: opacity 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-gold:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
    color: var(--midnight);
}

.btn-outline-ir {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--platinum);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s;
}

.btn-outline-ir:hover {
    background: var(--glass-bg);
    border-color: var(--electric);
    color: var(--platinum);
}

/* hero stat ticker */
.hero-tickers {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 3rem;
}

.ticker {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    min-width: 130px;
}

.ticker .t-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.ticker .t-num.gold {
    color: var(--gold);
}

.ticker .t-num.cyan {
    color: var(--cyan);
}

.ticker .t-num.emerald {
    color: var(--emerald);
}

.ticker .t-num.electric {
    color: var(--electric);
}

.ticker .t-lbl {
    font-size: 0.72rem;
    color: var(--soft-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* section spacing */
.ir-section {
    padding: 100px 0;
}

.ir-section+.ir-section {
    padding-top: 0;
}

/* ── EXEC SUMMARY TABLE ── */
.exec-table-wrap {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
}

.exec-table {
    width: 100%;
    border-collapse: collapse;
}

.exec-table thead th {
    background: rgba(47, 128, 255, 0.12);
    padding: 14px 24px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cyan);
    text-align: left;
}

.exec-table tbody td {
    padding: 16px 24px;
    font-size: 0.95rem;
    color: var(--soft-gray);
    border-top: 1px solid rgba(47, 128, 255, 0.1);
}

.exec-table tbody td:first-child {
    color: var(--platinum);
    font-weight: 600;
}

.exec-table tbody td .val {
    color: var(--emerald);
    font-weight: 700;
    font-family: 'Sora', sans-serif;
}

.exec-table tbody tr:hover td {
    background: rgba(47, 128, 255, 0.05);
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(47, 128, 255, 0.1);
    font-size: 0.95rem;
    color: var(--soft-gray);
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li i {
    color: var(--emerald);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ── MARKET FUNNEL ── */
.funnel-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.funnel-tier {
    width: 100%;
    text-align: center;
    border-radius: 14px;
    padding: 22px 20px;
    position: relative;
    transition: transform 0.3s;
}

.funnel-tier:hover {
    transform: scale(1.02);
}

.funnel-tier.f1 {
    background: rgba(47, 128, 255, 0.15);
    border: 1px solid rgba(47, 128, 255, 0.35);
}

.funnel-tier.f2 {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    width: 84%;
}

.funnel-tier.f3 {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    width: 68%;
}

.funnel-tier .f-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}

.f1 .f-label {
    color: var(--electric);
}

.f2 .f-label {
    color: var(--cyan);
}

.f3 .f-label {
    color: var(--gold);
}

.funnel-tier .f-amount {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--platinum);
}

.funnel-tier .f-sub {
    font-size: 0.78rem;
    color: var(--soft-gray);
    margin-top: 2px;
}

.funnel-arrow {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--electric), var(--cyan));
    margin: 0 auto;
    position: relative;
}

.funnel-arrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid var(--cyan);
}

/* ── GROWTH MOMENTUM ── */
.growth-before-after {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-bottom: 40px;
}

.ba-col {
    flex: 1;
    padding: 32px 28px;
}

.ba-col.before {
    background: rgba(10, 29, 63, 0.7);
}

.ba-col.after {
    background: rgba(47, 128, 255, 0.1);
}

.ba-col .ba-label {
    font-size: 0.68rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
}

.before .ba-label {
    color: var(--soft-gray);
}

.after .ba-label {
    color: var(--cyan);
}

.ba-divider {
    width: 1px;
    background: var(--glass-border);
}

.ba-metric {
    margin-bottom: 1rem;
}

.ba-metric .ba-metric-name {
    font-size: 0.78rem;
    color: var(--soft-gray);
    margin-bottom: 4px;
}

.ba-metric .ba-metric-val {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--platinum);
    line-height: 1;
}

.after .ba-metric .ba-metric-val {
    color: var(--emerald);
}

.growth-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(30, 227, 168, 0.12);
    border: 1px solid rgba(30, 227, 168, 0.3);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--emerald);
    margin-top: 8px;
}

/* ride chart */
.ride-chart-wrap {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
}

.ride-chart-title {
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--soft-gray);
    margin-bottom: 24px;
}

.ride-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 160px;
}

.bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    height: 100%;
    justify-content: flex-end;
}

.bar-group .bar-val {
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--platinum);
}

.bar-group .bar {
    width: 100%;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(to top, var(--electric), var(--cyan));
    transition: opacity 0.25s;
    position: relative;
}

.bar-group:first-child .bar {
    background: linear-gradient(to top, rgba(47, 128, 255, 0.4), rgba(47, 128, 255, 0.6));
}

.bar-group .bar-lbl {
    font-size: 0.68rem;
    color: var(--soft-gray);
    white-space: nowrap;
}

.launch-tag {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--midnight);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ── STRATEGIC POSITIONING ── */
.pillar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pillar-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px 26px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.pillar-card.tech::before {
    background: linear-gradient(90deg, var(--electric), var(--cyan));
}

.pillar-card.tourism::before {
    background: linear-gradient(90deg, var(--emerald), var(--teal));
}

.pillar-card.safety::before {
    background: linear-gradient(90deg, #a855f7, #7c3aed);
}

.pillar-card.growth::before {
    background: linear-gradient(90deg, var(--gold), #f0c96a);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.tech .pillar-icon {
    background: rgba(47, 128, 255, 0.12);
    color: var(--cyan);
}

.tourism .pillar-icon {
    background: rgba(30, 227, 168, 0.1);
    color: var(--emerald);
}

.safety .pillar-icon {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.growth .pillar-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.pillar-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.pillar-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pillar-card ul li {
    font-size: 0.88rem;
    color: var(--soft-gray);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pillar-card ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--electric);
    flex-shrink: 0;
}

.tech ul li::before {
    background: var(--cyan);
}

.tourism ul li::before {
    background: var(--emerald);
}

.safety ul li::before {
    background: #a855f7;
}

.growth ul li::before {
    background: var(--gold);
}

/* ── NATIONAL FOOTPRINT ── */
.footprint-section {
    padding: 0 0 100px;
}

.footprint-map {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px;
    height: 100%;
}

/* SVG map of Oman embedded */
.oman-map-svg {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(47, 128, 255, 0.1);
    font-size: 0.95rem;
    font-weight: 600;
}

.city-list li:last-child {
    border-bottom: none;
}

.city-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--electric);
    box-shadow: 0 0 8px var(--electric);
    flex-shrink: 0;
}

.footprint-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.fp-stat {
    background: rgba(47, 128, 255, 0.08);
    border: 1px solid rgba(47, 128, 255, 0.2);
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.fp-stat .fp-num {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cyan);
}

.fp-stat .fp-lbl {
    font-size: 0.72rem;
    color: var(--soft-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* ── INVESTMENT HIGHLIGHTS ── */
.invest-section {
    padding: 0 0 100px;
}

.inv-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 26px 24px;
    height: 100%;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.3s, border-color 0.3s;
}

.inv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
}

.inv-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.inv-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--platinum);
}

.inv-text p {
    font-size: 0.84rem;
    color: var(--soft-gray);
    line-height: 1.6;
}

/* ── ROADMAP ── */
.roadmap-section {
    padding: 0 0 120px;
}

.roadmap-track {
    position: relative;
    padding-top: 32px;
}

.roadmap-track::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(75% - 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--electric), var(--cyan), var(--emerald), var(--gold));
}

.roadmap-nodes {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.roadmap-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rn-dot-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.rn-dot-wrap.y2024 {
    background: rgba(47, 128, 255, 0.2);
    border: 2px solid var(--electric);
}

.rn-dot-wrap.y2025 {
    background: rgba(0, 212, 255, 0.15);
    border: 2px solid var(--cyan);
}

.rn-dot-wrap.y2026 {
    background: rgba(30, 227, 168, 0.15);
    border: 2px solid var(--emerald);
}

.rn-dot-wrap.y2027 {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold);
}

.rn-dot-wrap i {
    font-size: 1.2rem;
}

.y2024 i {
    color: var(--electric);
}

.y2025 i {
    color: var(--cyan);
}

.y2026 i {
    color: var(--emerald);
}

.y2027 i {
    color: var(--gold);
}

.rn-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px 18px;
    width: 100%;
    text-align: center;
}

.rn-year {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.y2024+.rn-card .rn-year {
    color: var(--electric);
}

.rn-dot-wrap.y2024~.rn-card .rn-year {
    color: var(--electric);
}

.rn-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rn-items li {
    font-size: 0.82rem;
    color: var(--soft-gray);
    padding: 5px 0;
    border-bottom: 1px solid rgba(47, 128, 255, 0.08);
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.rn-items li:last-child {
    border-bottom: none;
}

.rn-items li i {
    font-size: 0.7rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.node-2024 .rn-year {
    color: var(--electric);
}

.node-2025 .rn-year {
    color: var(--cyan);
}

.node-2026 .rn-year {
    color: var(--emerald);
}

.node-2027 .rn-year {
    color: var(--gold);
}

.node-2024 .rn-items li i {
    color: var(--electric);
}

.node-2025 .rn-items li i {
    color: var(--cyan);
}

.node-2026 .rn-items li i {
    color: var(--emerald);
}

.node-2027 .rn-items li i {
    color: var(--gold);
}

/* ── CTA ── */
.cta-section {
    padding: 0 0 120px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(47, 128, 255, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 72px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .growth-before-after {
        flex-direction: column;
    }

    .ba-divider {
        width: 100%;
        height: 1px;
    }

    .roadmap-nodes {
        flex-direction: column;
    }

    .roadmap-track::before {
        display: none;
    }

    .footprint-stat-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .hero-tickers {
        gap: 10px;
    }

    .ticker {
        min-width: 110px;
        padding: 14px 16px;
    }
}

/* ── HERO ── */
    .contact-hero {
      position: relative;
      min-height: 52vh;
      display: flex;
      align-items: center;
      padding: 130px 0 80px;
      overflow: hidden;
    }
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(47,128,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47,128,255,0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      z-index: 0;
    }
    .hero-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }
    .orb-a {
      width: 500px; height: 500px;
      top: -160px; right: -80px;
      background: radial-gradient(circle, rgba(47,128,255,0.12), transparent 65%);
    }
    .orb-b {
      width: 350px; height: 350px;
      bottom: -100px; left: -60px;
      background: radial-gradient(circle, rgba(0,212,255,0.07), transparent 65%);
    }
    .contact-hero .hero-content { position: relative; z-index: 1; }
 
    .page-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(47,128,255,0.1);
      border: 1px solid rgba(47,128,255,0.3);
      border-radius: 50px;
      padding: 8px 20px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 1.4rem;
    }
    .hero-headline {
      font-size: clamp(2.1rem, 5.5vw, 3rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.2rem;
    }
    .hero-subtext {
      font-size: 1.05rem;
      color: var(--soft-gray);
      max-width: 560px;
      line-height: 1.8;
    }
 
    /* ── QUICK CONTACT CARDS ── */
    .quick-section { padding: 80px 0; }
    .quick-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(16px);
      border-radius: 20px;
      padding: 30px 26px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      text-decoration: none;
      color: inherit;
    }
    .quick-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--glow);
      border-color: rgba(47,128,255,0.5);
      color: inherit;
    }
    .qc-icon {
      width: 52px; height: 52px;
      border-radius: 15px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
    }
    .qc-icon.blue { background: rgba(47,128,255,0.12); color: var(--electric); }
    .qc-icon.cyan { background: rgba(0,212,255,0.1); color: var(--cyan); }
    .qc-icon.gold { background: rgba(212,175,55,0.1); color: var(--gold); }
    .qc-icon.emerald { background: rgba(30,227,168,0.1); color: var(--emerald); }
    .qc-label {
      font-size: 0.68rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      color: var(--soft-gray);
    }
    .qc-value {
      font-family: 'Sora', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--platinum);
      line-height: 1.4;
    }
    .qc-sub { font-size: 0.82rem; color: var(--soft-gray); }
 
    /* ── MAIN CONTACT LAYOUT ── */
    .contact-main { padding: 80px 0 100px; }
 
    /* form */
    .contact-form-wrap {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 44px 40px;
    }
    .form-heading {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.4rem;
    }
    .form-sub { font-size: 0.9rem; color: var(--soft-gray); margin-bottom: 2rem; }
 
    .form-group { margin-bottom: 20px; }
    .form-label-custom {
      display: block;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--soft-gray);
      margin-bottom: 8px;
    }
    .form-control-custom {
      width: 100%;
      background: rgba(10,29,63,0.6);
      border: 1px solid rgba(47,128,255,0.2);
      border-radius: 12px;
      padding: 13px 18px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.95rem;
      color: var(--platinum);
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s;
      appearance: none;
    }
    .form-control-custom::placeholder { color: rgba(170,180,197,0.5); }
    .form-control-custom:focus {
      border-color: var(--electric);
      box-shadow: 0 0 0 3px rgba(47,128,255,0.15);
    }
    select.form-control-custom {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23AAB4C5' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 40px;
      cursor: pointer;
    }
    select.form-control-custom option { background: #0A1D3F; color: var(--platinum); }
    textarea.form-control-custom { resize: vertical; min-height: 120px; }
 
    .btn-submit {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(90deg, var(--electric), var(--cyan));
      color: #fff;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 15px 32px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: opacity 0.25s, transform 0.25s, box-shadow 0.25s;
      margin-top: 8px;
    }
    .btn-submit:hover {
      opacity: 0.88;
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(47,128,255,0.4);
    }
 
    /* info panel */
    .contact-info-panel { display: flex; flex-direction: column; gap: 20px; }
 
    .info-block {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 28px 26px;
    }
    .info-block h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .info-block h4 i { color: var(--cyan); font-size: 1.1rem; }
    .info-row {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px solid rgba(47,128,255,0.1);
    }
    .info-row:last-child { border-bottom: none; padding-bottom: 0; }
    .info-row i { color: var(--electric); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
    .info-row .ir-content { display: flex; flex-direction: column; }
    .info-row .ir-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--soft-gray); font-weight: 700; }
    .info-row .ir-val { font-size: 0.92rem; color: var(--platinum); margin-top: 2px; }
    .info-row a.ir-val { color: var(--cyan); text-decoration: none; }
    .info-row a.ir-val:hover { text-decoration: underline; }
 
    /* hours grid */
    .hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .hour-item {
      background: rgba(47,128,255,0.06);
      border: 1px solid rgba(47,128,255,0.12);
      border-radius: 10px;
      padding: 10px 14px;
    }
    .hour-item .h-day { font-size: 0.72rem; color: var(--soft-gray); text-transform: uppercase; letter-spacing: 1px; }
    .hour-item .h-time { font-size: 0.88rem; color: var(--platinum); font-weight: 600; margin-top: 2px; }
    .hour-item.always {
      grid-column: 1 / -1;
      background: rgba(30,227,168,0.08);
      border-color: rgba(30,227,168,0.25);
    }
    .hour-item.always .h-time { color: var(--emerald); }
 
    /* social strip */
    .social-strip {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .social-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(47,128,255,0.08);
      border: 1px solid rgba(47,128,255,0.2);
      border-radius: 50px;
      padding: 9px 18px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--soft-gray);
      text-decoration: none;
      transition: background 0.25s, border-color 0.25s, color 0.25s;
    }
    .social-btn:hover {
      background: rgba(47,128,255,0.15);
      border-color: var(--electric);
      color: var(--platinum);
    }
    .social-btn i { font-size: 1rem; }
 
    /* ── MAP STRIP ── */
    .map-section { padding: 80px 0; }
    .map-wrap {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      overflow: hidden;
      position: relative;
    }
    .map-header {
      padding: 24px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--glass-border);
      flex-wrap: wrap;
      gap: 12px;
    }
    .map-header h3 { font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
    .map-header h3 i { color: var(--cyan); }
    .map-header a {
      font-size: 0.82rem;
      color: var(--electric);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
    }
    .map-header a:hover { color: var(--cyan); }
    .map-embed {
      width: 100%;
      height: 340px;
      border: none;
      display: block;
      filter: invert(0.9) hue-rotate(180deg) saturate(0.6) brightness(0.85);
    }
 
    /* ── APP DOWNLOAD STRIP ── */
    .app-section { padding: 0 0 120px; }
    .app-card {
      background: linear-gradient(135deg, rgba(47,128,255,0.1), rgba(0,212,255,0.05));
      border: 1px solid rgba(47,128,255,0.3);
      border-radius: 24px;
      padding: 56px 48px;
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .app-card-text { flex: 1; min-width: 260px; }
    .app-card-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 0.6rem; }
    .app-card-text p { font-size: 0.95rem; color: var(--soft-gray); }
    .app-btns { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
    .app-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 14px;
      padding: 14px 22px;
      text-decoration: none;
      color: var(--platinum);
      transition: border-color 0.25s, transform 0.25s, background 0.25s;
    }
    .app-btn:hover {
      border-color: var(--electric);
      background: rgba(47,128,255,0.1);
      transform: translateY(-2px);
      color: var(--platinum);
    }
    .app-btn i { font-size: 1.8rem; color: var(--cyan); }
    .app-btn-text { display: flex; flex-direction: column; }
    .app-btn-text .abt-sub { font-size: 0.68rem; color: var(--soft-gray); text-transform: uppercase; letter-spacing: 1px; }
    .app-btn-text .abt-name { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; }
 
    /* form success state */
    .form-success {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      gap: 16px;
    }
    .form-success .fs-icon {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: rgba(30,227,168,0.12);
      border: 2px solid var(--emerald);
      display: flex; align-items: center; justify-content: center;
      font-size: 2rem;
      color: var(--emerald);
    }
    .form-success h3 { font-size: 1.4rem; font-weight: 700; }
    .form-success p { color: var(--soft-gray); font-size: 0.95rem; }
 
    @media (max-width: 767px) {
      .contact-form-wrap { padding: 28px 20px; }
      .app-card { padding: 36px 24px; gap: 24px; }
      .hours-grid { grid-template-columns: 1fr; }
      .hour-item.always { grid-column: 1; }
    }

    /* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(10, 29, 63, 0.15) 0%, var(--midnight) 100%);
}

/* Stats */
.stat-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 28px 16px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.stat-box:hover {
    border-color: rgba(47, 128, 255, 0.55);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cyan);
    margin-bottom: 6px;
}

.stat-number span {
    font-size: 1.3rem;
    color: var(--electric);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--soft-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Testimonial Cards */
.testimonial-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 32px 28px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    overflow: hidden;
}

.testimonial-card:hover {
    border-color: rgba(47, 128, 255, 0.55);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.testimonial-card.gold-testimonial {
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-card.gold-testimonial:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.testimonial-quote-icon {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2.5rem;
    color: var(--electric);
    opacity: 0.08;
}

.stars {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--soft-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    min-height: 110px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(47, 128, 255, 0.12);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(47, 128, 255, 0.15);
    color: var(--electric);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.author-avatar.gold-avatar {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.testimonial-author h6 {
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--soft-gray);
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 70px 0;
    }
}

/* ══════════════════════════════
   FLEET HERO
══════════════════════════════ */
.fleet-hero {
    position: relative;
    padding: 160px 0 100px;
    background: radial-gradient(circle at 50% 0%, rgba(47, 128, 255, 0.18) 0%, var(--midnight) 65%);
    overflow: hidden;
}

.fleet-hero-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.fleet-hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 18px 0 20px;
    color: var(--platinum);
}

.fleet-hero-body {
    font-size: 1rem;
    color: var(--soft-gray);
    max-width: 640px;
    margin: 0 auto 32px;
}

.fleet-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-electric {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--electric), var(--cyan));
    color: var(--midnight);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: box-shadow 0.25s, transform 0.25s;
}

.btn-electric:hover {
    box-shadow: var(--glow);
    transform: translateY(-2px);
    color: var(--midnight);
}

.btn-outline-electric {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--glass-border);
    color: var(--platinum);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: border-color 0.25s, transform 0.25s;
}

.btn-outline-electric:hover {
    border-color: rgba(47, 128, 255, 0.6);
    transform: translateY(-2px);
    color: var(--platinum);
}

/* ══════════════════════════════
   FLEET CARDS
══════════════════════════════ */
.fleet-section {
    padding: 100px 0;
    background: var(--midnight);
}

.fleet-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.fleet-card:hover {
    border-color: rgba(47, 128, 255, 0.55);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.fleet-card.gold-fleet {
    border-color: rgba(212, 175, 55, 0.3);
}

.fleet-card.gold-fleet:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.fleet-card.safe-fleet {
    border-color: rgba(30, 227, 168, 0.25);
}

.fleet-card.safe-fleet:hover {
    border-color: rgba(30, 227, 168, 0.55);
    box-shadow: 0 0 30px rgba(30, 227, 168, 0.25);
}

.fleet-img-wrap {
    height: 190px;
    overflow: hidden;
}

.fleet-img-wrap img {
    object-fit: cover;
    filter: brightness(0.75);
    transition: transform 0.4s;
}

.fleet-card:hover .fleet-img-wrap img {
    transform: scale(1.05);
}

.fleet-card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--platinum);
    margin: 14px 0 8px;
}

.fleet-card-text {
    font-size: 0.85rem;
    color: var(--soft-gray);
    margin-bottom: 18px;
}

.fleet-specs {
    list-style: none;
    display: flex;
    gap: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(47, 128, 255, 0.12);
    font-size: 0.78rem;
    color: var(--cyan);
}

.fleet-specs li i {
    margin-right: 6px;
}

/* ══════════════════════════════
   CAPABILITIES
══════════════════════════════ */
.capabilities-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--midnight) 0%, rgba(10, 29, 63, 0.2) 50%, var(--midnight) 100%);
}

.capability-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 36px 24px;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.capability-box:hover {
    border-color: rgba(47, 128, 255, 0.55);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.capability-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: rgba(47, 128, 255, 0.15);
    color: var(--electric);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.capability-box h5 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 10px;
}

.capability-box p {
    font-size: 0.85rem;
    color: var(--soft-gray);
    margin: 0;
}

/* ══════════════════════════════
   CTA
══════════════════════════════ */
.fleet-cta-section {
    padding: 0 0 100px;
}

.fleet-cta-box {
    background: linear-gradient(135deg, rgba(47, 128, 255, 0.12), rgba(0, 212, 255, 0.08));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(12px);
}

.fleet-cta-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--platinum);
    margin-bottom: 10px;
}

.fleet-cta-text {
    font-size: 0.92rem;
    color: var(--soft-gray);
    margin: 0;
}

@media (max-width: 991px) {
    .fleet-cta-box {
        padding: 36px 28px;
        text-align: center;
    }
    .fleet-cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .fleet-hero {
        padding: 130px 0 70px;
    }
    .fleet-section,
    .capabilities-section {
        padding: 70px 0;
    }
}

/* =====================================================
   MARHABA — SECTION STYLES (Hero, Statement, Why, Market,
   Opportunity, Vision/Roadmap)
   Uses the existing :root theme — no new variables added.
   ===================================================== */

.wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    background: radial-gradient(circle at 20% 20%, rgba(47, 128, 255, 0.12), transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08), transparent 50%),
                var(--midnight);
    padding: 160px 0 110px;
    overflow: hidden;
}

.hero-routes {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--soft-gray);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 8px var(--emerald);
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--platinum);
    margin-bottom: 22px;
}

.hero-copy h1 em {
    font-style: normal;
    background: linear-gradient(90deg, var(--cyan), var(--electric));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    color: var(--soft-gray);
    font-size: 1.05rem;
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--gold), #b8852c);
    color: var(--midnight);
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.35);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border: 1px solid var(--glass-border);
    color: var(--platinum);
    border-radius: 10px;
    text-decoration: none;
    background: transparent;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.btn-ghost:hover {
    border-color: var(--electric);
    background: rgba(47, 128, 255, 0.08);
}

/* Hero glass card */
.hero-visual {
    display: flex;
    justify-content: center;
}

.glasscard {
    width: 100%;
    max-width: 380px;
    padding: 32px 28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--glow);
}

.glasscard h4 {
    color: var(--platinum);
    font-size: 1.05rem;
    margin-bottom: 22px;
}

.qual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--soft-gray);
    font-size: 0.92rem;
}

.qi {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyan);
}

/* ================= STATEMENT ================= */
.statement {
    background: var(--deep-blue);
    padding: 70px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.statement p {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    line-height: 1.5;
    color: var(--platinum);
    font-family: 'Sora', sans-serif;
    font-weight: 500;
}

.statement em {
    font-style: normal;
    color: var(--cyan);
}

/* ================= GENERIC BLOCK ================= */
.block {
    padding: 110px 0;
    background: var(--midnight);
}

.block.alt {
    background: linear-gradient(180deg, var(--midnight), var(--deep-blue));
}

.head-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
}

.eyebrow.center {
    display: block;
}

.sec {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--platinum);
    margin-bottom: 16px;
    font-weight: 700;
}

.sec-intro {
    color: var(--soft-gray);
    font-size: 1.02rem;
}

/* ================= PILLARS (Why Marhaba) ================= */
.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pillar {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px 26px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-6px);
    border-color: var(--electric);
    box-shadow: var(--glow);
}

.pico {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(47, 128, 255, 0.18), rgba(0, 212, 255, 0.1));
    color: var(--cyan);
    margin-bottom: 18px;
}

.pillar h3 {
    color: var(--platinum);
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.pillar ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left:0px;
}

.pillar li {
    position: relative;
    padding-left: 18px;
    color: var(--soft-gray);
    font-size: 0.92rem;
}

.pillar li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

/* ================= MARKET ================= */
.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.seg-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seg {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: border-color 0.25s ease;
}

.seg:hover {
    border-color: var(--teal);
}

.si {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.st {
    color: var(--platinum);
    font-weight: 700;
    margin-bottom: 4px;
}

.sd {
    color: var(--soft-gray);
    font-size: 0.92rem;
}

/* ================= VALUES (Opportunity) ================= */
.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.value {
    position: relative;
    padding: 36px 28px;
    border-radius: 16px;
    background: var(--deep-blue);
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.value::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(47, 128, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.vnum {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--electric);
    margin-bottom: 14px;
}

.value h3 {
    color: var(--platinum);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value p {
    color: var(--soft-gray);
    font-size: 0.95rem;
}

/* ================= VISION / ROADMAP ================= */
.road {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.rstep {
    padding: 28px 22px;
    border-radius: 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    position: relative;
}

.rstep.now {
    border-color: var(--emerald);
    box-shadow: 0 0 24px rgba(30, 227, 168, 0.15);
}

.ph {
    color: var(--platinum);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: 18px;
}

.rstep.now .tag {
    color: var(--emerald);
    border-color: var(--emerald);
}

.rstep ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left:0px;
}

.rstep li {
    position: relative;
    padding-left: 16px;
    color: var(--soft-gray);
    font-size: 0.88rem;
}

.rstep li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--electric);
}

.fwd-note {
    margin-top: 36px;
    text-align: center;
    color: var(--soft-gray);
    font-size: 0.78rem;
    opacity: 0.7;
    max-width: 720px;
    margin-inline: auto;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-visual {
        order: -1;
    }
    .pillars {
        grid-template-columns: repeat(2, 1fr);
    }
    .market-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .seg {
        text-align: left;
    }
    .values {
        grid-template-columns: 1fr;
    }
    .road {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 130px 0 80px;
    }
    .pillars {
        grid-template-columns: 1fr;
    }
    .road {
        grid-template-columns: 1fr;
    }
}

    color: var(--platinum);
}
 