/* Modern Design Styles - Ackapital */

/* Global Styles */
:root {
    --primary-color: #00a86b;
    --primary-light: #00cc80;
    --primary-dark: #008b5a;
    --secondary-color: #0066cc;
    --accent-color: #ffa500;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-color: #0f172a;
    --gray-color: #64748b;
    --light-gray: #f8fafc;
    --subtle-gray: #f1f5f9;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --border-radius: 16px;
    --gradient-primary: linear-gradient(135deg, #00a86b 0%, #0066cc 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header Styles */
.header-top-bar {
    background: var(--gradient-dark);
    padding: 8px 0;
    font-size: 14px;
    color: var(--light-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-item i {
    color: var(--primary-light);
    font-size: 12px;
}

.top-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    color: white;
}

/* Main Header */
.main-header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .navbar {
    padding: 1rem 0;
    background: transparent !important;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
}

.logo-sub {
    font-size: 11px;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Custom Toggler */
.custom-toggler {
    border: none;
    background: transparent;
    padding: 4px 8px;
    position: relative;
    width: 30px;
    height: 30px;
}

.toggler-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark-color);
    margin: 6px 0;
    transition: var(--transition);
    position: relative;
}

.custom-toggler:hover .toggler-line {
    background: var(--primary-color);
}

/* Navigation Links */
.main-header .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1.2rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link-effect span {
    position: relative;
    display: inline-block;
}

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

.nav-link-effect:hover span::after {
    width: 100%;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 0;
    padding: 40px 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-section {
    padding: 20px;
    border-radius: 12px;
    background: var(--light-gray);
    height: 100%;
}

.mega-menu-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-title i {
    color: var(--primary-color);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 10px;
}

.mega-menu-list a {
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
    padding-left: 20px;
    position: relative;
}

.mega-menu-list a::before {
    content: '\u2192';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: var(--transition);
}

.mega-menu-list a:hover {
    color: var(--primary-color);
    padding-left: 25px;
}

.mega-menu-list a:hover::before {
    opacity: 1;
    left: 5px;
}

.mega-menu-promo {
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: 16px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-text {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* User Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-register {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-register:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-get-started {
    background: var(--gradient-primary);
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0, 168, 107, 0.25);
}

/* User Menu */
.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.user-menu-btn:hover {
    border-color: var(--primary-color);
    background: white;
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.user-info {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.user-balance {
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
}

.main-header .dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 8px;
    margin-top: 10px;
}

.main-header .dropdown-item {
    border-radius: 8px;
    padding: 10px 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.main-header .dropdown-item:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.main-header .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Enhanced Minimalist Footer Styles */
.minimalist-footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    margin-top: 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

/* Footer Wave Top */
.footer-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    color: #0a0a0a;
    z-index: 1;
}

.footer-wave-top svg {
    width: 100%;
    height: 100%;
}

/* Footer Container */
.footer-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Stats Bar */
.footer-stats-bar {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
}

.stats-grid-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item-minimal h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item-minimal p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Main */
.footer-main {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 300px 1fr auto;
    gap: 80px;
    align-items: start;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.brand-text {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Contact Links */
.contact-minimal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #ffffff;
}

.contact-link i {
    width: 16px;
    text-align: center;
    color: #4b5563;
}

/* Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-column h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.link-column a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    padding: 2px 0;
}

.link-column a:hover {
    color: #ffffff;
}

/* Newsletter Section */
.footer-newsletter-minimal {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-newsletter-minimal h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-newsletter-minimal p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Newsletter Form */
.minimal-newsletter-form {
    position: relative;
    max-width: 280px;
}

.minimal-newsletter-form input {
    width: 100%;
    padding: 12px 50px 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
}

.minimal-newsletter-form input::placeholder {
    color: #4b5563;
}

.minimal-newsletter-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.minimal-newsletter-form button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #00a86b;
    border: none;
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.minimal-newsletter-form button:hover {
    background: #1d4ed8;
}

/* Social Media */
.social-minimal {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-minimal a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-minimal a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom-minimal {
    padding: 30px 0;
    background: #000000;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.bottom-content p {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
}

/* Legal Links */
.legal-links-minimal {
    display: flex;
    gap: 24px;
}

.legal-links-minimal a {
    color: #4b5563;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.legal-links-minimal a:hover {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links-minimal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-minimal {
        gap: 10px;
    }
    
    .social-minimal {
        justify-content: center;
    }
}

/* Enhanced Button Styles */
.btn {
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(0, 168, 107, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 107, 0.35);
}

/* Back to Top Button Enhancement */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 168, 107, 0.3);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.4);
    color: white;
}

/* Homepage Styles */

/* Hero Section */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleMove 20s linear infinite;
}

@keyframes particleMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 30px 0;
    color: white;
}

.hero-text-primary {
    display: block;
}

.hero-text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-premium-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

.btn-premium-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 168, 107, 0.4);
    color: white;
}

.btn-premium-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.hero-trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 14px;
}

