/**
 * CFA Results Landing Page - Base Styles
 * Premium design with high contrast and generous white space
 */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 4rem 0;
}

/* Premium Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-select {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #2563eb;
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.form-input.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid #f3f4f6;
    border-top: 2px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

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

/* Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

/* Hero Background - Hidden to allow Vanta.js to show */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    background-size: 400px 400px;
    animation: float 20s ease-in-out infinite;
    display: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Hero Logo */
.hero-logo {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo .logo-image {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-logo .logo-image {
        max-width: 150px;
    }
}

/* Hero Content Layout */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    padding-right: 2rem;
}

.hero-right {
    display: flex;
    justify-content: center;
}

/* Hero Text Styles */
.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheading {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Form Container */
.hero-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    border: 2px solid #2563eb;
    backdrop-filter: blur(10px);
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 50%, #2563eb 100%);
}

/* Form Header Logo */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-logo-image {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-logo-image {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Form Styles Enhancement */
.cfa-lead-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #ffffff;
    font-family: inherit;
    color: #1a1a1a;
}

.form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(37, 99, 235, 0.1);
    background: #ffffff;
    transform: translateY(-1px);
}

.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #1a1a1a;
}

.form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(37, 99, 235, 0.1);
    background: #ffffff;
    transform: translateY(-1px);
}

/* Phone Input Styling */
.phone-input-container {
    display: flex;
    align-items: center;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.phone-input-container:focus-within {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: white;
}

.country-code {
    padding: 1rem 0.75rem;
    font-weight: 600;
    color: #374151;
    border-right: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 1rem;
}

.phone-input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 0.75rem !important;
}

/* Checkbox Styling */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    accent-color: #2563eb;
    cursor: pointer;
}

.consent-label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #6b7280;
    cursor: pointer;
}

.consent-label a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.consent-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.form-submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    margin-top: 1rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Form Footer */
.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

/* Error States */
.form-input.error,
.form-select.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    background: #fef2f2;
}

.phone-input-container.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    background: #fef2f2;
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
    font-weight: 500;
}

/* Success Message */
.form-success-message {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.5s ease-in-out;
}

.success-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.form-success-message h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.form-success-message p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.form-success-message .btn {
    margin-top: 0.5rem;
}

.blueprint-timeline {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.offerings-section {
    background: white;
}

.mentor-section {
    background: #f8fafc;
}

.testimonials-section {
    background: white;
}

.faq-section {
    background: #f8fafc;
}

.footer-section {
    background: #1f2937;
    color: white;
}

/* Sticky Contact Styles */
.sticky-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.contact-bubble {
    position: relative;
}

.contact-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-contact 2s infinite;
}

.contact-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.contact-toggle:active {
    transform: scale(0.95);
}

@keyframes pulse-contact {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

.contact-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.contact-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-options::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

.contact-option {
    margin-bottom: 0.75rem;
}

.contact-option:last-child {
    margin-bottom: 0;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-link:hover {
    background: #f8fafc;
    border-color: #e5e7eb;
    transform: translateX(4px);
}

.phone-link:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #2563eb;
}

.phone-link:hover .contact-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #25d366;
}

.whatsapp-link:hover .contact-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
}

