/* ============================================
   AJA AI Landing Page - Professional Modern Design
   No Gradients - Solid Colors Only
   ============================================ */

:root {
    /* CXGuru Theme Color Palette */
    --primary-blue: #2563eb;
    --primary-blue-dark: #1e40af;
    --primary-blue-light: #3b82f6;
    --primary-blue-bg: #eff6ff;
    --accent-blue: #006BFF;
    --cxguru-blue: #006BFF;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --dark-gray: #1F2937;
    --medium-gray: #4B5563;
    --light-gray: #F3F4F6;
    --border-gray: #E5E7EB;
    
    /* Text Colors */
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    
    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-section: #F3F4F6;
    
    /* Typography */
    --font-poppins: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --section-padding-mobile: 50px 0;
    
    /* Shadows - Subtle and Professional */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ============================================
   Base Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-poppins);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    background: var(--bg-white);
}

/* Ensure all text has proper contrast - but allow hero section to override */
p, span, div, li, td, th {
    color: var(--text-primary);
}

/* Hero section overrides - white text on dark background */
.hero-section p,
.hero-section span,
.hero-section div,
.hero-section li,
.hero-section td,
.hero-section th,
.hero-section * {
    color: white !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.lead {
    color: var(--text-secondary) !important;
    font-size: 1rem !important;
    line-height: 1.7;
}

/* ============================================
   Navigation - White Background
   ============================================ */

.navbar {
    background: rgba(15, 23, 42, 0.95) !important; /* slate-950 with opacity - default blue background */
    backdrop-filter: blur(10px) !important;
    padding: 0.75rem 0;
    transition: background var(--transition-base), backdrop-filter var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
    z-index: 1000;
    opacity: 1 !important;
    visibility: visible !important;
    border-bottom: none !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Only make transparent on landing page with hero section at top (when not scrolled) */
.navbar:not(.scrolled) {
    /* Check if we're on landing page - if hero section exists, make transparent */
}

/* Override: Make transparent only if hero section exists AND navbar is not scrolled */
body:has(.hero-section) .navbar:not(.scrolled),
body.has-hero-section .navbar:not(.scrolled) {
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 1rem 0;
    box-shadow: none !important;
}

/* Ensure pages without hero section always have blue navbar */
body.no-hero-section .navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    padding: 0.75rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95) !important; /* slate-950 with opacity */
    backdrop-filter: blur(10px) !important;
    padding: 0.75rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Ensure navbar container doesn't compress toggler on scroll */
.navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 60px !important;
}

.navbar.scrolled .container {
    min-height: 56px !important;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white !important;
    text-decoration: none;
    transition: transform var(--transition-base);
}

.navbar-brand:hover {
    transform: translateY(-2px);
    color: rgba(255, 255, 255, 0.8) !important;
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text {
    color: white !important;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.8125rem;
    padding: 0.5rem 0.5rem !important;
    margin: 0 0.125rem;
    border-radius: 6px;
    transition: all var(--transition-base);
    position: relative;
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
}

/* Dropdown Menu Styles */
.navbar .dropdown-menu {
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    min-width: 200px;
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

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

.navbar .dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: 0.15em;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-bottom: 0;
    border-left: 0.35em solid transparent;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Mobile Drawer Submenu */
.drawer-submenu {
    position: relative;
}

.drawer-submenu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.drawer-submenu-items {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-light);
    padding-left: 0;
}

.drawer-submenu.active .drawer-submenu-items {
    max-height: 500px;
    padding-left: 1rem;
}

.drawer-submenu.active .drawer-submenu-toggle .bi-chevron-down {
    transform: rotate(180deg);
}

.drawer-submenu-items {
    list-style: none;
    padding-left: 0;
}

.drawer-submenu-items .drawer-link {
    padding-left: 2.5rem;
    font-size: 0.9rem;
}

.drawer-submenu-items li {
    list-style: none;
}

@media (max-width: 991px) {
    .drawer-submenu-items {
        list-style: none;
    }
    
    .drawer-submenu-items li::before {
        display: none;
    }
}

/* Buttons - CXGuru Style */
.btn-primary-gradient,
.btn-primary {
    background: #2563eb !important; /* blue-600 */
    border: none !important;
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all var(--transition-base);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3), 0 4px 6px -2px rgba(37, 99, 235, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-gradient:hover,
.btn-primary:hover {
    background: #1d4ed8 !important; /* blue-700 */
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.4), 0 10px 10px -5px rgba(37, 99, 235, 0.2);
}

.btn-outline-light,
.btn-outline-primary {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-light:hover,
.btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: white !important;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* Mobile Menu Toggle - Override Bootstrap's default dark styling to white */
.navbar-toggler,
#mobileMenuToggle {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    padding: 0.75rem !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    z-index: 1001 !important;
    position: relative !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    margin-left: auto !important;
    box-sizing: border-box !important;
    transition: none !important;
}

/* Ensure toggler maintains size when navbar is scrolled */
.navbar.scrolled .navbar-toggler,
.navbar.scrolled #mobileMenuToggle {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding: 0.75rem !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    box-sizing: border-box !important;
}