.trust-item i {
    color: #60a5fa;
}

/* Hero Stats Grid */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-card-primary {
    grid-column: span 2;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #60a5fa;
    margin-bottom: 20px;
}

.stat-content {
    margin-bottom: 10px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: inline-block;
}

.stat-suffix {
    font-size: 1.5rem;
    color: #60a5fa;
    margin-left: 5px;
}

.stat-description {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.stat-growth {
    color: #10b981;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
}

.scroll-wheel {
    width: 3px;
    height: 10px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 25px; }
}

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-premium {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.service-card.featured {
    background: var(--gradient-primary);
    color: white;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-icon-wrapper {
    margin-bottom: 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.service-features i {
    color: var(--success-color);
}

.service-card.featured .service-features i {
    color: white;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-card.featured .service-link {
    color: white;
}

.service-link:hover {
    gap: 12px;
}

/* Trust Section */
.trust-section {
    background: white;
    padding: 100px 0;
}

.trust-wrapper {
    background: var(--light-gray);
    border-radius: 30px;
    padding: 60px;
}

.trust-features {
    margin-top: 40px;
}

.trust-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.feature-content p {
    color: var(--gray-color);
    margin: 0;
}

.trust-image {
    position: relative;
}

.trust-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trust-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.badge-text {
    font-size: 14px;
}

/* Process Timeline */
.process-section {
    background: var(--light-gray);
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.timeline-line {
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-color) 100%);
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    flex: 1;
    padding: 0 15px;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray-color);
    font-size: 14px;
}

.step-icon {
    margin-top: 20px;
    font-size: 32px;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
    background: white;
    padding: 100px 0;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.125rem;
}

.author-info span {
    color: var(--gray-color);
    font-size: 14px;
}

/* CTA Section */
.cta-premium {
    background: var(--gradient-primary);
    padding: 100px 0;
}

.cta-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium-white {
    background: white;
    color: var(--primary-color);
}

.btn-premium-white:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.btn-premium-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-premium-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--light-gray);
}

