/* Shared Styles for VASU Consultants Multi-Page Website */
:root {
    /* Apple-Inspired Color Palette */
    --primary-navy: #1d1d1f;
    --primary-black: hsl(240, 2%, 18%);
    --secondary-gray: #86868b;
    --accent-orange: #ff9500;
    --accent-blue: #001155;
    --accent-light-blue: #5ac8fa;
    --accent-green: #34c759;
    --accent-purple: #af52de;
    --accent-pink: #ff2d92;
    --accent-teal: #5ac8fa;
    --accent-red: #ff3b30;
    --light-bg: #f2f2f7;
    --white: #ffffff;
    --border-light: rgba(142, 142, 147, 0.2);
    --shadow-soft: 0 4px 25px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.16);
    --border-radius: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Solid Colors */
    --gradient-primary: #001155;
    --gradient-secondary: #001155;
    --gradient-tertiary: #001155;
    --gradient-quaternary: #001155;
    --gradient-quinary: #001155;
    --gradient-senary: #001155;
    --gradient-septenary: #001155;
    --gradient-octonary: #001155;
    
    /* Solid Colors */
    --gradient-dark-1: #001155;
    --gradient-dark-2: #001155;
    --gradient-dark-3: #001155;
    
    /* Solid Accent Colors */
    --gradient-accent-1: #001155;
    --gradient-accent-2: #001155;
    --gradient-accent-3: #001155;
    
    /* Apple Background Gradients */
    --gradient-bg-1: linear-gradient(135deg, rgb(242, 242, 247) 0%, rgb(255, 255, 255) 100%);
    --gradient-bg-2: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(242, 242, 247) 100%);
    --gradient-bg-3: linear-gradient(135deg, rgb(242, 242, 247) 0%, rgb(229, 229, 234) 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--primary-black);
    background:
        radial-gradient(circle at 10% 20%, rgba(90, 200, 250, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 17, 85, 0.02) 0%, transparent 50%),
        linear-gradient(135deg, rgb(242, 242, 247) 0%, rgb(255, 255, 255) 100%);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--primary-black);
}

/* Navigation - Shared */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: 0 4px 25px rgba(45, 55, 72, 0.06);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

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

.logo {
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

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

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #001155;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--primary-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu a:hover {
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
}

.helpline {
    background: #001155;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 17, 85, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

.helpline::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: var(--transition);
}

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

.helpline:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

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

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

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-bounce-in {
    animation: bounceIn 0.6s ease-out forwards;
}

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

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    100% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.6); }
}

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

@keyframes bounceIn {
    0% { 
        opacity: 0; 
        transform: scale(0.3) translateY(50px); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05) translateY(-10px); 
    }
    70% { transform: scale(0.95) translateY(0); }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

/* Common Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 24px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('assets/images/flyer.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero h1 {
    font-size: 80px;
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 1),
        0 0 25px rgba(255, 255, 255, 0.8),
        0 0 35px rgba(255, 255, 255, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 16px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: #001155;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(0, 17, 85, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.hero .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 17, 85, 0.4);
    background: #001155;
}

/* Stats Section */
.stats {
    padding: 100px 24px;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

@media (max-width: 768px) {
    .stat-item {
        padding: 30px 20px;
    }
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #001155;
    margin-bottom: 16px;
    line-height: 1;
    word-break: break-all;
    overflow-wrap: break-word;
}

.stat-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Services Section */
.services-overview {
    padding: 100px 24px;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
    justify-items: center;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    width: 100%;
    max-width: 350px;
    transform: none;
    transform-origin: center;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 24px auto;
    flex-shrink: 0;
    transform: none;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 17, 85, 0.15);
    border: 3px solid #f8f9fa;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #001155;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        justify-items: center;
    }
    
    .service-card {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .services-overview {
        padding: 60px 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-items: center;
    }
    
    .service-card {
        padding: 30px 20px;
        max-width: 100%;
        width: 100%;
    }
    
    .service-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 14px;
    }
}

/* Success Stories Carousel */
.testimonials {
    padding: 100px 24px;
    background: #f8f9fa;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

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

.carousel-btn {
    background: #001155;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-btn:hover {
    background: #5ac8fa;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 600px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.testimonial-card.active {
    display: flex;
}

.testimonial-content {
    margin-bottom: 30px;
    position: relative;
}

.quote-mark {
    font-size: 80px;
    color: #001155;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: serif;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin: 0;
    padding: 0 20px;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid #001155;
}

.author-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #001155;
    margin: 0 0 4px 0;
}

.author-info p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #001155;
    transform: scale(1.2);
}

