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

:root {
    /* New Brand Color Scheme */
    --primary-color: #002060;        /* Navy Blue */
    --primary-dark: #001648;         /* Darker Navy */
    --secondary-color: #F76C6C;      /* Coral */
    --accent-color: #1e3a8a;         /* Navy Blue */
    --accent-green: #1e40af;         /* Emerald Green */
    --accent-gold: #CC9900;          /* Gold */
    
    /* Legacy colors for compatibility */
    --accent-orange: #F76C6C;        /* Coral mapped to orange */
    --accent-yellow: #CC9900;        /* Gold mapped to yellow */
    --accent-pink: #F76C6C;          /* Coral mapped to pink */
    --accent-blue: #1e3a8a;          /* Navy Blue mapped to blue */
    
    /* Text Colors - Enhanced for WCAG AA compliance */
    --text-primary: #1a1a1a;        /* Darker for better contrast */
    --text-secondary: #374151;      /* Improved contrast ratio */
    --text-light: #6b7280;          /* Better readability */
    --text-muted: #9ca3af;          /* For less important text */
    
    /* Background Gradients with New Color Scheme */
    --bg-light: linear-gradient(135deg, #002060 0%, #001648 100%);
    --bg-gradient-1: linear-gradient(135deg, #002060 0%, #1e3a8a 100%);
    --bg-gradient-2: linear-gradient(135deg, #F76C6C 0%, #CC9900 100%);
    --bg-gradient-3: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    --bg-gradient-4: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    --bg-gradient-5: linear-gradient(135deg, #CC9900 0%, #F76C6C 100%);
    
    /* Standard Backgrounds */
    --bg-white: #ffffff;
    --bg-light-gray: #f7fafc;
    --border-color: #e2e8f0;
    
    /* Shadows */
    --shadow: 0 4px 6px -1px rgba(0, 32, 96, 0.1), 0 2px 4px -1px rgba(0, 32, 96, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 32, 96, 0.1), 0 10px 10px -5px rgba(0, 32, 96, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 32, 96, 0.25);
    
    /* Border Radius */
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.01);
}

.logo img {
    height: 48px;
    width: auto;
    max-width: 200px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
}

.logo:hover img {
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    transform: rotate(3deg);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--bg-gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.tagline {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-1);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.nav-link i {
    margin-left: 4px;
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: rotate(180deg);
}


/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--primary-color);
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
    display: block;
}

.mobile-menu-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: scale(1.05);
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:last-child {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Navigation */
@media (max-width: 1200px) {
    .navbar-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 2px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 960px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        border-radius: 0 0 20px 20px;
        gap: 8px;
        z-index: 999;
        border-top: 1px solid rgba(99, 102, 241, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        margin: 0;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 16px;
        height: 64px;
    }
    
    .logo img {
        height: 40px;
        width: auto;
        max-width: 180px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
    
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    
    .mobile-menu-btn span {
        width: 18px;
    }
    
    .hero {
        padding: 60px 0 80px 0;
    }
    
    .hero::after {
        height: 80px;
    }
    
    .section-after-hero {
        padding-top: 120px;
        margin-top: 20px;
        border-radius: 30px 30px 0 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
}

/* Hero Section - Enhanced with Dynamic Background */
.hero {
    padding: 80px 0 60px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    /* Dynamic gradient background */
    background: linear-gradient(-45deg, #002060, #001648, #1e3a8a, #1e40af);
    background-size: 400% 400%;
    /* Removed heavy gradient animation for performance */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.15;
    z-index: 1;
    /* Add floating particles effect */
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 60% 90%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    /* Removed heavy particle animation for performance */
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, var(--bg-white) 100%);
    z-index: 3;
}

.hero > * {
    position: relative;
    z-index: 15;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.highlight-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 0.8rem;
    color: white;
}

.hero-stats-ticker {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
    /* Ensure proper accessibility and visibility */
    position: relative;
    z-index: 20;
    width: 100%;
}

.hero-stats-ticker .stat-item {
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 1;
    /* Add slight background for better contrast if needed */
    padding: 20px 15px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    background: rgba(0, 32, 96, 0.15);
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.hero-stats-ticker .stat-item:hover {
    background: rgba(0, 32, 96, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-stats-ticker .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white !important;
    display: inline-block;
    /* Override the gradient text effect that makes text transparent */
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats-ticker .stat-symbol {
    color: white !important;
    font-weight: 700;
    font-size: 2rem;
    /* Ensure symbol also overrides any gradient effects */
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
}

.hero-stats-ticker .stat-label {
    display: block;
    font-size: 0.95rem;
    color: white;
    margin-top: 8px;
    font-weight: 600;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-stats-ticker .stat-description {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 5px;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
    align-items: center;
    justify-content: center;
}

.hero-cta .btn {
    min-width: 200px;
    justify-content: center;
}

.hero-cta .btn:first-child {
    order: 1;
}

.hero-cta .btn:last-child {
    order: 2;
}

.hero-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 60px rgba(30, 58, 138, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* Floating animation */
    /* Removed heavy floating animation for performance */
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 80px rgba(30, 58, 138, 0.5), 0 20px 40px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.15) 0%, 
        rgba(139, 92, 246, 0.15) 50%,
        rgba(0, 32, 96, 0.2) 100%);
    opacity: 1;
    transition: all 0.4s ease;
    /* Add subtle pattern overlay */
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-image:hover .hero-image-overlay {
    opacity: 0.3;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.2) 0%, 
        rgba(30, 64, 175, 0.2) 50%,
        rgba(0, 32, 96, 0.1) 100%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Enhanced button base styling */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced focus styles for accessibility */
.btn:focus-visible {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
    box-shadow: 0 0 0 2px var(--bg-white), 0 0 0 5px var(--primary-color);
}

/* Ensure focus is visible even when outline is removed */
.btn:focus:not(:focus-visible) {
    outline: none;
}

.btn:focus {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

.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;
}

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

.btn-primary {
    background: #F76C6C;
    background: linear-gradient(135deg, #F76C6C 0%, #f45c5c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(247, 108, 108, 0.3);
    position: relative;
    /* Add ripple effect preparation */
    overflow: hidden;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(247, 108, 108, 0.4);
    background: linear-gradient(135deg, #f45c5c 0%, #F76C6C 100%);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    background: #F76C6C;
    background: linear-gradient(135deg, #F76C6C 0%, #f45c5c 100%);
    /* Enhanced glow effect */
    box-shadow: 
        0 0 20px rgba(247, 108, 108, 0.5),
        0 0 40px rgba(247, 108, 108, 0.4),
        0 0 60px rgba(247, 108, 108, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(247, 108, 108, 0.4), 
                    0 0 40px rgba(247, 108, 108, 0.3),
                    0 0 60px rgba(247, 108, 108, 0.2),
                    0 4px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(247, 108, 108, 0.6), 
                    0 0 60px rgba(247, 108, 108, 0.4),
                    0 0 80px rgba(247, 108, 108, 0.3),
                    0 8px 25px rgba(0, 0, 0, 0.2);
    }
}

.btn-secondary {
    background: #62C3B5;
    color: white;
    border: 2px solid #62C3B5;
    box-shadow: 0 4px 15px rgba(98, 195, 181, 0.3);
    font-weight: 700;
}

.btn-secondary:hover {
    background: #4eb3a4;
    border-color: #4eb3a4;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(98, 195, 181, 0.4);
}

.btn-accent {
    background: #CC9900;
    background: linear-gradient(135deg, #CC9900 0%, #b38600 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(204, 153, 0, 0.3);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(204, 153, 0, 0.4);
    background: linear-gradient(135deg, #b38600 0%, #CC9900 100%);
}

/* Sections */
.section {
    padding: 60px 0;
    position: relative;
    background: var(--bg-white);
}

.section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section:nth-child(odd) {
    background: var(--bg-white);
}

.section-after-hero {
    padding-top: 140px;
    margin-top: 20px;
    background: var(--bg-white);
    z-index: 10;
    position: relative;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-top: 40px;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--bg-gradient-1);
    border-radius: 2px;
}

.company-info-section {
    background: var(--bg-light-gray);
    border-top: 1px solid var(--border-color);
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.about-text {
    width: 100%;
    max-width: none;
}

.about-details {
    margin: 30px 0;
}

.about-details p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: var(--bg-light-gray);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.stat-item {
    text-align: center;
    padding: 20px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--bg-gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

.stat-source {
    font-size: 0.75rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 5px;
    display: block;
}

@media (max-width: 768px) {
    /* Layout improvements */
    .section-container {
        padding: 0 16px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    /* About section responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px 20px;
    }
    
    .stat-item {
        padding: 16px 0;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Hero section responsive */
    .hero {
        padding: 60px 0 40px 0;
        min-height: 90vh;
    }
    
    .hero-container {
        padding: 0 16px;
        gap: 24px;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-highlights {
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .highlight-item {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .highlight-item i {
        width: 18px;
        height: 18px;
        font-size: 0.75rem;
    }
    
    .hero-cta {
        justify-content: center;
        gap: 12px;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    
    .hero-cta .btn {
        flex: 1;
        min-width: 180px;
        max-width: 250px;
        padding: 14px 20px;
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Hero stats responsive styling */
    .hero-stats-ticker {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 15px;
        margin: 30px 0;
    }

    .hero-stats-ticker .stat-item {
        width: 100%;
        padding: 16px 12px;
    }
    
    .hero-stats-ticker .stat-number {
        font-size: 2.2rem;
        color: white !important;
        background: none !important;
        background-clip: unset !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: white !important;
        margin-bottom: 4px;
    }
    
    .hero-stats-ticker .stat-label {
        font-size: 0.75rem;
        color: white !important;
        background: none !important;
        background-clip: unset !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: white !important;
        line-height: 1.3;
    }
    
    /* Services grid responsive */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-preview-card {
        padding: 24px 20px;
    }
    
    .service-preview-card h3 {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    
    .service-preview-card .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    /* Form improvements on mobile */
    .contact-form {
        max-width: 100% !important;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .form-checkbox {
        align-items: flex-start;
        gap: 10px;
        padding: 10px 0;
    }
    
    .form-checkbox span:last-child {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Button improvements */
    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        min-height: 48px; /* Touch target size */
    }
    
    /* Cards responsive */
    .card {
        padding: 24px 20px;
        margin-bottom: 24px;
    }
    
    .card-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    /* Discovery section responsive */
    .discovery-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }
    
    .benefit-item {
        font-size: 0.95rem;
        margin-bottom: 12px;
        align-items: flex-start;
    }
    
    .benefit-item i {
        margin-top: 2px;
    }
    
    /* ROI banner responsive */
    .roi-calculator-banner {
        padding: 24px 20px;
        margin-top: 32px;
    }
    
    .roi-banner-content {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .roi-banner-text h3 {
        font-size: 1.4rem;
        line-height: 1.3;
    }
    
    .roi-banner-text p {
        font-size: 1rem;
    }
    
    .risk-indicators {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .risk-indicator {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-after-hero .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--secondary-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.section-after-hero .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    border-radius: 2px;
    animation: scaleIn 0.8s ease-out 0.3s both;
}

@keyframes scaleIn {
    from { transform: translateX(-50%) scaleX(0); }
    to { transform: translateX(-50%) scaleX(1); }
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-after-hero .section-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 80px;
    color: var(--text-primary);
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    opacity: 0.9;
}

.contact-form-title {
    font-size: 1.8rem !important;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    text-align: center !important;
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .contact-form-title {
        font-size: 1.5rem !important;
    }
}

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
    /* Enhanced card styling */
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    /* Floating animation */
    /* Removed heavy card float animation for performance */
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient-1);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(30, 58, 138, 0.3);
    /* Enhanced hover with glow effect */
    border: 1px solid rgba(30, 58, 138, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    /* Removed heavy morphing border animation for performance */
}

.card:nth-child(2n)::before {
    background: var(--bg-gradient-2);
}

.card:nth-child(3n)::before {
    background: var(--bg-gradient-3);
}

.card:nth-child(4n)::before {
    background: var(--bg-gradient-4);
}

.card:nth-child(5n)::before {
    background: var(--bg-gradient-5);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient-3);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow), 0 0 20px rgba(30, 64, 175, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card:nth-child(2n) .card-icon {
    background: var(--bg-gradient-4);
}

.card:nth-child(3n) .card-icon {
    background: var(--bg-gradient-5);
}

.card:nth-child(4n) .card-icon {
    background: var(--bg-gradient-2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.5;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background-color: var(--bg-white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 32, 96, 0.1);
    background-color: #ffffff;
}

.form-input:hover:not(:focus),
.form-textarea:hover:not(:focus) {
    border-color: var(--primary-dark);
}

.form-input:invalid,
.form-textarea:invalid {
    border-color: #dc2626;
}

.form-input:valid,
.form-textarea:valid {
    border-color: #16a34a;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
}

/* Error messages */
.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 6px;
    min-height: 20px;
    display: block;
    font-weight: 500;
}

.form-error:empty {
    display: none;
}

/* Form info */
.form-info {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 8px;
    text-align: center;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Checkbox improvements */
.form-checkbox-group {
    border: none;
    padding: 0;
    margin: 0;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    padding: 12px 0;
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    margin: 0;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-white);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-checkbox input[type="checkbox"]:checked + .checkmark::after {
    display: block;
}

.form-checkbox input[type="checkbox"]:focus + .checkmark {
    box-shadow: 0 0 0 3px rgba(0, 32, 96, 0.2);
    border-color: var(--primary-color);
}

.form-checkbox:hover .checkmark {
    border-color: var(--primary-color);
}

.form-checkbox span:last-child {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.form-checkbox a:hover {
    text-decoration: none;
}

/* Button improvements */
.btn-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

.btn[disabled] .btn-text {
    opacity: 0.7;
}

.btn[disabled] .btn-spinner {
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Focus Management for Accessibility */
/* Global focus styles */
*:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Navigation focus styles */
.nav-link:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
    background: var(--bg-gradient-1);
    color: white;
}

.mobile-menu-btn:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
    background: rgba(251, 191, 36, 0.1);
}

/* Logo focus styles */
.logo:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Link focus styles */
a:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Card focus styles for interactive cards */
.card[tabindex]:focus,
.service-preview-card[tabindex]:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Social links focus */
.social-links a:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
    transform: scale(1.1);
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .hero-image {
        transform: none !important;
    }
    
    .card:hover {
        transform: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #1a1a1a;
        --border-color: #000000;
        --bg-white: #ffffff;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
    
    .form-input,
    .form-textarea {
        border: 2px solid #000000;
    }
    
    .card {
        border: 2px solid #000000;
    }
}

/* Grid Layouts with Flexbox Fallbacks */
.grid-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.grid-2 > * {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

@supports (display: grid) {
    .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .grid-2 > * {
        flex: none;
        min-width: auto;
    }
}

.grid-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.grid-3 > * {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
}

@supports (display: grid) {
    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .grid-3 > * {
        flex: none;
        min-width: auto;
    }
}

.grid-4 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.grid-4 > * {
    flex: 1 1 calc(25% - 22.5px);
    min-width: 200px;
}

@supports (display: grid) {
    .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .grid-4 > * {
        flex: none;
        min-width: auto;
    }
}

/* Services Preview Section */
.services-preview-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e0 100%);
    color: var(--text-primary);
    position: relative;
}

.services-preview-section .section-title,
.services-preview-section .section-subtitle {
    color: var(--text-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 25px;
    margin-top: 50px;
}

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.service-preview-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    /* Floating animation with staggered delay */
    /* Removed heavy card float animation for performance */
}

.service-preview-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(30, 58, 138, 0.4);
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(30, 58, 138, 0.4);
    /* Enhanced hover effects */
    backdrop-filter: blur(20px);
}

.service-preview-card .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-preview-card:nth-child(1) .service-icon {
    background: var(--bg-gradient-2);
}

.service-preview-card:nth-child(2) .service-icon {
    background: var(--bg-gradient-3);
}

.service-preview-card:nth-child(3) .service-icon {
    background: var(--bg-gradient-4);
}

.service-preview-card:nth-child(4) .service-icon {
    background: var(--bg-gradient-5);
}

.service-preview-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-preview-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.service-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Discovery Section */
.discovery-section {
    background: linear-gradient(135deg, #f0fff4 0%, #dcfce7 50%, #bbf7d0 100%);
    color: var(--text-primary);
    position: relative;
}

.discovery-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.discovery-benefits {
    margin: 30px 0 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

.discovery-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.discovery-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .discovery-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 60px 0 20px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.05;
    z-index: 1;
}

.footer > * {
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.footer-tagline {
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

.footer-address {
    margin-top: 20px;
}

.footer-address p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-address i {
    color: var(--accent-color);
    width: 16px;
}

.footer-connect {
    text-align: center;
}

.footer-cta {
    margin-top: 20px;
}

.footer-cta .btn {
    background: var(--bg-gradient-3);
    border: none;
    padding: 12px 24px;
    font-size: 0.9rem;
}

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

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 214, 160, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

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

/* Enhanced Loading States and Micro-interactions */
.form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.form-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmerLoading 1.5s infinite;
    z-index: 1;
    border-radius: 8px;
}

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

.form-success {
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.form-error-shake {
    animation: errorShake 0.6s ease-out;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
    20%, 40%, 60%, 80% { transform: translateX(8px); }
}

/* Button hover micro-interactions */
.btn {
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn:active:not(:disabled) {
    transform: translateY(0);
    transition: all 0.1s ease;
}

/* Card hover micro-interactions */
.card,
.service-preview-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Input focus micro-interactions */
.form-input,
.form-textarea {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus,
.form-textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(0, 32, 96, 0.1), 0 4px 12px rgba(0, 32, 96, 0.1);
}

/* Navigation item micro-interactions */
.nav-link {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Add magnetic effect preparation */
    transform: translateZ(0);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Logo hover micro-interaction */
.logo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.05);
}

/* Social links micro-interactions */
.social-links a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-links a::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;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

/* Image lazy loading effect */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Enhanced Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Parallax-like scroll effects */
.parallax-element {
    transform: translateZ(0);
    transition: transform 0.1s ease-out;
}

/* Intersection Observer triggered classes */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading skeleton for images */
.image-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Tooltip micro-interactions */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* Enhanced Service Icon Hover Effects */
.service-preview-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
}

.card-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow), 0 0 30px rgba(30, 64, 175, 0.5);
    animation: iconSpin 2s linear infinite;
}

/* Enhanced Form Interactions */
.form-input:focus,
.form-textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 0 0 3px rgba(0, 32, 96, 0.1), 0 8px 25px rgba(0, 32, 96, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

/* Ripple Effect for Buttons */
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Staggered Animation Delays for Cards */
.service-preview-card:nth-child(1) {
    animation-delay: 0s;
}

.service-preview-card:nth-child(2) {
    animation-delay: 0.5s;
}

.service-preview-card:nth-child(3) {
    animation-delay: 1s;
}

.service-preview-card:nth-child(4) {
    animation-delay: 1.5s;
}

/* Parallax-like Effect for Hero Stats */
.hero-stats-ticker .stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(0, 32, 96, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced Navbar Blur Effect */
.navbar {
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Ripple Animation for Buttons */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Floating Particles */
.floating-particle {
    pointer-events: none;
    will-change: transform;
}

/* Enhanced Mobile Responsiveness */
@media (hover: none) and (pointer: coarse) {
    /* Touch device optimizations */
    .card:hover,
    .service-preview-card:hover {
        transform: none;
        box-shadow: var(--shadow);
    }
    
    .btn:hover {
        transform: none;
    }
    
    /* Larger touch targets */
    .btn {
        min-height: 44px;
        padding: 16px 32px;
    }
    
    .nav-link {
        padding: 12px 16px;
    }
}

/* Advanced Animation Classes */
.liquid-morph {
    /* Removed heavy liquid morph animation for performance */
}

.magnetic-hover {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.breath-glow {
    /* Removed heavy breathing glow animation for performance */
}

/* Performance Optimizations */
.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Smooth Focus Indicators */
.focus-ring:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.5);
    transition: box-shadow 0.2s ease;
}

/* Loading State Animations */
.skeleton-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite;
}

/* Micro-interactions for Icons */
.icon-bounce:hover {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 20%, 60%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    80% {
        transform: translateY(-5px);
    }
}

/* Staggered Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Services Detail Page Styles */
.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
    position: relative;
}

.service-detail-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 32, 96, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 32, 96, 0.08);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
    isolation: isolate;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    background-size: 200% 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-detail-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 32, 96, 0.02) 0%, rgba(30, 58, 138, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.service-detail-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 32, 96, 0.15), 0 15px 35px rgba(30, 58, 138, 0.1);
    border-color: var(--accent-color);
}

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

.service-detail-card:hover::before {
    height: 6px;
    background-position: 100% 0;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.service-detail-content {
    padding: 35px 45px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 35px;
    margin-bottom: 10px;
}

.service-detail-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-icon-1 { background: var(--bg-gradient-2); }
.service-icon-2 { background: var(--bg-gradient-3); }
.service-icon-3 { background: var(--bg-gradient-4); }
.service-icon-4 { background: var(--bg-gradient-5); }

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.15) rotate(-3deg);
    box-shadow: 0 15px 30px rgba(0, 32, 96, 0.3);
}

.service-detail-text {
    flex: 1;
}

.service-detail-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.service-detail-card:hover .service-detail-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-detail-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.service-detail-card:hover .service-detail-description {
    opacity: 1;
}

.service-detail-features {
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding-top: 5px;
    align-items: center;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 32, 96, 0.02) 0%, rgba(30, 58, 138, 0.02) 100%);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(0, 32, 96, 0.06);
    flex: 1;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.5;
    padding: 10px 16px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 1px solid rgba(0, 32, 96, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 32, 96, 0.04);
}

.service-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-green) 100%);
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-features-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 32, 96, 0.12);
    border-color: var(--accent-color);
}

.service-features-list li:hover::before {
    opacity: 1;
}

.service-features-list li i {
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 50%;
}

.service-features-list li:hover i {
    color: var(--primary-color);
    transform: scale(1.2) rotate(360deg);
    background: rgba(0, 32, 96, 0.1);
}

.service-detail-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
    flex-shrink: 0;
    border-top: 1px solid rgba(0, 32, 96, 0.06);
}

.service-detail-cta .btn {
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

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

.service-detail-cta .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Consistent Layout - All Left Aligned */
.service-detail-header {
    text-align: left;
}

.service-detail-features {
    align-items: flex-start;
}

.service-features-list li {
    text-align: left;
}

/* Framework CTA Section */
.framework-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 70px 50px;
    border-radius: 24px;
    text-align: center;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 32, 96, 0.2);
    transition: all 0.5s ease;
}

/* Extended Framework CTA Section - Includes Follow-up Options */
.framework-cta-section-extended {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 70px 50px 50px 50px;
    border-radius: 24px;
    text-align: center;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 32, 96, 0.2);
    transition: all 0.5s ease;
}

.framework-cta-section:hover,
.framework-cta-section-extended:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0, 32, 96, 0.25);
}

.framework-cta-section::before,
.framework-cta-section-extended::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: floatingParticles 20s linear infinite;
    opacity: 0.3;
}

.framework-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.framework-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: var(--accent-color);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.framework-cta-section:hover .framework-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.2);
}

.framework-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.framework-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Inline Follow-up Content within Extended Framework Section */
.follow-up-content-inline {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 30px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.follow-up-content-inline .follow-up-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.follow-up-content-inline .follow-up-item i {
    font-size: 2rem;
    color: #62C3B5;
    margin-bottom: 10px;
}

.follow-up-subtitle-inline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 20px auto 0;
    max-width: 700px;
    position: relative;
    z-index: 2;
}

/* Responsive adjustments for inline follow-up */
@media (max-width: 768px) {
    .follow-up-content-inline {
        flex-direction: column;
        gap: 20px;
        margin: 30px 0 20px 0;
    }

    .follow-up-content-inline .follow-up-item i {
        font-size: 1.5rem;
    }

    .follow-up-subtitle-inline {
        font-size: 1rem;
        margin: 15px auto 0;
    }
}

/* Services Page Background Enhancement */
.section-after-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(247, 250, 252, 0.5) 100%);
}

.section-after-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 32, 96, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(30, 58, 138, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 40% 60%, rgba(247, 108, 108, 0.02) 1px, transparent 1px);
    background-size: 50px 50px, 70px 70px, 30px 30px;
    opacity: 0.6;
    pointer-events: none;
}

/* Services Grid Visual Enhancement */
.services-detailed-grid::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    opacity: 0.3;
}

