/* ============================================================
   GLOBAL WEBSITE STYLES - Modern Fintech Design 2025
============================================================ */
:root {
    --navy:      #0a0f1e;
    --navy-2:    #0f172a;
    --indigo:    #4f46e5;
    --indigo-lt: #6366f1;
    --green:     #10b981;
    --green-dk:  #059669;
    --cyan:      #06b6d4;
    --amber:     #f59e0b;
    --text:      #f8fafc;
    --muted:     #94a3b8;
    --border:    rgba(255,255,255,.10);
    --card-bg:   rgba(255,255,255,.05);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Prevent text selection */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--navy);
    color: var(--text);
    margin: 0; padding: 0;
    overflow-x: hidden;
}

/* ---- NAVBAR ---- */
.site-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: all .3s ease;
    background: rgba(10,15,30,.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.site-navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.site-navbar .navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}
.nav-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #10b981, #059669, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    filter: brightness(1.05);
    display: inline-block;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo .logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}
.nav-logo .logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.nav-logo .logo-main-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(16,185,129,0.6), 0 0 30px rgba(16,185,129,0.3);
}
.nav-logo .logo-sub-text {
    font-size: 0.7rem;
    font-weight: 500;
    color: #a5b4fc;
    line-height: 1.2;
    margin-top: 2px;
    text-shadow: 0 0 10px rgba(165,180,252,0.4);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 15px rgba(16,185,129,0.6), 0 0 30px rgba(16,185,129,0.3);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0; padding: 0;
}
.nav-links li a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all .2s;
    display: block;
}
.nav-links li a:hover {
    color: #fff;
    background: rgba(255,255,255,.08);
}
.nav-links li a.nav-active { color: #fff; background: rgba(99,102,241,.25); }
.nav-links .btn-login {
    background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(59,130,246,.08)) !important;
    border: 2px solid rgba(59,130,246,0.5) !important;
    color: #a5b4fc !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(59,130,246,.3), 0 0 40px rgba(59,130,246,.1), 
                inset 0 0 20px rgba(59,130,246,.1), 
                0 -5px 20px rgba(59,130,246,.2), 
                0 5px 20px rgba(59,130,246,.2), 
                -5px 0 20px rgba(59,130,246,.2), 
                5px 0 20px rgba(59,130,246,.2);
    position: relative;
    overflow: hidden;
}

.nav-links .btn-login::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59,130,246,.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes scrollShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Mouse Follower */
.mouse-follower {
    position: fixed;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    opacity: 0;
}

.mouse-follower.active {
    opacity: 1;
}

.nav-links .btn-login:hover {
    background: linear-gradient(135deg, rgba(59,130,246,.25), rgba(59,130,246,.15)) !important;
    border-color: rgba(59,130,246,0.8) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59,130,246,.5);
}

.nav-links .btn-login:active {
    transform: translateY(0) scale(0.95);
    background: linear-gradient(135deg, rgba(59,130,246,.35), rgba(59,130,246,.25)) !important;
    border-color: rgba(59,130,246,1) !important;
    box-shadow: 0 0 25px rgba(59,130,246,.4);
}
.nav-links .btn-app {
    background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(59,130,246,.08)) !important;
    border: 2px solid rgba(59,130,246,0.5) !important;
    color: #a5b4fc !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(59,130,246,.3), 0 0 40px rgba(59,130,246,.1), 
                inset 0 0 20px rgba(59,130,246,.1), 
                0 -5px 20px rgba(59,130,246,.2), 
                0 5px 20px rgba(59,130,246,.2), 
                -5px 0 20px rgba(59,130,246,.2), 
                5px 0 20px rgba(59,130,246,.2);
    position: relative;
    overflow: hidden;
}

.nav-links .btn-app::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59,130,246,.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.nav-links .btn-app:hover {
    background: linear-gradient(135deg, rgba(59,130,246,.25), rgba(59,130,246,.15)) !important;
    border-color: rgba(59,130,246,0.8) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59,130,246,.5);
}

.nav-links .btn-app:active {
    transform: translateY(0) scale(0.95);
    background: linear-gradient(135deg, rgba(59,130,246,.35), rgba(59,130,246,.25)) !important;
    border-color: rgba(59,130,246,1) !important;
    box-shadow: 0 0 25px rgba(59,130,246,.4);
}
.nav-links .btn-register {
    background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(59,130,246,.08)) !important;
    border: 2px solid rgba(59,130,246,0.5) !important;
    color: #a5b4fc !important;
    font-weight: 700 !important;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(59,130,246,.3), 0 0 40px rgba(59,130,246,.1), 
                inset 0 0 20px rgba(59,130,246,.1), 
                0 -5px 20px rgba(59,130,246,.2), 
                0 5px 20px rgba(59,130,246,.2), 
                -5px 0 20px rgba(59,130,246,.2), 
                5px 0 20px rgba(59,130,246,.2);
    position: relative;
    overflow: hidden;
}

.nav-links .btn-register::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59,130,246,.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.nav-links .btn-register:hover {
    background: linear-gradient(135deg, rgba(59,130,246,.25), rgba(59,130,246,.15)) !important;
    border-color: rgba(59,130,246,0.8) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59,130,246,.5);
}

.nav-links .btn-register:active {
    transform: translateY(0) scale(0.95);
    background: linear-gradient(135deg, rgba(59,130,246,.35), rgba(59,130,246,.25)) !important;
    border-color: rgba(59,130,246,1) !important;
    box-shadow: 0 0 25px rgba(59,130,246,.4);
}

.nav-links .btn-register::after {
    content: '🔐 OPERATOR';
    position: absolute;
    top: -25px;
    right: -15px;
    background: rgba(16,185,129,0.9);
    color: #fff;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.nav-links .btn-register:hover::after {
    opacity: 1;
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        background: rgba(10,15,30,.98);
        border-top: 1px solid var(--border);
        padding: 12px 20px 20px;
        gap: 4px;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links li a { display: block; }
    .site-topbar .tb-info { flex-wrap: wrap; gap: 8px; }
}