.indicator:hover {
    background: #5ac8fa;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 16px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn-prev {
        left: -20px;
    }
    
    .carousel-btn-next {
        right: -20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-content p {
        font-size: 16px;
        padding: 0 10px;
    }
    
    .quote-mark {
        font-size: 60px;
        top: -15px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 18px;
    }
    
    .author-info p {
        font-size: 14px;
    }
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--primary-black);
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    opacity: 0;
    transition: all 0.6s ease;
}

.fade-in.visible .section-title::after {
    opacity: 1;
    width: 80px;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    color: var(--secondary-gray);
    margin-bottom: 80px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 0 20px;
}

.card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: rgba(237, 137, 54, 0.2);
}

.btn-primary {
    background: #001155;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 17, 85, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 17, 85, 0.4);
    background: #001155;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #fffbf0 0%, #fef7e0 50%, #fdf2d1 100%);
    color: #000000;
    padding: 80px 24px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
}

.footer-section h3 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--accent-blue);
}

.footer-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: #333333;
    margin-bottom: 8px;
}

/* Mobile Navigation Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-navy);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        font-size: 18px;
        padding: 15px 25px;
        width: 100%;
        display: block;
        border-radius: 8px;
        margin: 0 10px;
    }

    .helpline {
        margin-top: 30px;
        font-size: 14px;
        padding: 12px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        white-space: nowrap;
    }

    .nav-container {
        padding: 0 16px;
    }
    
    .section {
        padding: 80px 16px;
    }
    
    .section-title {
        font-size: 36px;
        padding: 0 20px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .card {
        padding: 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }

    /* Hero adjustments */
    .hero {
        padding: 120px 16px 80px;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 56px;
        line-height: 1.2;
        text-shadow: 
            0 0 12px rgba(255, 255, 255, 1),
            0 0 20px rgba(255, 255, 255, 0.8),
            0 0 28px rgba(255, 255, 255, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero .tagline {
        font-size: 16px;
        padding: 0 20px;
    }

    /* CTA Button Mobile Fixes */
    .cta-button {
        margin: 20px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        max-width: 280px;
        padding: 16px 32px;
        font-size: 16px;
    }

    .btn-primary {
        margin: 20px auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        max-width: 280px;
        padding: 16px 32px;
        font-size: 16px;
    }

    /* Container adjustments */
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero h1 {
        font-size: 44px;
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 1),
            0 0 18px rgba(255, 255, 255, 0.8),
            0 0 25px rgba(255, 255, 255, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
    }

    /* Enhanced mobile CTA button */
    .helpline {
        font-size: 15px;
        padding: 14px 24px;
        border-radius: 25px;
        box-shadow: 0 4px 15px rgba(0, 17, 85, 0.3);
        transition: all 0.3s ease;
        min-width: 200px;
    }

    .helpline:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 17, 85, 0.4);
    }

    .section {
        padding: 60px 16px;
    }

    .card {
        padding: 20px;
    }

    .container {
        padding: 0 12px;
    }
}

/* Step numbers for process sections - Enhanced Visibility */
.step-number {
    width: 60px;
    height: 60px;
    background: #001155;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Process step numbers - enhanced visibility */
.process-step .step-number {
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Prep step numbers - enhanced visibility */
.prep-step .step-number {
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Section Styles */
.cta-section {
    padding: 100px 24px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(0, 17, 85, 0.05) 0%, rgba(90, 200, 250, 0.03) 50%, rgba(100, 210, 255, 0.02) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 70%),
        linear-gradient(135deg, #f2f2f7 0%, #ffffff 100%);
    position: relative;
}

.cta-section h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #001155;
    line-height: 1.2;
}

.cta-section p {
    font-size: 20px;
    color: var(--secondary-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: #001155;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(0, 17, 85, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-section .cta-button::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: var(--transition);
}

.cta-section .cta-button:hover::before {
    left: 100%;
}

.cta-section .cta-button:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 17, 85, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.3), 0 8px 30px rgba(0, 0, 0, 0.2);
    background: #001155;
}

/* Pre-Footer CTA Section */
.pre-footer-cta {
    padding: 80px 24px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(0, 17, 85, 0.05) 0%, rgba(255, 59, 48, 0.05) 50%, rgba(255, 107, 107, 0.03) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0%, transparent 70%),
        linear-gradient(135deg, #f2f2f7 0%, #ffffff 100%);
    position: relative;
}

.pre-footer-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #001155;
    line-height: 1.2;
}

.pre-footer-cta p {
    font-size: 18px;
    color: var(--secondary-gray);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-call-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #ff3b30 0%, #ff6b6b 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(255, 59, 48, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.cta-call-button::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: var(--transition);
}

.cta-call-button:hover::before {
    left: 100%;
}

.cta-call-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 59, 48, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.3), 0 8px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ff6b6b 0%, #ff4757 100%);
}