/* Enhanced Animation System */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.3s; }
.stagger-3 { animation-delay: 0.5s; }
.stagger-4 { animation-delay: 0.7s; }
.stagger-5 { animation-delay: 0.9s; }

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

/* Performance optimizations */
.service-detail-card {
    will-change: transform, box-shadow;
}

.service-detail-icon {
    will-change: transform;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .section-after-hero .section-title {
        font-size: 2.5rem;
    }
    
    .section-after-hero .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }
    
    .services-detailed-grid {
        gap: 30px;
        margin-top: 40px;
    }
    
    .service-detail-card {
        margin: 0 -10px;
        box-shadow: 0 8px 25px rgba(0, 32, 96, 0.1);
    }
    
    .service-detail-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .service-detail-content {
        padding: 25px 20px;
        gap: 20px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-detail-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .service-features-list {
        padding: 15px;
        gap: 6px;
    }
    
    .service-features-list li {
        text-align: left;
        padding: 8px 12px;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .service-detail-cta {
        justify-content: center;
        margin-top: 15px;
    }
    
    .service-detail-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin: 0 auto;
        border-radius: 18px;
    }
    
    .service-detail-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .service-detail-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .framework-cta-section,
    .framework-cta-section-extended {
        padding: 40px 25px;
        margin-top: 60px;
        border-radius: 20px;
    }
    
    .framework-title {
        font-size: 1.9rem;
    }
    
    .framework-subtitle {
        font-size: 1.1rem;
    }
    
    .framework-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .roi-calculator-banner {
        padding: 35px 25px;
        margin-top: 50px;
        border-radius: 20px;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

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

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Loading Spinner */
.spinner {
    border: 3px solid var(--bg-light);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

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

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

/* New Advanced Animation Keyframes */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

@keyframes floatingParticles {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

@keyframes floatingImage {
    0%, 100% {
        transform: perspective(1000px) rotateY(-5deg) translateY(0px);
    }
    50% {
        transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
    }
}

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

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

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

@keyframes morphingBorder {
    0%, 100% {
        border-radius: 20px;
    }
    50% {
        border-radius: 40px;
    }
}

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

@keyframes magneticPull {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(var(--mouse-x, 0)) translateY(var(--mouse-y, 0));
    }
}

@keyframes liquidMorph {
    0%, 100% {
        border-radius: 20px 40px 20px 40px;
    }
    25% {
        border-radius: 40px 20px 40px 20px;
    }
    50% {
        border-radius: 30px 30px 30px 30px;
    }
    75% {
        border-radius: 20px 40px 20px 40px;
    }
}

@keyframes breathingGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(30, 58, 138, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(30, 58, 138, 0.6), 0 0 60px rgba(30, 58, 138, 0.4);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up.animated {
    opacity: 1;
}

/* Success Message */
.success-message {
    background-color: #10b981;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    font-size: 1.5rem;
}

/* Testimonial Styles */
.testimonial-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.testimonial-content {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.testimonial-author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-author-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Awards Carousel - New Image-focused Design */
.awards-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 80px; /* Extra padding for arrows */
}

.awards-carousel {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 400px;
}

.award-slide {
    display: none;
    padding: 40px;
    text-align: center;
    transition: all 0.5s ease-in-out;
}

.award-slide.active {
    display: block;
    animation: slideIn 0.5s ease-in-out;
}

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

.award-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.award-content img {
    max-width: 300px;
    max-height: 200px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.award-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.award-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

/* Navigation Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 32, 96, 0.3);
}

.carousel-arrow:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 32, 96, 0.4);
}

.carousel-arrow-left {
    left: 15px; /* Within the 80px padding */
}

.carousel-arrow-right {
    right: 15px; /* Within the 80px padding */
}

/* Slide Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 32, 96, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 900px) {
    .awards-carousel-container {
        max-width: 90%;
        margin: 30px auto;
        padding: 0 60px; /* Maintain space for arrows */
    }

    .carousel-arrow-left {
        left: 10px; /* Within the 60px padding */
    }

    .carousel-arrow-right {
        right: 10px; /* Within the 60px padding */
    }

    .award-slide {
        padding: 30px 20px;
    }

    .award-content img {
        max-width: 250px;
        max-height: 150px;
    }

    .award-text h3 {
        font-size: 1.5rem;
    }

    .award-text p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .awards-carousel-container {
        padding: 0 50px; /* Adequate space for arrows on mobile */
    }

    .awards-carousel {
        min-height: 350px;
    }

    .award-slide {
        padding: 20px 15px;
    }

    .award-content {
        gap: 20px;
    }

    .award-content img {
        max-width: 200px;
        max-height: 120px;
    }

    .award-text h3 {
        font-size: 1.3rem;
    }

    .award-text p {
        font-size: 0.9rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-arrow-left {
        left: 5px; /* Within the 50px padding */
    }

    .carousel-arrow-right {
        right: 5px; /* Within the 50px padding */
    }
}

/* ROI Calculator Banner */
.roi-calculator-banner {
    background: linear-gradient(135deg, rgba(0, 32, 96, 0.02) 0%, rgba(30, 58, 138, 0.02) 100%);
    border: 2px solid rgba(0, 32, 96, 0.08);
    border-radius: 24px;
    padding: 50px 45px;
    margin-top: 80px;
    box-shadow: 0 15px 35px rgba(0, 32, 96, 0.08);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.roi-calculator-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 32, 96, 0.12);
    border-color: var(--accent-color);
}

.roi-calculator-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    /* Removed heavy shimmer animation for performance */
}

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

.roi-banner-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.roi-banner-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.roi-banner-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.risk-indicators {
    display: flex;
    gap: 15px;
    align-items: center;
}

.risk-indicator {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.risk-indicator.red {
    background-color: #dc2626;
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.risk-indicator.amber {
    background-color: #f59e0b;
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.risk-indicator.green {
    background-color: #16a34a;
    color: white;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.risk-indicator:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.roi-banner-cta {
    text-align: center;
}

.roi-banner-cta .btn {
    background: var(--bg-gradient-1);
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.3px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.roi-banner-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;
}

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

.roi-banner-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-gradient-2);
}

@media (max-width: 768px) {
    .roi-calculator-banner {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .roi-banner-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .roi-banner-text h3 {
        font-size: 1.5rem;
    }
    
    .roi-banner-text p {
        font-size: 1rem;
    }
    
    .risk-indicators {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .risk-indicator {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .roi-banner-cta .btn {
        font-size: 1rem;
        padding: 14px 28px;
        width: 100%;
        max-width: 280px;
    }
}

/* Coach Page Specific Styles */
.coach-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.coach-image {
    text-align: center;
    position: relative;
}

.coach-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.coach-image:hover img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.coach-details h1 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.coach-details h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.coach-content {
    line-height: 1.8;
    color: var(--text-secondary);
}

.coach-content p {
    margin-bottom: 20px;
}

.coach-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Coach Sections Grid - Optimized for space efficiency */
.coach-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

/* Modern compact layout for larger screens */
@media (min-width: 1024px) {
    .coach-sections-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1200px) {
    .coach-sections-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
}

/* Coach Section Button - Compact Design */
.coach-section-button {
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(30, 58, 138, 0.05) 100%);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    gap: 12px;
    min-height: 120px;
    justify-content: center;
    box-shadow: var(--shadow);
    outline: none;
}

.coach-section-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color); /* Solid navy blue instead of gradient */
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.coach-section-button:hover::before,
.coach-section-button:focus::before {
    left: 0;
    opacity: 0.95;
}

.coach-section-button:hover,
.coach-section-button:focus {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color); /* Navy blue border to match background */
}

.coach-section-button:active {
    transform: translateY(-4px);
}

.button-icon {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 4px;
    pointer-events: none;
}

.coach-section-button:hover .button-icon,
.coach-section-button:focus .button-icon {
    color: white;
    transform: scale(1.08);
}

.coach-section-button h3 {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.2;
    pointer-events: none;
}

.coach-section-button:hover h3,
.coach-section-button:focus h3 {
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design for Coach Sections - Compact Layout */
@media (max-width: 768px) {
    .coach-sections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 24px;
    }
    
    .coach-section-button {
        padding: 20px 16px;
        min-height: 110px;
        gap: 10px;
    }
    
    .button-icon {
        font-size: 1.8rem;
        margin-bottom: 2px;
    }
    
    .coach-section-button h3 {
        font-size: 1rem;
        line-height: 1.1;
    }
}

@media (max-width: 520px) {
    .coach-sections-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .coach-section-button {
        padding: 18px 16px;
        min-height: 100px;
        gap: 8px;
    }
    
    .button-icon {
        font-size: 1.6rem;
    }
    
    .coach-section-button h3 {
        font-size: 0.95rem;
    }
}

.qualifications-section {
    background: linear-gradient(135deg, rgba(0, 32, 96, 0.03) 0%, rgba(30, 58, 138, 0.03) 100%);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    margin-bottom: 50px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 32, 96, 0.1);
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.qualification-item {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 138, 0.1);
    text-align: center;
}

.qualification-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(30, 58, 138, 0.3);
}

.qualification-item .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-gradient-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.qualification-item .service-icon i {
    font-size: 1.5rem;
    color: white;
}

.qualification-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.qualification-item ul {
    list-style: none;
    padding: 0;
}

.qualification-item li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: all 0.2s ease;
}