.contact-number {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

/* Secondary CTA Styles */
.secondary-cta-container {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.secondary-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    text-decoration: none;
    display: inline-block;
}

.secondary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

.secondary-cta:active {
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN ENHANCEMENTS
   =================================== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .hero-form-container {
        padding: 2rem;
    }
    
    /* Improve touch targets */
    .btn {
        min-height: 48px;
        padding: 1rem 2rem;
    }
    
    .form-input,
    .form-select {
        min-height: 48px;
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Sticky contact adjustments */
    .sticky-contact {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .contact-toggle {
        width: 56px;
        height: 56px;
    }
    
    /* Tablet-specific optimizations */
    .offerings-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
}

/* Medium tablets */
@media (max-width: 900px) and (min-width: 769px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-form-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Tablet portrait optimizations */
    .offerings-tabs {
        flex-direction: row;
        justify-content: center;
        max-width: 400px;
        margin: 0 auto 2rem auto;
    }
    
    .tab-btn {
        flex: 1;
        min-height: 56px;
    }
}

/* Tablets and mobile devices */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    /* Hero Section Mobile Optimizations */
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-left {
        padding-right: 0;
        order: 2;
    }
    
    .hero-right {
        order: 1;
    }
    
    .hero-headline {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subheading {
        font-size: 1.1rem;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Form Mobile Optimizations */
    .hero-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
        max-width: none;
        border-radius: 16px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-input,
    .form-select {
        padding: 1rem;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 12px;
    }
    
    .country-code {
        padding: 1rem 0.75rem;
        font-size: 1rem;
    }
    
    .phone-input {
        padding-left: 0.75rem !important;
    }
    
    .form-submit-btn {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        min-height: 56px;
    }
    
    /* Typography Mobile Adjustments */
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
    }
    
    /* Mobile Sticky Contact - Bottom Fixed Bar */
    .sticky-contact {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 1000;
        border-radius: 0;
        padding: 0;
        background: transparent;
        border-top: none;
        box-shadow: none;
    }
    
    .contact-bubble {
        background: white;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        border-radius: 0;
        position: relative;
    }
    
    .contact-toggle {
        display: none;
    }
    
    .contact-options {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: auto;
        display: flex;
        gap: 0.75rem;
        justify-content: center;
    }
    
    .contact-options::after {
        display: none;
    }
    
    .contact-option {
        margin-bottom: 0;
        flex: 1;
        max-width: 180px;
    }
    
    .contact-link {
        padding: 0.875rem 0.5rem;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        background: white;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
        min-height: 72px;
        transition: all 0.2s ease;
    }
    
    .contact-link:hover,
    .contact-link:active {
        transform: none;
        background: #f8fafc;
    }
    
    .contact-icon {
        width: 28px;
        height: 28px;
        margin: 0 auto;
    }
    
    .contact-text {
        align-items: center;
    }
    
    .contact-label {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    .contact-number {
        font-size: 0.75rem;
    }
    
    /* Secondary CTA Mobile Optimizations */
    .secondary-cta-container {
        margin: 2rem 0;
        padding: 1.5rem 1rem;
    }
    
    .secondary-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
        max-width: 300px;
    }
    
    /* Touch-friendly interactions */
    .tab-btn {
        min-height: 48px;
        padding: 1rem 1.5rem;
        touch-action: manipulation;
    }
    
    .indicator-dot {
        width: 16px;
        height: 16px;
        margin: 0 4px;
        touch-action: manipulation;
    }
    
    .faq-question {
        min-height: 48px;
        touch-action: manipulation;
    }
    
    /* Carousel touch optimizations */
    .testimonial-card {
        touch-action: pan-y;
        user-select: none;
    }
    
    .carousel-track {
        touch-action: pan-y;
    }
    
    /* Form validation mobile improvements */
    .form-error {
        font-size: 0.875rem;
        margin-top: 0.5rem;
        line-height: 1.4;
    }
    
    /* Mobile-specific animations */
    .btn:active {
        transform: scale(0.98);
    }
    
    .contact-link:active {
        transform: scale(0.95);
    }
    
    /* Ensure proper spacing for mobile keyboard */
    .hero-form-container {
        margin-bottom: 2rem;
    }
    
    /* Mobile viewport adjustments */
    .hero-section {
        min-height: calc(100vh - 100px);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    /* Hero Section Small Mobile */
    .hero-section {
        padding: 1.5rem 0;
        min-height: calc(100vh - 80px);
    }
    
    .hero-headline {
        font-size: 1.875rem;
        line-height: 1.1;
    }
    
    .hero-subheading {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-form-container {
        padding: 1.25rem;
        margin: 0 0.25rem;
        border-radius: 16px;
    }
    
    .form-header h3 {
        font-size: 1.375rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    /* Trust badges mobile layout */
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .trust-badge {
        width: 100%;
        max-width: 220px;
        justify-content: center;
        padding: 0.625rem 1rem;
        min-height: 40px;
    }
    
    /* Form elements small mobile */
    .form-input,
    .form-select {
        padding: 0.875rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    .country-code {
        padding: 0.875rem 0.625rem;
        font-size: 0.95rem;
    }
    
    .form-submit-btn {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        min-height: 52px;
    }
    
    /* Typography small mobile */
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    /* Mobile contact bar adjustments */
    .contact-bubble {
        padding: 0.75rem;
    }
    
    .contact-options {
        gap: 0.5rem;
    }
    
    .contact-link {
        padding: 0.75rem 0.375rem;
        min-height: 68px;
    }
    
    .contact-icon {
        width: 24px;
        height: 24px;
    }
    
    .contact-label {
        font-size: 0.75rem;
    }
    
    .contact-number {
        font-size: 0.7rem;
    }
    
    /* Secondary CTA small mobile */
    .secondary-cta-container {
        padding: 1.25rem 0.75rem;
        margin: 1.5rem 0;
    }
    
    .secondary-cta {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        min-height: 44px;
    }
    
    /* Touch targets optimization */
    .tab-btn {
        min-height: 44px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .indicator-dot {
        width: 14px;
        height: 14px;
        margin: 0 3px;
    }
    
    .faq-question {
        padding: 1rem;
        min-height: 44px;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    /* Carousel mobile optimizations */
    .testimonial-card {
        padding: 1.25rem;
        margin: 0 0.25rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Form validation small mobile */
    .form-error {
        font-size: 0.8rem;
    }
    
    /* Spacing adjustments */
    .hero-content {
        gap: 1.5rem;
    }
    
    /* Viewport height adjustments for small screens */
    .hero-section {
        min-height: calc(100vh - 60px);
    }
    
    /* Ensure content doesn't get cut off by mobile browsers */
    body {
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .sticky-contact {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* Alert Styles */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.alert-warning {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fed7aa;
}

.alert-info {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

/* Error Handling Styles */
.error-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 10000;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #fecaca;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.error-container.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.error-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.error-icon {
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fef2f2;
    border-radius: 50%;
    margin: 0 auto;
}

.error-message {
    text-align: center;
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

.error-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.error-retry,
.error-dismiss {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.error-retry {
    background: #2563eb;
    color: white;
}

.error-retry:hover {
    background: #1d4ed8;
}

.error-dismiss {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.error-dismiss:hover {
    background: #e5e7eb;
}

/* Network Error Banner */
.network-error-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fef3c7;
    border-bottom: 1px solid #f59e0b;
    padding: 0.75rem 1rem;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.network-error-banner.show {
    transform: translateY(0);
}

.network-error-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.network-error-icon {
    color: #d97706;
    flex-shrink: 0;
}

.network-error-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.network-error-text strong {
    color: #92400e;
    font-size: 0.875rem;
}

.network-error-text span {
    color: #b45309;
    font-size: 0.75rem;
}

.network-error-close {
    background: none;
    border: none;
    color: #d97706;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.network-error-close:hover {
    background: rgba(217, 119, 6, 0.1);
}

/* Form Error Enhancements */
.form-error-general {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

.form-error-general svg {
    flex-shrink: 0;
}

/* NoScript Fallback Styles */
.noscript-fallback {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.noscript-message h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.noscript-message p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.fallback-contact-options {
    text-align: left;
    margin-bottom: 2rem;
}

.fallback-contact-options h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.fallback-contact-method {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.fallback-contact-method strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.5rem;
}

.fallback-contact-method a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.fallback-contact-method a:hover {
    text-decoration: underline;
}

.fallback-contact-method p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0.5rem 0 0 0;
}

.fallback-offerings {
    text-align: left;
}

.fallback-offerings h4 {
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.fallback-offerings ul {
    list-style: none;
    padding: 0;
}

.fallback-offerings li {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.fallback-offerings strong {
    color: #1f2937;
}

/* NoScript Navigation */
.noscript-navigation {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.noscript-navigation h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.noscript-navigation ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.noscript-navigation li {
    text-align: center;
}

.noscript-navigation a {
    display: block;
    padding: 0.75rem 1rem;
    background: white;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-weight: 500;
    transition: all 0.2s ease;
}

.noscript-navigation a:hover {
    background: #eff6ff;
    border-color: #2563eb;
}

/* NoScript Contact Bar */
.noscript-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: white;
    padding: 1rem;
    z-index: 1000;
}

.noscript-contact-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.noscript-contact-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: #374151;
    border-radius: 8px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.noscript-contact-link:hover {
    background: #4b5563;
}

/* Skip Links for Accessibility */
.skip-links {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 10001;
}

.skip-link {
    position: absolute;
    top: 0;
    left: 0;
    background: #1f2937;
    color: white;
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

/* 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;
}

/* High Contrast Mode Support */
.high-contrast {
    filter: contrast(150%);
}

.high-contrast .btn {
    border: 2px solid currentColor;
}

.high-contrast .form-input,
.high-contrast .form-select {
    border: 2px solid currentColor;
}

/* Validation Indicators */
.validation-indicator {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
}

.form-group {
    position: relative;
}

.form-input.valid + .validation-indicator {
    display: block;
    background: #10b981;
}

.form-input.valid + .validation-indicator::after {
    content: '✓';
    color: white;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-input.error + .validation-indicator {
    display: block;
    background: #dc2626;
}

.form-input.error + .validation-indicator::after {
    content: '✕';
    color: white;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Field Help Text */
.field-help-text {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* Required Field Indicator */
.required-indicator {
    color: #dc2626;
    font-weight: bold;
    margin-left: 0.25rem;
}

/* Mobile Error Handling */
@media (max-width: 768px) {
    .error-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .error-container.show {
        transform: translateY(0);
    }
    
    .network-error-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .noscript-contact-content {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .noscript-contact-link {
        width: 100%;
        text-align: center;
    }
    
    .fallback-contact-options {
        text-align: center;
    }
    
    .fallback-contact-method {
        text-align: left;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ===================================
   PREMIUM ANIMATIONS & VISUAL EFFECTS
   =================================== */

/* Base Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

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

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

.scale-in {
    animation: scaleIn 0.4s ease-out;
}

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

/* Stagger Animation Classes */
.stagger-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: staggerFadeIn 0.6s ease-out forwards;
}

.stagger-fade-in:nth-child(1) { animation-delay: 0ms; }
.stagger-fade-in:nth-child(2) { animation-delay: 100ms; }
.stagger-fade-in:nth-child(3) { animation-delay: 200ms; }
.stagger-fade-in:nth-child(4) { animation-delay: 300ms; }
.stagger-fade-in:nth-child(5) { animation-delay: 400ms; }
.stagger-fade-in:nth-child(6) { animation-delay: 500ms; }

/* Keyframe Definitions */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.6), 0 0 0 10px rgba(37, 99, 235, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 99, 235, 0.5), 0 0 0 5px rgba(37, 99, 235, 0.1);
    }
}

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Enhanced Interactive Element Transitions */
.btn,
.form-input,
.form-select,
.contact-link,
.tab-btn,
.faq-question,
.offering-card,
.testimonial-card,
.trust-badge {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Button Hover Effects */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    transition: transform 0.1s;
}

/* Enhanced Form Input Animations */
.form-input:focus,
.form-select:focus {
    transform: scale(1.02);
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1), 0 4px 15px rgba(37, 99, 235, 0.1);
}

.form-group.focused .form-label {
    transform: translateY(-2px);
    color: #2563eb;
    font-weight: 700;
}

/* Hero Background Parallax Enhancement */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    will-change: transform;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    background-size: 400px 400px, 300px 300px, 500px 500px;
    animation: parallaxFloat 25s ease-in-out infinite;
    will-change: transform;
}

@keyframes parallaxFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-15px) translateX(10px) rotate(0.5deg); 
    }
    50% { 
        transform: translateY(-25px) translateX(-5px) rotate(1deg); 
    }
    75% { 
        transform: translateY(-10px) translateX(-15px) rotate(0.5deg); 
    }
}

/* Enhanced Trust Badge Animations */
.trust-badge {
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Blueprint Timeline Stagger Animations */
.timeline-step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-step.animate-in .step-number {
    animation: pulse 1s ease-out, rotateIn 0.8s ease-out;
}

.timeline-step.animate-in .step-icon {
    animation: bounceIn 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.timeline-step.animate-in .step-content {
    animation: slideInRight 0.6s ease-out;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

/* Step Number Enhanced Animation */
.step-number {
    position: relative;
    overflow: hidden;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.timeline-step:hover .step-number::after {
    transform: translateX(100%);
}

/* Enhanced Offering Card Animations */
.offering-card {
    position: relative;
    overflow: hidden;
    transform-origin: center;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.offering-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offering-card:hover .offering-title {
    color: #2563eb;
}

/* Enhanced Testimonial Card Animations */
.testimonial-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-5px) rotateY(2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 4rem;
    color: rgba(37, 99, 235, 0.1);
    font-family: serif;
    line-height: 1;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote::before {
    color: rgba(37, 99, 235, 0.2);
    transform: scale(1.1);
}

/* Enhanced FAQ Animations */
.faq-question {
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.5s ease;
}

.faq-question:hover::before {
    left: 100%;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.4s ease;
    opacity: 0;
    color: #4b5563;
    padding: 0 2rem;
}

.faq-item.active .faq-answer,
.faq-answer.show {
    max-height: 1000px !important;
    opacity: 1 !important;
    padding: 0 2rem 1.5rem 2rem !important;
    color: #4b5563 !important;
}

.faq-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Enhanced Sticky Contact Animations */
.contact-toggle {
    position: relative;
    overflow: hidden;
}

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

.contact-toggle:hover::before {
    width: 100%;
    height: 100%;
}

.contact-options {
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-options.show {
    transform: translateY(0) scale(1);
}

/* Micro-interactions for Premium Feel */
.form-submit-btn {
    position: relative;
    overflow: hidden;
}

.form-submit-btn::after {
    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: width 0.4s ease, height 0.4s ease;
}

.form-submit-btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Loading Animation Enhancement */
.spinner {
    animation: spin 1s linear infinite, glow 2s ease-in-out infinite;
}

/* Scroll-triggered Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Section Transitions */
.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.section.in-view::before {
    opacity: 1;
}

/* Floating Elements Animation */
.float-element {
    animation: floatUp 4s ease-in-out infinite;
}

.float-element:nth-child(2n) {
    animation-delay: 2s;
}

/* Shimmer Effect for Loading States */
.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* Enhanced Mobile Animations */
@media (max-width: 768px) {
    /* Reduce motion intensity on mobile for better performance */
    .hero-pattern {
        animation-duration: 30s;
    }
    
    .parallaxFloat {
        animation-duration: 20s;
    }
    
    /* Optimize touch interactions */
    .btn:active,
    .contact-link:active,
    .tab-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }
    
    /* Reduce complex animations on mobile */
    .offering-card:hover,
    .testimonial-card:hover {
        transform: translateY(-3px);
    }
}

/* Reduced Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-pattern {
        animation: none;
    }
    
    .scroll-animate {
        opacity: 1;
        transform: none;
    }
}

/* ===================================
   BLUEPRINT TIMELINE ANIMATIONS
   =================================== */

/* Blueprint Section Styles */
.blueprint-timeline {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blueprint-timeline.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Blueprint Header Animations */
.blueprint-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blueprint-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transform: translateY(-20px) scale(0.8);
    opacity: 0;
}

.blueprint-badge.passed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.blueprint-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blueprint-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Step Styles */
.blueprint-timeline .timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px) rotateY(-15deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #10b981, #8b5cf6);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.timeline-step.animate-in::before {
    opacity: 1;
}

.timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Step Connector Styles */
.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.timeline-step:hover .step-number::after {
    transform: translateX(100%);
}

.step-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #2563eb, #e5e7eb);
    margin-top: 1rem;
}

/* Step Content Styles */
.step-content {
    flex: 1;
    display: flex;
    gap: 1.5rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-details {
    flex: 1;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease-out;
}

.step-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease-out;
}

.step-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease-out;
}

.step-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #8b5cf6;
    font-weight: 600;
}

.step-action {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
    text-decoration: none;
}

/* Blueprint Footer Styles */
.blueprint-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    border: 1px solid #e5e7eb;
}

.blueprint-cta,
.blueprint-contact {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.blueprint-cta-text,
.blueprint-contact-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Refine Modal Styles */
.refine-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.refine-modal.show {
    opacity: 1;
}

.refine-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.refine-modal.show .refine-modal-content {
    transform: scale(1);
}

.refine-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.refine-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.refine-modal-close:hover {
    background: #f3f4f6;
}

.refine-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.refine-actions .btn {
    flex: 1;
}

/* Mobile Responsive Blueprint Styles */
@media (max-width: 768px) {
    .blueprint-title {
        font-size: 2rem;
    }
    
    .blueprint-subtitle {
        font-size: 1.1rem;
    }
    
    .timeline-step {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .step-connector {
        flex-direction: row;
        min-width: auto;
        width: 100%;
        justify-content: flex-start;
    }
    
    .step-line {
        width: 40px;
        height: 2px;
        margin-top: 0;
        margin-left: 1rem;
    }
    
    .step-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        align-self: flex-start;
    }
    
    .blueprint-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .refine-modal-content {
        padding: 1.5rem;
        width: 95%;
    }
    
    .refine-actions {
        flex-direction: column;
    }
}

/* Mobile Keyboard Handling */
.keyboard-open {
    height: 100vh;
    overflow: hidden;
}

.keyboard-open .hero-section {
    min-height: auto;
}

.keyboard-open .sticky-contact {
    display: none;
}

.form-group.focused .form-label {
    color: #2563eb;
    font-weight: 700;
}

.form-group.focused .form-input,
.form-group.focused .form-select {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .form-input,
    .form-select {
        font-size: 16px !important; /* Prevent zoom on iOS */
    }
}

/* Touch action optimizations */
.touch-optimized {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.btn,
.tab-btn,
.contact-link,
.faq-question,
.indicator-dot {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* High Contrast and Accessibility */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #1d4ed8;
        border: 2px solid #1d4ed8;
    }
    
    .form-input, .form-select {
        border-width: 3px;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.form-input:focus,
.form-select:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Enhanced focus styles for mobile */
@media (max-width: 768px) {
    .btn:focus,
    .form-input:focus,
    .form-select:focus {
        outline: 3px solid #2563eb;
        outline-offset: 3px;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .hero-pattern {
        animation-duration: 30s;
    }
    
    /* Optimize transforms for mobile */
    .carousel-track,
    .testimonial-card,
    .offering-card {
        will-change: transform;
        transform: translateZ(0); /* Force hardware acceleration */
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        .carousel-track {
            transition: none;
        }
        
        .testimonial-card,
        .offering-card {
            transition: none;
        }
        
        .hero-pattern {
            animation: none;
        }
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .hero-form-container {
        padding: 1.25rem;
    }
    
    .form-header h3 {
        font-size: 1.25rem;
    }
    
    .section {
        padding: 1.5rem 0;
    }
}

/* Very small screens (older phones) */
@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-form-container {
        padding: 1rem;
        margin: 0;
    }
    
    .form-input,
    .form-select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .form-submit-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-options {
        gap: 0.25rem;
    }
    
    .contact-link {
        padding: 0.625rem 0.25rem;
        min-height: 64px;
    }
    
    .contact-label {
        font-size: 0.7rem;
    }
    
    .contact-number {
        font-size: 0.65rem;
    }
}

/* Safe area handling for devices with notches */
@supports (padding: max(0px)) {
    .sticky-contact {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
    
    .hero-form-container {
        margin-left: max(0.5rem, env(safe-area-inset-left));
        margin-right: max(0.5rem, env(safe-area-inset-right));
    }
}

/* Blueprint Timeline Styles */
.blueprint-timeline {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: visible;
    min-height: 500px;
}

.blueprint-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    background-size: 600px 600px;
    pointer-events: none;
}

.blueprint-content {
    position: relative;
    z-index: 2;
}

/* Reduce gap between timeline steps and offerings */
.blueprint-content > .blueprint-timeline {
    margin-bottom: 1rem;
}

.blueprint-content .blueprint-timeline:last-of-type {
    margin-bottom: 0;
}

/* Blueprint Header */
.blueprint-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 1;
    transform: translateY(0);
}

.blueprint-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blueprint-badge.passed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.blueprint-badge.failed {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.blueprint-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blueprint-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Container - for the div inside blueprint-content */
.blueprint-content .blueprint-timeline {
    margin-bottom: 0.5rem;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.blueprint-timeline .timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease-out;
}

.blueprint-timeline .timeline-step.animate-in {
    opacity: 1;
    transform: translateX(0);
}

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

.blueprint-timeline > .timeline-step:last-of-type {
    margin-bottom: 0;
}

/* Step Connector */
.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 2rem;
    position: relative;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease-out;
}

.step-line {
    width: 2px;
    height: 4rem;
    background: linear-gradient(to bottom, #2563eb, #e5e7eb);
    margin-top: 1rem;
}

/* Step Content */
.step-content {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.step-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.step-content:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.step-content:hover .step-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.step-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 2rem;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.step-description {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.step-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.step-duration svg {
    width: 16px;
    height: 16px;
}

.step-action {
    margin-top: 1.5rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100%;
}

.step-btn {
    padding: 0.875rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    text-decoration: none !important;
    cursor: pointer !important;
    border: none !important;
    width: auto !important;
    min-width: 150px !important;
    text-align: center !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
}

.step-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4) !important;
}

/* Blueprint Offerings Section */
.blueprint-offerings {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.blueprint-offerings-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.blueprint-offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.blueprint-offering-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.blueprint-offering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.blueprint-offering-card.featured {
    border-color: #2563eb;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.blueprint-offering-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.blueprint-offering-card h4 small {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    display: block;
    margin-top: 0.25rem;
}

.blueprint-offering-card p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blueprint-offering-card .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* Blueprint Footer */
.blueprint-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
}

.blueprint-cta,
.blueprint-contact {
    text-align: center;
}

.blueprint-cta-text,
.blueprint-contact-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Refine Modal Styles */
.refine-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.refine-modal.show {
    opacity: 1;
}

.refine-modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.refine-modal.show .refine-modal-content {
    transform: scale(1);
}

.refine-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.refine-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.refine-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #6b7280;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.refine-modal-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.refine-modal-body p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.refine-form .form-group {
    margin-bottom: 1.5rem;
}

.refine-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Responsive Design for Blueprint */
@media (max-width: 768px) {
    .blueprint-timeline {
        padding: 2rem 0;
    }
    
    .blueprint-title {
        font-size: 2rem;
    }
    
    .blueprint-subtitle {
        font-size: 1.1rem;
    }
    
    .blueprint-timeline .timeline-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .step-connector {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .step-line {
        display: none;
    }
    
    .step-content {
        width: 100%;
        margin: 0;
    }
    
    .step-content::before {
        display: none;
    }
    
    .blueprint-footer {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .refine-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .refine-actions {
        flex-direction: column;
    }
    
    .refine-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blueprint-header {
        margin-bottom: 2rem;
    }
    
    .blueprint-title {
        font-size: 1.75rem;
    }
    
    .blueprint-subtitle {
        font-size: 1rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .blueprint-footer {
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

/* Print styles */
@media print {
    .sticky-contact {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
    }
    
    .refine-modal {
        display: none;
    }
}
/* Offe
rings Section Styles */
.offerings-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.offerings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
    background-size: 800px 800px;
    pointer-events: none;
}

.offerings-content {
    position: relative;
    z-index: 2;
}

/* Offerings Header */
.offerings-header {
    text-align: center;
    margin-bottom: 3rem;
}

.offerings-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.offerings-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tab Navigation */
.offerings-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    background: #f8fafc;
    padding: 0.5rem;
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    color: #6b7280;
    flex: 1;
    justify-content: center;
    min-height: 60px;
}

.tab-btn:hover {
    background: rgba(37, 99, 235, 0.05);
    color: #2563eb;
}

.tab-btn.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.tab-btn.active:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: white;
}

.tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.tab-btn.active .tab-icon {
    transform: scale(1.1);
}

.tab-text {
    font-weight: 600;
}

/* Tab Content */
.tab-content-container {
    position: relative;
    min-height: 600px;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Offerings Grid */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Offering Cards */
.offering-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e5e7eb 0%, #e5e7eb 100%);
    transition: all 0.3s ease;
}

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

.offering-card:hover::before {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
}

.offering-card.featured {
    border: 2px solid #2563eb;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

.offering-card.featured::before {
    background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
    height: 6px;
}

.offering-card.celebration-card::before {
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.offering-card.celebration-card:hover::before {
    background: linear-gradient(90deg, #059669 0%, #047857 100%);
}

.offering-card.webinar-card::before {
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.offering-card.webinar-card:hover::before {
    background: linear-gradient(90deg, #d97706 0%, #b45309 100%);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    z-index: 2;
}

.offering-card.celebration-card .card-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Card Header */
.card-header {
    margin-bottom: 1.5rem;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    border-radius: 16px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.offering-card:hover .card-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.celebration-card .card-icon {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    color: #10b981;
}

.celebration-card:hover .card-icon {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.webinar-card .card-icon {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #f59e0b;
}

.webinar-card:hover .card-icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Card Features */
.card-features {
    flex: 1;
    margin-bottom: 2rem;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.5;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li::before {
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.125rem;
    position: relative;
}

.feature-list li::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: -1.25rem;
    margin-top: 0.125rem;
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Footer */
.card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.card-price {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
}

.price-original {
    font-size: 1.25rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2563eb;
}

/* Card CTA */
.card-cta {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.card-cta:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

/* Offerings CTA Section */
.offerings-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design for Offerings */
@media (max-width: 1024px) {
    .offerings-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .offerings-title {
        font-size: 2.25rem;
    }
    
    .offerings-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .offerings-section {
        padding: 3rem 0;
    }
    
    .offerings-header {
        margin-bottom: 2rem;
    }
    
    .offerings-title {
        font-size: 2rem;
    }
    
    .offerings-subtitle {
        font-size: 1rem;
    }
    
    .offerings-tabs {
        flex-direction: column;
        gap: 0.5rem;
        max-width: none;
        margin-bottom: 2rem;
    }
    
    .tab-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .tab-text {
        font-size: 0.95rem;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offering-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .price-original {
        font-size: 1.1rem;
    }
    
    .offerings-cta {
        padding: 2rem;
        margin-top: 3rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-content .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .offerings-section {
        padding: 2rem 0;
    }
    
    .offerings-title {
        font-size: 1.75rem;
    }
    
    .offerings-subtitle {
        font-size: 0.95rem;
    }
    
    .tab-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
        min-height: auto;
    }
    
    .tab-icon {
        margin-bottom: 0;
    }
    
    .offering-card {
        padding: 1.25rem;
    }
    
    .card-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .card-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .card-title {
        font-size: 1.125rem;
    }
    
    .feature-list li {
        font-size: 0.85rem;
    }
    
    .card-cta {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .offerings-cta {
        padding: 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.25rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

/* Animation for tab switching */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content.active {
    animation: fadeInUp 0.5s ease-out;
}

/* Hover effects for cards */
.offering-card:hover .card-title {
    color: #2563eb;
}

.offering-card.celebration-card:hover .card-title {
    color: #10b981;
}

.offering-card.webinar-card:hover .card-title {
    color: #f59e0b;
}

/* Focus states for accessibility */
.tab-btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.card-cta:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Print styles for offerings */
@media print {
    .offerings-section {
        background: white;
        padding: 2rem 0;
    }
    
    .offerings-section::before {
        display: none;
    }
    
    .offerings-tabs {
        display: none;
    }
    
    .tab-content {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .offering-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
    
    .offerings-cta {
        display: none;
    }
}
/* ===
================================
   MENTOR SECTION STYLES
   =================================== */

.mentor-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.mentor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23e2e8f0" fill-opacity="0.3"><circle cx="30" cy="30" r="1.5"/></g></svg>') repeat;
    opacity: 0.5;
    display: none; /* Hide to allow Vanta.js animation to show */
}

.mentor-content {
    position: relative;
    z-index: 1;
}

.mentor-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mentor-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.mentor-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.mentor-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

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

.mentor-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: block;
    background-color: #2563eb;
    background-image: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.mentor-photo:hover {
    transform: scale(1.05);
}

.mentor-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #2563eb;
    font-size: 0.9rem;
}

.mentor-bio {
    padding: 2rem;
}

.mentor-name {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.mentor-designation {
    font-size: 1.1rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.mentor-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-text strong {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.highlight-text span {
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.2;
    font-weight: 500;
}

.mentor-description {
    margin-bottom: 2rem;
}

.mentor-description p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Mentor Quote */
.mentor-quote {
    margin: 0;
    padding-left: 1.5rem;
    border-left: 4px solid #2563eb;
    font-style: italic;
    color: #4b5563;
}

.mentor-quote p {
    margin: 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Mentor Qualifications */
.mentor-qualifications {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.qualifications-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

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

.qualifications-list li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.qualifications-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

.qualifications-list li:last-child {
    margin-bottom: 0;
}

/* Mentor Awards */
.mentor-awards {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.awards-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.awards-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.awards-list li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.awards-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
    font-size: 1.2rem;
}

.awards-list li:last-child {
    margin-bottom: 0;
}

.awards-note {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    color: #4b5563;
    font-style: italic;
    line-height: 1.6;
}

/* Mentor Expertise */
.mentor-expertise {
    margin-bottom: 2.5rem;
}

.expertise-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.expertise-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expertise-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.expertise-card-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.mentor-cta {
    text-align: center;
}

.mentor-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Mentor Section Responsive */
@media (max-width: 768px) {
    .mentor-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mentor-image {
        text-align: center;
    }
    
    .mentor-photo {
        width: 250px;
        height: 250px;
    }
    
    .mentor-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .expertise-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .qualifications-title,
    .awards-title {
        font-size: 1.3rem;
    }
    
    .expertise-title {
        font-size: 1.1rem;
    }
    
    .highlight-text strong {
        font-size: 1.5rem;
    }
}

/* ===================================
   TESTIMONIALS SECTION STYLES
   =================================== */

.testimonials-section {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-carousel {
    position: relative;
    margin-bottom: 3rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    margin: 0 1rem;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: #2563eb;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #64748b;
}

.author-level {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.author-level::after {
    content: none;
}

.author-result {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.result-badge {
    background: #10b981;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: #2563eb;
}

.carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

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

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

/* Testimonials CTA */
.testimonials-cta {
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 20px;
    text-align: center;
}

.testimonials-cta .cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.testimonials-cta .cta-content p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonials-cta .secondary-cta {
    background: white;
    color: #2563eb;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.testimonials-cta .secondary-cta:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

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

.indicator-dot.active {
    background: #2563eb;
    transform: scale(1.2);
}

.testimonials-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 16px;
    color: white;
}

.testimonials-cta .cta-content h3,
.testimonials-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.testimonials-cta .cta-content p,
.testimonials-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: white !important;
    opacity: 1;
}

.testimonials-cta .btn {
    background: white;
    color: #2563eb;
    border: none;
}

.testimonials-cta .btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* ===================================
   RESPONSIVE DESIGN - MENTOR & TESTIMONIALS
   =================================== */

@media (max-width: 768px) {
    .mentor-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .mentor-photo {
        width: 250px;
        height: 250px;
    }
    
    .mentor-bio {
        padding: 1rem;
    }
    
    .mentor-title,
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
        margin: 0 0.5rem;
        min-height: 250px;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
    }
    
    .carousel-controls {
        display: none;
    }
    
    .testimonials-cta {
        padding: 2rem;
    }
    
    .testimonials-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .mentor-section,
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .mentor-photo {
        width: 200px;
        height: 200px;
    }
    
    .highlight-item {
        padding: 0.75rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: 0.5rem;
        left: 1rem;
    }
}/* ===
================================
   LOADING STATES AND ANIMATIONS
   =================================== */

.loading {
    position: relative;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

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

/* Alert styles for error/success messages */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 500;
}

.alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* Form success message styles */
.form-success-message {
    text-align: center;
    padding: 2rem;
    background: #f0fdf4;
    border-radius: 12px;
    border: 2px solid #bbf7d0;
}

.success-icon {
    margin-bottom: 1rem;
}

.form-success-message h3 {
    color: #16a34a;
    margin-bottom: 1rem;
}

.form-success-message p {
    color: #15803d;
    margin-bottom: 1.5rem;
}

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

/* Focus styles for accessibility */
.btn:focus,
.carousel-btn:focus,
.indicator-dot:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .carousel-track {
        transition: none;
    }
}
/* FAQ 
Section Styles */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    background-size: 600px 600px;
    pointer-events: none;
}

.faq-content {
    position: relative;
    z-index: 2;
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-item:last-child {
    margin-bottom: 0;
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-question:focus {
    outline: 2px solid #2563eb;
    outline-offset: -2px;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    padding: 0 2rem;
    color: #4b5563;
}

.faq-answer.show {
    max-height: 1000px;
    opacity: 1;
    padding: 0 2rem 1.5rem 2rem;
    color: #4b5563;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
    padding: 0 2rem 1.5rem 2rem;
    color: #4b5563;
}

.faq-answer-content {
    padding: 1.5rem 0 0 0;
    border-top: 1px solid #f1f5f9;
    margin-top: 1rem;
    color: #4b5563;
}

.faq-answer-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563 !important;
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563 !important;
    margin-bottom: 0.5rem;
}

.faq-answer-content strong {
    color: #1a1a1a !important;
    font-weight: 600;
}

.faq-answer-content ul {
    color: #4b5563 !important;
}

.faq-answer-content * {
    color: inherit;
}

/* FAQ Footer CTA */
.faq-footer {
    margin-top: 4rem;
    text-align: center;
}

.faq-cta {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Footer Section Styles */
.footer-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 1.5rem 0 0.5rem 0;
    position: relative;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    background-size: 800px 800px;
    pointer-events: none;
}

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

/* Footer Main */
.footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav-column {
    min-width: 150px;
}

.footer-social {
    min-width: 200px;
}

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

.footer-logo-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 2rem;
}

/* Footer Contact */
.footer-contact {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact .contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    color: #9ca3af;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-value:hover {
    color: #60a5fa;
}

.whatsapp-link-footer {
    color: #25d366 !important;
    font-size: 0.9rem;
}

.whatsapp-link-footer:hover {
    color: #128c7e !important;
}

/* Footer Navigation */
.footer-nav-column {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

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

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

.footer-nav-list li:last-child {
    margin-bottom: 0;
}

.footer-nav-link {
    font-size: 0.95rem;
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav-link:hover {
    color: #60a5fa;
    transform: translateX(4px);
}

/* Footer Social */
.footer-social-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
    color: #9ca3af;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
    color: white;
}

.social-link.twitter:hover {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: white;
}

.social-link.linkedin:hover {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
}

.social-link.youtube:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    padding: 0.75rem 0;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

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

.footer-copyright p {
    font-size: 0.9rem;
    color: #9ca3af;
    margin: 0;
}

.footer-policies {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.policy-link {
    font-size: 0.9rem;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #60a5fa;
}

.policy-separator {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Deep Linking for FAQ */
.faq-item:target {
    animation: highlightFaq 2s ease-out;
}

@keyframes highlightFaq {
    0% {
        background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
        transform: scale(1.02);
    }
    100% {
        background: white;
        transform: scale(1);
    }
}

/* Responsive Design for FAQ and Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        margin-bottom: 1rem;
    }
    
    .footer-social {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-header {
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    .faq-cta p {
        font-size: 1rem;
    }
    
    .footer-section {
        padding: 2rem 0 0 0;
        margin-bottom: 0;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-form-container {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-brand {
        grid-column: auto;
        text-align: center;
    }
    
    .footer-nav-column {
        text-align: center;
    }
    
    .footer-social {
        text-align: center;
        grid-column: auto;
        margin-top: 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-policies {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    .faq-icon {
        align-self: flex-end;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-cta {
        padding: 1.5rem 1rem;
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-nav-column {
        text-align: left;
    }
    
    .footer-social {
        text-align: left;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-policies {
        justify-content: flex-start;
        gap: 0.5rem;
    }
    
    .policy-separator {
        display: none;
    }
    
    .footer-policies {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Print styles for FAQ and Footer */
@media print {
    .faq-section,
    .footer-section {
        background: white !important;
        color: black !important;
    }
    
    .faq-item {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
    
    .faq-answer {
        max-height: none !important;
        opacity: 1 !important;
    }
    
    .social-links {
        display: none;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-answer,
    .faq-icon,
    .social-link {
        transition: none;
    }
    
    .faq-item:target {
        animation: none;
        background: #dbeafe;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .faq-item {
        border: 2px solid #374151;
    }
    
    .faq-question:focus {
        outline: 3px solid #2563eb;
    }
    
    .footer-section {
        background: #000000;
    }
    
    .social-link,
    .footer-contact .contact-icon {
        border: 1px solid #ffffff;
    }
}

/* Hide loading overlay by default and prevent extra space */
.loading-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.loading-overlay.show {
    display: flex !important;
}

/* Ensure no extra space after footer */
body > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

#cfa-results-landing-page {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Remove any default margins/padding that could cause white space */
footer:after,
.footer-section:after {
    content: none;
    display: none;
}

/* Hide loading overlay by default and prevent extra space */
.loading-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.loading-overlay.show {
    display: flex !important;
}

/* Ensure no extra space after footer */
body > *:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

#cfa-results-landing-page {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Remove any default margins/padding that could cause white space */
footer:after,
.footer-section:after {
    content: none;
    display: none;
}
/* Form Unlock Popup Modal Styles */
.form-unlock-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.form-unlock-popup[style*="display: none"] {
    display: none !important;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.popup-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    z-index: 10001;
}

.popup-close {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: color 0.2s ease;
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.popup-close:hover {
    color: #1f2937;
    background: #f3f4f6;
}

.popup-body {
    text-align: center;
}

.popup-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    animation: scaleIn 0.3s ease 0.1s both;
}

.popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    animation: slideDown 0.3s ease 0.2s both;
}

.popup-message {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: slideDown 0.3s ease 0.3s both;
}

.popup-cta {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    animation: slideUp 0.3s ease 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {
    .popup-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .popup-message {
        font-size: 1rem;
    }
}

/* Mentor Section - Compact Layout */
.mentor-section {
    padding: 3rem 0;
    background: #ffffff;
}

.mentor-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mentor-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mentor-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.mentor-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

.mentor-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.mentor-image {
    position: relative;
}

.mentor-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.mentor-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    z-index: 10;
}

.mentor-bio {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mentor-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.mentor-designation {
    font-size: 1rem;
    color: #4b5563;
    margin: 0;
    font-weight: 500;
}

.mentor-description {
    margin: 0;
}

.mentor-quote {
    margin: 0;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    font-style: italic;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
}

.mentor-quote p {
    margin: 0;
}

.mentor-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 0.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.highlight-icon {
    color: #2563eb;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
}

.highlight-text strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.highlight-text span {
    font-size: 0.85rem;
    color: #6b7280;
}

.mentor-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 0.5rem 0;
}

.credentials-column {
    background: #f9fafb;
    padding: 1rem 1.25rem;
    border-radius: 8px;
}

.credentials-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
}

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

.credentials-list li {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.credentials-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.credentials-note {
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

.mentor-cta {
    margin-top: 0.5rem;
}

.mentor-cta-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Mobile Responsive for Mentor Section */
@media (max-width: 968px) {
    .mentor-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mentor-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .mentor-highlights {
        grid-template-columns: 1fr;
    }
    
    .mentor-credentials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mentor-section {
        padding: 2rem 0;
    }
    
    .mentor-title {
        font-size: 1.5rem;
    }
    
    .mentor-name {
        font-size: 1.5rem;
    }
    
    .mentor-image {
        max-width: 100%;
    }
}

/* Mentor Section - Compact Layout */
.mentor-section {
    padding: 3rem 0;
    background: #ffffff;
}

.mentor-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mentor-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mentor-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.mentor-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

.mentor-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.mentor-image {
    position: relative;
}

.mentor-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.mentor-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    z-index: 10;
}

.mentor-bio {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mentor-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.mentor-designation {
    font-size: 1rem;
    color: #4b5563;
    margin: 0;
    font-weight: 500;
}

.mentor-description {
    margin: 0;
}

.mentor-quote {
    margin: 0;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    font-style: italic;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
}

.mentor-quote p {
    margin: 0;
}

.mentor-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 0.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.highlight-icon {
    color: #2563eb;
    flex-shrink: 0;
}

.highlight-text {
    display: flex;
    flex-direction: column;
}

.highlight-text strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

.highlight-text span {
    font-size: 0.85rem;
    color: #6b7280;
}

.mentor-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 0.5rem 0;
}

.credentials-column {
    background: #f9fafb;
    padding: 1rem 1.25rem;
    border-radius: 8px;
}

.credentials-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
}

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

.credentials-list li {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.25rem;
    position: relative;
}

.credentials-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.credentials-note {
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.5rem;
}

.mentor-cta {
    margin-top: 0.5rem;
}

.mentor-cta-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

/* Mobile Responsive for Mentor Section */
@media (max-width: 968px) {
    .mentor-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mentor-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .mentor-highlights {
        grid-template-columns: 1fr;
    }
    
    .mentor-credentials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mentor-section {
        padding: 2rem 0;
    }
    
    .mentor-title {
        font-size: 1.5rem;
    }
    
    .mentor-name {
        font-size: 1.5rem;
    }
    
    .mentor-image {
        max-width: 100%;
    }
}

/* Step Microcopy Styling */
.step-microcopy {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1.5;
}

/* Registered Button State - Green */
.btn-registered {
    background: #10b981 !important;
    border-color: #10b981 !important;
    color: white !important;
    cursor: default !important;
    pointer-events: none;
}

.btn-registered:hover {
    background: #10b981 !important;
    transform: none !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

/* Reduced Section Spacing - More Compact Layout */
.offerings-section {
    padding: 3rem 0 !important;
}

.mentor-section {
    padding: 3rem 0 !important;
}

.testimonials-section {
    padding: 3rem 0 !important;
}

.faq-section {
    padding: 3rem 0 !important;
}

.blueprint-timeline {
    padding: 2.5rem 0 !important;
}

/* Reduce header margins within sections */
.offerings-header,
.testimonials-header {
    margin-bottom: 2rem;
}

.mentor-header {
    margin-bottom: 1.5rem;
}

.faq-header {
    margin-bottom: 2rem;
}

/* Reduce gaps in grids */
.offerings-grid {
    gap: 1.5rem;
}

/* Reduce testimonials carousel margin */
.testimonials-carousel {
    margin-bottom: 2rem;
}

/* Reduce CTA section padding */
.testimonials-cta {
    margin-top: 2rem;
    padding: 2rem !important;
}

/* Reduce blueprint footer margin */
.blueprint-footer {
    margin-top: 2rem !important;
    padding-top: 2rem !important;
}

/* Mobile adjustments for compact layout */
@media (max-width: 768px) {
    .offerings-section,
    .mentor-section,
    .testimonials-section,
    .faq-section {
        padding: 2rem 0 !important;
    }
    
    .blueprint-timeline {
        padding: 1.5rem 0 !important;
    }
}

/* Fix for highlight icons visibility in mentor section */
.mentor-highlights .highlight-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.mentor-highlights .highlight-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    color: white;
}

/* Enhanced Mentor Image Styling */
.mentor-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%) !important;
}

.mentor-profile {
    grid-template-columns: 380px 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
}

.mentor-image {
    position: relative;
}

.mentor-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #3b82f6 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.15;
}

.mentor-image::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 16px;
    z-index: -2;
    opacity: 0.1;
}

.mentor-photo {
    width: 100% !important;
    height: auto !important;
    min-height: 420px;
    border-radius: 16px !important;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(37, 99, 235, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1) !important;
    object-fit: cover !important;
    object-position: top center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease !important;
    border: 4px solid white !important;
}

.mentor-photo:hover {
    transform: scale(1.02) translateY(-5px) !important;
    box-shadow: 
        0 35px 60px -15px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(37, 99, 235, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
}

/* Responsive adjustments for mentor image */
@media (max-width: 1024px) {
    .mentor-profile {
        grid-template-columns: 320px 1fr !important;
    }
    
    .mentor-photo {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .mentor-profile {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .mentor-image {
        max-width: 350px !important;
        margin: 0 auto;
    }
    
    .mentor-photo {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .mentor-image {
        max-width: 100% !important;
    }
    
    .mentor-photo {
        min-height: 320px;
    }
}