.newsletter-wrapper {
    background: white;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-description {
    color: var(--gray-color);
    margin-bottom: 0;
}

.newsletter-form {
    max-width: 500px;
}

.form-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form .form-control {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    font-size: 14px;
    color: var(--gray-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-top-bar {
        display: none;
    }
    
    .navbar-actions {
        margin-top: 15px;
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card-primary {
        grid-column: span 1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-timeline {
        flex-wrap: wrap;
    }
    
    .process-step {
        width: 50%;
        margin-bottom: 40px;
    }
    
    .timeline-line {
        display: none;
    }
    
    @media (max-width: 576px) {
        .process-step {
            width: 100%;
        }
    }
    
    .trust-wrapper {
        padding: 40px 20px;
    }
    
    .footer-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 10px);
    }
    
    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 5px 30px rgba(37, 211, 102, 0.5); }
    100% { box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Cookie Floating Button */
.cookie-floating-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0, 168, 107, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 99;
}

.cookie-floating-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Footer Animations */
.stat-number {
    transition: all 0.5s ease;
    transform: scale(1);
}

.stat-number.animated {
    animation: statCounter 1s ease-out;
}

@keyframes statCounter {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* Additional Footer Styles */

.footer-widget h5::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-light);
    margin-top: 10px;
    transition: width 0.3s ease;
}

.footer-widget:hover h5::after {
    width: 100px;
}

/* Newsletter Form Enhancement */
.newsletter-form {
    position: relative;
}

.newsletter-form::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.newsletter-form:focus-within::before {
    opacity: 0.1;
    width: 110%;
    height: 120%;
}

/* Partner Logos Section */
.partners-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.partners-carousel {
    position: relative;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Live Market Data Section */
.market-data-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #00a86b 100%);
    padding: 40px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.market-data-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><line x1="0" y1="50" x2="100" y2="50" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><line x1="50" y1="0" x2="50" y2="100" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 50px 50px;
}

.market-ticker {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    position: relative;
    z-index: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.market-ticker::-webkit-scrollbar {
    display: none;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 240px;
    transition: all 0.3s ease;
}

.ticker-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ticker-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.ticker-content {
    flex: 1;
}

.ticker-content h4 {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.ticker-value {
    font-size: 28px;
    font-weight: 800;
    margin: 5px 0;
    color: white;
}

.ticker-change {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.ticker-change.positive {
    color: #4ade80;
}

.ticker-change.negative {
    color: #f87171;
}

.ticker-change i {
    font-size: 12px;
}

/* Success Stories Section */
.success-stories {
    background: var(--light-gray);
    padding: 100px 0;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

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

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.story-content {
    padding: 30px;
}

.story-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.story-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.story-info h4 {
    margin: 0;
    font-size: 16px;
}

.story-info span {
    color: var(--gray-color);
    font-size: 14px;
}

.story-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.story-excerpt {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 12px;
    color: var(--gray-color);
    text-transform: uppercase;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background: var(--light-gray);
    border: none;
    border-radius: 15px;
    padding: 25px 30px;
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 60px;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-content {
    padding: 20px 30px;
    color: var(--gray-color);
    line-height: 1.8;
}

/* Awards Section */
.awards-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    color: white;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.award-item {
    position: relative;
}

.award-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

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

.award-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.award-year {
    opacity: 0.8;
    font-size: 14px;
}

/* Contact Float Button */
.contact-float-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.contact-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.contact-float-btn:hover {
    transform: scale(1.1);
}

.btn-phone {
    background: var(--gradient-primary);
}

.btn-email {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Additional Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Award Cards */
.awards-showcase {
    padding: 20px;
}

.award-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.award-card .award-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: white;
}

.award-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.award-card p {
    color: var(--gray-color);
    font-size: 14px;
    margin: 0;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #00a86b 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Market Ticker Responsive */
@media (max-width: 992px) {
    .market-ticker {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .ticker-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .ticker-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .story-stats {
        justify-content: space-around;
    }
    
    .award-card {
        margin-bottom: 15px;
    }
}

/* Additional hover effects */
.partner-item img {
    transition: all 0.3s ease;
}

.story-card .story-title {
    transition: color 0.3s ease;
}

.story-card:hover .story-title {
    color: var(--primary-color);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
}

/* Corporate Hero Section */
.hero-corporate {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(0, 168, 107, 0.8) 100%);
}

.hero-content-area {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-pretitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pretitle-line {
    width: 50px;
    height: 3px;
    background: var(--primary-light);
}

.pretitle-text {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 30px;
}

.title-highlight {
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-corporate {
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-corporate-primary {
    background: white;
    color: var(--dark-color);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-corporate-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-corporate-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-corporate-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.hero-features .feature-item i {
    color: #10b981;
    font-size: 16px;
}

/* Hero Widget */
.hero-interactive-widget {
    padding: 40px;
}

.widget-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.performance-chart {
    height: 200px;
    margin-bottom: 20px;
}

.performance-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.perf-stat {
    text-align: center;
    flex: 1;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.stat-value.positive {
    color: var(--success-color);
}

.stat-value.negative {
    color: var(--danger-color);
}

.hero-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

/* Statistics Corporate */
.statistics-corporate {
    padding: 80px 0;
    background: #f8fafc;
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.stat-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
}

.stat-details {
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
    display: inline-block;
}

.stat-unit {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 5px;
}

.stat-desc {
    color: var(--gray-color);
    font-size: 16px;
    margin-top: 10px;
}

.stat-progress {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 1s ease;
}

/* Calculator Section */
.calculator-section {
    padding: 100px 0;
    background: white;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 168, 107, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title-large {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-lead {
    font-size: 1.125rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 40px;
}

.calculator-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.calc-feature {
    display: flex;
    gap: 20px;
    align-items: start;
}

.calc-feature i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.calc-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.calc-feature p {
    color: var(--gray-color);
    margin: 0;
}

/* Calculator Widget */
.calculator-widget {
    background: var(--gradient-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.calc-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.calc-header h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.calc-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.calc-body {
    padding: 40px 30px;
}

.calc-input-group {
    margin-bottom: 25px;
}

.calc-input-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-prefix {
    position: absolute;
    left: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.calc-input-group input[type="number"] {
    width: 100%;
    padding: 15px 20px 15px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.calc-input-group input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.15);
}

.range-wrapper {
    position: relative;
}

.calc-input-group input[type="range"] {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.calc-input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.range-value {
    position: absolute;
    top: -25px;
    right: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.risk-selector {
    display: flex;
    gap: 10px;
}

.risk-btn {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.risk-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.risk-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.calc-result {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.result-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.result-value {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.result-chart {
    height: 150px;
    margin-top: 20px;
}

.btn-block {
    width: 100%;
}

/* Currency Section */
.currency-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.currency-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.currency-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.currency-flags {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.flag-eu { background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5MDAgNjAwIj48cmVjdCBmaWxsPSIjMDAzMzk5IiB3aWR0aD0iOTAwIiBoZWlnaHQ9IjYwMCIvPjxnIGZpbGw9IiNmZmNjMDAiPjxjaXJjbGUgY3g9IjQ1MCIgY3k9IjEwMCIgcj0iMTAiLz48Y2lyY2xlIGN4PSI1NTAiIGN5PSIxNTAiIHI9IjEwIi8+PGNpcmNsZSBjeD0iNjAwIiBjeT0iMjUwIiByPSIxMCIvPjxjaXJjbGUgY3g9IjU1MCIgY3k9IjM1MCIgcj0iMTAiLz48Y2lyY2xlIGN4PSI0NTAiIGN5PSI0MDAiIHI9IjEwIi8+PGNpcmNsZSBjeD0iMzUwIiBjeT0iMzUwIiByPSIxMCIvPjxjaXJjbGUgY3g9IjMwMCIgY3k9IjI1MCIgcj0iMTAiLz48Y2lyY2xlIGN4PSIzNTAiIGN5PSIxNTAiIHI9IjEwIi8+PC9nPjwvc3ZnPg=='); }
.flag-us { background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOSAxMCI+PHJlY3Qgd2lkdGg9IjE5IiBoZWlnaHQ9IjEwIiBmaWxsPSIjYjIyMjM0Ii8+PHBhdGggZD0iTTAsMSBIMTkgTTAsMiBIMTkgTTAsMy'); }
.flag-gb { background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MCAzMCI+PHJlY3Qgd2lkdGg9IjYwIiBoZWlnaHQ9IjMwIiBmaWxsPSIjMDEyMTY5Ii8+PHBhdGggZD0iTTAsMCBMNjAsMzAgTTYwLDAgTDAsMzAiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSI2Ii8+PC9zdmc+'); }
.flag-ch { background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHJlY3Qgd2lkdGg9IjMyIiBoZWlnaHQ9IjMyIiBmaWxsPSIjZmYwMDAwIi8+PHBhdGggZD0iTTEzLDYgSDE5IFYxMyBIMjYgVjE5IEgxOSBWMjYgSDEzIFYxOSBINiBWMTMgSDEzIFoiIGZpbGw9IiNmZmYiLz48L3N2Zz4='); }
.flag-jp { background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAyMCI+PHJlY3Qgd2lkdGg9IjMwIiBoZWlnaHQ9IjIwIiBmaWxsPSIjZmZmIi8+PGNpcmNsZSBjeD0iMTUiIGN5PSIxMCIgcj0iNiIgZmlsbD0iI2JjMDAyZCIvPjwvc3ZnPg=='); }

.currency-pair {
    font-weight: 700;
    color: var(--dark-color);
}

.currency-rate {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.currency-change {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.currency-change.positive {
    color: var(--success-color);
}

.currency-change.negative {
    color: var(--danger-color);
}

.currency-chart {
    height: 60px;
}

/* Bank Logo Styles */
.bank-logo {
    width: 100%;
    height: auto;
    max-width: 150px;
}

.partner-item:hover .bank-logo {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
}

/* Awards Showcase Styles */
.awards-showcase {
    padding: 20px;
}

.awards-showcase .award-card {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.awards-showcase .award-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.awards-showcase .award-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.awards-showcase h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 5px;
}

.awards-showcase p {
    margin: 0;
    color: var(--gray-color);
    font-size: 14px;
}

/* Section Badge Animations */
.section-badge {
    animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Footer Styles Fix */
.modern-footer {
    background: #ffffff;
    color: var(--dark-color);
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -99px;
    left: 0;
    width: 100%;
    height: 100px;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-wave svg path {
    fill: #f8fafc;
}

.footer-main {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
    background: white;
}

/* Footer Top Section */
.footer-top {
    background: #f8fafc;
    padding: 60px 0;
    margin-bottom: 60px;
    position: relative;
}

.footer-top::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23ffffff" d="M0,50 C360,100 720,0 1440,50 L1440,100 L0,100 Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

/* Corporate Hero Section */
.hero-corporate {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(0, 168, 107, 0.7) 100%);
}

.hero-content-area {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text-content {
    max-width: 600px;
}

.hero-pretitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.pretitle-line {
    width: 50px;
    height: 2px;
    background: var(--primary-light);
}

.pretitle-text {
    color: var(--primary-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.hero-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 30px;
}

.title-highlight {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-corporate {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-corporate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn-corporate:hover::before {
    left: 100%;
}

.btn-corporate-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 168, 107, 0.3);
}

.btn-corporate-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 168, 107, 0.4);
    color: white;
}

.btn-corporate-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-corporate-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.feature-item i {
    color: var(--success-color);
}

.hero-interactive-widget {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
}

.widget-card {
    padding: 40px;
}

.widget-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.performance-chart {
    height: 200px;
    margin-bottom: 30px;
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-value.positive {
    color: var(--success-color);
}

.hero-bottom-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

.hero-bottom-curve svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    position: relative;
    padding-right: 60px;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question.active {
    background: var(--subtle-gray);
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-content {
    padding: 0 30px 25px;
    color: var(--gray-color);
    line-height: 1.8;
}

/* Awards Section Styles */
.awards-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    animation: floatPattern 20s linear infinite;
}

@keyframes floatPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.award-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.award-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.award-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 36px;
    color: white;
}

.award-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.award-year {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Success Stories Styles */
.story-card {
    cursor: pointer;
}

.story-badge {
    font-size: 12px;
    font-weight: 600;
}

.story-content {
    padding: 30px;
}

.story-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.story-text {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.author-info p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-color);
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--subtle-gray);
}

.story-stats .stat {
    text-align: center;
}

.story-stats .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.story-stats .stat-label {
    font-size: 12px;
    color: var(--gray-color);
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 20px 25px;
        padding-right: 50px;
    }
    
    .faq-question::after {
        right: 20px;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .award-item {
        padding: 30px 20px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .currency-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-corporate {
        width: 100%;
        justify-content: center;
    }
}

/* Modern Dropdown Menu Styles */
.navbar .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

/* Mega Menu Design */
.mega-dropdown {
    position: static !important;
}

.dropdown-menu.mega-menu {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    top: calc(100% + 10px);
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: megaMenuFadeIn 0.3s ease;
    overflow: hidden;
    transform: none;
}

@keyframes megaMenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Removed arrow for cleaner design */

.mega-menu .container {
    padding: 40px 30px;
}

.mega-menu-section {
    margin-bottom: 0;
    position: relative;
    padding-right: 30px;
}

.mega-menu-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, transparent, #e5e7eb, transparent);
}

.mega-menu-section:last-child::after {
    display: none;
}

.mega-menu-title {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.mega-menu-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
    margin-left: 10px;
}

.mega-menu-title i {
    width: 35px;
    height: 35px;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 15px;
}

.mega-menu-list a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mega-menu-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--light-gray);
    transition: width 0.3s ease;
    z-index: -1;
}

.mega-menu-list a:hover::before {
    width: 100%;
}

.mega-menu-list a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.mega-menu-list a::after {
    content: '→';
    margin-left: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.mega-menu-list a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Mega Menu Promo Section */
.mega-menu-promo {
    background: linear-gradient(135deg, #1e3a8a 0%, #00a86b 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-menu-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: promoGlow 3s ease-in-out infinite;
}

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

.promo-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.promo-text {
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.mega-menu-promo .btn {
    background: white;
    color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.mega-menu-promo .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* User Dropdown Menu */
.user-menu .dropdown-menu {
    min-width: 280px;
    padding: 0;
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-menu .dropdown-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
}

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

.user-info strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.user-balance {
    font-size: 24px;
    font-weight: 700;
}

.user-menu .dropdown-divider {
    margin: 0;
    border-color: #f3f4f6;
}

.user-menu .dropdown-item {
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-menu .dropdown-item i {
    width: 35px;
    height: 35px;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.user-menu .dropdown-item:hover {
    background: var(--light-gray);
    padding-left: 25px;
}

.user-menu .dropdown-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.user-menu .dropdown-item.text-danger:hover {
    background: #fef2f2;
}

.user-menu .dropdown-item.text-danger:hover i {
    background: #ef4444;
}

/* Enhanced Minimalist Footer Styles */
.minimalist-footer {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    margin-top: 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

/* Footer Wave Top */
.footer-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
}

.footer-wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100%;
    color: #f8fafc;
}

/* Footer Stats Bar */
.footer-stats-bar {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    position: relative;
}

.stats-grid-minimal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item-minimal h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: statGlow 3s ease-in-out infinite;
}

@keyframes statGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.stat-item-minimal p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Footer Container */
.footer-container {
    position: relative;
}

/* Footer Main */
.footer-main {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Brand Identity */
.footer-brand {
    max-width: 350px;
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Trust Badges */
.trust-badges-minimal {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(59,130,246,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(59,130,246,0.2);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(59,130,246,0.15);
    border-color: rgba(59,130,246,0.4);
    transform: translateY(-2px);
}

.badge-item i {
    color: #3b82f6;
    font-size: 16px;
}

.badge-item span {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* Contact Info */
.contact-minimal {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.contact-link:hover {
    color: #3b82f6;
    transform: translateX(5px);
}

.contact-link i {
    width: 35px;
    height: 35px;
    background: rgba(59,130,246,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    color: #60a5fa;
}

.contact-link:hover i {
    background: rgba(59,130,246,0.2);
    color: #3b82f6;
    transform: scale(1.1);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-column h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.link-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, transparent 100%);
}

.link-column a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    font-size: 14px;
}

.link-column a:hover {
    color: #3b82f6;
    padding-left: 10px;
}

/* Newsletter Section */
.footer-newsletter-minimal h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-newsletter-minimal p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-size: 14px;
}

.minimal-newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 25px;
}

.minimal-newsletter-form:focus-within {
    border-color: #3b82f6;
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

.minimal-newsletter-form input {
    flex: 1;
    background: none;
    border: none;
    padding: 15px 20px;
    color: white;
    font-size: 14px;
    outline: none;
}

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

.minimal-newsletter-form button {
    background: #3b82f6;
    border: none;
    padding: 15px 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.minimal-newsletter-form button:hover {
    background: #00a86b;
}

/* Social Links */
.social-minimal {
    display: flex;
    gap: 12px;
}

.social-minimal a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.social-minimal a:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom-minimal {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-content p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.legal-links-minimal {
    display: flex;
    gap: 20px;
}

.legal-links-minimal a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.legal-links-minimal a:hover {
    color: #3b82f6;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #00a86b;
    transform: translateY(-5px);
    color: white;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
    transition: all 0.3s ease;
    z-index: 998;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37,211,102,0.4);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 70px;
}

/* Dropdown Hover Fix */
.navbar .dropdown {
    position: relative;
}

/* Create invisible bridge between trigger and dropdown */
.navbar .dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 30px;
    background: transparent;
    display: none;
    z-index: 999;
}

.navbar .dropdown:hover::after {
    display: block;
}

.navbar .dropdown-toggle::after {
    display: none;
}

/* Keep dropdown visible on hover */
.navbar .dropdown:hover .dropdown-menu,
.navbar .dropdown .dropdown-menu:hover {
    display: block;
    opacity: 1;
}

/* Mega Menu specific styles */
.mega-dropdown {
    position: static !important;
}

.mega-dropdown .dropdown-menu {
    margin-top: 0;
    top: 100% !important;
}

/* Ensure dropdown stays visible when moving between trigger and menu */
.dropdown-menu.mega-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar .dropdown:hover .dropdown-menu.mega-menu,
.dropdown-menu.mega-menu:hover {
    display: block !important;
    opacity: 1 !important;
}

/* Add delay before hiding */
.navbar .dropdown {
    transition: all 0.3s ease;
}

/* Prevent gap between nav item and dropdown */
.navbar-nav .nav-link {
    padding-bottom: 20px !important;
}

/* Adjust dropdown position to remove gap */
.dropdown-menu {
    margin-top: -5px !important;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .stats-grid-minimal {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid-minimal {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item-minimal h3 {
        font-size: 2rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .legal-links-minimal {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .trust-badges-minimal {
        flex-direction: column;
    }
    
    .badge-item {
        width: 100%;
        justify-content: center;
    }
}