/* ---- SHARED SECTION STYLES ---- */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(99,102,241,.15);
    border: 1px solid rgba(99,102,241,.3);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-shadow: 0 0 10px rgba(99,102,241,0.8), 0 0 20px rgba(99,102,241,0.5);
    box-shadow: 0 0 15px rgba(99,102,241,0.3), 0 0 30px rgba(99,102,241,0.1);
    transition: all 0.3s ease;
}

.section-badge:hover {
    box-shadow: 0 0 20px rgba(99,102,241,0.5), 0 0 40px rgba(99,102,241,0.3);
    border-color: rgba(99,102,241,0.6);
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.5px;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
}
.gradient-text {
    background: linear-gradient(135deg, var(--indigo-lt), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-text-green {
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- PRELOADER ---- */
.se-pre-con {
    position: fixed;
    left: 0; top: 0;
    z-index: 99999;
    width: 100%; height: 100%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
}
.se-pre-con::after {
    content: '';
    width: 40px; height: 40px;
    border: 3px solid rgba(99,102,241,.3);
    border-top-color: var(--indigo-lt);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   LANDING PAGE - PREMIUM FINTECH DESIGN
============================================================ */

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0 60px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(79,70,229,.35) 0%, transparent 60%),
                radial-gradient(ellipse 60% 50% at 80% 70%, rgba(6,182,212,.20) 0%, transparent 55%),
                linear-gradient(160deg, #0a0f1e 0%, #0f172a 50%, #0c1528 100%);
    z-index: 0;
}
/* Animated floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat 8s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}
.hero-orb-1 { width: 400px; height: 400px; background: rgba(79,70,229,.18); top: -80px; left: -80px; animation-delay: 0s; }
.hero-orb-2 { width: 300px; height: 300px; background: rgba(6,182,212,.15); bottom: -60px; right: 10%; animation-delay: -3s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(16,185,129,.12); top: 40%; left: 45%; animation-delay: -5s; }
@keyframes orbFloat {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-30px) scale(1.05); }
}
/* Grid lines */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(99,102,241,.04) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(99,102,241,.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}
.hero-content { position: relative; z-index: 1; }

/* Floating Rating Badge */
.hero-rating-badge {
    position: absolute;
    top: 20%;
    right: 10%;
    background: rgba(15,23,42,.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(251,191,36,.2);
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0,0,0,.3), 0 0 0 1px rgba(251,191,36,.1);
    animation: badgeFloat 6s ease-in-out infinite;
    z-index: 2;
}
.hrb-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
}
.hrb-stars i {
    color: #fbbf24;
    font-size: 1rem;
}
.hrb-score {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}
.hrb-text {
    font-size: .7rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16,185,129,.12);
    border: 1px solid rgba(16,185,129,.3);
    color: #6ee7b7;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.hero-badge::before {
    content: '';
    width: 7px; height: 7px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(16,185,129,.25);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 0 0 3px rgba(16,185,129,.25);} 50%{box-shadow:0 0 0 6px rgba(16,185,129,.10);} }

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff; text-decoration: none;
    padding: 14px 28px; border-radius: 12px;
    font-size: .9rem; font-weight: 700;
    box-shadow: 0 4px 20px rgba(79,70,229,.45), 0 0 30px rgba(79,70,229,.2);
    transition: all .25s ease;
    border: none; cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(79,70,229,.55), 0 0 40px rgba(79,70,229,.3); color: #fff; text-decoration: none; }
.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.15);
    color: #f1f5f9; text-decoration: none;
    padding: 14px 28px; border-radius: 12px;
    font-size: .9rem; font-weight: 600;
    transition: all .25s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255,255,255,.1), 0 0 30px rgba(255,255,255,.05);
}
.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.25); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 28px rgba(255,255,255,.15), 0 0 40px rgba(255,255,255,.1); }

/* Hero trust indicators */
.hero-trust {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.hero-trust-item {
    display: flex; align-items: center; gap: 12px;
    color: #a5b4fc; font-size: 1rem;
    transition: all 0.3s ease;
}
.hero-trust-item:hover {
    color: #fff;
}
.hero-trust-item i { color: #6ee7b7; font-size: .9rem; }
.hero-trust-item.rating-cta {
    background: rgba(251,191,36,.1);
    border: 1px solid rgba(251,191,36,.3);
    padding: 8px 16px;
    border-radius: 25px;
    color: #fbbf24;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(251,191,36,.3), 0 0 30px rgba(251,191,36,.15);
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(251,191,36,0.5);
}
.hero-trust-item.rating-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(251,191,36,.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}
.hero-trust-item.rating-cta:hover {
    box-shadow: 0 0 25px rgba(251,191,36,.5), 0 0 50px rgba(251,191,36,.25);
    border-color: rgba(251,191,36,.5);
    transform: translateY(-2px);
}
.hero-trust-item.rating-cta i { color: #fbbf24; }
.hero-trust-item.rating-cta a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
    position: relative;
    z-index: 1;
}
.hero-trust-item.rating-cta a:hover { color: #f59e0b; }

/* ---- SHOWCASE CARD (Hero Right) ---- */
.showcase-card {
    background: rgba(10,15,30,.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 32px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(99,102,241,.12), 
                0 0 40px rgba(99,102,241,.2), inset 0 0 30px rgba(99,102,241,.05);
    position: relative;
    overflow: hidden;
}

/* Top border effect */
.showcase-card::before {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,.9), rgba(6,182,212,.7), transparent);
    border-radius: 0 0 100% 100%;
    animation: topBorderPulse 3s ease-in-out infinite;
}

/* Right border effect */
.showcase-card::after {
    content: '';
    position: absolute;
    top: 8%; bottom: 8%; right: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(6,182,212,.7), rgba(99,102,241,.9), transparent);
    border-radius: 100% 0 0 100%;
    animation: rightBorderPulse 3s ease-in-out infinite 0.5s;
}

/* Left border effect */
.showcase-card .left-border {
    position: absolute;
    top: 8%; bottom: 8%; left: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(99,102,241,.9), rgba(6,182,212,.7), transparent);
    border-radius: 0 100% 100% 0;
    animation: leftBorderPulse 3s ease-in-out infinite 1s;
}

