/* Premium Design Enhancements */
:root {
    --primary-color: #002fba;
    /* Primary Blue */
    --primary-dark: #002696;
    /* Darker Blue */
    --primary-light: #4d6be0;
    /* Light Blue */
    --accent-color: #ffffff;
    /* White for contrast */
    --text-light: #f5f5f5;
    --text-dark: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 47, 186, 0.2);
}

body {
    font-family: 'Figtree', sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 47, 186, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 47, 186, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 47, 186, 0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #1a1a1a, #000);
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 47, 186, 0.2);
}

.top-bar i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:not(.btn):hover {
    color: var(--primary-color);
}

nav ul li a:not(.btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav ul li a:not(.btn):hover:after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    z-index: 1002;
    transition: color 0.3s;
}

.mobile-menu:hover {
    color: var(--primary-color);
}

.mobile-menu.active i:before {
    content: '\f00d';
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.hero-content {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 47, 186, 0.4);
    color: #fff;
}

.btn-secondary-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-secondary-outline:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 47, 186, 0.3);
}

/* Testimonials */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 40px 35px;
    border-radius: 24px;
    color: white;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.testimonial-card-premium:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 25px;
    opacity: 0.8;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.95;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-info img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.reviewer-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.reviewer-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 8px;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #4d6be0;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(0, 47, 186, 0.5);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background: #128C7E;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 47, 186, 0.6);
}

/* Footer Banner */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
    animation: slideUp 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.privacy-banner .banner-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-right: 20px;
}

.privacy-text h5 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.privacy-text p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
    max-width: 700px;
}

.banner-actions {
    display: flex;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}

.btn-outline-secondary {
    border-color: #ccc;
    color: #333;
    background: transparent;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-secondary:hover {
    background: #eee;
    color: #000;
    border-color: #bbb;
}

.link-primary {
    color: var(--primary-color) !important;
    text-decoration: none;
    margin-right: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-bottom: 2px;
}

.link-primary:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s;
}

.link-primary:hover:after {
    width: 100%;
}

/* Modal Styles */
.data-protection-modal .modal-content {
    border-radius: 20px;
    border: none;
    background: #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.data-protection-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.5rem 2rem;
    border-bottom: none;
}

.data-protection-modal .modal-title {
    font-weight: 700;
    font-size: 1.25rem;
}

.data-protection-modal .btn-close-white {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.data-protection-modal .btn-close-white:hover {
    opacity: 1;
}

.data-protection-modal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.policy-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.policy-section h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.data-protection-modal .modal-footer {
    border-top: 1px solid #eee;
    background: #fdfdfd;
    padding: 1.5rem;
}

/* Footer Section */
footer {
    background: #111827;
    color: #fff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 50%;
    margin-right: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px) rotate(360deg);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

/* Prevents text wrapping issues on buttons, nav links & badges */
nav ul li a, .btn, .status-indicator-badge, .badge-glow {
    white-space: nowrap !important;
}

.logo img {
    max-height: 44px;
    width: auto;
    flex-shrink: 0;
}

/* Header Container Desktop Layout */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 40px 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        backdrop-filter: blur(12px);
        overflow-y: auto;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        margin: 0 0 18px 0;
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    nav ul.active li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: 0.15s;
    }

    nav ul li a {
        font-size: 1.1rem;
        font-weight: 700;
        padding: 8px 0;
        display: block;
        width: 100%;
        color: #0f172a;
    }

    nav ul li a.btn {
        display: inline-block;
        text-align: center;
        width: 100%;
        padding: 12px 20px !important;
    }

    .mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        background: #f1f5f9;
        color: #002fba;
        font-size: 1.25rem;
        cursor: pointer;
        z-index: 1002;
        transition: all 0.3s ease;
    }

    .mobile-menu:hover, .mobile-menu.active {
        background: #002fba;
        color: #ffffff;
    }

    /* Mobile Overlay Backdrop */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(15, 23, 42, 0.5);
        backdrop-filter: blur(4px);
        z-index: 1000;
        animation: fadeIn 0.3s ease forwards;
    }
}

@media (max-width: 768px) {
    .top-announcement-bar {
        display: none !important;
    }

    .hero {
        padding: 80px 0 60px 0 !important;
        min-height: auto !important;
    }

    .hero h1 {
        font-size: 2.25rem !important;
        line-height: 1.25 !important;
    }

    .hero p.lead {
        font-size: 1.05rem !important;
    }

    .hero-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn-group .btn {
        width: 100%;
        text-align: center;
    }

    .stat-card-v2 {
        padding: 20px 16px;
    }

    .counter-value {
        font-size: 1.85rem !important;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 36px !important;
    }

    .hero h1 {
        font-size: 1.85rem !important;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;

        right: 20px;
    }
}

