/* Color Variables */
:root {
    /* Navigation Colors - Blue Scheme */
    --primary-color: #1E3A5F;
    --primary-dark: #2A4F7A;
    --bg-light: #F0F8FF;
    --text-dark: #333;
    --text-light: #fff;
    /* Hero Section Colors */
    --hero-bg: #E8F4F8;
    --hero-bg-shape: #D1E8F0;
    --hero-text-dark: #1E3A5F;
    --hero-text-light: #4A6B8A;
    --hero-button-bg: #1E3A5F;
    --hero-button-hover: #2A4F7A;
    --hero-highlight: #2563EB;
    --hero-success: #10B981;
    --hero-star: #FBBF24;
    --hero-card-bg: #ffffff;
    --hero-top-button-bg: #B3E0F2;
    --hero-top-button-text: #1E3A5F;
    /* Services Section Colors */
    --services-bg: #FAFAFA;
    --services-title-color: #1E3A5F;
    --services-text-color: #666;
    --services-icon-bg: #1E3A5F;
    --services-cta-bg: #FF6B35;
    --services-cta-hover: #E55A2B;
    /* How It Works Section Colors */
    --howitworks-bg: #F0F8FF;
    --howitworks-pill-bg: #B3E0F2;
    --howitworks-pill-text: #1E3A5F;
    --howitworks-title-color: #333;
    --howitworks-text-color: #666;
    --howitworks-user-bg: #E8F4F8;
    --howitworks-user-color: #1E3A5F;
    --howitworks-pro-bg: #FFF4E6;
    --howitworks-pro-color: #FF6B35;
    /* Stats Section Colors */
    --stats-bg: #ffffff;
    --stats-title-color: #333;
    --stats-title-accent: #1E3A5F;
    --stats-text-color: #666;
    --stats-icon-color: #1E3A5F;
    --stats-number-color: #333;
    --stats-label-color: #666;
    /* Blog Section Colors */
    --blog-bg: #ffffff;
    --blog-title-color: #333;
    --blog-text-color: #666;
    --blog-card-bg: #ffffff;
    --blog-date-color: #666;
    --blog-author-color: #1E3A5F;
    --blog-card-shadow: rgba(0, 0, 0, 0.1);
    /* FAQ Section Colors */
    --faq-bg: #F8F9FA;
    --faq-title-color: #333;
    --faq-text-color: #666;
    --faq-card-bg: #ffffff;
    --faq-card-border: #E0E0E0;
    --faq-active-bg: #E8F4F8;
    --faq-icon-color: #1E3A5F;
    --faq-advice-bg: #1E3A5F;
    --faq-advice-text: #ffffff;
    --faq-advice-accent: #FF6B35;
    /* Footer Colors */
    --footer-bg: #1E3A5F;
    --footer-bg-light: #2A4F7A;
    --footer-text: #ffffff;
    --footer-text-light: rgba(255, 255, 255, 0.8);
    --footer-link-color: rgba(255, 255, 255, 0.8);
    --footer-link-hover: #ffffff;
    --footer-border: rgba(255, 255, 255, 0.1);
    --footer-input-bg: rgba(255, 255, 255, 0.1);
    --footer-input-border: rgba(255, 255, 255, 0.2);
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--primary-color);
    padding: 10px 0;
    color: var(--text-light);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-left i {
    font-size: 16px;
}

.top-bar-left span {
    font-size: 14px;
    font-weight: 500;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.top-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.top-link:hover {
    color: var(--text-light);
    opacity: 0.8;
}

.separator {
    color: var(--text-light);
    font-weight: 300;
}

/* Main Navigation Bar Styles */
.main-navbar {
    background-color: transparent;
    padding: 15px 0;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: visible;
    transition: all 0.3s ease;
}

.main-navbar.scrolled {
    background-color: var(--text-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-navbar .container {
    position: relative;
    overflow: visible;
}

.main-navbar {
    overflow: visible !important;
}

.navbar-brand {
    padding: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: auto;
    max-height: 70px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

/* Navigation Links */
.navbar-nav {
    gap: 0;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 8px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary-dark) !important;
    background-color: rgba(139, 69, 19, 0.1);
    border-radius: 4px;
}

.nav-link i {
    font-size: 10px;
    margin-left: 3px;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0;
    margin-top: 5px;
}

/* Desktop hover for regular dropdowns */
@media (min-width: 992px) {
    .nav-item.dropdown {
        position: relative;
    }
    
    .nav-item.dropdown > .dropdown-menu {
        position: absolute;
        top: calc(100% + 5px);
        left: 0;
        min-width: 200px;
    }
    
    /* Nested dropdown (dropend) positioning */
    .dropend > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
        margin-left: 5px;
        min-width: 200px;
    }
    
    /* Add invisible bridge for nested dropdowns */
    .dropend::after {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        width: 5px;
        height: 100%;
        background: transparent;
    }
}

.dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: none;
}

.dropdown-item:hover {
    background-color: rgba(139, 69, 19, 0.1);
    color: var(--primary-color);
}

/* ============================================
   MEGA MENU STYLES - REBUILT FROM SCRATCH
   ============================================ */

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

/* Mega Menu Dropdown */
.dropdown-mega .mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    margin-top: -10px;
    overflow: visible;
}

/* Add padding at top of mega menu to create hoverable bridge area */
.dropdown-mega .mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

/* Mega Menu Inner Container */
.mega-menu-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 30px 40px;
}