/* Bottom border effect */
.showcase-card .bottom-border {
    position: absolute;
    bottom: 0; left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(6,182,212,.7), rgba(99,102,241,.9), transparent);
    border-radius: 100% 100% 0 0;
    animation: bottomBorderPulse 3s ease-in-out infinite 1.5s;
}

/* Corner glow effects */
.showcase-card .corner-glow {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99,102,241,.6), transparent 70%);
    animation: cornerPulse 2s ease-in-out infinite;
}

.showcase-card .corner-glow.top-left {
    top: -10px; left: -10px;
    animation-delay: 0s;
}

.showcase-card .corner-glow.top-right {
    top: -10px; right: -10px;
    animation-delay: 0.5s;
}

.showcase-card .corner-glow.bottom-left {
    bottom: -10px; left: -10px;
    animation-delay: 1s;
}

.showcase-card .corner-glow.bottom-right {
    bottom: -10px; right: -10px;
    animation-delay: 1.5s;
}

@keyframes topBorderPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

@keyframes rightBorderPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes leftBorderPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes bottomBorderPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(0.8); }
    50% { opacity: 1; transform: scaleX(1); }
}

@keyframes cornerPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}
/* Live pill */
.sc-live-pill {
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(16,185,129,.08));
    border: 1px solid rgba(16,185,129,.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: .72rem; font-weight: 700;
    color: #6ee7b7;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 15px rgba(16,185,129,.3), 0 0 25px rgba(16,185,129,.2), inset 0 0 15px rgba(16,185,129,.1);
    overflow: hidden;
}

.sc-live-pill::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16,185,129,.4), transparent 70%);
    animation: livePulse 3s ease-in-out infinite;
    border-radius: 50%;
}

.sc-live-pill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
    animation: liveShimmer 2.5s linear infinite;
    border-radius: 20px;
}

@keyframes livePulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes liveShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.sc-live-dot {
    width: 7px; height: 7px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}
/* Big animated counter row */
.sc-counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.sc-counter-item {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    padding: 16px 14px;
    transition: all .25s;
}
.sc-counter-item:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.sc-counter-val {
    font-size: 1.55rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #a5b4fc, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sc-counter-label {
    font-size: .7rem;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
}
/* Live txn feed */
.sc-feed-title {
    font-size: .75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.sc-feed-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.06);
}

.transaction-count {
    font-size: .65rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16,185,129,.1);
    padding: 2px 6px;
    border-radius: 10px;
    border: 1px solid rgba(16,185,129,.2);
    margin-left: 6px;
}
.sc-feed { display: flex; flex-direction: column; gap: 0; }
.sc-feed-row {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.04);
    animation: feedSlideIn .4s ease;
}
.sc-feed-row:last-child { border-bottom: none; }
@keyframes feedSlideIn { from{ opacity:0; transform:translateY(-6px); } to{ opacity:1; transform:translateY(0); } }
.sc-feed-icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    flex-shrink: 0;
}
.sc-feed-info { flex: 1; }
.sc-feed-info p { margin: 0; font-size: .75rem; font-weight: 600; color: #94a3b8; }
.sc-feed-info span { font-size: .65rem; color: #334155; }
.sc-feed-amt { font-size: .8rem; font-weight: 700; }
.sc-feed-amt.green { color: #10b981; }
.sc-feed-amt.red { color: #ef4444; }
/* CTA strip */
.sc-cta-strip {
    margin-top: 18px;
    display: flex; gap: 10px;
}
.sc-cta-btn {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 11px 10px;
    border-radius: 11px;
    font-size: .8rem; font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    border: none; cursor: pointer;
}
.sc-cta-btn.primary {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    box-shadow: 0 4px 16px rgba(79,70,229,.4), 0 0 25px rgba(79,70,229,.2);
    position: relative;
    overflow: hidden;
}
.sc-cta-btn.primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}
.sc-cta-btn.primary:hover { box-shadow: 0 6px 24px rgba(79,70,229,.58), 0 0 35px rgba(79,70,229,.3); transform: translateY(-2px); color:#fff; text-decoration:none; }
.sc-cta-btn.secondary {
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.12);
    color: #94a3b8;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(255,255,255,.1), 0 0 25px rgba(255,255,255,.05);
}
.sc-cta-btn.secondary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}
.sc-cta-btn.secondary:hover { background: rgba(255,255,255,.10); color: #f1f5f9; transform: translateY(-1px); text-decoration:none; box-shadow: 0 6px 24px rgba(255,255,255,.15), 0 0 35px rgba(255,255,255,.1); }

/* ---- OPERATORS TICKER ---- */
.operators-bar {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
    background: rgba(255,255,255,.02);
    overflow: hidden;
}
.operators-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 20s linear infinite;
    width: max-content;
}
.operator-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: .85rem;
    font-weight: 700;
    color: #f1f5f9;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.operator-chip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.operator-chip:hover::before {
    animation: operatorChipShine 0.6s ease-in-out;
    opacity: 1;
}

.operator-chip:hover {
    background: rgba(16,185,129,0.1);
    border-color: rgba(16,185,129,0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16,185,129,0.3);
}

.operator-chip .op-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 10px currentColor;
    animation: opDotPulse 2s ease-in-out infinite;
}

@keyframes operatorChipShine {
    0% {
        transform: rotate(45deg) translate(-100%, -100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(45deg) translate(100%, 100%);
        opacity: 0;
    }
}

@keyframes opDotPulse {
    0%, 100% {
        box-shadow: 0 0 5px currentColor;
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 15px currentColor, 0 0 25px currentColor;
        transform: scale(1.2);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59,130,246,0.4), 0 0 40px rgba(59,130,246,0.2), inset 0 0 15px rgba(59,130,246,0.15);
    }
    50% {
        box-shadow: 0 0 30px rgba(59,130,246,0.6), 0 0 60px rgba(59,130,246,0.4), inset 0 0 25px rgba(59,130,246,0.25);
    }
}