/* Ensure icon maintains size when navbar is scrolled */
.navbar.scrolled .navbar-toggler-icon {
    width: 20px !important;
    height: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    gap: 4px !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    justify-content: space-between !important;
}

/* Ensure spans maintain size when navbar is scrolled */
.navbar.scrolled .navbar-toggler-icon span {
    height: 2px !important;
    min-height: 2px !important;
    max-height: 2px !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Override Bootstrap's default dark navbar-toggler-icon to white */
.navbar-toggler-icon {
    background-image: none !important;
    background: transparent !important;
    width: 20px !important;
    height: 18px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove Bootstrap's default icon background and pseudo-elements */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* Create white bars using spans - this is the ONLY way to show the icon */
.navbar-toggler-icon span {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    background: white !important;
    border-radius: 2px !important;
    transition: all var(--transition-base) !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure proper spacing - gap handles it, but ensure no extra margins */
.navbar-toggler-icon span {
    margin: 0 !important;
}

/* Ensure Bootstrap's data URI background is completely removed */
.navbar-toggler-icon[style*="background-image"] {
    background-image: none !important;
}

/* Hide any Bootstrap-generated icon content */
.navbar-toggler-icon:not(:has(span)) {
    background-image: none !important;
}

/* Hide toggler on large screens (Bootstrap default) - LAPTOPS AND DESKTOPS */
@media (min-width: 992px) {
    .navbar-toggler,
    #mobileMenuToggle,
    button.navbar-toggler,
    button#mobileMenuToggle {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        background: transparent !important;
    }
}

/* Show toggler on small screens - MAXIMUM PRIORITY */
@media (max-width: 991.98px) {
    .navbar-toggler,
    #mobileMenuToggle {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
        position: relative !important;
        width: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        height: 44px !important;
        min-height: 44px !important;
        max-height: 44px !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure toggler maintains size when navbar is scrolled on mobile */
    .navbar.scrolled .navbar-toggler,
    .navbar.scrolled #mobileMenuToggle {
        width: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        height: 44px !important;
        min-height: 44px !important;
        max-height: 44px !important;
        padding: 0.75rem !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure icon maintains size when navbar is scrolled on mobile */
    .navbar.scrolled .navbar-toggler-icon {
        width: 20px !important;
        height: 18px !important;
        min-height: 18px !important;
        max-height: 18px !important;
        gap: 4px !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        justify-content: space-between !important;
    }
    
    /* Ensure spans maintain size when navbar is scrolled on mobile */
    .navbar.scrolled .navbar-toggler-icon span {
        height: 2px !important;
        min-height: 2px !important;
        max-height: 2px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .navbar-toggler-icon {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 20px !important;
        height: 18px !important;
        min-height: 18px !important;
        max-height: 18px !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        gap: 4px !important;
        justify-content: space-between !important;
    }
    
    .navbar-toggler-icon span {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: white !important;
        width: 100% !important;
        height: 2px !important;
        min-height: 2px !important;
        max-height: 2px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px var(--primary-blue-light);
}

.navbar-toggler-icon {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    width: 20px !important;
    height: 20px !important;
    justify-content: center !important;
    align-items: center !important;
}

.navbar-toggler-icon span {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    background: white !important;
    border-radius: 2px !important;
    transition: all var(--transition-base) !important;
    flex-shrink: 0 !important;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   Mobile Side Drawer
   ============================================ */

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    transition: pointer-events var(--transition-base);
}

.mobile-drawer.active {
    pointer-events: all;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.mobile-drawer.active .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-slow);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-drawer.active .drawer-content {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
}

.drawer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.drawer-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-blue);
    flex: 1;
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: transform var(--transition-base);
    border-radius: 6px;
}

.drawer-close:hover {
    background: var(--light-gray);
    transform: rotate(90deg);
}

.drawer-body {
    flex: 1;
    padding: 1rem 0;
}

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

.drawer-menu li {
    margin: 0.25rem 0;
}

.drawer-link {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
    border-left: 3px solid transparent;
}

.drawer-link:hover,
.drawer-link.active {
    background: var(--primary-blue-light);
    border-left-color: var(--primary-blue);
    color: var(--primary-blue);
    padding-left: 2rem;
}

.drawer-divider {
    height: 1px;
    background: var(--border-gray);
    margin: 1rem 0;
}

.drawer-menu .btn {
    margin: 0.5rem 1.5rem;
}

/* Fix drawer button visibility - ensure outline button has visible text */
.drawer-menu .btn-outline-primary {
    color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    background-color: transparent !important;
}

.drawer-menu .btn-outline-primary:hover {
    color: white !important;
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

.drawer-menu .btn-primary {
    color: white !important;
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0f172a; /* slate-950 - single solid blue */
    color: white;
    padding-top: 0;
    padding-bottom: 80px;
    margin-top: 0;
    margin-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #0f172a; /* single solid blue - no gradient */
}

.hero-background::after {
    display: none; /* Remove the gradient overlay */
}

.hero-background::before {
    display: none; /* Remove the right side blue overlay */
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.particle {
    position: absolute;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
    opacity: 0.15;
    box-shadow: 0 0 20px rgba(0, 99, 178, 0.3);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white !important;
    padding-top: 4rem;
}

.hero-content *,
.hero-content p,
.hero-content span,
.hero-content h1,
.hero-content h2,
.hero-content h3,
.hero-content h4,
.hero-content h5,
.hero-content h6,
.hero-content div {
    color: white !important;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1); /* blue-500/10 */
    border: none;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #bfdbfe; /* blue-200 */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 2.25rem !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white !important;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title .highlight {
    color: #60a5fa !important; /* blue-400 - lighter for better visibility */
}

.hero-subtitle {
    font-size: 1rem !important;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95) !important; /* white with slight transparency */
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.4s both;
    max-width: 36rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9) !important; /* white with slight transparency */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.4s both;
    padding-top: 4rem;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    animation: pulse 3s infinite;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: var(--primary-blue-light);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 99, 178, 0.2);
    border: 2px solid var(--primary-blue-light);
    transition: transform var(--transition-slow);
    position: relative;
    z-index: 1;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* ============================================
   Section Styles
   ============================================ */

.section {
    padding: var(--section-padding);
    position: relative;
    background: white;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-blue), transparent);
    opacity: 0.3;
}