/* Authentication Styles */
.auth-body {
    background: linear-gradient(135deg, #090d16 0%, #0b1120 50%, #0f172a 100%);
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.auth-split-card {
    max-width: 1100px;
    width: 100%;
}

.auth-split-card .card-wrapper {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.auth-card {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    background: #ffffff;
    transition: transform 0.3s ease;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.logo-badge {
    padding: 12px;
    background: rgba(0, 47, 186, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    border-radius: 12px;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #002fba;
    box-shadow: 0 0 0 3px rgba(0, 47, 186, 0.12);
    background-color: #ffffff;
}

.btn-primary {
    background: linear-gradient(135deg, #002fba 0%, #0047e1 100%);
    border: none;
    font-weight: 700;
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 47, 186, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 47, 186, 0.35);
    background: linear-gradient(135deg, #0047e1 0%, #0038b3 100%);
}


.auth-card .form-control:focus {
    border-color: #002fba;
    box-shadow: 0 0 0 3px rgba(0, 47, 186, 0.1);
    background-color: #fff;
}

.auth-card .input-group-text {
    border-radius: 0 10px 10px 0;
    background-color: #fbfcfd;
    border-color: #e2e8f0;
    color: #64748b;
}

.spinner-border-sm {
    display: none;
    margin-right: 8px;
}

.btn-processing .spinner-border-sm {
    display: inline-block;
}

.tiny-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Upgraded Landing Page Styles (v2.0)
   ========================================================================== */
:root {
    --primary-blue: #002fba;
    --primary-dark-bg: #0b0f19;
    --accent-cyan: #06b6d4;
    --accent-indigo: #4338ca;
    --card-bg-light: #ffffff;
    --surface-slate: #f8fafc;
    --text-heading: #0f172a;
    --text-body: #475569;
}

body {
    font-family: 'Plus Jakarta Sans', 'Figtree', sans-serif;
}

/* Typography Helpers */
.font-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Status Indicator Dot */
.status-indicator-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.825rem;
    font-weight: 600;
}

.status-dot-pulse {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Glassmorphism & Mesh Backgrounds */
.glass-panel-dark {
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.glass-panel-light {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Floating Animation */
.animate-float {
    animation: floatAnimation 5s ease-in-out infinite;
}

.animate-float-delayed {
    animation: floatAnimation 6s ease-in-out 2s infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Badge Glow */
.badge-glow {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 47, 186, 0.2);
}

/* Stats Counter Cards */
.stat-card-v2 {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 47, 186, 0.08);
    border-color: rgba(0, 47, 186, 0.2);
}

.stat-card-v2 .stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(0, 47, 186, 0.08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.stat-card-v2 .counter-value {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

/* Process Step Cards */
.step-card-v2 {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 47, 186, 0.1);
    border-color: #3b82f6;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #002fba, #3b82f6);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 16px rgba(0, 47, 186, 0.25);
}

/* Category Pills & Tab Controls */
.category-tab-btn {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid transparent;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.925rem;
    transition: all 0.25s ease;
    cursor: pointer;
}

.category-tab-btn.active, .category-tab-btn:hover {
    background: #002fba;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 47, 186, 0.25);
}

/* Custom Accordion for FAQs */
.faq-accordion-item {
    background: #ffffff;
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    border-color: rgba(0, 47, 186, 0.3) !important;
}

.faq-accordion-button {
    background: #ffffff !important;
    font-weight: 700;
    color: #0f172a !important;
    font-size: 1.1rem;
    padding: 20px 24px !important;
    box-shadow: none !important;
}

.faq-accordion-button:not(.collapsed) {
    color: #002fba !important;
    background: rgba(0, 47, 186, 0.02) !important;
}

.faq-accordion-body {
    padding: 0 24px 24px 24px;
    color: #64748b;
    line-height: 1.7;
    font-size: 1rem;
}

/* Quick Interactive Preview Widget */
.quick-widget-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Top Announcement Bar */
.top-announcement-bar {
    background: linear-gradient(90deg, #090d16 0%, #001e75 50%, #090d16 100%);
    color: #e2e8f0;
    font-size: 0.825rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-announcement-bar a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}

.top-announcement-bar a:hover {
    text-decoration: underline;
}

/* Glass Header v2 */
.header-v2 {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.35s ease;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.header-v2.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* Animated Gradient Text */
.text-gradient-cyan-blue {
    background: linear-gradient(135deg, #38bdf8 0%, #60a5fa 50%, #a7f3d0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Shimmer Button Effect */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(30deg);
    animation: shimmerSlide 4s infinite;
}

@keyframes shimmerSlide {
    0% { transform: translateX(-100%) rotate(30deg); }
    30%, 100% { transform: translateX(100%) rotate(30deg); }
}

/* Interactive Hero Widget Tabs */
.hero-widget-tab-btn {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.25s ease;
    cursor: pointer;
}

.hero-widget-tab-btn.active, .hero-widget-tab-btn:hover {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    border-color: rgba(56, 189, 248, 0.4);
}

/* Avatar Stack */
.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #001e75;
    margin-left: -10px;
    object-fit: cover;
}

/* ==========================================================================
   Comprehensive Light & Dark Mode System (v3.1 - High Contrast Fixes)
   ========================================================================== */
:root, [data-bs-theme="light"] {
    --theme-bg-body: #ffffff;
    --theme-bg-surface: #f8fafc;
    --theme-bg-card: #ffffff;
    --theme-text-heading: #0f172a;
    --theme-text-body: #475569;
    --theme-text-muted: #64748b;
    --theme-border: #e2e8f0;
    --theme-header-bg: rgba(255, 255, 255, 0.92);
    --theme-header-scrolled: rgba(255, 255, 255, 0.98);
    --theme-input-bg: #f8fafc;
    --theme-input-text: #0f172a;
    --theme-card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

[data-bs-theme="dark"] {
    --theme-bg-body: #090d16;
    --theme-bg-surface: #0b1120;
    --theme-bg-card: #0f172a;
    --theme-text-heading: #f8fafc;
    --theme-text-body: #cbd5e1;
    --theme-text-muted: #94a3b8;
    --theme-border: rgba(255, 255, 255, 0.12);
    --theme-header-bg: rgba(9, 13, 22, 0.92);
    --theme-header-scrolled: rgba(9, 13, 22, 0.98);
    --theme-input-bg: #1e293b;
    --theme-input-text: #f8fafc;
    --theme-card-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Base Body Theme Transitions */
body {
    background-color: var(--theme-bg-body) !important;
    color: var(--theme-text-body) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Theme Toggle Button Styling */
.theme-toggle-btn {
    background: rgba(0, 47, 186, 0.08);
    border: 1px solid rgba(0, 47, 186, 0.15);
    color: #002fba;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap !important;
}

.theme-toggle-btn:hover {
    background: #002fba;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 47, 186, 0.25);
}

[data-bs-theme="dark"] .theme-toggle-btn {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #38bdf8;
}

[data-bs-theme="dark"] .theme-toggle-btn:hover {
    background: #38bdf8;
    color: #090d16;
}

/* Dark Mode Overrides for Header & Navbar */
[data-bs-theme="dark"] .header-v2 {
    background: var(--theme-header-bg) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

[data-bs-theme="dark"] .header-v2.scrolled {
    background: var(--theme-header-scrolled) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

[data-bs-theme="dark"] nav ul li a:not(.btn) {
    color: #f8fafc !important;
}

[data-bs-theme="dark"] nav ul li a:not(.btn):hover {
    color: #38bdf8 !important;
}

[data-bs-theme="dark"] .mobile-menu {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

@media (max-width: 1199px) {
    [data-bs-theme="dark"] nav ul {
        background: rgba(15, 23, 42, 0.98) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Dark Mode Overrides for Sections & Backgrounds */
[data-bs-theme="dark"] .bg-white,
[data-bs-theme="dark"] section[style*="background: #ffffff"],
[data-bs-theme="dark"] section[style*="background:#ffffff"],
[data-bs-theme="dark"] section[style*="background: #fff"],
[data-bs-theme="dark"] section[style*="background:#fff"],
[data-bs-theme="dark"] section[style*="background-color: #ffffff"],
[data-bs-theme="dark"] section[style*="background-color: #f8fafc"],
[data-bs-theme="dark"] section[style*="background: #f8fafc"],
[data-bs-theme="dark"] #services,
[data-bs-theme="dark"] #fee-calculator,
[data-bs-theme="dark"] #how-it-works,
[data-bs-theme="dark"] #testimonials,
[data-bs-theme="dark"] #faqs,
[data-bs-theme="dark"] #support {
    background-color: var(--theme-bg-body) !important;
}

/* Dark Mode Card Background Overrides */
[data-bs-theme="dark"] .bg-white.rounded-4,
[data-bs-theme="dark"] .stat-card-v2,
[data-bs-theme="dark"] .service-card-v2,
[data-bs-theme="dark"] .step-card-v2,
[data-bs-theme="dark"] .quick-widget-card,
[data-bs-theme="dark"] .support-form-wrapper,
[data-bs-theme="dark"] .auth-split-card .card-wrapper,
[data-bs-theme="dark"] .auth-form-side,
[data-bs-theme="dark"] .modal-content {
    background-color: var(--theme-bg-card) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35) !important;
}

/* Dark Mode Text Colors */
[data-bs-theme="dark"] .text-dark,
[data-bs-theme="dark"] .text-secondary,
[data-bs-theme="dark"] h1:not(.text-white),
[data-bs-theme="dark"] h2:not(.text-white),
[data-bs-theme="dark"] h3:not(.text-white),
[data-bs-theme="dark"] h4:not(.text-white),
[data-bs-theme="dark"] h5:not(.text-white),
[data-bs-theme="dark"] h6:not(.text-white),
[data-bs-theme="dark"] .h1:not(.text-white),
[data-bs-theme="dark"] .h2:not(.text-white),
[data-bs-theme="dark"] .h3:not(.text-white),
[data-bs-theme="dark"] .h4:not(.text-white),
[data-bs-theme="dark"] .h5:not(.text-white),
[data-bs-theme="dark"] .h6:not(.text-white) {
    color: #f8fafc !important;
}

[data-bs-theme="dark"] .counter-value {
    color: #f8fafc !important;
}

[data-bs-theme="dark"] .stat-card-v2 .text-muted,
[data-bs-theme="dark"] .text-muted:not(.text-white-50) {
    color: #cbd5e1 !important;
}

/* Form Controls & Labels in Dark Mode */
[data-bs-theme="dark"] label,
[data-bs-theme="dark"] .form-label {
    color: #f8fafc !important;
}

[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select,
[data-bs-theme="dark"] input,
[data-bs-theme="dark"] textarea {
    background-color: var(--theme-input-bg) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: var(--theme-input-text) !important;
}

[data-bs-theme="dark"] input::placeholder,
[data-bs-theme="dark"] textarea::placeholder {
    color: #64748b !important;
}

[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25) !important;
    background-color: #1e293b !important;
}

[data-bs-theme="dark"] .input-group-text,
[data-bs-theme="dark"] .bg-light {
    background-color: #1e293b !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #cbd5e1 !important;
}

[data-bs-theme="dark"] .border-light {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* Accordion Dark Mode */
[data-bs-theme="dark"] .faq-accordion-item {
    background-color: var(--theme-bg-card) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-bs-theme="dark"] .faq-accordion-button {
    background-color: var(--theme-bg-card) !important;
    color: #f8fafc !important;
}

[data-bs-theme="dark"] .faq-accordion-button:not(.collapsed) {
    background-color: rgba(0, 47, 186, 0.25) !important;
    color: #38bdf8 !important;
}

[data-bs-theme="dark"] .faq-accordion-body {
    color: #cbd5e1 !important;
}

/* Privacy Banner Dark Mode */
[data-bs-theme="dark"] .privacy-banner {
    background: rgba(15, 23, 42, 0.96);
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .privacy-text h5 {
    color: #f8fafc;
}

/* Category Tab Filter Pills */
.category-tab-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.925rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap !important;
}

.category-tab-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: translateY(-2px);
}

.category-tab-btn.active {
    background: linear-gradient(135deg, #002fba 0%, #0047e1 100%) !important;
    color: #ffffff !important;
    border-color: #002fba !important;
    box-shadow: 0 6px 18px rgba(0, 47, 186, 0.3);
}

[data-bs-theme="dark"] .category-tab-btn {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #cbd5e1 !important;
}

[data-bs-theme="dark"] .category-tab-btn:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-2px);
}

[data-bs-theme="dark"] .category-tab-btn.active {
    background: linear-gradient(135deg, #002fba 0%, #0047e1 100%) !important;
    color: #ffffff !important;
    border-color: #38bdf8 !important;
    box-shadow: 0 6px 20px rgba(0, 47, 186, 0.5) !important;
}