@keyframes buttonHighlight {
    0%, 100% {
        border-color: rgba(59,130,246,0.8);
        box-shadow: 0 0 25px rgba(59,130,246,0.5), 0 0 50px rgba(59,130,246,0.3), inset 0 0 20px rgba(59,130,246,0.2), 0 0 80px rgba(59,130,246,0.1);
    }
    50% {
        border-color: rgba(59,130,246,1);
        box-shadow: 0 0 35px rgba(59,130,246,0.7), 0 0 70px rgba(59,130,246,0.5), inset 0 0 30px rgba(59,130,246,0.3), 0 0 120px rgba(59,130,246,0.2);
    }
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ---- SERVICES SECTION ---- */
.services-section {
    padding: 90px 0;
    position: relative;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 50px;
}
.service-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--card-accent, linear-gradient(90deg, #4f46e5, #06b6d4));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.service-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(79, 70, 229, 0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-icon { transform: scale(1.15) rotate(5deg); box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6); }
.service-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 18px;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}
.service-card h4 {
    font-size: .95rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}
.service-card p {
    font-size: .82rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ---- STATS SECTION ---- */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(79,70,229,.12), rgba(6,182,212,.08));
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.stat-card {
    text-align: center;
    padding: 20px;
}
.stat-number {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #a5b4fc, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: .82rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* ---- WHY US SECTION ---- */
.whyus-section {
    padding: 90px 0;
}
.feature-item {
    display: flex;
    gap: 18px;
    padding: 25px;
    border-radius: 16px;
    transition: all .3s ease;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.feature-item:hover { 
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.fi-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(5,150,105,0.1));
    border: 1px solid rgba(16,185,129,0.3);
    color: #10b981;
    transition: all 0.3s ease;
}
.fi-body h5 {
    font-size: .925rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 4px;
}
.fi-body p {
    font-size: .82rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Big image mockup placeholder */
.phone-mockup {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mockup-device {
    width: 280px;
    background: linear-gradient(135deg, rgba(79,70,229,.2), rgba(6,182,212,.15));
    border: 2px solid rgba(255,255,255,.1);
    border-radius: 36px;
    padding: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.05);
    position: relative;
}
.mockup-screen {
    background: #0a0f1e;
    border-radius: 24px;
    padding: 20px 16px;
    min-height: 320px;
}
.mockup-status { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: .7rem; color: #475569; }
.mockup-balance-card {
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 14px;
}
.mockup-balance-card .mbc-label { font-size: .65rem; color: rgba(255,255,255,.7); font-weight: 600; letter-spacing: .5px; margin-bottom: 4px; }
.mockup-balance-card .mbc-amount { font-size: 1.5rem; font-weight: 800; color: #fff; }
.mockup-quick-actions { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 14px; }
.mqa-item { background: rgba(255,255,255,.05); border-radius: 10px; padding: 10px 6px; text-align: center; }
.mqa-item i { font-size: .9rem; margin-bottom: 4px; display: block; }
.mqa-item span { font-size: .58rem; color: #64748b; font-weight: 600; }
.mockup-txn-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.mtr-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(99,102,241,.2); display: flex; align-items: center; justify-content: center; font-size: .65rem; color: #a5b4fc; flex-shrink: 0; }
.mtr-info { flex: 1; }
.mtr-info p { margin: 0; font-size: .65rem; color: #94a3b8; font-weight: 600; }
.mtr-info span { font-size: .58rem; color: #475569; }
.mtr-amount { font-size: .72rem; font-weight: 700; }
.mtr-amount.green { color: #10b981; }
.mtr-amount.red { color: #ef4444; }

/* Floating badges around phone */
.mockup-badge {
    position: absolute;
    background: rgba(15,23,42,.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79,70,229,.4);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3), 0 0 20px rgba(79,70,229,0.4), 0 0 40px rgba(79,70,229,0.2);
    animation: badgeFloat 4s ease-in-out infinite;
}
.mockup-badge.b1 { top: 10%; right: -10%; animation-delay: 0s; }
.mockup-badge.b2 { bottom: 20%; left: -12%; animation-delay: -2s; }
.mockup-badge .mb-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.mockup-badge .mb-text p { margin: 0; font-size: .65rem; font-weight: 700; color: #f1f5f9; text-shadow: 0 0 10px rgba(79,70,229,0.6), 0 0 20px rgba(79,70,229,0.3); }
.mockup-badge .mb-text span { font-size: .58rem; color: #cbd5e1; text-shadow: 0 0 5px rgba(79,70,229,0.4); }
@keyframes badgeFloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

/* ---- APP DOWNLOAD CTA ---- */
.app-cta {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.app-cta-inner {
    background: linear-gradient(135deg, rgba(79,70,229,.18), rgba(6,182,212,.12));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
}
.app-cta-inner::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(79,70,229,.2) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
}
.app-store-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: 12px 22px;
    text-decoration: none;
    color: #fff;
    transition: all .25s;
}
.app-store-btn:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.25); transform: translateY(-2px); color: #fff; text-decoration: none; }
.app-store-btn i { font-size: 1.6rem; color: #a5b4fc; }
.app-store-btn .asb-text p { margin: 0; font-size: .65rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.app-store-btn .asb-text strong { font-size: .9rem; font-weight: 700; }

/* ---- OPERATORS SECTION ---- */
.operators-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,.05);
}
.op-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 14px;
    margin-top: 44px;
}
.op-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    transition: all .25s;
}
.op-logo-item:hover { background: rgba(255,255,255,.08); transform: translateY(-3px); border-color: rgba(255,255,255,.12); }
.op-logo-item .op-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 4px;
}
.op-logo-item span { font-size: .72rem; font-weight: 700; color: #64748b; text-align: center; }

/* ---- FOOTER ---- */
.site-footer {
    background: linear-gradient(160deg, #080d1a 0%, #0a0f1e 60%, #060c18 100%);
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 72px;
}
.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-brand p {
    font-size: .83rem;
    color: #475569;
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: #64748b; font-size: .85rem;
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}
.footer-social a:hover {
    background: rgba(99,102,241,.2);
    border-color: rgba(99,102,241,.4);
    color: #a5b4fc;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(99,102,241,0.3), 0 0 15px rgba(99,102,241,0.2), 0 0 30px rgba(99,102,241,0.1);
}
.footer-social a:hover i {
    text-shadow: 0 0 10px rgba(99,102,241,0.8), 0 0 20px rgba(99,102,241,0.4), 0 0 30px rgba(99,102,241,0.2);
}

.footer-col-title {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,.06);
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    color: #475569;
    text-decoration: none;
    font-size: .84rem;
    font-weight: 500;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links li a::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: #334155;
    transition: background .2s;
    flex-shrink: 0;
}
.footer-links li a:hover { color: #a5b4fc; text-decoration: none; }
.footer-links li a:hover::before { background: #6366f1; }

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}
.fci-icon {
    width: 34px; height: 34px;
    border-radius: 9px;
    background: rgba(99,102,241,.12);
    border: 1px solid rgba(99,102,241,.2);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    color: #a5b4fc;
    flex-shrink: 0;
    margin-top: 2px;
}
.fci-text p { margin: 0; font-size: .84rem; color: #475569; font-weight: 500; }
.fci-text a { color: #64748b; text-decoration: none; font-size: .82rem; }
.fci-text a:hover { color: #a5b4fc; }

.footer-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    margin-top: 4px;
}

.footer-divider {
    border-top: 1px solid rgba(255,255,255,.06);
    margin-top: 56px;
    padding: 22px 0;
}
.footer-bottom-text {
    font-size: .78rem;
    color: #334155;
    font-weight: 500;
}
.footer-bottom-text a { color: #475569; text-decoration: none; transition: color .2s; }
.footer-bottom-text a:hover { color: #a5b4fc; }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a {
    font-size: .76rem;
    color: #334155;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s;
}
.footer-legal-links a:hover { color: #a5b4fc; }

/* Newsletter input */
.footer-newsletter {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    margin-top: 12px;
}
.footer-newsletter input {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 14px;
    color: #f1f5f9;
    font-size: .82rem;
    outline: none;
    font-family: 'Inter', sans-serif;
}
.footer-newsletter input::placeholder { color: #334155; }
.footer-newsletter button {
    background: var(--indigo, #4f46e5);
    border: none;
    padding: 10px 16px;
    color: #fff;
    font-size: .8rem;
    cursor: pointer;
    transition: background .2s;
}
.footer-newsletter button:hover { background: #4338ca; }

/* ---- RATING SECTION ---- */
.rating-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(79,70,229,.08), rgba(6,182,212,.05));
    border-top: 1px solid rgba(255,255,255,.05);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.rating-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}
.rating-summary {
    text-align: center;
}
.score-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}
.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}
.rating-stars i {
    color: #fbbf24;
    font-size: 1.2rem;
}
.rating-text {
    font-size: .9rem;
    color: #64748b;
    font-weight: 500;
}
.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bar-label {
    font-size: .85rem;
    color: #94a3b8;
    font-weight: 500;
    width: 60px;
    flex-shrink: 0;
}
.bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,.1);
    border-radius: 4px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 4px;
    transition: width 0.8s ease;
}
.bar-count {
    font-size: .85rem;
    color: #64748b;
    font-weight: 600;
    width: 50px;
    text-align: right;
    flex-shrink: 0;
}
.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.review-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 24px;
    transition: all .3s ease;
}
.review-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.12);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.review-stars {
    display: flex;
    gap: 2px;
}
.review-stars i {
    color: #fbbf24;
    font-size: .9rem;
}
.review-date {
    font-size: .75rem;
    color: #64748b;
    font-weight: 500;
}
.review-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}
.review-content p {
    font-size: .9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.05);
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    flex-shrink: 0;
}
.author-info {
    flex: 1;
}
.author-name {
    font-size: .9rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 2px;
}
.author-verified {
    font-size: .75rem;
    color: #10b981;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}
.author-verified i {
    font-size: .7rem;
}

/* ---- CONTACT MODAL ---- */
.modal-content {
    background: rgba(15,23,42,.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0,0,0,.5);
}
.modal-header {
    background: rgba(99,102,241,.1);
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
}
.modal-title {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 1.25rem;
}
.btn-close-white {
    filter: invert(1);
    opacity: 0.8;
}
.btn-close-white:hover {
    opacity: 1;
}
.modal-body {
    padding: 1rem;
}
.modal-body .form-label {
    color: #cbd5e1;
    font-weight: 200;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}
.modal-body .form-control {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: #f1f5f9;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all .3s ease;
    font-size: 0.85rem;
}
.modal-body .form-control:focus {
    background: rgba(255,255,255,.08);
    border-color: rgba(99,102,241,.4);
    color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99,102,241,.1);
}
.modal-body .form-control::placeholder {
    color: #64748b;
}
.modal-body .form-check {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 6px 10px;
    margin-bottom: 4px;
    transition: all .2s ease;
}
.modal-body .form-check:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
}
.modal-body .form-check-input {
    width: 18px;
    height: 18px;
    accent-color: #f59e0b;
}
.modal-body .form-check-label {
    color: #cbd5e1;
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
}
.modal-body .btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
    transition: all .3s ease;
    font-size: 0.85rem;
}
.modal-body .btn-warning {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(245,158,11,.3);
}
.modal-body .btn-warning:hover {
    background: linear-gradient(135deg, #f97316, #ea580c);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(245,158,11,.4);
}
.modal-body .btn-secondary {
    background: rgba(107,114,128,.8);
    border: none;
    color: #fff;
}
.modal-body .btn-secondary:hover {
    background: rgba(75,85,99,.9);
}

/* ---- ABOUT US PAGE STYLES ---- */

/* Page Header Base */
.page-header {
    padding: 100px 0 70px;
    background: linear-gradient(135deg, #6c2bd9, #ff6a00);
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* Animated overlay effect */
.page-header::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    animation: float 6s ease-in-out infinite;
}

.page-header::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    animation: float-reverse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

@keyframes float-reverse {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-30px, 30px) rotate(-180deg);
    }
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-breadcrumb .breadcrumb {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 1rem 2rem;
}

.page-breadcrumb .breadcrumb-item {
    color: rgba(255,255,255,0.8);
}

.page-breadcrumb .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.page-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

/* About Hero Section */
.about-hero {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.about-content .section-badge {
    margin-bottom: 1rem;
}

.about-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-content .section-sub {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-content .section-text {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16,185,129,0.8), rgba(6,182,212,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 3rem;
    color: #fff;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: #fff;
}

.mv-card {
    background: rgba(10,15,30,0.05);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mv-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.mv-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mv-content p {
    color: #64748b;
    line-height: 1.7;
}

/* Core Values */
.core-values {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.value-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Journey Timeline */
.journey {
    padding: 80px 0;
    background: #fff;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #10b981, #059669);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline-content {
    flex: 1;
    background: rgba(10,15,30,0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.team-section .row {
    justify-content: center;
}

.team-section .section-sub {
    text-align: center;
}

.team-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 1.5rem;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.team-position {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Page Styles */
.services-hero {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.services-content .section-badge {
    margin-bottom: 1rem;
}

.services-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.services-content .section-sub {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.services-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-radius: 14px;
    transition: background .2s;
    margin-bottom: 8px;
}

.feature-item:hover {
    background: rgba(255,255,255,.04);
}


.feature-item .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 25px rgba(16,185,129,0.3);
    transition: all 0.3s ease;
}

.feature-item .feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}


.services-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.services-grid-section .row {
    justify-content: center;
}

.services-grid-section .service-card {
    text-align: center;
}

.service-card {
    background: rgba(10,15,30,0.05);
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16,185,129,0.3);
}

.service-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #64748b;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: #10b981;
    font-size: 0.9rem;
}

/* How It Works Section */
.step-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(79, 70, 229, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.step-card:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.5);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #4f46e5;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.step-card h3,
.step-card h4 {
    color: #f1f5f9;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(79, 70, 229, 0.5), 0 0 20px rgba(79, 70, 229, 0.3);
}

.step-card p {
    color: #cbd5e1;
    line-height: 1.6;
    text-shadow: 0 0 5px rgba(79, 70, 229, 0.3);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    text-align: center;
}

.benefits-section .row {
    justify-content: center;
}

.benifit-card {
    background: rgba(255,255,255,0.95);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benifit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.benifit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.benifit-card:hover .benifit-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.benifit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(16,185,129,0.3);
}

.benifit-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.benifit-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.benifit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.contact-content .section-badge {
    margin-bottom: 1rem;
}

.contact-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.contact-content .section-sub {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info-card {
    background: rgba(10,15,30,0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16,185,129,0.1), transparent);
    transition: left 0.6s ease;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.contact-info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37,99,235,0.4);
}

.contact-info-card:hover .info-icon::before {
    animation: shimmer 0.6s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: rotate(45deg) translate(-100%, -100%);
    }
    100% {
        transform: rotate(45deg) translate(100%, 100%);
    }
}

.info-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-content span {
    color: #10b981;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #fff;
}

.contact-form-wrapper {
    background: rgba(10,15,30,0.05);
    border-radius: 1rem;
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    text-align: center;
}

.form-subtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.05);
    color: #374151;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: rgba(10,15,30,0.05);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sidebar-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card h4 i {
    color: #10b981;
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    color: #64748b;
}

.day {
    font-weight: 600;
    color: #1e293b;
}

.time {
    color: #10b981;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-info p {
    color: #64748b;
    line-height: 1.6;
}

.location-info p strong {
    color: #1e293b;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    text-decoration: none;
    padding: 0.5rem 0;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.quick-link:hover {
    background: rgba(16,185,129,0.1);
}

.quick-link i {
    color: #10b981;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.faq-item {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.faq-question h4 i {
    color: #10b981;
}

.faq-answer {
    color: #64748b;
    line-height: 1.7;
}

/* Dark Theme Styles */
body.dark-theme {
    background: #0f172a;
    color: #e2e8f0;
}

/* Enhanced Text Visibility for Dark Theme */
body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

body.dark-theme p,
body.dark-theme span,
body.dark-theme label,
body.dark-theme .form-label {
    color: #cbd5e1;
    font-weight: 500;
}

body.dark-theme .gradient-text {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-shadow: none;
}

body.dark-theme .section-badge {
    background: rgba(99,102,241,0.2);
    color: #fff;
    border: 1px solid #6366f1;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(99,102,241,0.8), 0 0 20px rgba(99,102,241,0.5);
    box-shadow: 0 0 15px rgba(99,102,241,0.4), 0 0 30px rgba(99,102,241,0.2);
    transition: all 0.3s ease;
}

body.dark-theme .section-badge:hover {
    box-shadow: 0 0 25px rgba(99,102,241,0.6), 0 0 50px rgba(99,102,241,0.4);
    border-color: rgba(99,102,241,0.8);
}

body.dark-theme .contact-info-card h4,
body.dark-theme .sidebar-card h4,
body.dark-theme .faq-question h4 {
    color: #ffffff;
    font-weight: 600;
}

body.dark-theme .contact-info-card p,
body.dark-theme .sidebar-card p,
body.dark-theme .faq-answer p {
    color: #cbd5e1;
    line-height: 1.6;
}

body.dark-theme a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

body.dark-theme a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

body.dark-theme .form-control,
body.dark-theme .form-select {
    background: #1e293b;
    border: 1px solid #334155;
    color: #e2e8f0;
}

body.dark-theme .form-control:focus,
body.dark-theme .form-select:focus {
    background: #334155;
    border-color: #60a5fa;
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(96,165,250,0.1);
}

/* Enhanced Placeholder Text Visibility */
body.dark-theme .form-control::placeholder {
    color: #94a3b8;
    opacity: 1;
    font-style: italic;
    font-weight: 400;
}

body.dark-theme .form-select option {
    color: #1e293b;
    background: #0f172a;
}

body.dark-theme .form-select {
    color: #e2e8f0;
}

/* Google Play Button Animation */
.app-store-btn {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 1px solid #333;
    transition: all 0.3s ease;
    animation: googlePlayPulse 2s infinite;
}

.app-store-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.app-store-btn .asb-text p {
    color: #ffffff;
    font-size: 0.75rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.app-store-btn .asb-text strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: googlePlayHighlight 1.5s ease-in-out infinite;
}

.app-store-btn i.fab.fa-google-play {
    color: #10b981;
    font-size: 2rem;
    animation: googlePlayIcon 2s ease-in-out infinite;
}

@keyframes googlePlayPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16,185,129,0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(16,185,129,0.4);
    }
}

@keyframes googlePlayHighlight {
    0%, 100% {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

@keyframes googlePlayIcon {
    0%, 100% {
        color: #10b981;
        transform: scale(1);
    }
    50% {
        color: #34d399;
        transform: scale(1.1);
    }
}

/* Navbar Button Animations */
.navbar-inner .btn-login {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: 1px solid #2563eb;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    animation: loginButtonGlow 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.navbar-inner .btn-login::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.navbar-inner .btn-login:hover::before {
    animation: loginButtonShine 0.6s ease-in-out;
    opacity: 1;
}

.navbar-inner .btn-login:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.4);
}

.navbar-inner .btn-register {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: 1px solid #d97706;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    animation: registerButtonGlow 3s ease-in-out infinite 0.5s;
    transition: all 0.3s ease;
}

.navbar-inner .btn-register::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.navbar-inner .btn-register:hover::before {
    animation: registerButtonShine 0.6s ease-in-out;
    opacity: 1;
}

.navbar-inner .btn-register:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,158,11,0.4);
}

.navbar-inner .btn-app {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border: 1px solid #7c3aed;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    animation: appButtonGlow 3s ease-in-out infinite 1s;
    transition: all 0.3s ease;
}

.navbar-inner .btn-app::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(16,185,129,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.navbar-inner .btn-app:hover::before {
    animation: appButtonShine 0.6s ease-in-out;
    opacity: 1;
}

.navbar-inner .btn-app:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139,92,246,0.4);
}