.section-title {
    font-size: 2.5rem !important;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #111827; /* gray-900 */
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.section-title.text-start {
    text-align: left;
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1rem !important;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.section-bg-light {
    background: #f9fafb; /* gray-50 */
    position: relative;
}

.section-bg-light::before {
    content: '';
    position: absolute;
    inset-x: 0;
    top: 0;
    height: 160px;
    background: linear-gradient(to bottom, rgba(239, 246, 255, 0.4), transparent); /* blue-50/40 */
    pointer-events: none;
}

/* ============================================
   Features Section
   ============================================ */

.feature-card {
    background: white;
    border-radius: 1.5rem; /* 24px */
    padding: 2rem;
    height: 100%;
    transition: all var(--transition-base);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb; /* gray-200 */
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #2563eb; /* blue-600 */
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1); /* blue-600/10 */
    border: none;
    border-radius: 1rem; /* 16px */
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: #2563eb; /* blue-600 */
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    background: #2563eb; /* blue-600 */
    color: white;
}

.feature-title {
    font-size: 1.25rem !important;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827; /* gray-900 */
}

.feature-description {
    color: #4b5563; /* gray-600 */
    line-height: 1.7;
    font-size: 0.875rem;
}

/* ============================================
   How It Works Section - Modern Redesign
   ============================================ */

.how-it-works-section {
    position: relative;
    min-height: 1400px;
    padding: 80px 0;
    overflow: hidden;
}

.how-it-works-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* Gradient fallback */
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
    /* Background image - will overlay gradient if exists */
    background-image: url('../img/CAA.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.how-it-works-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
}

.how-it-works-section .container {
    position: relative;
    z-index: 1;
}

.how-it-works-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background-color: var(--cxguru-blue);
    margin-bottom: 16px;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.how-it-works-title .highlight-blue {
    color: var(--cxguru-blue);
}

.how-it-works-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 48rem;
    margin: 0 auto;
}

