/* ── Reset & Root ── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    background: #f6fbf9;
    color: #111827;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --brand-green: #0B5E42;
    --brand-green-light: #1D8A5C;
    --brand-green-glow: rgba(11, 94, 66, 0.25);
    --brand-blue: #1E6DF2;
    --brand-blue-light: #4B8EF5;
    --brand-gold: #D4AF37;
    --brand-gold-light: #F5D97A;
    --brand-dark: #0C2A24;
    --brand-dark-bg: #071f1a;
    --shadow-sm: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 30px 45px -15px rgba(11, 94, 66, 0.30);
    --shadow-glow: 0 0 60px rgba(30, 109, 242, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(11, 94, 66, 0.10);
    --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ── PRELOADER ── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0C2A24;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
}

.preloader-logo {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    animation: heartbeat 1.4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

.preloader-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.03);
    border-top: 3px solid var(--brand-gold);
    border-right: 3px solid var(--brand-green-light);
    animation: spin 1s linear infinite;
    position: absolute;
}
.preloader-ring::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.02);
    border-bottom: 3px solid var(--brand-blue);
    border-left: 3px solid var(--brand-gold-light);
    animation: spin 1.4s linear infinite reverse;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.preloader-text {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-weight: 300;
    font-family: 'Orbitron', monospace;
}
.preloader-text span {
    display: inline-block;
    animation: textFade 1.4s ease-in-out infinite;
}
.preloader-text span:nth-child(2) { animation-delay: 0.12s; }
.preloader-text span:nth-child(3) { animation-delay: 0.24s; }
.preloader-text span:nth-child(4) { animation-delay: 0.36s; }
.preloader-text span:nth-child(5) { animation-delay: 0.48s; }
.preloader-text span:nth-child(6) { animation-delay: 0.60s; }
.preloader-text span:nth-child(7) { animation-delay: 0.72s; }
.preloader-text span:nth-child(8) { animation-delay: 0.84s; }

@keyframes textFade {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

/* ── Particle Canvas ── */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle-section {
    position: relative;
    overflow: hidden;
}
.particle-section>.container,
.particle-section>.container-fluid {
    position: relative;
    z-index: 2;
}

/* ── Glassmorphism ── */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 2rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover), var(--shadow-glow);
    border-color: rgba(30, 109, 242, 0.35);
    background: rgba(255, 255, 255, 0.98);
}

/* ── Buttons ── */
.btn-glow {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 2.4rem;
    border-radius: 3rem;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 28px rgba(11, 94, 66, 0.35);
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0;
    transition: opacity 0.6s;
}
.btn-glow:hover::after {
    opacity: 1;
}
.btn-glow:hover {
    transform: scale(1.04) translateY(-3px);
    background: linear-gradient(135deg, var(--brand-green-light), var(--brand-blue-light));
    box-shadow: 0 16px 40px rgba(30, 109, 242, 0.5);
    color: #fff;
}