.navbar-inner .btn-app i.fab.fa-google-play {
    color: #ffffff;
    animation: navbarGooglePlayIcon 2s ease-in-out infinite;
}

@keyframes loginButtonGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(59,130,246,0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(59,130,246,0.4);
    }
}

@keyframes registerButtonGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(245,158,11,0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(245,158,11,0.4);
    }
}

@keyframes appButtonGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(139,92,246,0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(139,92,246,0.4);
    }
}

@keyframes loginButtonShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes registerButtonShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes appButtonShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes navbarGooglePlayIcon {
    0%, 100% {
        color: #ffffff;
        transform: scale(1);
    }
    50% {
        color: #e9d5ff;
        transform: scale(1.1);
    }
}

/* Zoom Controls Styling */
.zoom-controls {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.zoom-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.zoom-btn:hover {
    background: rgba(255,255,255,1);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.zoom-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(0.9);
}

body.dark-theme .zoom-btn {
    background: rgba(30,41,59,0.9);
    color: #e2e8f0;
    border: 1px solid #4b5563;
}

body.dark-theme .zoom-btn:hover {
    background: rgba(59,130,246,0.9);
    box-shadow: 0 4px 15px rgba(59,130,246,0.5);
}

.zoom-level {
    position: fixed;
    top: 70px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: #333;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 999;
}

body.dark-theme .zoom-level {
    background: rgba(30,41,59,0.9);
    color: #e2e8f0;
    border: 1px solid #4b5563;
}

/* Responsive Zoom Controls */
@media (max-width: 768px) {
    .zoom-controls {
        top: 10px;
        right: 10px;
        gap: 5px;
        padding: 10px;
    }
    
    .zoom-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
}


body.dark-theme .site-navbar {
    background: #1e293b;
    border-bottom: 1px solid #334155;
}

body.dark-theme .nav-links a {
    color: #cbd5e1;
}

body.dark-theme .nav-links a:hover,
body.dark-theme .nav-links a.nav-active {
    color: #10b981;
}

body.dark-theme .page-header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

body.dark-theme .page-breadcrumb .breadcrumb {
    background: rgba(16,185,129,0.2);
}

body.dark-theme .page-breadcrumb .breadcrumb-item {
    color: rgba(255,255,255,0.7);
}

body.dark-theme .page-breadcrumb .breadcrumb-item a {
    color: #fff;
}

body.dark-theme .page-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

body.dark-theme .about-hero,
body.dark-theme .services-hero,
body.dark-theme .contact-hero {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

body.dark-theme .about-content .section-sub,
body.dark-theme .services-content .section-sub,
body.dark-theme .contact-content .section-sub {
    color: #94a3b8;
}

body.dark-theme .about-content .section-text {
    color: #cbd5e1;
}

body.dark-theme .mission-vision,
body.dark-theme .services-grid-section,
body.dark-theme .contact-form-section {
    background: #0f172a;
}

body.dark-theme .mv-card,
body.dark-theme .service-card,
body.dark-theme .benefit-card,
body.dark-theme .contact-info-card,
body.dark-theme .contact-form-wrapper,
body.dark-theme .sidebar-card,
body.dark-theme .faq-item {
    background: #1e293b;
    border: 1px solid #334155;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.dark-theme .mv-content h3,
body.dark-theme .service-content h3,
body.dark-theme .benefit-card h4,
body.dark-theme .info-content h4,
body.dark-theme .sidebar-card h4,
body.dark-theme .faq-question h4 {
    color: #f1f5f9;
}

body.dark-theme .mv-content p,
body.dark-theme .service-content p,
body.dark-theme .service-features li,
body.dark-theme .benefit-card p,
body.dark-theme .info-content p,
body.dark-theme .info-content span,
body.dark-theme .hours-item,
body.dark-theme .location-info p,
body.dark-theme .quick-link,
body.dark-theme .faq-answer {
    color: #cbd5e1;
}

body.dark-theme .core-values,
body.dark-theme .benefits-section,
body.dark-theme .faq-section {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

body.dark-theme .value-card {
    background: #1e293b;
    border: 1px solid #334155;
}

body.dark-theme .value-card h4 {
    color: #f1f5f9;
}

body.dark-theme .value-card p {
    color: #cbd5e1;
}

body.dark-theme .journey {
    background: #0f172a;
}

body.dark-theme .journey-timeline::before {
    background: linear-gradient(180deg, #10b981, #059669);
}

body.dark-theme .timeline-content {
    background: #1e293b;
    border: 1px solid #334155;
}

body.dark-theme .timeline-content h4 {
    color: #f1f5f9;
}

body.dark-theme .timeline-content p {
    color: #cbd5e1;
}

body.dark-theme .team-section {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 50px 0;
}

body.dark-theme .team-card {
    background: #1e293b;
    border: 1px solid #334155;
}

body.dark-theme .team-info h4 {
    color: #f1f5f9;
}

body.dark-theme .team-position {
    color: #10b981;
}

body.dark-theme .team-bio {
    color: #cbd5e1;
}

body.dark-theme .cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

body.dark-theme .site-footer {
    background: #0f172a;
    border-top: 1px solid #334155;
}

body.dark-theme .footer-brand h3,
body.dark-theme .footer-links h5,
body.dark-theme .footer-contact h5,
body.dark-theme .footer-app h5 {
    color: #f1f5f9;
}

body.dark-theme .footer-brand p,
body.dark-theme .footer-links-list li a,
body.dark-theme .footer-contact-item .fci-text p,
body.dark-theme .footer-contact-item .fci-text a,
body.dark-theme .copyright {
    color: #94a3b8;
}

body.dark-theme .footer-links-list li a:hover {
    color: #10b981;
}

body.dark-theme .form-label {
    color: #f1f5f9;
}

body.dark-theme .form-control {
    background: #1e293b;
    border: 2px solid #334155;
    color: #f1f5f9;
}

body.dark-theme .form-control:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.2);
}

body.dark-theme .day {
    color: #f1f5f9;
}

body.dark-theme .time {
    color: #10b981;
}

body.dark-theme .location-info p strong {
    color: #f1f5f9;
}

body.dark-theme .quick-link:hover {
    background: rgba(16,185,129,0.2);
}

body.dark-theme .support-center {
    background: #1e293b;
}

body.dark-theme .support-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

body.dark-theme .contact-slider {
    background: #1e293b;
    border: 1px solid #334155;
}

body.dark-theme .contact-header {
    background: #0f172a;
    border-bottom: 1px solid #334155;
}

body.dark-theme .contact-header h5 {
    color: #f1f5f9;
}

body.dark-theme .contact-item {
    background: #1e293b;
    border-bottom: 1px solid #334155;
}

body.dark-theme .contact-info h6 {
    color: #f1f5f9;
}

body.dark-theme .contact-info a {
    color: #10b981;
}

/* Dark Theme Hover Effects */
body.dark-theme .mv-card:hover,
body.dark-theme .service-card:hover,
body.dark-theme .benefit-card:hover,
body.dark-theme .contact-info-card:hover,
body.dark-theme .value-card:hover,
body.dark-theme .team-card:hover,
body.dark-theme .sidebar-card:hover,
body.dark-theme .faq-item:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transform: translateY(-5px);
}

/* Dark Theme Images and Overlays */
body.dark-theme .image-overlay {
    background: linear-gradient(135deg, rgba(16,185,129,0.9), rgba(6,182,212,0.9));
}

body.dark-theme .overlay-icon {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .about-content .section-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .journey-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding-left: 60px;
    }
    
    .timeline-date {
        position: absolute;
        left: 0;
        margin: 0;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ---- SUPPORT CENTER ---- */
.support-center {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.support-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 12px 0 0 12px;
    padding: 16px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: -4px 4px 20px rgba(16,185,129,.4), 0 0 30px rgba(16,185,129,.2);
    transition: all 0.3s ease;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.support-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16,185,129,.6), transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    animation: supportPulse 2s ease-in-out infinite;
}

.support-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,.2), transparent);
    transform: translateX(-100%);
    animation: supportShine 3s ease-in-out infinite;
}