/* Timeline Design */
.how-it-works-timeline {
    position: relative;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        var(--cxguru-blue) 0%, 
        rgba(0, 107, 255, 0.6) 50%, 
        var(--cxguru-blue) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    z-index: 2;
}

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

.timeline-step:nth-child(odd) {
    flex-direction: row;
}

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

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.timeline-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    background: var(--cxguru-blue);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 107, 255, 0.4),
                0 0 0 8px rgba(255, 255, 255, 0.9),
                0 0 0 10px rgba(0, 107, 255, 0.2);
    border: 3px solid white;
}

.timeline-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cxguru-blue);
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--cxguru-blue);
    transition: all var(--transition-base);
}

.timeline-step:hover .timeline-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 107, 255, 0.3);
}

.timeline-content {
    flex: 1;
    max-width: 45%;
    padding: 0 40px;
}

.timeline-step:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: auto;
    margin-left: 0;
}

.timeline-step:nth-child(even) .timeline-content {
    text-align: left;
    margin-left: auto;
    margin-right: 0;
}

.step-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(0, 107, 255, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.step-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--cxguru-blue), rgba(0, 107, 255, 0.5));
}

.timeline-step:hover .step-card-modern {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 107, 255, 0.2);
}

.step-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    gap: 12px;
}

.timeline-step:nth-child(odd) .step-card-header {
    flex-direction: row-reverse;
}

.step-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.step-card-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--cxguru-blue), rgba(0, 107, 255, 0.8));
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.step-card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.timeline-step:nth-child(even) .step-features {
    align-items: flex-start;
}

.timeline-step:nth-child(odd) .step-features {
    align-items: flex-end;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-primary);
    font-weight: 500;
    padding: 10px 16px;
    background: rgba(0, 107, 255, 0.08);
    border-radius: 10px;
    border-left: 3px solid var(--cxguru-blue);
    transition: all var(--transition-base);
    width: fit-content;
}

.timeline-step:nth-child(odd) .step-features li {
    margin-left: auto;
}

.step-features li:hover {
    background: rgba(0, 107, 255, 0.15);
    transform: translateX(4px);
}

.timeline-step:nth-child(odd) .step-features li:hover {
    transform: translateX(-4px);
}

.step-features li i {
    color: var(--cxguru-blue);
    font-size: 1.125rem;
}

.timeline-arrow {
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cxguru-blue);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 107, 255, 0.3);
    border: 2px solid var(--cxguru-blue);
    z-index: 3;
    animation: bounceArrow 2s ease-in-out infinite;
}

.timeline-step:last-child .timeline-arrow {
    display: none;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

.how-it-works-cta {
    padding: 16px 32px;
    font-size: 1.125rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 107, 255, 0.3);
    transition: all var(--transition-base);
}

.how-it-works-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 107, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .how-it-works-section {
        min-height: auto;
        padding: 60px 0;
    }
    
    .how-it-works-title {
        font-size: 2rem;
    }
    
    .how-it-works-timeline {
        margin-top: 60px;
        padding: 0 15px;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-step {
        flex-direction: row !important;
        margin-bottom: 60px;
    }
    
    .timeline-marker {
        left: 30px;
    }
    
    .timeline-content {
        max-width: calc(100% - 100px);
        margin-left: 80px !important;
        margin-right: 0 !important;
        text-align: left !important;
        padding: 0 20px;
    }
    
    .step-card-header {
        flex-direction: row !important;
    }
    
    .step-features {
        align-items: flex-start !important;
    }
    
    .step-features li {
        margin-left: 0 !important;
    }
    
    .step-features li:hover {
        transform: translateX(4px) !important;
    }
    
    .timeline-arrow {
        left: 30px;
    }
}