/* Desktop: Show on hover */
@media (min-width: 992px) {
    /* Hide mobile menu on desktop */
    .dropdown-mega .mobile-simple-menu {
        display: none !important;
    }
    
    /* Show desktop mega menu on desktop */
    .dropdown-mega .desktop-mega-menu {
        display: none !important;
    }
    
    .dropdown-mega:hover .desktop-mega-menu,
    .dropdown-mega .desktop-mega-menu:hover {
        display: block !important;
    }
    
    /* Hide mobile menu icons and submenus on desktop */
    .mobile-menu-icon,
    .mobile-submenu {
        display: none !important;
    }
    
    /* Invisible bridge to prevent gap - extends from nav link to menu */
    .dropdown-mega::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 20px;
        background: transparent;
    }
}

/* Mega Menu Inner Container */
.mega-menu-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 30px 40px;
}

/* Mega Menu Content Wrapper */
.mega-menu-content {
    display: flex;
    align-items: stretch;
}

/* Mega Menu Column */
.mega-menu-column {
    flex: 1;
    padding: 0 35px;
    min-width: 250px;
    border-right: 1px solid #f0f0f0;
}

.mega-menu-column:last-child {
    border-right: none;
}

/* Mega Menu Header */
.mega-menu-header {
    font-size: 15px;
    font-weight: 700;
    color: #0d6efd;
    margin: 0 0 20px 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.mega-menu-header a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mega-menu-header a:hover {
    color: #0a58ca;
}

/* Mega Menu List */
.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Mega Menu Items */
.mega-menu-list .dropdown-item {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
}

.mega-menu-list .dropdown-item:hover {
    color: #0d6efd;
    padding-left: 5px;
}

/* Mega Menu Separator (removed - using border instead) */
.mega-menu-separator {
    display: none;
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(139, 69, 19, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .top-bar-right {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .logo-img {
        max-height: 60px;
        max-width: 250px;
    }

    .navbar-nav {
        margin-top: 20px;
    }

    .nav-link {
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    }

    .navbar-nav {
        width: 100%;
        box-sizing: border-box;
    }

    .dropdown-menu {
        width: 100%;
        box-sizing: border-box;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .dropdown-menu {
        margin-left: 20px;
        margin-top: 0;
        border-left: 2px solid var(--primary-color);
    }

    /* Mobile simple menu - no left margin/border */
    .mobile-simple-menu {
        margin-left: 0 !important;
        border-left: none !important;
    }

    /* Regular dropdown items on mobile should also have consistent styling */
    .dropdown-menu > li:not(.mobile-menu-item) {
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    }

    .dropdown-menu > li:not(.mobile-menu-item):last-child {
        border-bottom: none;
    }

    /* Mobile Offcanvas Menu - Slides from Right */
    .mobile-menu-offcanvas {
        width: 85% !important;
        max-width: 400px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-offcanvas .offcanvas-header {
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
        padding: 20px;
        background-color: #fff;
    }

    .mobile-menu-logo {
        max-height: 50px;
        max-width: 200px;
    }

    .mobile-menu-offcanvas .offcanvas-body {
        padding: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Smooth slide animation */
    .mobile-menu-offcanvas.offcanvas-end {
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .mobile-menu-offcanvas.offcanvas-end.show {
        transform: translateX(0);
    }

    /* Mobile Nav List */
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-nav-item {
        border-bottom: 1px solid rgba(139, 69, 19, 0.1);
    }

    .mobile-nav-item:last-child {
        border-bottom: none;
    }

    /* Mobile Nav Links */
    .mobile-nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        text-transform: uppercase;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .mobile-nav-link:hover {
        background-color: rgba(139, 69, 19, 0.05);
        color: var(--primary-dark);
    }

    /* Mobile Menu Toggle with Icon */
    .mobile-menu-toggle {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .mobile-menu-icon {
        font-size: 12px;
        transition: transform 0.3s ease;
        margin-left: 10px;
    }

    .mobile-menu-toggle.active .mobile-menu-icon {
        transform: rotate(180deg);
    }

    /* Mobile Submenu */
    .mobile-submenu {
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0 !important;
        margin: 0 !important;
        background-color: rgba(139, 69, 19, 0.03);
        list-style: none;
    }

    .mobile-submenu.show {
        display: block !important;
        max-height: 2000px;
        padding: 0 !important;
    }

    .mobile-submenu-item {
        border-bottom: 1px solid rgba(139, 69, 19, 0.05);
    }

    .mobile-submenu-item:last-child {
        border-bottom: none;
    }

    .mobile-submenu-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px 12px 35px;
        color: var(--primary-color);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: background-color 0.3s ease, padding-left 0.3s ease;
    }

    .mobile-submenu-link:hover {
        background-color: rgba(139, 69, 19, 0.08);
        padding-left: 40px;
    }

    /* Nested Submenu (3rd level) */
    .mobile-submenu .mobile-submenu {
        background-color: rgba(139, 69, 19, 0.05);
        border-left: 2px solid var(--primary-color);
        margin-left: 20px;
    }

    .mobile-submenu .mobile-submenu .mobile-submenu-link {
        padding-left: 50px;
    }

    .mobile-submenu .mobile-submenu .mobile-submenu-link:hover {
        padding-left: 55px;
    }

    /* Backdrop */
    .offcanvas-backdrop {
        background-color: rgba(0, 0, 0, 0.5);
        transition: opacity 0.3s ease-in-out;
    }

    /* Prevent body scroll when menu is open */
    body.offcanvas-open {
        overflow: hidden;
    }
}

@media (max-width: 767.98px) {
    .top-bar-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .top-bar-left span {
        font-size: 12px;
    }

    .top-link {
        font-size: 12px;
    }

    .logo-img {
        max-height: 50px;
        max-width: 200px;
    }

    .main-navbar .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mega-menu-list .dropdown-item {
        font-size: 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Services layout handled by .services-grid (3/2/1 columns responsive) */

/* Hero Section Styles */
.hero-section {
    position: relative;
    background-color: var(--hero-bg);
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero-section .row {
    align-items: center;
    gap: 32px;
    min-height: 500px;
}

.hero-section .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, var(--hero-bg-shape) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--hero-bg-shape) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--hero-bg-shape) 0%, transparent 40%);
    opacity: 0.6;
    z-index: 0;
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

/* Hero Floating Elements */
.hero-content {
    animation: fadeInUp 1s ease-out;
    max-width: 640px;
    position: relative;
    z-index: 1;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-images {
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 1;
}

.hero-section .second-section-cta-btn {
    background-color: var(--text-light);
    color: var(--hero-button-bg);
    border: 2px solid var(--hero-button-bg);
    padding: 14px 32px;
}

.hero-section .second-section-cta-btn:hover {
    background-color: var(--hero-button-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.hero-card {
    animation: float 6s ease-in-out infinite;
}

.hero-card-refund {
    animation-delay: 0s;
    top: 200px;
    left: 5%;
    width: 160px;
    text-align: center;
}

.hero-card-review {
    animation-delay: 2s;
    animation: floatSlow 8s ease-in-out infinite;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 90%;
}

.hero-img-item {
    transition: transform 0.3s ease;
}

.hero-img-top {
    animation: floatSlow 7s ease-in-out infinite;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: 48px;
    font-weight: 700;
    color: var(--hero-text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-highlight {
    color: var(--hero-highlight);
}

.hero-description {
    font-size: 18px;
    color: var(--hero-text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-cta-btn {
    background-color: var(--hero-button-bg);
    color: var(--text-light);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

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

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

.hero-cta-btn:hover {
    background-color: var(--hero-button-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

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

.social-proof-text {
    font-size: 14px;
    color: var(--hero-text-light);
    font-weight: 500;
}

.social-proof-avatars {
    display: flex;
    gap: -8px;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hero-highlight), var(--hero-button-bg));
    border: 2px solid var(--hero-card-bg);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

/* Hero Images Section */
.hero-images {
    position: relative;
    padding: 20px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

/* Static Hero Image */
.hero-static-image {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-img-static {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Hero Contact Form */
.hero-contact-form {
    background: var(--hero-card-bg);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.15);
    border: 1px solid rgba(30, 58, 95, 0.08);
    width: 100%;
    max-width: 380px;
}

/* Typewriter Animation */
.typewriter {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid var(--hero-highlight);
    white-space: nowrap;
    width: 0;
    animation: typing 2s steps(16, end) forwards, blink-caret 0.75s step-end infinite, typing-loop 6s steps(16, end) infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 16ch; }
}

@keyframes typing-loop {
    0%, 10% { width: 0; }
    40%, 60% { width: 16ch; }
    90%, 100% { width: 0; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--hero-highlight); }
}

.hero-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.hero-form-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--hero-text-dark);
    margin-bottom: 4px;
}

.hero-form-header p {
    font-size: 13px;
    color: var(--hero-text-light);
    margin: 0;
}

.hero-form-group {
    margin-bottom: 14px;
}

.hero-form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    background: #F8FAFC;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-form-input:focus {
    outline: none;
    border-color: var(--hero-highlight);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.hero-form-input::placeholder {
    color: #94A3B8;
}

.hero-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.hero-form-textarea {
    resize: none;
    min-height: 70px;
}

.hero-form-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--hero-button-bg), var(--hero-highlight));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-form-btn:hover {
    background: linear-gradient(135deg, var(--hero-button-hover), var(--hero-button-bg));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25);
}

.hero-form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid #E2E8F0;
}

.hero-form-footer i {
    color: var(--hero-success);
    font-size: 14px;
}

.hero-form-footer span {
    font-size: 12px;
    color: var(--hero-text-light);
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .hero-contact-form {
        margin-top: 30px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 575.98px) {
    .hero-contact-form {
        padding: 20px;
    }
    
    .hero-form-header h3 {
        font-size: 18px;
    }
    
    .hero-form-input {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .hero-form-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
}

.hero-image-grid {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin-left: auto;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-img-item {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-top {
    top: 0;
    left: 0;
    width: 48%;
    height: 220px;
    z-index: 2;
}

.hero-img-middle {
    top: 130px;
    right: 0;
    width: 55%;
    height: 230px;
    z-index: 2;
}

.hero-img-bottom {
    bottom: 0;
    left: 20%;
    width: 40%;
    height: 180px;
    z-index: 1;
}

/* Hero Cards Overlay */
.hero-card {
    position: absolute;
    background-color: var(--hero-card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.hero-card-refund {
    top: 180px;
    left: 10%;
    width: 140px;
    text-align: center;
}

.hero-card-label {
    font-size: 12px;
    color: var(--hero-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-card-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--hero-success);
}

.hero-card-review {
    top: 20px;
    right: 10%;
    width: 280px;
    max-width: 90%;
}

.hero-stars {
    color: var(--hero-star);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.hero-review-text {
    font-size: 13px;
    color: var(--hero-text-dark);
    line-height: 1.5;
    margin-bottom: 8px;
    font-style: italic;
}

.hero-review-author {
    font-size: 11px;
    color: var(--hero-text-light);
    font-weight: 600;
}

/* Second Section Styles */
.second-section {
    position: relative;
    background-color: var(--hero-bg);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.second-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.05) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.second-section .container {
    position: relative;
    z-index: 1;
}

.second-section-top-button {
    animation: fadeInUp 0.8s ease-out;
}

.second-section-headline {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.second-section-description {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.second-section-cta-btn {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.second-section-top-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--hero-top-button-bg);
    color: var(--hero-top-button-text);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.second-section-top-button:hover {
    background-color: var(--hero-button-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.second-section-top-button i {
    font-size: 16px;
}

.second-section-headline {
    font-size: 56px;
    font-weight: 700;
    color: var(--hero-text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.second-section-description {
    font-size: 18px;
    color: var(--hero-text-light);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.second-section-cta-btn {
    background-color: var(--hero-button-bg);
    color: var(--text-light);
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    width: 300px !important;
    min-width: 300px;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.second-section-cta-btn:hover {
    background-color: var(--hero-button-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

/* Responsive Hero Section */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 90px 0 60px;
        min-height: auto;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-image-grid {
        height: 400px;
        margin-top: 40px;
    }

    .hero-img-top {
        width: 50%;
        height: 160px;
    }

    .hero-img-middle {
        top: 100px;
        width: 55%;
        height: 180px;
    }

    .hero-img-bottom {
        width: 45%;
        height: 150px;
    }

    .hero-card-review {
        width: 240px;
        top: 10px;
        right: 5%;
    }

    .second-section {
        padding: 80px 0;
    }

    .second-section-headline {
        font-size: 42px;
    }

    .second-section-description {
        font-size: 17px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-section .row {
        min-height: auto;
        align-items: flex-start;
    }

    .hero-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-content {
        padding: 0;
        max-width: 100%;
        height: auto;
    }

    .hero-images {
        min-height: 350px;
        margin-top: 40px;
        height: auto;
        justify-content: center;
    }

    .hero-static-image {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-headline {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-cta-btn {
        padding: 12px 24px;
        font-size: 15px;
        margin-bottom: 24px;
    }

    .hero-image-grid {
        height: 350px;
        margin-top: 30px;
    }

    .hero-img-top {
        width: 55%;
        height: 140px;
        top: 0;
        left: 0;
    }

    .hero-img-middle {
        top: 80px;
        right: 0;
        width: 60%;
        height: 160px;
    }

    .hero-img-bottom {
        bottom: 0;
        left: 15%;
        width: 50%;
        height: 130px;
    }

    .hero-card-refund {
        top: 150px;
        left: 5%;
        width: 120px;
        padding: 15px;
    }

    .hero-card-amount {
        font-size: 28px;
    }

    .hero-card-review {
        width: 200px;
        padding: 15px;
        top: 10px;
        right: 0;
    }

    .hero-review-text {
        font-size: 12px;
    }

    .second-section {
        padding: 60px 0;
    }

    .second-section-top-button {
        padding: 8px 16px;
        font-size: 13px;
        margin-bottom: 24px;
    }

    .second-section-headline {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .second-section-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .second-section-cta-btn {
        padding: 14px 32px;
        font-size: 15px;
    }
}

/* Services Section Styles */
.services-section {
    background-color: var(--services-bg);
    padding: 80px 0;
}

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

.services-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--services-title-color);
    margin-bottom: 20px;
}

.services-description {
    font-size: 18px;
    color: var(--services-text-color);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    /* 4 services per row for better display */
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover {
    text-decoration: none;
}

.service-card-link .service-title,
.service-card-link .service-text {
    text-decoration: none;
}

.service-card {
    background-color: var(--text-light);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    /* circular gradient for more modern look */
    background: linear-gradient(135deg, rgba(37,99,235,0.95), rgba(30,64,175,0.95));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border: 3px solid rgba(255,255,255,0.06);
    transition: all 0.35s cubic-bezier(.2,.9,.2,1);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: shimmer 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

.service-icon i {
    font-size: 28px;
    color: var(--text-light);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-text {
    font-size: 13px;
    color: var(--services-text-color);
    line-height: 1.6;
    margin: 0;
}

/* Actions inside card */
.service-actions {
    margin-top: 14px;
}

.service-learn-btn {
    display: inline-block;
    background: linear-gradient(90deg, #2559eb, #1e3f8f);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(30,64,175,0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.service-learn-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(30,64,175,0.18);
}

/* Responsive grid adjustments */
@media (max-width: 1199.98px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 991.98px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* CTA Card Styles */
.service-cta-card {
    background-color: var(--services-cta-bg);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.service-cta-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    text-align: center;
}

.service-cta-btn {
    background-color: var(--text-light);
    color: var(--services-cta-bg);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-cta-btn:hover {
    background-color: var(--services-cta-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-cta-btn i {
    font-size: 18px;
}

/* Responsive Services Section */
@media (max-width: 991.98px) {
    .services-section {
        padding: 60px 0;
    }

    .services-title {
        font-size: 36px;
    }

    .services-description {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .services-section {
        padding: 40px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .services-description {
        font-size: 15px;
    }

    .services-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .service-card {
        padding: 24px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 16px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-title {
        font-size: 16px;
    }

    .service-text {
        font-size: 12px;
    }

    .service-cta-title {
        font-size: 20px;
    }

    .service-cta-text {
        font-size: 14px;
    }
}

/* How It Works Section Styles */
.howitworks-section {
    background-color: var(--howitworks-bg);
    padding: 80px 0;
}

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

.howitworks-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--howitworks-pill-bg);
    color: var(--howitworks-pill-text);
    padding: 8px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.howitworks-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.howitworks-subtitle {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.howitworks-cta-btn {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.howitworks-pill-btn:hover {
    background-color: var(--howitworks-user-color);
    color: var(--text-light);
}

.howitworks-pill-btn i {
    font-size: 14px;
}

.howitworks-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--howitworks-title-color);
    margin-bottom: 20px;
}

.howitworks-subtitle {
    font-size: 18px;
    color: var(--howitworks-text-color);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 32px;
}

.howitworks-cta-btn {
    background-color: var(--hero-button-bg);
    color: var(--text-light);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.howitworks-cta-btn:hover {
    background-color: var(--hero-button-hover);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.howitworks-content {
    margin-top: 60px;
}

.howitworks-column {
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    position: relative;
}

.howitworks-user {
    background-color: var(--howitworks-user-bg);
}

.howitworks-pro {
    background-color: var(--howitworks-pro-bg);
}

.howitworks-column-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.howitworks-user .howitworks-column-title {
    color: var(--howitworks-user-color);
}

.howitworks-pro .howitworks-column-title {
    color: var(--howitworks-pro-color);
}

.howitworks-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.howitworks-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--howitworks-user-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-number-pro {
    background-color: var(--howitworks-pro-color);
}

.step-content {
    flex: 1;
}

.step-image-small {
    width: 20%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    min-width: 80px;
    max-width: 120px;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.howitworks-user .step-title {
    color: var(--howitworks-user-color);
}

.step-title-pro {
    color: var(--howitworks-pro-color);
}

.step-description {
    font-size: 16px;
    color: var(--howitworks-text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Alternating Feature Sections */
.alt-sections {
    padding: 80px 0;
}
.alt-header {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}
.alt-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: var(--hero-top-button-bg);
    color: var(--hero-top-button-text);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}
.alt-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--services-title-color);
    margin-bottom: 12px;
}
.alt-subtitle {
    font-size: 16px;
    color: var(--services-text-color);
    line-height: 1.7;
    margin: 0;
}
.alt-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
}
.alt-block:last-child {
    margin-bottom: 0;
}
.alt-block.alt-reverse {
    flex-direction: row-reverse;
}
.alt-image {
    flex: 0 0 42%;
    max-width: 42%;
}
.alt-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}
.alt-content {
    flex: 1;
}
.alt-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--services-title-color);
    margin-bottom: 12px;
}
.alt-content p {
    font-size: 16px;
    color: var(--services-text-color);
    line-height: 1.7;
    margin-bottom: 12px;
}
.alt-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--hero-highlight);
    font-weight: 600;
    text-decoration: none;
}
.alt-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive How It Works Section */
@media (max-width: 991.98px) {
    .howitworks-section {
        padding: 90px 0 60px;
    }

    .howitworks-title {
        font-size: 36px;
    }

    .howitworks-subtitle {
        font-size: 16px;
    }

    .howitworks-column {
        padding: 30px;
        margin-bottom: 20px;
    }

    .howitworks-column-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .alt-block,
    .alt-block.alt-reverse {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .alt-image,
    .alt-block.alt-reverse .alt-image {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .howitworks-section {
        padding: 80px 0 40px;
    }

    .howitworks-header {
        margin-bottom: 40px;
    }

    .howitworks-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .howitworks-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .howitworks-cta-btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .howitworks-content {
        margin-top: 40px;
    }

    .howitworks-column {
        padding: 24px;
    }

    .howitworks-column-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .howitworks-step {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 32px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .step-image-small {
        width: 20%;
        min-width: 60px;
        max-width: 100px;
        aspect-ratio: 1 / 1;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 15px;
    }

    .alt-sections {
        padding: 60px 0;
    }
    .alt-title {
        font-size: 28px;
    }
    .alt-subtitle {
        font-size: 15px;
    }
    .alt-content h3 {
        font-size: 24px;
    }
    .alt-content p {
        font-size: 15px;
    }
}

/* Stats Section Styles */
.stats-section {
    background-color: var(--stats-bg);
    padding: 80px 0;
}

.stats-left {
    padding-right: 40px;
}

.stats-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--stats-title-color);
    line-height: 1.2;
    margin-bottom: 24px;
}

.stats-title-accent {
    color: var(--stats-title-accent);
}

.stats-description {
    font-size: 18px;
    color: var(--stats-text-color);
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.logo-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--stats-title-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon-box i {
    font-size: 28px;
    color: var(--text-light);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--stats-title-accent);
}

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

.stat-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.stat-box:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-box:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-box:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-box:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-box:nth-child(5) {
    animation-delay: 0.5s;
}

.stat-box:nth-child(6) {
    animation-delay: 0.6s;
}

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

.stat-icon {
    font-size: 32px;
    color: var(--stats-icon-color);
    margin-bottom: 16px;
    animation: floatSlow 4s ease-in-out infinite;
    display: inline-block;
}

.stat-box:nth-child(2) .stat-icon {
    animation-delay: 0.5s;
}

.stat-box:nth-child(3) .stat-icon {
    animation-delay: 1s;
}

.stat-box:nth-child(4) .stat-icon {
    animation-delay: 1.5s;
}

.stat-box:nth-child(5) .stat-icon {
    animation-delay: 2s;
}

.stat-box:nth-child(6) .stat-icon {
    animation-delay: 2.5s;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--stats-number-color);
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--stats-label-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* Responsive Stats Section */
@media (max-width: 991.98px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-left {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .stats-title {
        font-size: 36px;
    }

    .stats-description {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767.98px) {
    .stats-section {
        padding: 40px 0;
    }

    .stats-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .stats-description {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .stats-logo {
        justify-content: center;
    }

    .stats-left {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .stats-right {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        margin: 0 -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(6, 280px);
        gap: 20px;
        min-width: max-content;
        padding-right: 15px;
    }

    .stat-box {
        padding: 24px 20px;
        min-width: 260px;
    }

    .stats-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .stats-section .row {
        margin-left: 15px;
        margin-right: 15px;
    }

    .stat-icon {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 11px;
    }
}

/* Blog Section Styles */
.blog-section {
    background-color: var(--blog-bg);
    padding: 80px 0;
}

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

.blog-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--blog-title-color);
    margin-bottom: 16px;
}

.blog-subtitle {
    font-size: 18px;
    color: var(--blog-text-color);
    line-height: 1.6;
    margin-bottom: 8px;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--blog-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--blog-card-shadow);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out both;
}

.blog-card:nth-child(1) {
    animation-delay: 0.1s;
}

.blog-card:nth-child(2) {
    animation-delay: 0.2s;
}

.blog-card:nth-child(3) {
    animation-delay: 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.blog-date {
    color: var(--blog-date-color);
}

.blog-separator {
    color: var(--blog-date-color);
}

.blog-author {
    color: var(--blog-author-color);
    font-weight: 600;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--blog-title-color);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-snippet {
    font-size: 15px;
    color: var(--blog-text-color);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive Blog Section */
@media (max-width: 991.98px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-title {
        font-size: 36px;
    }

    .blog-subtitle {
        font-size: 16px;
    }

    .blog-posts {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767.98px) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-header {
        margin-bottom: 40px;
    }

    .blog-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .blog-subtitle {
        font-size: 15px;
    }

    .blog-posts {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .blog-snippet {
        font-size: 14px;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--faq-bg);
    padding: 80px 0;
}

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

.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--faq-title-color);
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--faq-text-color);
    line-height: 1.6;
}

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

.faq-item {
    background-color: var(--faq-card-bg);
    border: 1px solid var(--faq-card-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    background-color: var(--faq-active-bg);
    border-color: var(--faq-icon-color);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(30, 58, 95, 0.02);
}

.faq-item.active .faq-question {
    background-color: transparent;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--faq-title-color);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 18px;
    color: var(--faq-icon-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 24px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--faq-text-color);
    line-height: 1.7;
    margin: 0;
}

/* FAQ CTA Center Button */
.faq-cta-center {
    text-align: center;
    margin-top: 30px;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--hero-button-bg), var(--hero-highlight));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.faq-cta-btn:hover {
    background: linear-gradient(135deg, var(--hero-highlight), var(--hero-button-bg));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
    color: #fff;
}

.faq-cta-btn i {
    font-size: 18px;
}

/* Expert Modal Styles */
.expert-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.expert-modal-header {
    background: linear-gradient(135deg, var(--hero-button-bg), var(--hero-highlight));
    padding: 24px 28px;
    border: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

.expert-modal-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-modal-icon i {
    color: #fff;
    font-size: 22px;
}

.expert-modal-header .modal-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.expert-modal-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin: 0;
}

.expert-modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.expert-modal-header .btn-close:hover {
    opacity: 1;
}

.expert-modal-body {
    padding: 28px;
}

.expert-form-group {
    margin-bottom: 18px;
}

.expert-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.expert-form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    background: #F8FAFC;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.expert-form-input:focus {
    outline: none;
    border-color: var(--hero-highlight);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.expert-form-input::placeholder {
    color: #94A3B8;
}

.expert-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.expert-form-textarea {
    resize: none;
    min-height: 80px;
}

.expert-form-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--hero-button-bg), var(--hero-highlight));
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.expert-form-btn:hover {
    background: linear-gradient(135deg, var(--hero-highlight), var(--hero-button-bg));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25);
    color: #fff;
}

.expert-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
}

.expert-modal-footer i {
    color: var(--hero-success);
    font-size: 16px;
}

.expert-modal-footer span {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Get Expert Advice Section */
.faq-advice {
    background: linear-gradient(135deg, var(--faq-advice-bg) 0%, var(--primary-dark) 100%);
    background-size: 200% 200%;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.2);
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.faq-advice::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.faq-advice .row {
    position: relative;
    z-index: 1;
}

.advice-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.advice-icon {
    width: 70px;
    height: 70px;
    background-color: var(--faq-advice-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

.advice-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--faq-advice-accent);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

.advice-icon i {
    font-size: 32px;
    color: var(--faq-advice-text);
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.advice-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--faq-advice-text);
    margin-bottom: 8px;
}

.advice-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.advice-btn {
    background-color: var(--faq-advice-accent);
    color: var(--faq-advice-text);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
}

.advice-btn:hover {
    background-color: var(--services-cta-hover);
    color: var(--faq-advice-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.advice-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.advice-btn:hover i {
    transform: translateX(5px);
}

/* Responsive FAQ Section */
@media (max-width: 991.98px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-subtitle {
        font-size: 16px;
    }

    .faq-advice {
        padding: 32px;
    }

    .advice-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .advice-text {
        text-align: center;
    }

    .advice-text h3 {
        font-size: 24px;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .faq-subtitle {
        font-size: 15px;
    }

    .faq-accordion {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 18px;
        padding-right: 15px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-advice {
        padding: 24px;
    }

    .advice-icon {
        width: 60px;
        height: 60px;
    }

    .advice-icon i {
        font-size: 28px;
    }

    .advice-text h3 {
        font-size: 22px;
    }

    .advice-text p {
        font-size: 15px;
    }

    .advice-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Additional Utility Classes */
.main-content {
    min-height: calc(100vh - 200px);
}

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

/* Footer Styles */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

.footer-widget {
    animation: fadeInUp 0.8s ease-out both;
}

.footer-widget:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-widget:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-widget:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-widget:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 15px;
    color: var(--footer-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background-color: var(--faq-advice-accent);
    color: var(--footer-text);
    transform: translateY(-3px);
    border-color: var(--faq-advice-accent);
}

.social-link i {
    font-size: 16px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--footer-text);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--faq-advice-accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--footer-link-color);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--footer-link-hover);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--footer-text-light);
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--faq-advice-accent);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact span {
    flex: 1;
}

.footer-newsletter {
    margin-top: 30px;
}

.footer-newsletter h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--footer-text);
    margin-bottom: 8px;
}

.footer-newsletter p {
    font-size: 14px;
    color: var(--footer-text-light);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background-color: var(--footer-input-bg);
    border: 1px solid var(--footer-input-border);
    border-radius: 6px;
    color: var(--footer-text);
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: var(--footer-text-light);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--faq-advice-accent);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    padding: 12px 20px;
    background-color: var(--faq-advice-accent);
    color: var(--footer-text);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background-color: var(--services-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.newsletter-btn i {
    font-size: 16px;
}

.footer-bottom {
    background-color: var(--footer-bg-light);
    padding: 24px 0;
    border-top: 1px solid var(--footer-border);
}

.copyright {
    font-size: 14px;
    color: var(--footer-text-light);
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-legal li {
    margin: 0;
}

.footer-legal a {
    color: var(--footer-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--footer-link-hover);
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer-top {
        padding: 50px 0 30px;
    }

    .footer-widget {
        margin-bottom: 35px;
    }
}

@media (max-width: 767.98px) {
    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-logo-img {
        max-height: 50px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 0;
        padding: 16px 0;
        cursor: pointer;
        user-select: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--footer-border);
        position: relative;
    }

    .footer-title::before {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--faq-advice-accent);
    }

    .footer-title::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 14px;
        color: var(--footer-text);
        transition: transform 0.3s ease;
        margin-left: auto;
    }

    .footer-widget.active .footer-title::after {
        transform: rotate(180deg);
    }

    .footer-links,
    .footer-contact,
    .footer-newsletter {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, margin-top 0.3s ease;
        margin-top: 0;
    }

    .footer-widget.active .footer-links,
    .footer-widget.active .footer-contact,
    .footer-widget.active .footer-newsletter {
        max-height: 1000px;
        margin-top: 20px;
    }

    .footer-widget:first-child .footer-title {
        cursor: default;
    }

    .footer-widget:first-child .footer-title::after {
        display: none;
    }

    .footer-widget:first-child .footer-description,
    .footer-widget:first-child .footer-social {
        max-height: none;
        overflow: visible;
    }

    .footer-links a {
        font-size: 14px;
    }

    .footer-contact li {
        font-size: 14px;
    }

    .footer-newsletter h5 {
        font-size: 16px;
    }

    .footer-newsletter p {
        font-size: 13px;
    }

    .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
        margin-top: 12px;
        gap: 16px;
    }

    .copyright {
        font-size: 13px;
    }

    .footer-legal a {
        font-size: 13px;
    }
}

/* Body Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
}

/* Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: floatAnimation 3s ease-in-out infinite;
    position: relative;
}

.floating-btn:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: var(--text-light);
    text-decoration: none;
}

.floating-call {
    background: linear-gradient(135deg, #1E3A5F 0%, #2A4F7A 100%);
}

.floating-call:hover {
    background: linear-gradient(135deg, #2A4F7A 0%, #1E3A5F 100%);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

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

/* Responsive Floating Buttons */
@media (max-width: 767.98px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Contact Section Styles */
.contact-section {
    background-color: var(--services-bg);
    padding: 80px 0;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background-color: var(--text-light);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.contact-form-wrapper:hover,
.contact-info-wrapper:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.contact-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.contact-section-subtitle {
    font-size: 16px;
    color: var(--services-text-color);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Contact Form Styles */
.contact-form {
    margin-top: 8px;
}

.contact-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--text-dark);
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form-input:hover,
.contact-form-select:hover,
.contact-form-textarea:hover {
    border-color: #d0d7de;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    outline: none;
    background-color: var(--text-light);
    border-color: var(--hero-button-bg);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.08);
}

.contact-form-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-submit-btn {
    background-color: var(--hero-button-bg);
    color: var(--text-light);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 8px;
}

.contact-submit-btn:hover {
    background-color: var(--hero-button-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 95, 0.3);
}

/* Contact Info Card Styles */
.contact-info-card {
    margin-top: 8px;
}

.contact-info-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e9ecef;
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background-color: var(--hero-button-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.contact-info-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.contact-info-address {
    font-size: 15px;
    color: var(--services-text-color);
    margin-bottom: 16px;
    line-height: 1.7;
    padding: 0 4px;
}

.contact-map-wrapper {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid #e9ecef;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background-color: #f8f9fa;
}

.contact-info-item-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(30, 58, 95, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item-icon i {
    color: var(--hero-button-bg);
    font-size: 18px;
}

.contact-info-item-text {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

/* Contact Phone Cards */
.contact-phones {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-phone-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, var(--hero-button-bg), var(--hero-highlight));
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.25);
}

.contact-phone-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-phone-icon i {
    color: #fff;
    font-size: 18px;
}

.contact-phone-info {
    display: flex;
    flex-direction: column;
}

.contact-phone-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.contact-phone-number {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
}

/* Quick Contact Links */
.contact-quick-links {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-quick-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: #F0F8FF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-quick-item:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.contact-quick-item.whatsapp {
    background: #E8F8E8;
    border-color: #25D366;
    color: #128C7E;
}

.contact-quick-item.whatsapp:hover {
    background: #25D366;
    color: #fff;
}

.contact-quick-item i {
    font-size: 16px;
}

/* Office Locations */
.contact-offices {
    margin-bottom: 20px;
}

.contact-offices-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-offices-title i {
    font-size: 16px;
}

.contact-office-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.contact-office-card:hover {
    border-color: var(--hero-highlight);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.08);
}

.contact-office-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: var(--hero-highlight);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-office-city {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.contact-office-address {
    font-size: 13px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

/* Contact Map */
.contact-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 180px;
    display: block;
}

/* Contact Hours */
.contact-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #92400E;
}

.contact-hours i {
    font-size: 16px;
    color: #F59E0B;
}

/* Responsive Contact Section */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 36px;
    }

    .contact-section-title {
        font-size: 30px;
    }

    .contact-section-subtitle {
        margin-bottom: 24px;
    }

    .contact-info-header {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-info-title {
        font-size: 24px;
    }

    .contact-map-wrapper {
        height: 280px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 28px;
    }

    .contact-section-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .contact-section-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .contact-form-label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .contact-form-input,
    .contact-form-select,
    .contact-form-textarea {
        padding: 12px 16px;
        font-size: 14px;
    }

    .contact-form-textarea {
        min-height: 120px;
    }

    .contact-submit-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

    .contact-info-header {
        margin-bottom: 16px;
        padding-bottom: 16px;
        gap: 14px;
    }

    .contact-info-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .contact-info-title {
        font-size: 22px;
    }

    .contact-info-address {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-map-wrapper {
        height: 240px;
        margin-bottom: 24px;
    }

    .contact-info-list {
        gap: 16px;
    }

    .contact-info-item {
        padding: 10px;
    }

    .contact-info-item-icon {
        width: 36px;
        height: 36px;
    }

    .contact-info-item-icon i {
        font-size: 16px;
    }

    .contact-info-item-text {
        font-size: 14px;
    }
    
    .contact-phones {
        flex-direction: column;
    }
    
    .contact-quick-links {
        flex-direction: column;
    }
    
    .contact-phone-card {
        padding: 14px;
    }
    
    .contact-phone-number {
        font-size: 14px;
    }
}

/* Team Page Styles */
.team-member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--hero-button-bg);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

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

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.team-social .social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hero-button-bg);
    color: var(--text-light);
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 14px;
}

.team-social .social-link:hover {
    background-color: var(--hero-button-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(30, 58, 95, 0.3);
}

@media (max-width: 767.98px) {
    .team-member-image {
        width: 120px;
        height: 120px;
        margin-bottom: 16px;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    background: linear-gradient(135deg, #1E3A5F 0%, #2A4F7A 100%);
    padding: 120px 0 50px;
    position: relative;
    overflow: hidden;
}

.pricing-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.pricing-hero-img {
    width: 100%;
    max-width: 200px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

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

.pricing-tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.pricing-tab.active {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

.pricing-tab-content {
    display: none;
    padding-top: 40px;
}

.pricing-tab-content.active {
    display: block;
}

.pricing-hero-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.pricing-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.pricing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

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

.pricing-feature i {
    color: #4FD1C5;
    font-size: 18px;
}

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 80px 0;
    background: var(--services-bg);
}

.pricing-section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
}

.pricing-plans {
    display: none;
}

.pricing-plans.active {
    display: block;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.15);
    border-color: var(--hero-highlight);
}

.pricing-card-popular {
    border: 2px solid var(--hero-highlight);
    background: linear-gradient(180deg, #F0F8FF 0%, #fff 100%);
}

.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hero-highlight);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hero-button-bg), var(--hero-highlight));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pricing-card-icon i {
    color: #fff;
    font-size: 22px;
}

.pricing-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    min-height: 48px;
}

.pricing-card-price {
    font-size: 42px;
    font-weight: 700;
    color: #4FD1C5;
    margin-bottom: 4px;
    line-height: 1.1;
}

.pricing-period {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.pricing-card-note {
    font-size: 12px;
    color: #94A3B8;
    margin-bottom: 20px;
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex-grow: 1;
}

.pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid #F1F5F9;
}

.pricing-card-features li:last-child {
    border-bottom: none;
}

.pricing-card-features li i {
    color: #4FD1C5;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-card-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: var(--hero-button-bg);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-card-btn:hover {
    background: var(--hero-button-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.25);
}

.pricing-card-popular .pricing-card-btn {
    background: linear-gradient(135deg, var(--hero-highlight), var(--hero-button-bg));
}

/* Pricing Page Responsive */
@media (max-width: 991.98px) {
    .pricing-hero {
        padding: 100px 0 40px;
    }
    
    .pricing-hero-img {
        max-width: 150px;
        margin-bottom: 30px;
    }
    
    .pricing-tabs {
        justify-content: center;
    }
    
    .pricing-features {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .pricing-hero-title {
        font-size: 28px;
    }
    
    .pricing-section-title {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .pricing-hero {
        padding: 90px 0 30px;
        text-align: center;
    }
    
    .pricing-hero-img {
        max-width: 120px;
        margin: 0 auto 20px;
        display: block;
    }
    
    .pricing-tabs {
        gap: 6px;
    }
    
    .pricing-tab {
        padding: 10px 14px;
        font-size: 11px;
    }
    
    .pricing-hero-title {
        font-size: 24px;
    }
    
    .pricing-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .pricing-cards-section {
        padding: 50px 0;
    }
    
    .pricing-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .pricing-card-price {
        font-size: 36px;
    }
}