.support-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: -4px 4px 30px rgba(16,185,129,.7), 0 0 50px rgba(16,185,129,.4), inset 0 0 20px rgba(255,255,255,.1);
}

@keyframes supportPulse {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes supportShine {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.support-btn i {
    font-size: 1.2rem;
    transform: rotate(90deg);
}

.contact-slider {
    position: fixed;
    right: -320px;
    top: 0;
    width: 320px;
    height: 100vh;
    background: rgba(15,23,42,.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(255,255,255,.1);
    box-shadow: -10px 0 40px rgba(0,0,0,.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.contact-slider.active {
    right: 0;
}

.contact-header {
    background: linear-gradient(135deg, rgba(99,102,241,.15), rgba(6,182,212,.1));
    padding: 20px;
    border-bottom: 2px solid rgba(255,255,255,.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
}

.contact-header h5 {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,.3);
}

.close-btn {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #f1f5f9;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.close-btn:hover {
    color: #fff;
    background: rgba(239,68,68,.8);
    border-color: rgba(239,68,68,.8);
    transform: rotate(90deg);
    box-shadow: 0 4px 15px rgba(239,68,68,.4);
}

.contact-body {
    padding: 30px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.05));
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
    transition: left 0.5s ease;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
    border-color: rgba(255,255,255,.2);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,.2);
}

.contact-item:nth-child(1) .contact-icon {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #e0e7ff;
}

.contact-item:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #d1fae5;
}

.contact-item:nth-child(3) .contact-icon {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fef3c7;
}

.contact-info h6 {
    color: #f1f5f9;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: block;
}

.contact-info a:hover {
    color: #f1f5f9;
}


/* Responsive */
@media (max-width: 991px) {
    .hero { padding: 60px 0 50px; min-height: auto; }
    .login-float-card { margin-top: 40px; }
    .mockup-badge { display: none; }
    .app-cta-inner { padding: 36px 24px; }
    .app-cta-inner .d-flex { flex-direction: column; align-items: flex-start !important; gap: 24px !important; }
    .support-center {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    .support-btn {
        min-height: 100px;
        padding: 12px 8px;
        font-size: 0.8rem;
    }
    .contact-slider {
        width: 280px;
        right: -280px;
    }
}
@media (max-width: 576px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .op-logo-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-btns .btn-hero-secondary { display: none; }
    .review-cards { grid-template-columns: 1fr; }
    .rating-bar-item { flex-wrap: wrap; gap: 8px; }
    .bar-label { width: 50px; font-size: .8rem; }
    .bar-count { width: 40px; font-size: .8rem; }
}