@media (max-width: 767.98px) {
    .how-it-works-title {
        font-size: 1.75rem;
    }
    
    .how-it-works-subtitle {
        font-size: 1rem;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .timeline-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
    
    .step-card-modern {
        padding: 1.5rem;
    }
    
    .step-card-title {
        font-size: 1.5rem;
    }
    
    .step-card-description {
        font-size: 0.9375rem;
    }
    
    .step-features li {
    font-size: 0.875rem;
        padding: 8px 12px;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonial-card {
    background: white;
    border-radius: 1.5rem; /* 24px */
    padding: 2rem;
    height: 100%;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    position: relative;
    border: 1px solid #e5e7eb; /* gray-200 */
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    color: #2563eb; /* blue-600 */
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #2563eb; /* blue-600 */
}

.testimonial-rating {
    color: #F59E0B;
    margin-bottom: 1rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: #4b5563; /* gray-600 */
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.testimonial-info h6 {
    margin: 0;
    font-weight: 600;
    color: #111827; /* gray-900 */
    font-size: 0.9375rem;
}

.testimonial-info p {
    margin: 0;
    color: #6b7280; /* gray-500 */
    font-size: 0.8125rem;
}

/* ============================================
   Pricing Section
   ============================================ */

.pricing-card {
    background: white;
    border-radius: 1.5rem; /* 24px */
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    border: 1px solid #e5e7eb; /* gray-200 */
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #2563eb; /* blue-600 */
}

.pricing-card.featured {
    border-color: #2563eb; /* blue-600 */
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1), 0 10px 10px -5px rgba(37, 99, 235, 0.04);
    transform: scale(1);
    background: white;
    border-width: 2px;
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

.pricing-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #2563eb; /* blue-600 */
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-title {
    font-size: 1.5rem !important;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827; /* gray-900 */
}

.pricing-price {
    font-size: 2.5rem !important;
    font-weight: 700;
    color: #111827; /* gray-900 */
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-period {
    color: #6b7280; /* gray-500 */
    font-size: 0.875rem;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563; /* gray-600 */
    font-size: 0.875rem;
}

.pricing-features li i {
    color: #2563eb; /* blue-600 */
    font-size: 1.125rem;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled i {
    color: #9ca3af; /* gray-400 */
}

/* ============================================
   FAQ Section - CXGuru Style
   ============================================ */

.section-bg-light {
    background: linear-gradient(to bottom right, #eff6ff 0%, #ffffff 50%, #e0e7ff 100%);
    padding: 4rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-base);
    position: relative;
    z-index: 10;
}

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

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    background: #dbeafe; /* blue-100 */
    color: #1e40af; /* blue-800 */
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 1rem;
}

.faq-question h3 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #111827; /* gray-900 */
    margin: 0;
    line-height: 1.5;
}

.faq-toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #2563eb; /* blue-600 */
    transition: transform var(--transition-base);
}

.faq-toggle i {
    font-size: 1rem;
    transition: transform var(--transition-base);
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

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

.faq-answer-content {
    padding: 0 1rem 1rem 4.5rem; /* Align with icon */
    color: #4b5563; /* gray-600 */
    line-height: 1.6;
    font-size: 0.8125rem;
}

/* FAQ Section Header Icon */
.section-bg-light .inline-flex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.section-bg-light .text-blue-600 {
    color: #2563eb !important;
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
    .faq-question {
        padding: 0.875rem;
    }
    
    .faq-icon {
        width: 28px;
        height: 28px;
    }
    
    .faq-icon i {
    font-size: 0.875rem;
    }
    
    .faq-question h3 {
        font-size: 0.75rem;
    }
    
    .faq-answer-content {
        padding: 0 0.875rem 0.875rem 3.75rem;
        font-size: 0.75rem;
    }
    
    .section-bg-light {
        padding: 3rem 0;
    }
}

/* ============================================
   Footer
   ============================================ */

.landing-footer {
    background: linear-gradient(to bottom right, #e2e8f0 0%, #eff6ff 50%, #e0e7ff 100%); /* slate-200, blue-50, indigo-100 */
    color: #555555;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.landing-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, #555555 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0.05;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #555555 !important;
    font-size: 1.25rem;
}

.footer-description {
    color: #555555 !important;
    opacity: 1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #2563eb;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: #555555;
    border-top: 1px solid rgba(107, 114, 128, 0.3);
    padding-top: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #555555;
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    padding: 0.25rem 0;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.footer-links a:hover {
    color: #2563eb;
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #555555 !important;
    font-size: 0.875rem;
    font-weight: 400;
}

.footer-contact i {
    color: #2563eb;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: #555555 !important;
    text-decoration: none;
    transition: color var(--transition-base);
    font-weight: 400;
}

.footer-contact a:hover {
    color: #2563eb !important;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(107, 114, 128, 0.3);
    color: #555555 !important;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-bottom p {
    color: #555555 !important;
    margin: 0;
}

.footer-copyright {
    color: #555555 !important;
    font-weight: 500;
    font-size: 0.875rem;
}

.footer-made-with {
    color: #555555 !important;
    font-weight: 500;
    font-size: 0.875rem;
}

.footer-made-with i {
    color: #FF6B6B !important;
    margin: 0 0.25rem;
}

/* ============================================
   Floating Elements
   ============================================ */

.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
    border: 3px solid var(--white);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.6;
    animation: pulse-ring 2s infinite;
}

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

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 1000;
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-blue-dark);
}

/* ============================================
   Animations
   ============================================ */

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

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .step-connector {
        display: none;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    /* Ensure hamburger menu is visible on small screens - only our custom one */
    #mobileMenuToggle {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 1001 !important;
        width: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        height: 44px !important;
        min-height: 44px !important;
        max-height: 44px !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        background: rgba(255, 255, 255, 0.15) !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        transition: none !important;
    }
    
    /* Ensure toggler maintains size when navbar is scrolled */
    .navbar.scrolled #mobileMenuToggle {
        width: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        height: 44px !important;
        min-height: 44px !important;
        max-height: 44px !important;
        padding: 0.75rem !important;
        flex-shrink: 0 !important;
        flex-grow: 0 !important;
    }
    
    /* Hide any other togglers */
    .navbar-toggler:not(#mobileMenuToggle) {
        display: none !important;
    }
    
    #navbarNav {
        display: none !important;
    }
    
    /* Prevent duplicate navbars - hide Bootstrap's default collapse */
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        display: none !important;
    }
    
    /* Prevent Bootstrap from showing navbar on mobile */
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }
    
    /* Prevent any duplicate navbar elements */
    .navbar:not(#mainNavbar) {
        display: none !important;
    }
}