.btn-gold {
    background: linear-gradient(135deg, var(--brand-gold), #b8960f);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.85rem 2.4rem;
    border-radius: 3rem;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-gold:hover {
    transform: scale(1.04) translateY(-3px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.5);
    color: #fff;
}

.btn-outline-futuristic {
    border: 1.5px solid var(--brand-green);
    background: transparent;
    color: var(--brand-green);
    border-radius: 3rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-outline-futuristic:hover {
    background: var(--brand-green);
    color: #fff;
    border-color: var(--brand-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(11, 94, 66, 0.25);
}

.btn-outline-white {
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
    border-radius: 3rem;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* ── Typography ── */
.font-display {
    font-family: 'Playfair Display', serif;
}
.font-future {
    font-family: 'Orbitron', monospace;
}
.font-elegant {
    font-family: 'Cormorant Garamond', serif;
}

.text-gradient {
    background: linear-gradient(135deg, #0B5E42, #1E6DF2, #0B5E42);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    animation: gradientShift 4s ease-in-out infinite;
}
.text-gradient-gold {
    background: linear-gradient(135deg, #D4AF37, #F5D97A, #D4AF37);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}
.text-gradient-fire {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}
.text-gradient-ice {
    background: linear-gradient(135deg, #00d4ff, #1E6DF2, #7b68ee);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientShift 5s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.glow-line {
    height: 4px;
    width: 80px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-blue), var(--brand-gold));
    border-radius: 4px;
    margin: 0.5rem auto 1.5rem auto;
}
.glow-line-left {
    margin-left: 0;
}

/* ── Navbar ── */
.navbar-futuristic {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 32px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    z-index: 1000;
    border-bottom: 1px solid rgba(11, 94, 66, 0.05);
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
}

.navbar-futuristic.scrolled {
    box-shadow: 0 4px 48px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.nav-link {
    font-weight: 500;
    color: #1F2A3E;
    margin: 0 0.2rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.92rem;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
    transition: var(--transition-smooth);
    transform: translateX(-50%);
    border-radius: 4px;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}
.nav-link:hover,
.nav-link.active {
    color: var(--brand-green);
    transform: translateY(-1px);
    background: rgba(11, 94, 66, 0.04);
}

.navbar-brand img {
    height: 42px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.navbar-brand img:hover {
    transform: scale(1.05) rotate(-1deg);
}

/* ─── HERO SECTION ─── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at 30% 20%, rgba(11, 94, 66, 0.08) 0%, rgba(30, 109, 242, 0.04) 50%, transparent 80%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    overflow: hidden;
    padding-top: 0 !important;
}

.hero-section .container {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.hero-orb-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(11, 94, 66, 0.15), transparent 70%);
    animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -80px;
    background: radial-gradient(circle, rgba(30, 109, 242, 0.10), transparent 70%);
    animation: orbFloat 15s ease-in-out infinite reverse;
}
.hero-orb-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.06), transparent 70%);
    animation: orbFloat 18s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(11, 94, 66, 0.04);
    border: 1px solid rgba(11, 94, 66, 0.06);
    pointer-events: none;
    z-index: 0;
    animation: shapeFloat 20s ease-in-out infinite;
}
.hero-shape-1 { width: 120px; height: 120px; top: 15%; right: 8%; }
.hero-shape-2 {
    width: 80px; height: 80px; bottom: 20%; left: 5%;
    background: rgba(212, 175, 55, 0.04); border-color: rgba(212, 175, 55, 0.08);
    animation-delay: -5s;
}
.hero-shape-3 {
    width: 60px; height: 60px; top: 60%; right: 20%;
    background: rgba(30, 109, 242, 0.04); border-color: rgba(30, 109, 242, 0.08);
    animation-delay: -10s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(90deg); }
    50% { transform: translate(-10px, 20px) rotate(180deg); }
    75% { transform: translate(15px, -10px) rotate(270deg); }
}

.hero-badge {
    background: rgba(11, 94, 66, 0.08);
    border: 1px solid rgba(11, 94, 66, 0.10);
    backdrop-filter: blur(8px);
    border-radius: 2rem;
    padding: 0.4rem 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brand-green);
    transition: var(--transition-smooth);
}
.hero-badge:hover {
    background: rgba(11, 94, 66, 0.14);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 40px 70px -25px rgba(11, 94, 66, 0.25);
    transition: var(--transition-smooth);
    position: relative;
}
.hero-image-wrapper:hover {
    box-shadow: 0 50px 90px -25px rgba(30, 109, 242, 0.30);
    transform: scale(1.008);
}

.hero-stats-float {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border-radius: 1.5rem;
    padding: 1rem 1.6rem;
    border: 1px solid rgba(11, 94, 66, 0.06);
    box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.12);
    animation: float 5s ease-in-out infinite;
    z-index: 3;
}
@media (max-width: 576px) {
    .hero-stats-float {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
    100% { transform: translateY(0px); }
}

.hero-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 1.2rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(11, 94, 66, 0.06);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    animation: float 7s ease-in-out infinite;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    pointer-events: none;
}
.hero-floating-card-1 { top: 8%; left: -8%; animation-delay: 0s; }
.hero-floating-card-2 { bottom: 12%; right: -6%; animation-delay: -3s; }

@media (max-width: 992px) {
    .hero-floating-card-1 { left: 2%; top: 4%; }
    .hero-floating-card-2 { right: 2%; bottom: 4%; }
}
@media (max-width: 576px) {
    .hero-floating-card { display: none; }
}

/* ── Badges ── */
.badge-award {
    background: #EFFAF5;
    color: var(--brand-green);
    border-radius: 2rem;
    padding: 0.5rem 1.3rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
    border-left: 4px solid var(--brand-blue);
    cursor: default;
}
.badge-award:hover {
    transform: scale(1.04) translateY(-4px);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

/* ── Service Cards ── */
.service-card {
    transition: var(--transition-smooth);
    border-radius: 1.8rem;
    background: #fff;
    border: none;
    position: relative;
    z-index: 2;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-green), var(--brand-blue), var(--brand-gold));
    opacity: 0;
    transition: var(--transition-smooth);
}
.service-card:hover::before {
    opacity: 1;
}

.icon-bg {
    background: rgba(11, 94, 66, 0.08);
    width: 64px;
    height: 64px;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--brand-green);
    transition: var(--transition-smooth);
}
.service-card:hover .icon-bg {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
    color: #fff;
    transform: scale(1.06) rotate(-4deg);
    box-shadow: 0 12px 28px rgba(11, 94, 66, 0.25);
}

/* ── Stats ── */
.stats-section {
    background: linear-gradient(135deg, #0B2B2A 0%, #103D35 50%, #0B5E42 100%);
    position: relative;
    overflow: hidden;
}
.stats-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.counter-num {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: 'Space Grotesk', monospace;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
    letter-spacing: -1px;
}
.counter-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* ── Testimonials ── */
.testimonial-card {
    background: #fff;
    border-radius: 1.8rem;
    padding: 2rem 1.8rem;
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}
.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 0.8rem;
    right: 1.8rem;
    font-size: 4rem;
    color: rgba(11, 94, 66, 0.05);
    font-family: serif;
    line-height: 1;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(11, 94, 66, 0.08);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

/* ── Feature Icon ── */
.feature-icon {
    background: rgba(11, 94, 66, 0.07);
    width: 52px;
    height: 52px;
    border-radius: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition-smooth);
    color: var(--brand-green);
}
.feature-icon:hover {
    background: var(--brand-green);
    color: #fff;
    transform: scale(1.08);
}

/* ── Image Styles ── */
.img-finance {
    border-radius: 1.8rem;
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.img-finance:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* ── Awards Grid ── */
.award-tile {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 1.8rem;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(11, 94, 66, 0.05);
    transition: var(--transition-smooth);
    height: 100%;
}
.award-tile:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(11, 94, 66, 0.15);
    background: #fff;
}
.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, #0B2B2A 0%, #0B5E42 50%, #0C2A24 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(30, 109, 242, 0.07) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

/* ── Footer ── */
.footer-dark {
    background: #071f1a;
    color: #cbd5e1;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.footer-dark a {
    color: #9aa8b9;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.footer-dark a:hover {
    color: var(--brand-gold);
    transform: translateX(4px);
}

.footer-logo {
    height: 40px;
    width: auto;
    border-radius: 10px;
    object-fit: contain;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
    color: #9aa8b9;
}
.footer-social a:hover {
    background: rgba(212, 175, 55, 0.12);
    color: var(--brand-gold);
    transform: translateY(-4px);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: #EFF2F0;
}
::-webkit-scrollbar-thumb {
    background: var(--brand-green);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-green-light);
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .counter-num { font-size: 2.4rem; }
    .hero-section { min-height: auto; padding: 4rem 0 3rem; }
    .hero-section .container { padding-top: 0.5rem; }
}
@media (max-width: 768px) {
    .counter-num { font-size: 2rem; }
    .navbar-brand img { height: 34px; }
    .hero-image-wrapper { border-radius: 1.5rem; }
    .footer-logo { height: 32px; }
    .hero-stats-float { padding: 0.7rem 1rem; }
    .hero-stats-float .display-6 { font-size: 1.4rem; }
    .display-4 { font-size: 2rem; }
    .service-card { padding: 1.5rem !important; }
    .glass-card { padding: 1.5rem !important; }
    .hero-floating-card { display: none !important; }
}
@media (max-width: 576px) {
    .display-4 { font-size: 1.7rem; }
    .counter-num { font-size: 1.5rem; }
    .btn-glow, .btn-gold { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
    .hero-badge { font-size: 0.7rem; padding: 0.25rem 0.8rem; }
    .hero-section .container { padding-top: 0; }
}

/* ── Animations Helpers ── */
.hover-lift {
    transition: var(--transition-smooth);
}
.hover-lift:hover {
    transform: translateY(-6px);
}

.shimmer {
    position: relative;
    overflow: hidden;
}
.shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.trust-marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 0.8rem 0;
}
.trust-marquee-inner {
    display: inline-block;
    animation: marquee 28s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.trust-item {
    display: inline-block;
    margin: 0 2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    font-size: 0.8rem;
}
.trust-item i {
    margin-right: 0.5rem;
    color: var(--brand-gold);
}

.typewriter {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--brand-gold);
    animation: typewriter 2.5s steps(30) 1s forwards, blink 0.8s step-end infinite;
    width: 0;
    max-width: 100%;
}
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes blink {
    0%, 100% { border-color: var(--brand-gold); }
    50% { border-color: transparent; }
}

.glitch {
    position: relative;
}
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}
.glitch::before {
    color: var(--brand-blue);
    z-index: -1;
    animation: glitch-effect 3s infinite linear alternate-reverse;
}
.glitch::after {
    color: var(--brand-gold);
    z-index: -2;
    animation: glitch-effect 2s infinite linear alternate-reverse;
}
@keyframes glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-1px, 1px); }
    80% { transform: translate(1px, -1px); }
    100% { transform: translate(0); }
}

.neon-pulse {
    animation: neonPulse 2.5s ease-in-out infinite;
}
@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 10px rgba(11, 94, 66, 0.2), 0 0 20px rgba(11, 94, 66, 0.05); }
    50% { text-shadow: 0 0 20px rgba(11, 94, 66, 0.4), 0 0 40px rgba(11, 94, 66, 0.1), 0 0 60px rgba(30, 109, 242, 0.05); }
}