.qualification-item li:hover {
    color: var(--text-primary);
    transform: translateX(3px);
}

.qualification-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1.4;
}

.awards-preview {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.award-badge {
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    padding: 15px;
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.award-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.award-badge img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

/* Simple Timeline Styles */
.journey-roadmap {
    position: relative;
    margin: 80px 0;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(74, 158, 255, 0.05) 50%, rgba(156, 39, 176, 0.05) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

/* Simple Timeline Container */
.simple-timeline {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Central Timeline Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--accent-color), var(--primary-color));
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(30, 58, 138, 0.3);
}

/* Timeline Items */
.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.4s; }
.timeline-item:nth-child(4) { animation-delay: 0.6s; }
.timeline-item:nth-child(5) { animation-delay: 0.8s; }

/* Timeline Dots */
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4), 0 0 0 8px rgba(255, 255, 255, 1);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-dot:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.6), 0 0 0 8px rgba(255, 255, 255, 1);
}

.timeline-dot i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.timeline-dot:hover i {
    transform: scale(1.1);
}

/* Timeline Content */
.timeline-content {
    width: 45%;
    padding: 0 30px;
}

.timeline-left {
    margin-right: auto;
    text-align: right;
}

.timeline-right {
    margin-left: auto;
    text-align: left;
}

/* Timeline Cards */
.timeline-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 32, 96, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(74, 158, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.timeline-card:hover::before {
    opacity: 1;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 32, 96, 0.2);
    border-color: rgba(30, 58, 138, 0.3);
}