/* Ensure navbar-toggler icon bars are visible when toggler is shown */
.navbar-toggler-icon,
.navbar-toggler-icon span {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Prevent AOS or other animations from affecting navbar - MAXIMUM PRIORITY */
#mainNavbar,
#mainNavbar *,
.navbar-toggler,
.navbar-toggler *,
#mobileMenuToggle,
#mobileMenuToggle * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation: none !important;
    transition: none !important;
}

/* Completely disable AOS on navbar elements */
#mainNavbar.aos-animate,
#mainNavbar.aos-init {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
}

/* On large screens, always hide toggler regardless of AOS */
@media (min-width: 992px) {
    .navbar-toggler.aos-animate,
    .navbar-toggler.aos-init,
    #mobileMenuToggle.aos-animate,
    #mobileMenuToggle.aos-init {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* On small screens, show toggler regardless of AOS */
@media (max-width: 991.98px) {
    .navbar-toggler.aos-animate,
    .navbar-toggler.aos-init,
    #mobileMenuToggle.aos-animate,
    #mobileMenuToggle.aos-init {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

/* Force visibility on small screens regardless of AOS */
@media (max-width: 991.98px) {
    #mainNavbar.aos-animate,
    #mainNavbar.aos-init,
    #mobileMenuToggle.aos-animate,
    #mobileMenuToggle.aos-init {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Hide any duplicate togglers - only show our custom one */
    .navbar-toggler:not(#mobileMenuToggle) {
        display: none !important;
    }
    
    /* Ensure Bootstrap doesn't create duplicate togglers */
    .navbar > button.navbar-toggler:not(#mobileMenuToggle) {
        display: none !important;
    }
}

/* Ensure only one navbar exists */
body > nav.navbar:first-of-type {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Hide any duplicate navbars */
body > nav.navbar:not(:first-of-type) {
    display: none !important;
}

/* Prevent Bootstrap from creating duplicate togglers */
.navbar .navbar-toggler:not(#mobileMenuToggle) {
    display: none !important;
}

/* Ensure container doesn't cause cramping */
.navbar .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
}

.navbar .navbar-brand {
    flex-shrink: 0 !important;
    margin-right: auto !important;
}

#mobileMenuToggle {
    margin-left: auto !important;
    flex-shrink: 0 !important;
}

/* On small screens, ensure toggler is visible */
@media (max-width: 991.98px) {
    .navbar-toggler,
    .navbar-toggler-icon,
    .navbar-toggler-icon span {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        animation: none !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem !important;
    }
    
    .section {
        padding: var(--section-padding-mobile);
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .hero-stat-number {
        font-size: 1.5rem !important;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .hero-image {
        padding-top: 2rem;
    }
    
    .floating-whatsapp {
        bottom: 1rem;
        right: 1rem;
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        z-index: 999;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .feature-card,
    .testimonial-card,
    .pricing-card {
        padding: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    .brand-logo {
        width: 32px;
        height: 32px;
    }
}