/* ──────────────────────────────────────────────────
   ADDITIONAL FUTURISTIC & DETAILED COMPONENTS
   ────────────────────────────────────────────────── */

/* ── Live Rate Ticker ── */
.rate-ticker {
    background: #061814;
    color: #cbd5e1;
    overflow: hidden;
    white-space: nowrap;
    padding: 0.5rem 0;
    font-size: 0.76rem;
    font-family: 'Orbitron', monospace;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 100;
}
.rate-ticker-inner {
    display: inline-block;
    animation: ticker-slide 32s linear infinite;
    padding-left: 100%;
}
@keyframes ticker-slide {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}
.ticker-item {
    display: inline-block;
    margin-right: 3.5rem;
    font-weight: 500;
}
.ticker-item span {
    margin-left: 0.4rem;
}
.ticker-up { color: #1D8A5C; font-weight: bold; }
.ticker-down { color: #f2545b; font-weight: bold; }

/* ── Interactive Calculators ── */
.calc-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.8rem;
    border: 1px solid rgba(11, 94, 66, 0.15);
    box-shadow: var(--shadow-sm);
    padding: 2.2rem;
    position: relative;
}
.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    margin: 1.2rem 0;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-blue));
    cursor: pointer;
    box-shadow: 0 0 10px rgba(11, 94, 66, 0.35);
    transition: transform 0.2s;
    border: 2px solid #fff;
}
.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}
.calc-result-box {
    background: linear-gradient(135deg, #0C2A24 0%, #061814 100%);
    color: #fff;
    border-radius: 1.5rem;
    padding: 2.2rem;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 35px rgba(11, 94, 66, 0.25);
}

/* ── Futuristic Accordions ── */
.accordion-futuristic .accordion-item {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(11, 94, 66, 0.1);
    margin-bottom: 0.8rem;
    border-radius: 1.2rem !important;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.accordion-futuristic .accordion-item:hover {
    border-color: rgba(30, 109, 242, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
}
.accordion-futuristic .accordion-button {
    background: transparent;
    color: var(--brand-dark);
    font-weight: 600;
    padding: 1.3rem 1.6rem;
    border: none;
    box-shadow: none !important;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-futuristic .accordion-button::after {
    display: none;
}
.accordion-futuristic .accordion-button:not(.collapsed) {
    color: var(--brand-green);
    background: rgba(11, 94, 66, 0.03);
}

/* ── Credit Card Showroom ── */
.card-mockup {
    width: 100%;
    height: 200px;
    border-radius: 1.2rem;
    padding: 1.6rem;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    transition: var(--transition-smooth);
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.12);
}
.card-mockup:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 50px rgba(11, 94, 66, 0.25);
}
.card-black {
    background: linear-gradient(135deg, #090e0c 0%, #1c2621 100%);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.card-gold {
    background: linear-gradient(135deg, #a67c1e 0%, #D4AF37 50%, #8c6412 100%);
    color: #0c2a24;
    border-color: rgba(255,255,255,0.25);
}
.card-blue {
    background: linear-gradient(135deg, #081b33 0%, #1e4575 100%);
}

/* ── Detailed Features Table ── */
.table-futuristic {
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}
.table-futuristic th {
    background: #0C2A24;
    color: #fff;
    border: none;
    padding: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}
.table-futuristic th:first-child { border-top-left-radius: 1rem; border-bottom-left-radius: 1rem; }
.table-futuristic th:last-child { border-top-right-radius: 1rem; border-bottom-right-radius: 1rem; }

.table-futuristic td {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 1.2rem;
    vertical-align: middle;
    transition: var(--transition-smooth);
}
.table-futuristic tr:hover td {
    background: #fff;
    transform: scale(1.002);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.table-futuristic td:first-child { border-top-left-radius: 0.8rem; border-bottom-left-radius: 0.8rem; border-left: 3px solid var(--brand-green); }
.table-futuristic td:last-child { border-top-right-radius: 0.8rem; border-bottom-right-radius: 0.8rem; }

/* ── Star Ratings Form ── */
.star-rating {
    display: inline-flex;
    gap: 0.5rem;
    cursor: pointer;
}
.star-rating i {
    font-size: 2rem;
    color: #cbd5e1;
    transition: transform 0.2s, color 0.2s;
}
.star-rating i:hover {
    transform: scale(1.2);
}
.star-rating i.active {
    color: var(--brand-gold);
}

/* ── Milestone Timeline ── */
.timeline-track {
    position: relative;
    padding-left: 2rem;
}
.timeline-track::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, var(--brand-green) 0%, var(--brand-blue) 50%, var(--brand-gold) 100%);
}
.timeline-milestone {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 2.2rem;
}
.timeline-milestone::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--brand-green);
    box-shadow: 0 0 10px var(--brand-green-glow);
    transition: var(--transition-smooth);
    z-index: 2;
}
.timeline-milestone:hover::before {
    transform: scale(1.25);
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}
.timeline-year {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: var(--brand-green);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}