/* Timeline Year */
.timeline-year {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

/* Timeline Titles and Text */
.timeline-card h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.timeline-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Dot Color Variations */
.timeline-item:nth-child(2) .timeline-dot {
    background: linear-gradient(135deg, #1e40af, #4a9eff);
}

.timeline-item:nth-child(3) .timeline-dot {
    background: linear-gradient(135deg, #4a9eff, #6b73ff);
}

.timeline-item:nth-child(4) .timeline-dot {
    background: linear-gradient(135deg, #6b73ff, #9c27b0);
}

.timeline-item:nth-child(5) .timeline-dot {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
}

/* Journey Milestones (Legacy - keep for compatibility) */
.journey-milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.milestone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

.milestone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(107, 115, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.milestone:hover::before {
    opacity: 1;
}

.milestone:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: rgba(30, 58, 138, 0.3);
}

/* Milestone Marker */
.milestone-marker {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.milestone-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
}

.milestone-icon i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.milestone:hover .milestone-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4);
}

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

/* Pulsing animation for milestone markers */
.milestone-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.3);
    animation: pulse 2s infinite;
    z-index: 1;
}

/* Different colors for different milestones */
.milestone:nth-child(1) .milestone-icon {
    background: linear-gradient(135deg, #1e40af, #4a9eff);
}

.milestone:nth-child(2) .milestone-icon {
    background: linear-gradient(135deg, #4a9eff, #6b73ff);
}

.milestone:nth-child(3) .milestone-icon {
    background: linear-gradient(135deg, #6b73ff, #9c27b0);
}

.milestone:nth-child(4) .milestone-icon {
    background: linear-gradient(135deg, #9c27b0, #ff6b6b);
}

/* Milestone Content */
.milestone-content {
    width: 100%;
}

.milestone-year {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1;
}

.milestone-content h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.milestone-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Journey Progress Indicator */
.journey-progress {
    margin-top: 60px;
    text-align: center;
}

.progress-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    max-width: 600px;
    height: 8px;
    background: rgba(30, 58, 138, 0.2);
    border-radius: 4px;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1e40af, #4a9eff, #6b73ff);
    border-radius: 4px;
    width: 100%;
    animation: fillProgress 2s ease-out forwards;
    animation-delay: 1s;
    transform: translateX(-100%);
}

.progress-stages {
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}

.stage {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.stage.active {
    color: var(--primary-color);
    opacity: 1;
    font-weight: 600;
}

/* Simple Timeline Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fillProgress {
    to {
        transform: translateX(0);
    }
}

/* Responsive Design for Coach Page */
@media (max-width: 1024px) {
    .qualifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .simple-timeline {
        padding: 0 15px;
    }
    
    .timeline-content {
        width: 42%;
        padding: 0 20px;
    }
    
    .timeline-card {
        padding: 25px 20px;
    }
    
    .timeline-dot {
        width: 50px;
        height: 50px;
    }
    
    .timeline-dot i {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .coach-profile {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .coach-details h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .coach-details h2 {
        text-align: center;
        font-size: 1.3rem;
    }
    
    .qualifications-section {
        padding: 30px 25px;
        margin-bottom: 40px;
    }
    
    .qualifications-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .journey-roadmap {
        margin: 40px 0;
        padding: 40px 20px;
    }
    
    /* Mobile: Simple vertical timeline */
    .simple-timeline {
        padding: 0 10px;
    }
    
    .timeline-line {
        left: 30px;
        transform: none;
    }
    
    .timeline-item {
        flex-direction: row;
        margin-bottom: 40px;
    }
    
    .timeline-dot {
        position: static;
        transform: none;
        width: 50px;
        height: 50px;
        margin-right: 20px;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4), 0 0 0 4px rgba(255, 255, 255, 1);
    }
    
    .timeline-dot i {
        font-size: 1.2rem;
    }
    
    .timeline-content {
        width: auto;
        flex: 1;
        padding: 0;
        text-align: left !important;
    }
    
    .timeline-left,
    .timeline-right {
        margin: 0;
        text-align: left;
    }
    
    .timeline-card {
        padding: 20px;
        margin: 0;
    }
    
    .timeline-year {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .timeline-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .timeline-card p {
        font-size: 0.9rem;
    }
    
    .journey-progress {
        margin-top: 40px;
    }
    
    .progress-stages {
        flex-direction: column;
        gap: 8px;
    }
    
    .stage {
        font-size: 0.9rem;
    }
    
    .awards-preview {
        gap: 20px;
        margin-top: 30px;
    }
    
    .award-badge {
        padding: 10px;
    }
    
    .award-badge img {
        height: 80px;
    }
}

/* ===== MODAL STYLES ===== */

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Modal Trigger Styles */
.modal-trigger {
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.modal-trigger:hover {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: translateY(-1px);
}

.modal-trigger::after {
    content: ' ↗';
    font-size: 0.8em;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--accent-color);
}

.modal-trigger:hover::after {
    opacity: 1;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 32, 96, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.modal-container {
    background: white;
    border-radius: var(--border-radius-lg);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9) translateY(50px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.modal-header {
    padding: 30px 40px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

/* Modal Close Button */
.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    transform: rotate(90deg);
}

.modal-close:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Modal Content */
.modal-content {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
    line-height: 1.7;
}

.modal-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-content h3::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.modal-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.modal-content li {
    position: relative;
    padding: 12px 0 12px 30px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.modal-content li:last-child {
    border-bottom: none;
}

.modal-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.modal-content .highlight-box {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
    position: relative;
}

.modal-content .highlight-box::before {
    content: '💡';
    position: absolute;
    top: -10px;
    left: 20px;
    background: white;
    padding: 0 8px;
    font-size: 1.2rem;
}

.modal-content .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.modal-content .stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light-gray);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.modal-content .stat-item:hover {
    transform: translateY(-5px);
}

.modal-content .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.modal-content .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-container {
        max-height: 95vh;
        border-radius: var(--border-radius);
    }
    
    .modal-header {
        padding: 20px 25px 15px;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .modal-content {
        padding: 25px;
        max-height: calc(95vh - 100px);
    }
    
    .modal-content h3 {
        font-size: 1.2rem;
    }
    
    .modal-content p,
    .modal-content li {
        font-size: 1rem;
    }
    
    .modal-content .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .modal-content .stat-number {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-title {
        font-size: 1.2rem;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .modal-content .highlight-box {
        padding: 15px;
        margin: 20px 0;
    }
}

/* Animation Keyframes */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.9) translateY(50px);
    }
}

/* ===== OLD AWARDS CAROUSEL STYLES - COMMENTED OUT TO PREVENT CONFLICTS =====
/*
.awards-carousel-container {
    margin: 50px auto;
    max-width: 600px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.awards-carousel {
    position: relative;
    height: 300px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.carousel-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    width: 100%;
    transform-style: preserve-3d;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
}

/* 3D Carousel sliding effect */
.awards-carousel .carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%) scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.awards-carousel .carousel-slide.current-slide {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

.awards-carousel .carousel-slide.prev-slide {
    opacity: 0.3;
    transform: translateX(-100%) scale(0.8) rotateY(45deg);
    z-index: 1;
}

.awards-carousel .carousel-slide.next-slide {
    opacity: 0.3;
    transform: translateX(100%) scale(0.8) rotateY(-45deg);
    z-index: 1;
}

.awards-carousel .carousel-slide .award-badge {
    opacity: 1 !important;
    transform: scale(1) !important;
    transition: all 300ms ease-in-out;
    max-width: 400px;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    padding: 20px;
}



.awards-carousel .carousel-slide .award-badge img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Carousel Buttons */
.carousel-button {
    display: none !important;
}

.carousel-button:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.carousel-button--left {
    left: -60px;
}

.carousel-button--right {
    right: -60px;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .awards-carousel-container {
        max-width: 100%;
        padding: 0 60px;
    }
    
    .awards-carousel {
        height: 250px;
    }
    
    .awards-carousel .carousel-slide .award-badge {
        height: 200px;
        max-width: 300px;
        padding: 15px;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-button--left {
        left: 10px;
    }
    
    .carousel-button--right {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .awards-carousel-container {
        padding: 0 50px;
    }
    
    .awards-carousel {
        height: 200px;
    }
    
    .awards-carousel .carousel-slide .award-badge {
        height: 160px;
        max-width: 250px;
        padding: 10px;
    }
    
    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .carousel-button--left {
        left: 5px;
    }
    
    .carousel-button--right {
        right: 5px;
    }
}
*/

/* Follow-up Options Styles - LEGACY (replaced by inline version) */
.follow-up-options {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 3rem 0;
    text-align: center;
    margin: 3rem 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    /* Note: This is now replaced by .follow-up-content-inline within .framework-cta-section-extended */
}

.follow-up-options::before {
    content: '';
    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.1'%3E%3Ccircle cx='50' cy='50' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.follow-up-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.follow-up-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
}

.follow-up-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.follow-up-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Comparison Table Styles */
.comparison-section {
    background: #f8f9fa;
    padding: 3rem 2rem;
    margin: 3rem 0;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.comparison-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.comparison-header .comparison-col {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-color);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.comparison-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.comparison-icon i {
    font-size: 1.5rem;
}

.comparison-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.client-quote {
    font-style: italic;
    color: #6c757d;
    margin: 0.5rem 0;
    line-height: 1.5;
}

.client-source {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .follow-up-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-title {
        font-size: 1.5rem;
    }
    
    .comparison-section {
        padding: 2rem 1rem;
    }
}

/* Additional Resources Section - End of Calculator CTAs */
.additional-resources-section {
    margin-top: 40px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.resource-card {
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.resource-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.resource-card h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.risk-recommendations {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.risk-recommendations h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-recommendations {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-recommendation-card {
    flex: 1 1 280px;
    min-width: 280px;
    max-width: 320px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-recommendation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.contact-info {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-info p:first-child {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-info p:last-child {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design for Additional Resources */
@media (max-width: 768px) {
    .resource-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .resource-card {
        padding: 20px;
    }
    
    .resource-icon {
        font-size: 2rem;
    }
    
    .risk-recommendations {
        padding: 20px;
    }
    
    .service-recommendations {
        flex-direction: column;
    }
    
    .service-recommendation-card {
        min-width: auto;
        max-width: none;
    }
    
    .contact-info {
        padding: 15px;
    }
    
    .contact-info p:last-child {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Awards & Recognition Section */
.awards-recognition-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.award-category {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.award-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.award-category:nth-child(1) {
    border-top: 4px solid var(--accent-color);
}

.award-category:nth-child(2) {
    border-top: 4px solid var(--primary-color);
}

.award-category:nth-child(3) {
    border-top: 4px solid var(--secondary-color);
}

.award-category .category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.award-category h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.award-category ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.award-category ul li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.award-category ul li:last-child {
    margin-bottom: 0;
}

.award-category ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 0.9rem;
}

/* Credibility Statement */
.credibility-statement {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.credibility-statement h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.credibility-statement p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.credibility-badges {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.credibility-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.credibility-badge i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.credibility-badge span {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mobile Responsive - Awards Section */
@media (max-width: 768px) {
    .awards-recognition-section {
        padding: 60px 0;
    }
    
    .awards-recognition-section h2 {
        font-size: 2rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .award-category {
        padding: 30px 25px;
    }
    
    .award-category .category-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .award-category h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .award-category ul li {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .credibility-statement {
        padding: 30px 20px;
    }
    
    .credibility-statement h3 {
        font-size: 1.3rem;
    }
    
    .credibility-statement p {
        font-size: 1rem;
    }
    
    .credibility-badges {
        gap: 20px;
    }
    
    .credibility-badge {
        font-size: 0.9rem;
    }
}

/* Media & Speaking Section */
.media-speaking-section {
    background: white;
    padding: 80px 0;
}

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

.media-section,
.speaking-section {
    width: 100%;
}

.media-item,
.speaking-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.media-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid var(--accent-color);
}

.speaking-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid var(--primary-color);
}

.media-item:hover,
.speaking-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.media-item h4,
.speaking-item h4 {
    color: var(--primary-color);
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.media-item p,
.speaking-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.media-item a,
.speaking-item a {
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.media-item a {
    color: var(--accent-color);
}

.speaking-item a {
    color: var(--primary-color);
}

.media-item a:hover,
.speaking-item a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* Speaking Availability CTA */
.speaking-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c5aa0 100%);
    border-radius: 15px;
    color: white;
}

.speaking-cta h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.speaking-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 25px auto;
}

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

.speaking-cta a {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.speaking-cta a:first-child {
    background: var(--accent-color);
    color: white;
}

.speaking-cta a:last-child {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.speaking-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.speaking-cta a:first-child:hover {
    background: #45a049;
}

.speaking-cta a:last-child:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Responsive - Media & Speaking */
@media (max-width: 768px) {
    .media-speaking-section {
        padding: 60px 0;
    }
    
    .media-speaking-section h2 {
        font-size: 2rem;
    }
    
    .media-speaking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .media-section h3,
    .speaking-section h3 {
        font-size: 1.5rem;
    }
    
    .media-item,
    .speaking-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .media-item h4,
    .speaking-item h4 {
        font-size: 0.95rem;
    }
    
    .media-item p,
    .speaking-item p {
        font-size: 0.9rem;
    }
    
    .speaking-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .speaking-cta h3 {
        font-size: 1.4rem;
    }
    
    .speaking-cta p {
        font-size: 1rem;
    }
    
    .speaking-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .speaking-cta a {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
}