/* CSS Variables - Modern Charcoal & Indigo Color Palette */
:root {
    --charcoal-gray: #5A6F6A;
    --slate-gray: #8B9F98;
    --indigo-blue: #B8CCC5;
    --pure-white: #FFFFFF;
    --light-gray: #F5F9F7;
    --medium-gray: #EBF2EF;
    --dark-gray: #3E4F4A;
    --text-primary: #5A6F6A;
    --text-secondary: #8B9F98;
    --text-muted: #A8B8B3;
    --text-light: #D0DDD8;
    --white: #FFFFFF;
    --shadow-light: rgba(139, 159, 152, 0.08);
    --shadow-medium: rgba(139, 159, 152, 0.12);
    --shadow-deep: rgba(139, 159, 152, 0.18);
    
    /* Enhanced contrast colors */
    --text-high-contrast: #111827;
    --background-overlay: rgba(62, 79, 74, 0.7);
    --background-overlay-light: rgba(62, 79, 74, 0.5);
    
    /* Enhanced Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Responsive Spacing */
    --section-padding: clamp(60px, 8vw, 100px) 0;
    --container-padding: 0 clamp(16px, 4vw, 40px);
    --element-spacing: clamp(1rem, 3vw, 2rem);
    
    /* Mobile-first viewport units */
    --vh: 1vh;
    
    /* Enhanced mobile touch targets */
    --mobile-touch-min: 48px;
    --mobile-spacing-xs: clamp(8px, 2vw, 12px);
    --mobile-spacing-sm: clamp(12px, 3vw, 16px);
    --mobile-spacing-md: clamp(16px, 4vw, 24px);
    --mobile-spacing-lg: clamp(24px, 6vw, 32px);
    --mobile-spacing-xl: clamp(32px, 8vw, 48px);
    
    /* Navigation Z-index layers */
    --z-navbar: 1000;
    --z-hamburger: 1001;
    --z-mobile-menu: 999;
    --z-mobile-overlay: 998;
}

/* Provider Page Redesign Styles */

/* Provider Hero Redesigned */
.provider-hero-redesigned {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.provider-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.provider-hero-content {
    z-index: 2;
}

.provider-hero-badge {
    display: inline-block;
    background: rgba(168, 181, 163, 0.1);
    color: #6b8e5a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(168, 181, 163, 0.2);
}

.provider-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.1;
    margin-bottom: 24px;
}

.provider-hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.provider-stats-inline {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(168, 181, 163, 0.1);
    flex: 1;
    min-width: 180px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a8b5a3, #6b8e5a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.provider-hero-actions {
    display: flex;
    gap: 16px;
}

.btn-primary-redesigned {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #a8b5a3, #6b8e5a);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 181, 163, 0.3);
}

.btn-primary-redesigned:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 181, 163, 0.4);
}

.btn-primary-redesigned svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-primary-redesigned:hover svg {
    transform: translateX(4px);
}

.provider-hero-visual {
    position: relative;
}

.provider-image-stack {
    position: relative;
}

.main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 250px;
    border: 1px solid rgba(168, 181, 163, 0.1);
}

.floating-card .card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #a8b5a3, #6b8e5a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.floating-card .card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.floating-card h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.floating-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Partnership Services Redesigned */
.partnership-services-redesigned {
    padding: 100px 0;
    background: white;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag-redesigned {
    display: inline-block;
    background: linear-gradient(135deg, #a8b5a3, #6b8e5a);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.services-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 16px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.tab-btn.active {
    background: linear-gradient(135deg, #a8b5a3, #6b8e5a);
    color: white;
    box-shadow: 0 2px 8px rgba(168, 181, 163, 0.3);
}

.tab-content {
    min-height: 400px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.services-showcase {
    display: grid;
    gap: 40px;
}

.service-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: start;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    border: 1px solid rgba(168, 181, 163, 0.1);
    transition: all 0.3s ease;
}

.service-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a8b5a3, #6b8e5a);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.service-details h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.service-details p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(168, 181, 163, 0.1);
    color: #6b8e5a;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(168, 181, 163, 0.2);
}

.partnership-cta-redesigned {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 24px;
}

.partnership-cta-redesigned h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.partnership-cta-redesigned p {
    opacity: 0.9;
    margin: 0;
}

.btn-secondary-redesigned {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #2c3e50;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-secondary-redesigned:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Partnership Levels Redesigned */
.partnership-levels-redesigned {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header-left {
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 16px;
}

.section-header-left p {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 600px;
}

.partnership-carousel {
    overflow: hidden;
}

.partnership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partnership-card.featured {
    border-color: #a8b5a3;
    transform: scale(1.05);
}

.partnership-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #a8b5a3, #6b8e5a);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-header {
    text-align: center;
    margin-bottom: 24px;
}

.tier-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.tier-badge.essential {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.tier-badge.comprehensive {
    background: rgba(168, 181, 163, 0.1);
    color: #6b8e5a;
    border: 1px solid rgba(168, 181, 163, 0.2);
}

.tier-badge.premium {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
    border: 1px solid rgba(155, 89, 182, 0.2);
}

.card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 8px;
}

.tier-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
}

.card-description {
    margin-bottom: 30px;
}

.card-description p {
    color: #5a6c7d;
    line-height: 1.6;
}

.features-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item svg {
    width: 18px;
    height: 18px;
    stroke: #6b8e5a;
    flex-shrink: 0;
}

.feature-item span {
    color: #5a6c7d;
    font-size: 0.95rem;
}

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

.btn-outline-redesigned {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #6b8e5a;
    padding: 14px 28px;
    border: 2px solid #6b8e5a;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-outline-redesigned:hover {
    background: #6b8e5a;
    color: white;
    transform: translateY(-2px);
}

/* Provider Testimonials Redesigned */
.provider-testimonials-redesigned {
    padding: 100px 0;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 16px;
}

.testimonials-header p {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(168, 181, 163, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #a8b5a3, #6b8e5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

.testimonial-item blockquote {
    font-style: italic;
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 20px 0 30px;
    quotes: none;
}

.testimonial-author {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a8b5a3, #6b8e5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-details h4 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-details p {
    color: #6b8e5a;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.location {
    color: #6c757d !important;
    font-size: 0.85rem !important;
}

.rating .stars {
    font-size: 0.9rem;
}

/* Provider Contact Redesigned */
.provider-contact-redesigned {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-side {
    padding-right: 20px;
}

.contact-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a8b5a3, #6b8e5a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.method-details h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.method-details a {
    color: #a8b5a3;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.method-details a:hover {
    color: white;
}

.method-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 4px 0 0;
}

.partnership-benefits h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item svg {
    width: 18px;
    height: 18px;
    stroke: #a8b5a3;
    flex-shrink: 0;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-form-side {
    background: white;
    border-radius: 20px;
    padding: 40px;
    color: #2c3e50;
}

.form-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.form-container p {
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.provider-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a8b5a3;
    box-shadow: 0 0 0 3px rgba(168, 181, 163, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Responsive Design for Provider Page */
@media (max-width: 768px) {
    .provider-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .provider-hero-title {
        font-size: 2.5rem;
    }
    
    .provider-stats-inline {
        flex-direction: column;
    }
    
    .stat-card {
        min-width: auto;
    }
    
    .floating-card {
        position: static;
        margin-top: 20px;
        max-width: none;
    }
    
    .tab-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .service-highlight {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .partnership-cta-redesigned {
        flex-direction: column;
        text-align: center;
    }
    
    .partnership-cards {
        grid-template-columns: 1fr;
    }
    
    .partnership-card.featured {
        transform: none;
    }
    
    .partnership-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .testimonials-masonry {
        grid-template-columns: 1fr;
    }
    
    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-side {
        padding-right: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
}

/* Tab functionality */
.tab-btn:hover {
    background: rgba(168, 181, 163, 0.1);
    color: #6b8e5a;
}

/* Mobile-optimized CSS custom properties */
@media (max-width: 768px) {
    :root {
        --mobile-padding: clamp(16px, 4vw, 24px);
        --mobile-margin: clamp(12px, 3vw, 20px);
        --mobile-border-radius: clamp(8px, 2vw, 16px);
        --mobile-font-small: clamp(13px, 3.5vw, 15px);
        --mobile-font-base: clamp(15px, 4vw, 17px);
        --mobile-font-large: clamp(17px, 5vw, 21px);
        --mobile-font-xl: clamp(21px, 6vw, 25px);
        --mobile-touch-target: clamp(48px, 12vw, 56px);
        --mobile-shadow-small: 0 2px 8px rgba(31, 41, 55, 0.1);
        --mobile-shadow-medium: 0 4px 16px rgba(31, 41, 55, 0.15);
        --mobile-shadow-large: 0 8px 32px rgba(31, 41, 55, 0.2);
        
        /* Enhanced mobile typography */
        --mobile-line-height-tight: 1.3;
        --mobile-line-height-normal: 1.5;
        --mobile-line-height-relaxed: 1.7;
        
        /* Mobile-optimized spacing scale */
        --mobile-gap-xs: clamp(4px, 1vw, 8px);
        --mobile-gap-sm: clamp(8px, 2vw, 12px);
        --mobile-gap-md: clamp(12px, 3vw, 16px);
        --mobile-gap-lg: clamp(16px, 4vw, 24px);
        --mobile-gap-xl: clamp(24px, 6vw, 32px);
    }
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Viewport height fix for mobile */
@supports (-webkit-touch-callout: none) {
    :root {
        --vh: calc(1vh - 0.1px);
    }
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: #D8E8D8;
    font-size: clamp(15px, 4vw, 17px);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Enhanced mobile text rendering */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    
    /* Improved mobile scrolling */
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    
    /* Better mobile tap behavior */
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow text selection for readable content */
body p, body h1, body h2, body h3, body h4, body h5, body h6, body li, body td, body th, body blockquote {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
}

/* Enhanced Responsive Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    hyphens: auto;
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-primary);
}

/* Hero h1 gets special treatment */
.hero h1 {
    color: var(--white);
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 900;
    background: rgba(0, 0, 0, 0.4);
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

h2 {
    font-size: clamp(1.8rem, 6vw, 3.2rem);
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-primary);
    font-weight: 600;
}

/* Hero h2 gets special treatment */
.hero h2 {
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

h3 {
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

p {
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
    color: var(--text-secondary);
    line-height: var(--mobile-line-height-relaxed, 1.7);
    font-size: clamp(16px, 4vw, 18px);
    max-width: 65ch;
    
    /* Better mobile text rendering */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    
    /* Enhanced readability */
    font-weight: 400;
    text-rendering: optimizeLegibility;
}

/* Enhanced mobile paragraph spacing */
@media (max-width: 768px) {
    p {
        line-height: 1.7;
        margin-bottom: clamp(1rem, 3vw, 1.25rem);
        max-width: 100%;
        font-size: clamp(16px, 4.5vw, 19px);
        color: var(--text-secondary);
    }
    
    /* Ensure hero text is highly visible on mobile */
    .hero-subtitle {
        font-size: clamp(18px, 5.5vw, 24px);
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8);
        color: var(--white);
        line-height: 1.5;
        background: rgba(0, 0, 0, 0.5);
        padding: clamp(12px, 3vw, 16px);
        border-radius: 10px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Mobile-first Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    loading: lazy;
    
    /* Enhanced mobile image optimization */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    
    /* Better mobile image rendering */
    image-orientation: from-image;
    
    /* Improved responsive behavior */
    width: 100%;
    
    /* Better mobile performance */
    will-change: auto;
    
    /* Smooth loading transition */
    transition: opacity 0.3s ease;
}

/* Ensure all images are visible */
img:not([src]) {
    opacity: 0;
    visibility: hidden;
}

img[src] {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}

/* Image fallback for broken images */
img::before {
    content: '';
    display: block;
    width: 100%;
    height: 200px;
    background: var(--sand-light);
    border-radius: 8px;
}

/* Enhanced Mobile-first Buttons */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Updated gap for better spacing */
    gap: var(--mobile-gap-md, 0.75rem);
    padding: clamp(16px, 4vw, 20px) clamp(24px, 6vw, 36px);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: clamp(15px, 4vw, 17px);
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: var(--mobile-touch-min, 48px);
    min-width: var(--mobile-touch-min, 48px);
    box-shadow: 0 4px 15px rgba(45, 37, 32, 0.1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    
    /* Enhanced mobile accessibility */
    outline: none;
    outline-offset: 2px;
    
    /* Better mobile interaction feedback */
    transform-origin: center;
    will-change: transform;
    
    /* Enhanced mobile button styling */
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
    
    /* Better mobile focus states */
    -webkit-focus-ring-color: transparent;
    
    /* Improved mobile button performance */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Desktop-first optimizations - Enhanced button layout */
@media (min-width: 769px) {
    .btn-primary, .btn-secondary, .btn-tertiary {
        padding: clamp(18px, 2vw, 22px) clamp(32px, 4vw, 44px);
        font-size: clamp(16px, 1.5vw, 18px);
        min-width: auto;
        width: auto;
        flex-shrink: 0;
        max-width: none;
        
        /* Enhanced desktop button styling */
        box-sizing: border-box;
        word-wrap: break-word;
        hyphens: none;
        -webkit-hyphens: none;
        overflow: visible;
        text-overflow: clip;
        
        /* Professional desktop shadows */
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
        
        /* Better desktop hover states */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Enhanced desktop button hover effects */
    .btn-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35), 0 4px 15px rgba(0, 0, 0, 0.15);
    }
    
    .btn-secondary:hover,
    .btn-tertiary:hover {
        transform: translateY(-2px) scale(1.01);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25), 0 3px 12px rgba(0, 0, 0, 0.12);
    }
    
    /* Specific fix for schedule consultation button */
    .cta-schedule {
        min-width: 220px;
        padding: clamp(18px, 2vw, 22px) clamp(28px, 3vw, 36px);
    }
    
    .btn-text {
        flex: 1;
        text-align: center;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
    }
    
    .btn-icon {
        flex-shrink: 0;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .btn-primary:hover .btn-icon,
    .btn-secondary:hover .btn-icon,
    .btn-tertiary:hover .btn-icon {
        transform: translateX(3px);
    }
}

/* Enhanced focus states for mobile accessibility */
.btn-primary:focus-visible, .btn-secondary:focus-visible, .btn-tertiary:focus-visible {
    outline: 3px solid var(--indigo-blue);
    outline-offset: 2px;
}

/* Improved mobile button states */
@media (max-width: 768px) {
    .btn-primary, .btn-secondary, .btn-tertiary {
        padding: clamp(18px, 5vw, 22px) clamp(28px, 7vw, 40px);
        font-size: clamp(16px, 4.5vw, 18px);
        min-height: 52px;
        border-radius: 26px;
        
        /* Enhanced mobile touch feedback */
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .btn-primary:active, .btn-secondary:active, .btn-tertiary:active {
        transform: scale(0.96);
        transition: transform 0.1s ease;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #B8CCC5 0%, #9FB3AC 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(184, 204, 197, 0.2);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover, .btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(184, 204, 197, 0.25);
    background: linear-gradient(135deg, #9FB3AC 0%, #B8CCC5 100%);
}

.btn-primary:active {
    transform: scale(0.96);
    transition: transform 0.1s ease;
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--indigo-blue);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    font-weight: 700;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover, .btn-secondary:focus {
    background: var(--indigo-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.3);
}

.btn-tertiary {
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-tertiary:hover, .btn-tertiary:focus {
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

/* Mobile touch feedback */
@media (max-width: 768px) {
    .btn-primary::after,
    .btn-secondary::after,
    .btn-tertiary::after {
        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;
        pointer-events: none;
    }
    
    .btn-primary:active::after,
    .btn-secondary:active::after,
    .btn-tertiary:active::after {
        width: 200px;
        height: 200px;
    }
}

/* Button Icons */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-icon svg {
    width: clamp(16px, 4vw, 18px);
    height: clamp(16px, 4vw, 18px);
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon,
.btn-tertiary:hover .btn-icon {
    transform: translateX(2px);
}

/* Section Tags */
.section-tag {
    display: inline-block;
    padding: clamp(8px, 2vw, 10px) clamp(16px, 4vw, 24px);
    background: linear-gradient(135deg, #B8CCC5, #D0DDD8);
    color: var(--white);
    border-radius: 30px;
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 700;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(139, 159, 152, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 4rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 clamp(16px, 4vw, 20px);
}

.section-header h2 {
    color: var(--text-high-contrast);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-weight: 800;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.section-header p {
    font-size: clamp(18px, 4vw, 22px);
    color: var(--text-primary);
    line-height: 1.6;
    max-width: 100%;
    margin: 0 auto;
    font-weight: 500;
}



/* Legacy navbar classes for backward compatibility */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: var(--z-navbar);
    padding: clamp(8px, 2vw, 10px) 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

/* Safe area support */
@supports (padding-top: env(safe-area-inset-top)) {
    .navbar {
        padding-top: calc(clamp(8px, 2vw, 10px) + env(safe-area-inset-top));
    }
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo .logo-link {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    display: block;
}

.nav-logo .logo-link:hover, .nav-logo .logo-link:focus {
    transform: translateY(-2px);
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.nav-logo .logo-link:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

.nav-logo h2 {
    color: var(--text-primary);
    font-size: clamp(1.3rem, 4vw, 1.7rem);
    margin-bottom: 0;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.2;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-logo .logo-link:hover h2 {
    color: var(--indigo-blue);
}

.nav-tagline {
    color: var(--indigo-blue);
    font-size: clamp(13px, 3vw, 15px);
    font-weight: 500;
    font-style: italic;
    display: block;
    transition: color 0.3s ease;
    margin-top: 2px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-logo .logo-link:hover .nav-tagline {
    color: var(--slate-gray);
}

/* Enhanced Desktop Navigation */
.nav-links {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Desktop navigation enhancements */
@media (min-width: 769px) {
    .nav-links {
        gap: clamp(2rem, 3vw, 3rem);
    }
    
    .navbar {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 2px 20px rgba(99, 102, 241, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
        border-bottom: 1px solid rgba(99, 102, 241, 0.06);
    }
    
    .nav-container {
        max-width: 1400px;
        padding: 0 clamp(40px, 5vw, 80px);
    }
    
    .nav-logo h2 {
        font-size: clamp(1.6rem, 2.5vw, 2rem);
        font-weight: 800;
        letter-spacing: -0.01em;
    }
    
    .nav-tagline {
        font-size: clamp(14px, 1.5vw, 16px);
        font-weight: 500;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: clamp(15px, 3vw, 17px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 8px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav-links a:hover, .nav-links a:focus {
    color: var(--indigo-blue);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-1px);
}

.nav-links a.active {
    color: var(--indigo-blue);
    background: rgba(99, 102, 241, 0.15);
    font-weight: 600;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(135deg, var(--indigo-blue), var(--slate-gray));
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after, .nav-links a:focus::after, .nav-links a.active::after {
    transform: scaleX(1);
}

/* Hamburger Menu Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    border: none;
    background: transparent;
    z-index: var(--z-hamburger);
    position: relative;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
}

.nav-toggle:hover, .nav-toggle:focus {
    background: rgba(99, 102, 241, 0.1);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.nav-toggle:active {
    background: rgba(99, 102, 241, 0.2);
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Hamburger Menu Lines */
.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
    transform-origin: center;
    box-shadow: 0 1px 2px rgba(45, 37, 32, 0.1);
}

/* Hamburger Animation States */
.nav-toggle:hover span:nth-child(1) {
    transform: translateY(-2px);
}

.nav-toggle:hover span:nth-child(3) {
    transform: translateY(2px);
}

/* Active Hamburger (X) Animation */
.nav-toggle.active {
    background: rgba(99, 102, 241, 0.15);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--indigo-blue);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--indigo-blue);
}

/* Mobile Navigation Menu */
.nav-links.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 250, 251, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(20px, 5vw, 40px);
    box-shadow: 0 0 50px rgba(31, 41, 55, 0.3);
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: var(--z-mobile-menu);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    opacity: 0;
    visibility: hidden;
    overscroll-behavior: contain;
    pointer-events: none;
}

/* Safe area support for mobile menu */
@supports (padding-top: env(safe-area-inset-top)) {
    .nav-links.mobile-menu {
        padding-top: calc(clamp(20px, 5vw, 40px) + env(safe-area-inset-top));
        padding-bottom: calc(clamp(20px, 5vw, 40px) + env(safe-area-inset-bottom));
        padding-left: calc(clamp(20px, 5vw, 40px) + env(safe-area-inset-left));
        padding-right: calc(clamp(20px, 5vw, 40px) + env(safe-area-inset-right));
    }
}

.nav-links.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Menu Links */
.nav-links.mobile-menu a {
    padding: clamp(18px, 5vw, 24px) clamp(24px, 6vw, 32px);
    font-size: clamp(20px, 5.5vw, 28px);
    font-weight: 600;
    text-align: center;
    width: 100%;
    max-width: 350px;
    border-radius: 16px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: var(--mobile-touch-target, 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
    touch-action: manipulation;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(45, 37, 32, 0.1);
    color: var(--text-primary);
    
    /* Enhanced mobile touch response */
    -webkit-user-select: none;
    user-select: none;
    
    /* Better mobile performance */
    will-change: transform, background-color;
    
    /* Enhanced mobile accessibility */
    outline: none;
    outline-offset: 2px;
}

.nav-links.mobile-menu a:hover, .nav-links.mobile-menu a:focus {
    background: rgba(99, 102, 241, 0.25);
    transform: scale(1.02);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    color: var(--indigo-blue);
}

.nav-links.mobile-menu a:focus-visible {
    outline: 3px solid var(--indigo-blue);
    outline-offset: 2px;
    background: rgba(99, 102, 241, 0.3);
}

.nav-links.mobile-menu a:active {
    background: rgba(99, 102, 241, 0.35);
    transform: scale(0.96);
    transition: transform 0.1s ease;
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Enhanced mobile menu link touch feedback */
.nav-links.mobile-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.nav-links.mobile-menu a:active::before {
    opacity: 1;
}

.nav-links.mobile-menu a::after {
    display: none;
}

/* Mobile Menu Active State */
.nav-links.mobile-menu a.active {
    background: rgba(99, 102, 241, 0.25);
    color: var(--indigo-blue);
    font-weight: 700;
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

/* Mobile Menu Animation Effects */
.nav-links.mobile-menu a {
    position: relative;
    overflow: hidden;
}

.nav-links.mobile-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-links.mobile-menu a:active::before {
    left: 100%;
}



/* Enhanced Mobile Navigation Display Control */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex !important;
        min-height: var(--mobile-touch-min, 48px);
        min-width: var(--mobile-touch-min, 48px);
        padding: var(--mobile-spacing-sm, 12px);
        
        /* Better mobile touch target */
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }
    
    .nav-links:not(.mobile-menu) {
        display: none !important;
    }
    
    .nav-links.mobile-menu {
        display: flex;
        padding: clamp(24px, 6vw, 32px) clamp(20px, 5vw, 24px);
        gap: clamp(16px, 4vw, 24px);
        
        /* Better mobile menu positioning */
        padding-top: calc(clamp(24px, 6vw, 32px) + env(safe-area-inset-top, 0px));
        padding-bottom: calc(clamp(24px, 6vw, 32px) + env(safe-area-inset-bottom, 0px));
    }
    
    /* Ensure mobile menu shows when active */
    .nav-links.mobile-menu.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
    }
    
    /* Enhanced mobile menu links */
    .nav-links.mobile-menu a {
        padding: clamp(18px, 4.5vw, 24px) clamp(24px, 6vw, 32px);
        font-size: clamp(17px, 4.5vw, 22px);
        min-height: 52px;
        border-radius: 14px;
        line-height: 1.3;
        
        /* Better mobile touch feedback */
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.1);
    }
    
    .nav-links.mobile-menu a:active {
        transform: scale(0.96);
        background: rgba(99, 102, 241, 0.25);
    }
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-links.mobile-menu {
        display: none !important;
    }
    
    .nav-links:not(.mobile-menu) {
        display: flex !important;
    }
}

/* Provider Page Specific Styles */
.pricing {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.03) 100%);
    border-radius: 20px;
    padding: clamp(2rem, 5vw, 2.5rem);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.12), 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pricing-card.featured {
    border: 2px solid var(--indigo-blue);
    transform: scale(1.05);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(99, 102, 241, 0.18), 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(99, 102, 241, 0.25);
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.06) 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--indigo-blue), var(--slate-gray));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.pricing-header h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: clamp(20px, 5vw, 24px);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--indigo-blue);
    font-family: var(--font-heading);
}

.price-period {
    color: var(--text-muted);
    font-size: clamp(14px, 3.5vw, 16px);
}

.pricing-features ul {
    list-style: none;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--sand-light);
    color: var(--text-secondary);
    font-size: clamp(14px, 3.5vw, 16px);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--indigo-blue);
    font-weight: bold;
}

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

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

.pricing-note {
    text-align: center;
    margin-top: clamp(2rem, 5vw, 3rem);
    padding: clamp(1.5rem, 4vw, 2rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(45, 37, 32, 0.08);
}

.pricing-note p {
    color: var(--text-muted);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(14px, 3.5vw, 16px);
}

/* Technology Section */
.technology {
    padding: var(--section-padding);
    background: var(--white);
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

@media (min-width: 768px) {
    .technology-content {
        grid-template-columns: 1fr 1fr;
    }
}

.technology-image {
    order: -1;
}

@media (min-width: 768px) {
    .technology-image {
        order: 0;
    }
}

.technology-image img {
    width: 100%;
    height: clamp(300px, 50vw, 500px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.technology-intro {
    font-size: clamp(16px, 4vw, 20px);
    color: var(--text-secondary);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.7;
}

.technology-features {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.tech-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(45, 37, 32, 0.05);
}

.tech-icon {
    width: clamp(45px, 8vw, 55px);
    height: clamp(45px, 8vw, 55px);
    background: linear-gradient(135deg, var(--slate-gray), var(--indigo-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.tech-icon svg {
    width: clamp(20px, 5vw, 26px);
    height: clamp(20px, 5vw, 26px);
    color: var(--white);
}

.tech-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: clamp(16px, 4vw, 18px);
}

.tech-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: clamp(14px, 3.5vw, 16px);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background: var(--medium-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(168, 181, 163, 0.03) 100%);
    padding: clamp(2rem, 5vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(168, 181, 163, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(168, 181, 163, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(168, 181, 163, 0.25), 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(168, 181, 163, 0.35);
    background: linear-gradient(135deg, var(--white) 0%, rgba(168, 181, 163, 0.06) 100%);
}

.testimonial-rating {
    color: #ffd700;
    font-size: clamp(16px, 4vw, 20px);
    margin-bottom: 1rem;
}

.testimonial-content blockquote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.6;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    border: none;
    padding: 0;
}

.testimonial-author {
    border-top: 1px solid var(--sand-light);
    padding-top: 1rem;
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: clamp(16px, 4vw, 18px);
}

.author-info p {
    color: var(--indigo-blue);
    margin-bottom: 0.25rem;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 500;
}

.author-info span {
    color: var(--text-muted);
    font-size: clamp(12px, 3vw, 14px);
}

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

/* Enhanced Comparison Cards Section */
.comparison-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 768px) {
    .comparison-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.comparison-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.03) 100%);
    border-radius: 25px;
    padding: clamp(2rem, 5vw, 2.5rem);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(99, 102, 241, 0.15);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.comparison-card.featured {
    border-color: var(--indigo-blue);
    transform: scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.comparison-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 80px rgba(99, 102, 241, 0.18), 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(99, 102, 241, 0.35);
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.06) 100%);
}

.comparison-card.featured:hover {
    transform: scale(1.02) translateY(-12px);
}

.comparison-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--indigo-blue), var(--slate-gray));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.comparison-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 2.5rem);
    padding-bottom: clamp(1rem, 3vw, 1.5rem);
    border-bottom: 2px solid var(--sand-light);
}

.comparison-icon {
    width: clamp(80px, 15vw, 100px);
    height: clamp(80px, 15vw, 100px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    box-shadow: 0 10px 30px rgba(45, 37, 32, 0.15);
    position: relative;
    overflow: hidden;
}

.comparison-icon.essential {
    background: linear-gradient(135deg, #a8d8ea, #aa96da);
}

.comparison-icon.comprehensive {
    background: linear-gradient(135deg, var(--indigo-blue), var(--slate-gray));
}

.comparison-icon.premium {
    background: linear-gradient(135deg, #ffd89b, #19547b);
}

.comparison-icon svg {
    width: clamp(35px, 7vw, 45px);
    height: clamp(35px, 7vw, 45px);
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.comparison-header h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 700;
}

.comparison-subtitle {
    color: var(--text-muted);
    font-size: clamp(14px, 3.5vw, 16px);
    font-style: italic;
    margin: 0;
}

.comparison-features {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.25rem);
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: clamp(1rem, 3vw, 1.25rem);
    background: linear-gradient(135deg, rgba(248, 245, 240, 0.6), rgba(240, 235, 228, 0.4));
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(45, 37, 32, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(156, 163, 175, 0.05));
    border-left-color: var(--indigo-blue);
    transform: translateX(4px);
}

.feature-item.disabled {
    opacity: 0.5;
    background: linear-gradient(135deg, rgba(229, 231, 235, 0.3), rgba(209, 213, 219, 0.2));
}

.feature-item.disabled:hover {
    transform: none;
    border-left-color: transparent;
    background: linear-gradient(135deg, rgba(229, 231, 235, 0.3), rgba(209, 213, 219, 0.2));
}

.feature-check {
    width: clamp(24px, 5vw, 28px);
    height: clamp(24px, 5vw, 28px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: bold;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(45, 37, 32, 0.15);
}

.feature-item:not(.disabled) .feature-check {
    background: linear-gradient(135deg, var(--indigo-blue), var(--slate-gray));
}

.feature-item.disabled .feature-check {
    background: linear-gradient(135deg, #ccc, #999);
}

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

.feature-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: clamp(15px, 3.5vw, 17px);
    line-height: 1.3;
}

.feature-level {
    color: var(--text-muted);
    font-size: clamp(13px, 3vw, 15px);
    font-style: italic;
    line-height: 1.4;
}

.feature-item.disabled .feature-name,
.feature-item.disabled .feature-level {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Comparison Table (fallback for mobile) */
.comparison {
    padding: var(--section-padding);
    background: var(--white);
}

.comparison-table-container {
    overflow-x: auto;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow-light);
    display: none; /* Hide table in favor of cards */
}

@media (max-width: 480px) {
    .comparison-cards-grid {
        display: none;
    }
    
    .comparison-table-container {
        display: block;
    }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: clamp(14px, 3.5vw, 16px);
}

.comparison-table th,
.comparison-table td {
    padding: clamp(12px, 3vw, 16px);
    text-align: left;
    border-bottom: 1px solid var(--sand-light);
}

.comparison-table th {
    background: var(--light-gray);
    color: var(--text-primary);
    font-weight: 600;
    font-size: clamp(14px, 3.5vw, 16px);
}

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

.comparison-table tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

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

/* Onboarding Section */
.onboarding {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.onboarding-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 768px) {
    .onboarding-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .onboarding-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    background: var(--white);
    padding: clamp(2rem, 5vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
    position: relative;
}

.step-number {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    background: linear-gradient(135deg, var(--indigo-blue), var(--slate-gray));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(24px, 6vw, 32px);
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-heading);
}

.step h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: clamp(18px, 4vw, 22px);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: clamp(14px, 3.5vw, 16px);
}

.onboarding-timeline {
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.08);
}

.onboarding-timeline p {
    color: var(--text-secondary);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(16px, 4vw, 18px);
}

/* Compliance Section */
.compliance {
    padding: var(--section-padding);
    background: var(--white);
}

.compliance-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

@media (min-width: 768px) {
    .compliance-content {
        grid-template-columns: 2fr 1fr;
    }
}

.compliance-intro {
    font-size: clamp(16px, 4vw, 20px);
    color: var(--text-secondary);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.7;
}

.compliance-features {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.compliance-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(45, 37, 32, 0.05);
}

.compliance-icon {
    width: clamp(45px, 8vw, 55px);
    height: clamp(45px, 8vw, 55px);
    background: linear-gradient(135deg, var(--indigo-blue), var(--slate-gray));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.compliance-icon svg {
    width: clamp(20px, 5vw, 26px);
    height: clamp(20px, 5vw, 26px);
    color: var(--white);
}

.compliance-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: clamp(16px, 4vw, 18px);
}

.compliance-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: clamp(14px, 3.5vw, 16px);
}

.compliance-certifications {
    background: var(--light-gray);
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 16px;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.compliance-certifications h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: clamp(16px, 4vw, 18px);
}

.compliance-certifications ul {
    list-style: none;
}

.compliance-certifications li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: clamp(14px, 3.5vw, 16px);
    position: relative;
    padding-left: 1.5rem;
}

.compliance-certifications li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--indigo-blue);
    font-weight: bold;
}

.compliance-image {
    display: flex;
    align-items: center;
    justify-content: center;
    order: -1;
}

@media (min-width: 768px) {
    .compliance-image {
        order: 0;
    }
}

.compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(200px, 40vw, 300px);
    height: clamp(200px, 40vw, 300px);
    background: linear-gradient(135deg, var(--indigo-blue), var(--slate-gray));
    border-radius: 50%;
    color: var(--white);
    text-align: center;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.compliance-badge svg {
    width: clamp(60px, 12vw, 80px);
    height: clamp(60px, 12vw, 80px);
    margin-bottom: 1rem;
}

.compliance-badge span {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Provider Overview Cards Section */
.provider-overview {
    padding: var(--section-padding);
    background: var(--white);
}

.provider-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: clamp(3rem, 6vw, 4rem);
}

@media (min-width: 768px) {
    .provider-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .provider-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.provider-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.03) 100%);
    border-radius: 25px;
    padding: clamp(2rem, 5vw, 2.5rem);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(99, 102, 241, 0.15);
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.provider-card.featured-card {
    border-color: var(--indigo-blue);
    transform: scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-medium);
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.05) 100%);
}

.provider-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 80px rgba(99, 102, 241, 0.18), 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(99, 102, 241, 0.35);
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.06) 100%);
}

.provider-card.featured-card:hover {
    transform: scale(1.02) translateY(-12px);
}

@media (max-width: 768px) {
    .provider-card {
        padding: clamp(24px, 6vw, 28px);
        border-radius: 20px;
    }
    
    .provider-card:active {
        transform: scale(0.98);
        transition: transform 0.15s ease;
    }
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.card-icon {
    width: clamp(80px, 15vw, 100px);
    height: clamp(80px, 15vw, 100px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    box-shadow: 0 10px 30px rgba(45, 37, 32, 0.15);
    position: relative;
    overflow: hidden;
}

.compliance-icon {
    background: linear-gradient(135deg, var(--indigo-blue), var(--slate-gray));
}

.communication-icon {
    background: linear-gradient(135deg, var(--slate-gray), var(--charcoal-gray));
}

.collaboration-icon {
    background: linear-gradient(135deg, var(--charcoal-gray), var(--dark-gray));
}

.card-icon svg {
    width: clamp(35px, 7vw, 45px);
    height: clamp(35px, 7vw, 45px);
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.card-header h3 {
    color: var(--text-primary);
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.card-content {
    text-align: center;
}

.card-content p {
    color: var(--text-secondary);
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.7;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    max-width: 100%;
}

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

.card-features li {
    color: var(--text-muted);
    font-size: clamp(14px, 3.5vw, 16px);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.card-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--indigo-blue);
    font-weight: bold;
    font-size: 16px;
}

.overview-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
    padding: clamp(3rem, 6vw, 4rem);
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(31, 41, 55, 0.1);
}

.cta-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: clamp(24px, 6vw, 32px);
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: clamp(2rem, 5vw, 2.5rem);
    font-size: clamp(18px, 4vw, 22px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Collaboration Cards Section */
.collaboration-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.collaboration-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: clamp(3rem, 6vw, 4rem);
}

@media (min-width: 768px) {
    .collaboration-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .collaboration-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.collaboration-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.03) 100%);
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(99, 102, 241, 0.15);
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.collaboration-card.primary-card {
    border-color: var(--indigo-blue);
    transform: scale(1.02);
    box-shadow: 0 20px 60px var(--shadow-medium);
}

.collaboration-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 80px rgba(99, 102, 241, 0.18), 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(99, 102, 241, 0.35);
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.06) 100%);
}

.collaboration-card.primary-card:hover {
    transform: scale(1.02) translateY(-12px);
}

@media (max-width: 768px) {
    .collaboration-card {
        border-radius: 20px;
    }
    
    .collaboration-card:active {
        transform: scale(0.98);
        transition: transform 0.15s ease;
    }
}

.card-visual {
    background: linear-gradient(135deg, var(--sand-medium), var(--sand-light));
    padding: clamp(2rem, 5vw, 2.5rem);
    text-align: center;
    position: relative;
}

.collaboration-card.primary-card .card-visual {
    background: linear-gradient(135deg, var(--sage-accent), var(--sage-light));
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--sage-accent);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.protocol-icon {
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.8));
    color: var(--sage-accent);
}

.protocol-icon svg {
    color: var(--sage-accent);
}

.card-body {
    padding: clamp(2rem, 5vw, 2.5rem);
}

.card-body h3 {
    color: var(--text-primary);
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.card-body p {
    color: var(--text-secondary);
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.7;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    max-width: 100%;
}

.card-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
    border-radius: 15px;
}

.metric-value {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--sage-accent);
    font-family: var(--font-heading);
}

.metric-label {
    font-size: clamp(12px, 3vw, 14px);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.communication-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
    border-radius: 20px;
    font-size: clamp(14px, 3.5vw, 16px);
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-icon {
    font-size: 18px;
}

.documentation-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1rem;
}

.doc-type {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--sage-light), var(--sage-accent));
    color: var(--white);
    border-radius: 15px;
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.cta-card {
    background: var(--white);
    padding: clamp(3rem, 6vw, 4rem);
    border-radius: 30px;
    box-shadow: 0 20px 60px var(--shadow-medium);
    border: 2px solid var(--sage-accent);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--sage-accent), var(--sage-light));
}

.cta-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: clamp(24px, 6vw, 32px);
}

.cta-card p {
    color: var(--text-secondary);
    margin-bottom: clamp(2rem, 5vw, 2.5rem);
    font-size: clamp(18px, 4vw, 22px);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Pricing Cards Section */
.enhanced-pricing {
    padding: var(--section-padding);
    background: var(--sand-medium);
}

.enhanced-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: clamp(3rem, 6vw, 4rem);
}

@media (min-width: 768px) {
    .enhanced-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .enhanced-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.enhanced-pricing-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(168, 181, 163, 0.03) 100%);
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(168, 181, 163, 0.15), 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(168, 181, 163, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.enhanced-pricing-card.featured-pricing {
    border-color: var(--sage-accent);
    transform: scale(1.05);
    box-shadow: 0 30px 70px var(--shadow-medium);
    background: linear-gradient(135deg, var(--white) 0%, rgba(168, 181, 163, 0.03) 100%);
}

.enhanced-pricing-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 40px 90px rgba(168, 181, 163, 0.25), 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(168, 181, 163, 0.4);
    background: linear-gradient(135deg, var(--white) 0%, rgba(168, 181, 163, 0.06) 100%);
}

.enhanced-pricing-card.featured-pricing:hover {
    transform: scale(1.05) translateY(-15px);
}

@media (max-width: 768px) {
    .enhanced-pricing-card {
        border-radius: 25px;
    }
    
    .enhanced-pricing-card:active {
        transform: scale(0.98);
        transition: transform 0.15s ease;
    }
    
    .enhanced-pricing-card.featured-pricing {
        transform: scale(1.02);
    }
    
    .enhanced-pricing-card.featured-pricing:active {
        transform: scale(0.98);
    }
}

.pricing-badge-enhanced {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--sage-accent), var(--sage-light));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(168, 181, 163, 0.4);
    z-index: 10;
}

.pricing-card-header {
    padding: clamp(2.5rem, 5vw, 3rem) clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
    position: relative;
}

.enhanced-pricing-card.featured-pricing .pricing-card-header {
    background: linear-gradient(135deg, var(--sage-light), rgba(168, 181, 163, 0.1));
}

.pricing-icon {
    width: clamp(70px, 12vw, 85px);
    height: clamp(70px, 12vw, 85px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    box-shadow: 0 10px 30px rgba(45, 37, 32, 0.15);
}

.essential-icon {
    background: linear-gradient(135deg, #a8d8ea, #aa96da);
}

.comprehensive-icon {
    background: linear-gradient(135deg, var(--sage-accent), var(--sage-light));
}

.premium-icon {
    background: linear-gradient(135deg, #ffd89b, #19547b);
}

.pricing-icon svg {
    width: clamp(30px, 6vw, 38px);
    height: clamp(30px, 6vw, 38px);
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.pricing-card-header h3 {
    color: var(--text-primary);
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: clamp(14px, 3.5vw, 16px);
    font-style: italic;
    margin: 0;
}

.pricing-card-body {
    padding: clamp(2rem, 4vw, 2.5rem);
    flex: 1;
}

.pricing-amount {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: linear-gradient(135deg, rgba(248, 245, 240, 0.6), rgba(240, 235, 228, 0.4));
    border-radius: 20px;
    border: 1px solid rgba(168, 181, 163, 0.1);
}

.featured-amount {
    background: linear-gradient(135deg, rgba(168, 181, 163, 0.1), rgba(197, 208, 193, 0.05));
    border-color: rgba(168, 181, 163, 0.2);
}

.price-label {
    display: block;
    font-size: clamp(12px, 3vw, 14px);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.featured-amount .price-label {
    color: var(--sage-accent);
}

.price-value {
    display: block;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.featured-amount .price-value {
    color: var(--sage-accent);
}

.price-note {
    font-size: clamp(13px, 3vw, 15px);
    color: var(--text-muted);
    font-style: italic;
}

.pricing-features-enhanced {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.feature-group {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.feature-group h4 {
    color: var(--text-primary);
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--sand-light);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-enhanced:hover {
    background: rgba(168, 181, 163, 0.1);
    transform: translateX(4px);
}

.feature-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage-accent), var(--sage-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-enhanced span:last-child {
    color: var(--text-secondary);
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.5;
}

.pricing-card-footer {
    padding: clamp(1.5rem, 3vw, 2rem) clamp(2rem, 4vw, 2.5rem) clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
    border-top: 1px solid rgba(168, 181, 163, 0.1);
}

.enhanced-pricing-card.featured-pricing .pricing-card-footer {
    background: linear-gradient(135deg, rgba(168, 181, 163, 0.1), rgba(197, 208, 193, 0.05));
}

.pricing-btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: clamp(14px, 3.5vw, 16px);
}

.enhanced-pricing-note {
    background: var(--white);
    border-radius: 30px;
    padding: clamp(2.5rem, 5vw, 3.5rem);
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 2px solid var(--sage-accent);
    position: relative;
    overflow: hidden;
}

.enhanced-pricing-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(135deg, var(--sage-accent), var(--sage-light));
}

.pricing-guarantee {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    text-align: left;
}

@media (max-width: 768px) {
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
}

.guarantee-icon {
    width: clamp(60px, 10vw, 75px);
    height: clamp(60px, 10vw, 75px);
    background: linear-gradient(135deg, var(--sage-accent), var(--sage-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(168, 181, 163, 0.25);
}

.guarantee-icon svg {
    width: clamp(28px, 5vw, 35px);
    height: clamp(28px, 5vw, 35px);
    color: var(--white);
}

.guarantee-content h4 {
    color: var(--text-primary);
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.guarantee-content p {
    color: var(--text-secondary);
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.7;
    margin: 0;
    max-width: 100%;
}

.pricing-cta-enhanced {
    text-align: center;
}

/* Support Section */
.support {
    padding: var(--section-padding);
    background: var(--sand-medium);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 640px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.support-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(168, 181, 163, 0.03) 100%);
    padding: clamp(2rem, 5vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(168, 181, 163, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid rgba(168, 181, 163, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.support-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(168, 181, 163, 0.25), 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(168, 181, 163, 0.35);
    background: linear-gradient(135deg, var(--white) 0%, rgba(168, 181, 163, 0.06) 100%);
}

.support-icon {
    width: clamp(70px, 14vw, 85px);
    height: clamp(70px, 14vw, 85px);
    background: linear-gradient(135deg, var(--sage-accent), var(--soft-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    box-shadow: 0 8px 25px rgba(168, 181, 163, 0.25);
}

.support-icon svg {
    width: clamp(32px, 7vw, 38px);
    height: clamp(32px, 7vw, 38px);
    color: var(--white);
}

.support-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: clamp(18px, 4vw, 22px);
}

.support-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
    font-size: clamp(14px, 3.5vw, 16px);
}

.support-contact {
    text-align: center;
    padding: clamp(2rem, 5vw, 2.5rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(45, 37, 32, 0.08);
}

.support-contact h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: clamp(20px, 5vw, 28px);
}

.support-contact p {
    color: var(--text-secondary);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    font-size: clamp(16px, 4vw, 18px);
}

/* Checkbox Group Styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
    cursor: pointer;
    font-size: clamp(14px, 3.5vw, 16px);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--sage-accent);
    cursor: pointer;
}

/* Button Outline Style */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: clamp(12px, 3vw, 16px) clamp(18px, 5vw, 24px);
    border: 2px solid var(--sage-accent);
    border-radius: 50px;
    background: transparent;
    color: var(--sage-accent);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: clamp(14px, 3.5vw, 16px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: var(--mobile-touch-target, 44px);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--sage-accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 181, 163, 0.3);
}

.btn-outline:active {
    transform: scale(0.96);
    transition: transform 0.1s ease;
}

/* Service CTA */
.service-cta {
    margin-top: auto;
    padding-top: clamp(1rem, 3vw, 1.5rem);
}



/* Mobile-first Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: clamp(80px, 12vw, 120px);
    padding-bottom: clamp(40px, 8vw, 60px);
    
    /* Enhanced mobile hero performance */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: scroll-position;
    
    /* Better mobile hero layout */
    contain: layout style paint;
}

/* Mobile-specific hero adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: calc(var(--vh, 1vh) * 100);
        padding-top: clamp(70px, 15vw, 100px);
        padding-bottom: clamp(30px, 6vw, 50px);
        
        /* Better mobile centering */
        justify-content: center;
        align-items: center;
    }
    
    .hero-content {
        padding-top: 0;
        width: 100%;
        max-width: none;
    }
}

/* Safe area support for hero */
@supports (padding-top: env(safe-area-inset-top)) {
    .hero {
        padding-top: calc(clamp(70px, 12vw, 90px) + env(safe-area-inset-top));
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 1;
    visibility: visible;
    /* Hero-specific responsive constraints */
    max-height: none;
}

@media (max-width: 768px) {
    .hero-background img {
        object-position: center center;
    }
}

@media (min-width: 769px) {
    .hero-background img {
        object-position: center center;
    }
}

/* Fallback background for hero */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--sand-medium) 0%, var(--sage-light) 100%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(45, 37, 32, 0.3) 50%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    text-align: center;
    padding-top: calc(var(--container-padding) + 10vh);
}

.hero-text {
    max-width: 750px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--white);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    color: var(--white);
    font-size: clamp(18px, 5vw, 26px);
    margin-bottom: clamp(2rem, 6vw, 3rem);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-body);
    background: rgba(0, 0, 0, 0.4);
    padding: clamp(1rem, 3vw, 1.5rem);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile-first Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(1rem, 4vw, 2rem);
    margin: clamp(2rem, 5vw, 3rem) 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    text-align: center;
    padding: clamp(1rem, 4vw, 1.5rem);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 18px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.stat-label {
    color: var(--white);
    font-size: clamp(12px, 3vw, 14px);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

/* Mobile-first Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-top: clamp(2rem, 5vw, 3rem);
    align-items: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-buttons .cta-schedule {
    animation: pulse-schedule 2s ease-in-out infinite;
}

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

/* About Vitality Concierge Nursing Section */
.about-vitality {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-vitality::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.02) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.about-vitality .container {
    position: relative;
    z-index: 1;
}

.about-vitality-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
    margin-bottom: clamp(3rem, 6vw, 4rem);
}

@media (min-width: 768px) {
    .about-vitality-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-vitality-text {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
}

.about-intro h3 {
    color: var(--text-primary);
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.about-intro p {
    color: var(--text-secondary);
    font-size: clamp(16px, 4vw, 19px);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(99, 102, 241, 0.04) 100%);
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 
        0 15px 30px rgba(99, 102, 241, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06),
        0 4px 12px rgba(99, 102, 241, 0.08),
        0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.value-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 25px 50px rgba(99, 102, 241, 0.18),
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(99, 102, 241, 0.12),
        0 3px 8px rgba(0, 0, 0, 0.06);
    border-color: rgba(99, 102, 241, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(99, 102, 241, 0.06) 100%);
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: clamp(50px, 10vw, 65px);
    height: clamp(50px, 10vw, 65px);
    background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
    transition: all 0.3s ease;
    position: relative;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
}

.value-icon svg {
    width: clamp(22px, 5vw, 28px);
    height: clamp(22px, 5vw, 28px);
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon svg {
    transform: scale(1.1);
}

.value-content h4 {
    color: var(--text-primary);
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    margin-bottom: clamp(0.5rem, 2vw, 0.8rem);
    line-height: 1.3;
}

.value-content p {
    color: var(--text-secondary);
    font-size: clamp(15px, 3.5vw, 17px);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.about-vitality-image {
    position: relative;
    order: -1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .about-vitality-image {
        order: 0;
    }
}

.about-vitality-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2);
}

.about-vitality-image img {
    width: 100%;
    height: clamp(350px, 50vw, 500px);
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    opacity: 1;
    visibility: visible;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-vitality-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    color: var(--white);
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 3vw, 16px);
    margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, 0.8rem);
}

.credentials span {
    background: rgba(99, 102, 241, 0.8);
    color: var(--white);
    padding: clamp(4px, 1vw, 6px) clamp(8px, 2vw, 12px);
    border-radius: 12px;
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-vitality-footer {
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(99, 102, 241, 0.02) 100%);
    padding: clamp(3rem, 5vw, 4rem);
    border-radius: 28px;
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.08);
    position: relative;
    overflow: hidden;
}

.about-vitality-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
}

.mission-statement {
    margin-bottom: clamp(2rem, 4vw, 3rem);
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.08);
}

.mission-statement h3 {
    color: var(--text-primary);
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 700;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mission-statement p {
    color: var(--indigo-blue);
    font-size: clamp(18px, 4vw, 22px);
    line-height: 1.6;
    font-style: italic;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.about-cta {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .about-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.about-cta .btn-primary,
.about-cta .btn-outline {
    padding: clamp(16px, 4vw, 20px) clamp(28px, 6vw, 36px);
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.3);
}

.about-cta .btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

/* Mobile optimizations for About Vitality section */
@media (max-width: 768px) {
    .about-vitality-content {
        gap: clamp(2rem, 5vw, 3rem);
    }
    
    .about-vitality-image {
        border-radius: 20px;
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
    }
    
    .value-item {
        padding: clamp(1.2rem, 4vw, 1.5rem);
        border-radius: 16px;
        gap: clamp(0.8rem, 2vw, 1rem);
    }
    
    .value-icon {
        width: clamp(45px, 10vw, 55px);
        height: clamp(45px, 10vw, 55px);
    }
    
    .about-vitality-footer {
        padding: clamp(2rem, 5vw, 2.5rem);
        border-radius: 20px;
    }
    
    .image-overlay {
        position: static;
        transform: none;
        background: transparent;
        margin-top: -60px;
        margin-left: clamp(1rem, 3vw, 1.5rem);
        margin-right: clamp(1rem, 3vw, 1.5rem);
        border-radius: 0 0 16px 16px;
    }
    
    .about-vitality-image:hover .image-overlay {
        transform: none;
    }
    
    .credentials {
        justify-content: center;
    }
    
    .about-cta {
        flex-direction: column;
        gap: clamp(1rem, 3vw, 1.2rem);
    }
    
    .about-cta .btn-primary,
    .about-cta .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

/* Animation for About Vitality section */
.value-item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out both;
}

.value-item:nth-child(1) { animation-delay: 0.2s; }
.value-item:nth-child(2) { animation-delay: 0.4s; }
.value-item:nth-child(3) { animation-delay: 0.6s; }

/* Mobile-responsive About Section - REDESIGNED LAYOUT */
.about {
    padding: var(--section-padding);
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

/* Desktop Redesign - New Layout Structure */
@media (min-width: 769px) {
    .about {
        background: var(--light-gray);
        padding: clamp(80px, 10vw, 120px) 0;
        position: relative;
        overflow: hidden;
    }
    
    .about .container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* About content structure */
    .about-content {
        display: flex;
        flex-direction: column;
        gap: clamp(3rem, 5vw, 5rem);
    }
    
    /* Centered title at the top */
    .about-header {
        text-align: center;
        margin-bottom: clamp(2rem, 4vw, 3rem);
    }
    
    .about-header h2 {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        color: var(--text-primary);
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
    }
    
    /* Main content - side by side layout */
    .about-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(3rem, 6vw, 6rem);
        align-items: center;
        margin-bottom: clamp(3rem, 5vw, 4rem);
    }
    
    .about-text {
        padding-right: clamp(1rem, 3vw, 2rem);
    }
    
    .about-text h3 {
        font-size: clamp(24px, 3vw, 32px);
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
        color: var(--text-primary);
        font-weight: 700;
        line-height: 1.3;
    }
    
    .about-text p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.7;
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
        color: var(--text-secondary);
    }
    
    .about-image {
        position: relative;
        height: clamp(350px, 40vw, 450px);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
        transition: all 0.3s ease;
    }
    
    .about-image:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
    }
    
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .about-image:hover img {
        transform: scale(1.02);
    }
    
    /* Features - horizontal layout under main content */
    .about-features-wrapper {
        width: 100%;
        margin-bottom: clamp(2rem, 4vw, 3rem);
    }
    
    .about-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(2rem, 3vw, 3rem);
    }
    
    .feature {
        background: var(--white);
        border-radius: 20px;
        padding: clamp(2rem, 3vw, 2.5rem);
        border: 1px solid rgba(99, 102, 241, 0.1);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.08);
        transition: all 0.3s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .feature:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
        border-color: rgba(99, 102, 241, 0.2);
    }
    
    .feature-icon {
        width: clamp(60px, 8vw, 70px);
        height: clamp(60px, 8vw, 70px);
        background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
        transition: all 0.3s ease;
    }
    
    .feature:hover .feature-icon {
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
    }
    
    .feature-icon svg {
        width: clamp(28px, 5vw, 32px);
        height: clamp(28px, 5vw, 32px);
        color: var(--white);
    }
    
    .feature-content h4 {
        color: var(--text-primary);
        margin-bottom: clamp(0.5rem, 1vw, 1rem);
        font-weight: 700;
        font-size: clamp(18px, 2.5vw, 22px);
        line-height: 1.3;
        text-align: center;
    }
    
    .feature-content p {
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.6;
        font-size: clamp(14px, 2vw, 16px);
        text-align: center;
    }
    
    /* Centered footer */
    .about-footer {
        text-align: center;
        background: var(--white);
        padding: clamp(2rem, 4vw, 3rem);
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.08);
        border: 1px solid rgba(99, 102, 241, 0.1);
    }
    
    .about-closing {
        font-style: italic;
        color: var(--indigo-blue);
        font-size: clamp(20px, 2.5vw, 24px);
        margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
        font-weight: 600;
        line-height: 1.5;
    }
    
    .about-cta {
        display: flex;
        justify-content: center;
        margin: 0;
    }
    
    .about-cta .btn-primary {
        padding: clamp(16px, 2vw, 20px) clamp(32px, 4vw, 40px);
        font-size: clamp(16px, 2vw, 18px);
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .about-cta .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    }
}

/* Mobile layout - redesigned for new structure */
@media (max-width: 768px) {
    .about-content {
        display: flex;
        flex-direction: column;
        gap: clamp(2rem, 6vw, 3rem);
    }
    
    .about-header {
        text-align: center;
        margin-bottom: clamp(1.5rem, 4vw, 2rem);
    }
    
    .about-header h2 {
        font-size: clamp(28px, 7vw, 32px);
        color: var(--text-primary);
        font-weight: 700;
        margin: 0;
        line-height: 1.2;
    }
    
    .about-main {
        display: flex;
        flex-direction: column;
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    
    .about-image {
        order: -1;
        height: clamp(250px, 60vw, 300px);
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
    }
    
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .about-text {
        text-align: center;
        padding: 0;
    }
    
    .about-text h3 {
        font-size: clamp(22px, 5vw, 26px);
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
        color: var(--text-primary);
        font-weight: 700;
        line-height: 1.3;
    }
    
    .about-text p {
        font-size: clamp(16px, 4vw, 18px);
        line-height: 1.6;
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
        color: var(--text-secondary);
        text-align: center;
    }
    
    .about-features-wrapper {
        width: 100%;
        margin-bottom: clamp(1.5rem, 4vw, 2rem);
    }
    
    .about-features {
        display: flex;
        flex-direction: column;
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    
    .feature {
        background: var(--white);
        border-radius: 16px;
        padding: clamp(1.5rem, 4vw, 2rem);
        border: 1px solid rgba(99, 102, 241, 0.1);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.08);
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        text-align: left;
    }
    
    .feature-icon {
        width: clamp(50px, 12vw, 60px);
        height: clamp(50px, 12vw, 60px);
        background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
    }
    
    .feature-icon svg {
        width: clamp(24px, 6vw, 28px);
        height: clamp(24px, 6vw, 28px);
        color: var(--white);
    }
    
    .feature-content {
        flex: 1;
    }
    
    .feature-content h4 {
        color: var(--text-primary);
        margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
        font-weight: 700;
        font-size: clamp(18px, 4vw, 20px);
        line-height: 1.3;
        text-align: left;
    }
    
    .feature-content p {
        color: var(--text-secondary);
        margin: 0;
        line-height: 1.5;
        font-size: clamp(15px, 4vw, 16px);
        text-align: left;
    }
    
    .about-footer {
        text-align: center;
        background: var(--white);
        padding: clamp(1.5rem, 4vw, 2rem);
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.08);
        border: 1px solid rgba(99, 102, 241, 0.1);
    }
    
    .about-closing {
        font-style: italic;
        color: var(--indigo-blue);
        font-size: clamp(18px, 4.5vw, 20px);
        margin: 0 0 clamp(1rem, 3vw, 1.5rem) 0;
        font-weight: 600;
        line-height: 1.5;
    }
    
    .about-cta {
        display: flex;
        justify-content: center;
        margin: 0;
    }
    
    .about-cta .btn-primary {
        padding: clamp(16px, 4vw, 18px) clamp(24px, 6vw, 32px);
        font-size: clamp(16px, 4vw, 17px);
        border-radius: 25px;
        min-height: 48px;
    }
}

.about-intro {
    font-size: clamp(16px, 4vw, 20px);
    color: var(--text-secondary);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(2rem, 5vw, 2.5rem);
    position: relative;
}

.about-features::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
    border-radius: 2px;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .about-features::before {
        left: -16px;
        width: 3px;
    }
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(99, 102, 241, 0.08) 100%);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.18),
        0 12px 25px rgba(0, 0, 0, 0.08),
        0 6px 15px rgba(99, 102, 241, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transform-origin: center;
    will-change: transform;
}

.feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.25), 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(99, 102, 241, 0.12) 100%);
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.45), 0 6px 15px rgba(0, 0, 0, 0.2);
}

.feature:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: clamp(55px, 10vw, 70px);
    height: clamp(55px, 10vw, 70px);
    background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover .feature-icon::after {
    opacity: 0.3;
    animation: pulse 1.5s infinite;
}

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

.feature-icon svg {
    width: clamp(26px, 6vw, 32px);
    height: clamp(26px, 6vw, 32px);
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.feature-content h4 {
    color: var(--text-high-contrast);
    margin-bottom: 0.75rem;
    font-weight: 800;
    font-size: clamp(20px, 5vw, 24px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.8;
    font-size: clamp(17px, 4vw, 19px);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.about-closing {
    font-style: italic;
    color: var(--indigo-blue);
    font-size: clamp(18px, 4.5vw, 22px);
    margin-bottom: 0;
    font-weight: 600;
    text-align: center;
    margin-top: clamp(1.5rem, 4vw, 2.5rem);
    padding: clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    border-radius: 16px;
    border-left: 4px solid var(--indigo-blue);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
    line-height: 1.6;
    letter-spacing: 0.01em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-image {
    position: relative;
    order: -1;
}

@media (min-width: 768px) {
    .about-image {
        order: 0;
    }
}

.about-image img {
    width: 100%;
    height: clamp(300px, 50vw, 500px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-medium);
    display: block;
    opacity: 1;
    visibility: visible;
}

/* About-specific CTA styles */
.about-cta {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-top: clamp(1.5rem, 4vw, 2rem);
    align-items: center;
}

@media (min-width: 640px) {
    .about-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* Experience Timeline Styles */
.experience-timeline {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 2.5rem);
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: clamp(1.5rem, 4vw, 2rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(45, 37, 32, 0.08);
    border-left: 4px solid var(--sage-accent);
}

.timeline-icon {
    width: clamp(55px, 10vw, 65px);
    height: clamp(55px, 10vw, 65px);
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
}

.timeline-icon svg {
    width: clamp(24px, 5vw, 30px);
    height: clamp(24px, 5vw, 30px);
    color: var(--white);
}

.timeline-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: clamp(16px, 4vw, 20px);
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    font-size: clamp(14px, 3.5vw, 16px);
}

/* Credentials Section */
.credentials {
    padding: var(--section-padding);
    background: var(--sand-light);
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
}

@media (min-width: 640px) {
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .credentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.credential-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(168, 181, 163, 0.03) 100%);
    padding: clamp(2rem, 5vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(168, 181, 163, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid rgba(168, 181, 163, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.credential-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(168, 181, 163, 0.25), 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(168, 181, 163, 0.35);
    background: linear-gradient(135deg, var(--white) 0%, rgba(168, 181, 163, 0.06) 100%);
}

.credential-icon {
    width: clamp(60px, 12vw, 75px);
    height: clamp(60px, 12vw, 75px);
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
}

.credential-icon svg {
    width: clamp(28px, 6vw, 34px);
    height: clamp(28px, 6vw, 34px);
    color: var(--white);
}

.credential-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: clamp(16px, 4vw, 18px);
}

.credential-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
    font-size: clamp(14px, 3.5vw, 16px);
}

/* Personal Photo Section */
.personal-photo {
    padding: var(--section-padding);
    background: var(--sand-medium);
}

.photo-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .photo-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (min-width: 768px) {
    .photo-container {
        order: 0;
    }
}

.photo-container img {
    width: 100%;
    max-width: clamp(300px, 60vw, 450px);
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    box-shadow: 0 25px 70px var(--shadow-deep);
    border: 4px solid var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    opacity: 1;
    visibility: visible;
}

.photo-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--sage-accent), var(--sage-light));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

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

@media (min-width: 768px) {
    .photo-text {
        text-align: left;
    }
}

.photo-intro {
    font-size: clamp(16px, 4vw, 20px);
    color: var(--text-secondary);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.7;
    max-width: 100%;
}

.photo-cta {
    display: flex;
    justify-content: center;
}

@media (min-width: 768px) {
    .photo-cta {
        justify-content: flex-start;
    }
}

/* Philosophy Section */
.philosophy {
    padding: var(--section-padding);
    background: var(--white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

@media (min-width: 768px) {
    .philosophy-content {
        grid-template-columns: 1fr 1fr;
    }
}

.philosophy-intro {
    font-size: clamp(16px, 4vw, 20px);
    color: var(--text-secondary);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.7;
}

.philosophy-principles {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(2rem, 5vw, 2.5rem);
}

.principle {
    padding: clamp(1.5rem, 4vw, 2rem);
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(45, 37, 32, 0.05);
    border-left: 4px solid var(--sage-accent);
}

.principle h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: clamp(16px, 4vw, 18px);
}

.principle p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
    font-size: clamp(14px, 3.5vw, 16px);
}

.philosophy-quote {
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    padding: clamp(2rem, 5vw, 2.5rem);
    border-radius: 20px;
    text-align: center;
    margin: clamp(2rem, 5vw, 2.5rem) 0;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
}

.philosophy-quote blockquote {
    font-size: clamp(16px, 4vw, 20px);
    font-style: italic;
    color: var(--white);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.6;
    border: none;
    padding: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.philosophy-quote cite {
    color: var(--white);
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 500;
    font-style: normal;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.philosophy-cta {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    align-items: center;
}

@media (min-width: 640px) {
    .philosophy-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.philosophy-image {
    order: -1;
}

@media (min-width: 768px) {
    .philosophy-image {
        order: 0;
    }
}

.philosophy-image img {
    width: 100%;
    height: clamp(350px, 60vw, 550px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-medium);
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Mobile-responsive Services Section */
.services {
    padding: var(--section-padding);
    background: var(--sand-light);
}

/* Enhanced mobile services layout */
@media (max-width: 768px) {
    .services {
        padding: clamp(50px, 12vw, 70px) 0;
    }
    
    /* SERVICES GRID LAYOUT - 3x3 GRID */
.services-grid {
    
        gap: clamp(24px, 6vw, 32px);
        padding: 0 var(--mobile-spacing-md, 16px);
        
        /* Better mobile grid spacing */
        margin-bottom: clamp(32px, 8vw, 48px);
    }
    
    .services .container {
        padding: 0 clamp(16px, 4vw, 24px);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.services-footer {
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.services-cta {
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(45, 37, 32, 0.1);
    border: 1px solid rgba(168, 181, 163, 0.1);
}

.services-cta h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: clamp(20px, 5vw, 28px);
}

.services-cta p {
    color: var(--text-secondary);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.7;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* SERVICE CARD STYLING - HORIZONTAL LAYOUT */
.service-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 20px;
    box-shadow: 
        0 25px 50px rgba(99, 102, 241, 0.15),
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(99, 102, 241, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(99, 102, 241, 0.15);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    
    /* Enhanced mobile card interaction */
    cursor: pointer;
    transform-origin: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    /* HORIZONTAL LAYOUT STYLING */
    display: flex;
    align-items: flex-start;
    gap: clamp(1.5rem, 3vw, 2rem);
    text-align: left;
    min-height: clamp(140px, 18vw, 180px);
}

/* Enhanced mobile service card styling */
@media (max-width: 768px) {
    .service-card {
        padding: clamp(20px, 5vw, 24px);
        border-radius: 18px;
        
        /* Mobile: Stack vertically on small screens */
        flex-direction: column;
        text-align: center;
        gap: clamp(1rem, 3vw, 1.5rem);
        min-height: auto;
        
        /* Better mobile touch feedback */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .service-card .service-icon {
        margin-bottom: clamp(0.5rem, 2vw, 1rem);
    }
    
    /* Enhanced mobile feature card styling */
    .feature {
        padding: clamp(20px, 5vw, 24px);
        border-radius: 18px;
        gap: clamp(12px, 3vw, 16px);
        
        /* Better mobile touch feedback */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .feature:active {
        transform: scale(0.98);
        transition: transform 0.15s ease;
    }
    
    .feature-icon {
        width: clamp(50px, 12vw, 60px);
        height: clamp(50px, 12vw, 60px);
    }
    
    .feature-content h4 {
        font-size: clamp(18px, 5vw, 22px);
        line-height: 1.3;
        margin-bottom: clamp(8px, 2vw, 12px);
    }
    
    .feature-content p {
        font-size: clamp(16px, 4vw, 18px);
        line-height: 1.6;
    }
    
    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.15s ease;
    }
    
    .service-card h3 {
        font-size: clamp(19px, 5vw, 23px);
        line-height: 1.3;
        margin-bottom: clamp(12px, 3vw, 16px);
    }
    
    .service-card p {
        font-size: clamp(15px, 4vw, 17px);
        line-height: 1.6;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--sage-accent), var(--sage-light));
}

.service-card:hover, .service-card:focus-within {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 80px rgba(99, 102, 241, 0.25),
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 15px 30px rgba(99, 102, 241, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.05) 100%);
}

@media (max-width: 768px) {
    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

.service-icon {
    width: clamp(80px, 12vw, 100px);
    height: clamp(80px, 12vw, 100px);
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
    transition: all 0.3s ease;
    margin-top: clamp(0.5rem, 1vw, 1rem);
}

.service-icon svg {
    width: clamp(28px, 6vw, 34px);
    height: clamp(28px, 6vw, 34px);
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: clamp(0.5rem, 1vw, 1rem);
}

.service-card h3 {
    color: var(--text-primary);
    margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
    font-weight: 700;
    font-size: clamp(20px, 4vw, 24px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    line-height: 1.3;
    text-align: left;
}

.service-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-size: clamp(16px, 3.5vw, 18px);
    font-weight: 400;
    text-align: left;
}

/* Newsletter Section */
.contact-newsletter {
    margin-top: clamp(3rem, 6vw, 4rem);
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
    border: 2px solid rgba(99, 102, 241, 0.1);
}

.newsletter-content h3 {
    color: var(--indigo-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: clamp(20px, 5vw, 28px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-content p {
    color: var(--indigo-blue);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    font-size: clamp(16px, 4vw, 18px);
    max-width: 100%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-form input {
    flex: 1;
    padding: clamp(16px, 4vw, 18px);
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 16px; /* Prevent zoom on iOS */
    background: var(--white);
    color: var(--text-primary);
    min-height: 44px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
    background: var(--white);
    color: var(--text-primary);
}

.newsletter-form button {
    background: var(--white);
    color: var(--indigo-blue);
    border: 2px solid var(--white);
    padding: clamp(16px, 4vw, 18px) clamp(24px, 6vw, 32px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(14px, 4vw, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: none;
}

.newsletter-form button:hover,
.newsletter-form button:focus {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Mobile-responsive Providers Section */
.providers {
    padding: var(--section-padding);
    background: var(--white);
}

.providers-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

@media (min-width: 768px) {
    .providers-content {
        grid-template-columns: 1fr 1fr;
    }
}

.providers-image {
    order: -1;
}

@media (min-width: 768px) {
    .providers-image {
        order: 0;
    }
}

.providers-image img {
    width: 100%;
    height: clamp(400px, 60vw, 600px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-medium);
    display: block;
    opacity: 1;
    visibility: visible;
}

.providers-intro {
    font-size: clamp(16px, 4vw, 20px);
    color: var(--text-secondary);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.7;
}

.providers-list {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.provider-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(45, 37, 32, 0.05);
}

.provider-icon {
    width: clamp(45px, 8vw, 55px);
    height: clamp(45px, 8vw, 55px);
    background: linear-gradient(135deg, var(--soft-blue), var(--sage-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(184, 200, 214, 0.2);
}

.provider-icon svg {
    width: clamp(20px, 5vw, 26px);
    height: clamp(20px, 5vw, 26px);
    color: var(--white);
}

.provider-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: clamp(16px, 4vw, 18px);
}

.provider-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: clamp(14px, 3.5vw, 16px);
}

.providers-quote {
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 18px;
    border-left: 5px solid var(--sage-accent);
    font-style: italic;
    color: var(--text-secondary);
    margin: clamp(1.5rem, 4vw, 2rem) 0;
    box-shadow: 0 8px 25px rgba(45, 37, 32, 0.08);
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.7;
    text-align: center;
}

.providers-cta {
    margin-top: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
}

/* Redesigned Benefits Section - Modern Card Layout */
.benefits {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(99, 102, 241, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

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

/* Enhanced mobile benefits layout */
@media (max-width: 768px) {
    .benefits {
        padding: clamp(50px, 12vw, 70px) 0;
    }
    
    .benefits-grid {
        gap: clamp(20px, 5vw, 24px);
        padding: 0 var(--mobile-spacing-md, 16px);
        margin-bottom: clamp(32px, 8vw, 48px);
    }
    
    .benefits .container {
        padding: 0 clamp(16px, 4vw, 24px);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(2rem, 3vw, 2.5rem);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(2.5rem, 3vw, 3rem);
    }
}

/* Redesigned Benefit Cards - Modern Horizontal Design */
.benefit-card {
    background: linear-gradient(145deg, var(--white) 0%, rgba(99, 102, 241, 0.03) 100%);
    border-radius: 24px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 
        0 8px 32px rgba(99, 102, 241, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(99, 102, 241, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(99, 102, 241, 0.08);
    cursor: pointer;
    transform-origin: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2rem);
    height: auto;
    min-height: 180px;
}

/* Modern card header with gradient background - horizontal layout */
.benefit-card-header {
    background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
    padding: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: clamp(100px, 15vw, 120px);
    height: clamp(100px, 15vw, 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating icon design */
.benefit-icon-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.benefit-card .benefit-icon {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(0.5rem, 1vw, 1rem);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        0 4px 16px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card .benefit-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    opacity: 0;
}

.benefit-card:hover .benefit-icon::before {
    transform: rotate(45deg) translateX(100%);
    opacity: 1;
}

.benefit-card .benefit-icon svg {
    width: clamp(20px, 4vw, 26px);
    height: clamp(20px, 4vw, 26px);
    color: var(--white);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* Modern card title in header - optimized for horizontal layout */
.benefit-card-header h3 {
    color: var(--white);
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
    text-align: center;
}

/* Card content area - horizontal layout */
.benefit-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    background: transparent;
    padding-left: clamp(0.5rem, 1vw, 1rem);
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: clamp(15px, 3.2vw, 17px);
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: left;
}

/* Enhanced hover effects */
.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(99, 102, 241, 0.18),
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.15);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.2),
        0 6px 24px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.benefit-card:hover .benefit-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.benefit-card:hover p {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Mobile-specific adjustments - keep horizontal on mobile too */
@media (max-width: 768px) {
    .benefit-card {
        border-radius: 20px;
        min-height: 140px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: row;
        text-align: left;
        padding: clamp(1.2rem, 3vw, 1.5rem);
        gap: clamp(1rem, 3vw, 1.5rem);
    }
    
    .benefit-card-header {
        width: clamp(70px, 12vw, 90px);
        height: clamp(70px, 12vw, 90px);
        border-radius: 50%;
        flex-shrink: 0;
    }
    
    .benefit-card-content {
        text-align: left;
        padding-left: clamp(0.5rem, 1vw, 0.8rem);
    }
    
    .benefit-card:active {
        transform: scale(0.98);
        transition: transform 0.15s ease;
    }
    
    .benefit-card:hover {
        transform: translateY(-6px) scale(1.01);
    }
    
    .benefit-card .benefit-icon {
        width: clamp(40px, 8vw, 50px);
        height: clamp(40px, 8vw, 50px);
        margin: 0 auto clamp(0.5rem, 1vw, 0.8rem);
    }
    
    .benefit-card .benefit-icon svg {
        width: clamp(20px, 5vw, 24px);
        height: clamp(20px, 5vw, 24px);
    }
    
    .benefit-card-header h3 {
        font-size: clamp(14px, 3.5vw, 16px);
        text-align: center;
    }
    
    .benefit-card p {
        font-size: clamp(15px, 4vw, 17px);
        line-height: 1.6;
        text-align: center;
    }
}

/* Desktop enhancements - horizontal layout */
@media (min-width: 769px) {
    .benefit-card {
        min-height: 160px;
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: clamp(2rem, 3vw, 2.5rem);
    }
    
    .benefit-card-header {
        width: clamp(120px, 15vw, 140px);
        height: clamp(120px, 15vw, 140px);
        border-radius: 50%;
        flex-shrink: 0;
    }
    
    .benefit-card-content {
        text-align: left;
        flex: 1;
        padding-left: clamp(1rem, 2vw, 1.5rem);
    }
    
    /* Desktop-specific hover animation */
    .benefit-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
        pointer-events: none;
    }
    
    .benefit-card:hover::after {
        left: 100%;
    }
    
    .benefit-card p {
        text-align: left;
    }
}

/* Card entrance animations */
.benefit-card {
    animation: benefitCardFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Accessibility improvements */
.benefit-card:focus-visible {
    outline: 3px solid var(--indigo-blue);
    outline-offset: 4px;
    transform: translateY(-8px) scale(1.01);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .benefit-card {
        border: 2px solid currentColor;
    }
    
    .benefit-card-header {
        background: var(--text-primary);
    }
    
    .benefit-card-header h3 {
        color: var(--white);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .benefit-card,
    .benefit-card .benefit-icon,
    .benefit-card .benefit-icon svg,
    .benefit-card p {
        transition: none;
    }
    
    .benefit-card:hover {
        transform: none;
    }
    
    .benefit-card::after,
    .benefit-card .benefit-icon::before {
        display: none;
    }
    
    @keyframes benefitCardFadeIn {
        from, to { opacity: 1; transform: none; }
    }
}

/* Mobile-responsive Experience Section */
.experience {
    padding: var(--section-padding);
    background: var(--white);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
}

@media (min-width: 768px) {
    .experience-content {
        grid-template-columns: 1fr 1fr;
    }
}

.experience-image {
    order: -1;
}

@media (min-width: 768px) {
    .experience-image {
        order: 0;
    }
}

.experience-image img {
    width: 100%;
    height: clamp(300px, 50vw, 500px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow-medium);
    display: block;
    opacity: 1;
    visibility: visible;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    margin: clamp(1.5rem, 4vw, 2rem) 0;
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(45, 37, 32, 0.08);
}

.exp-stat {
    text-align: center;
    padding: clamp(1rem, 3vw, 1.5rem);
}

.exp-number {
    display: block;
    font-size: clamp(2rem, 6vw, 2.5rem);
    font-weight: 700;
    color: var(--sage-accent);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.exp-label {
    color: var(--text-muted);
    font-size: clamp(12px, 3vw, 14px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-info {
    background: linear-gradient(135deg, var(--sand-light), var(--sand-medium));
    padding: clamp(2rem, 5vw, 2.5rem);
    border-radius: 18px;
    margin-top: clamp(1.5rem, 4vw, 2rem);
    box-shadow: 0 8px 25px rgba(45, 37, 32, 0.08);
    text-align: center;
}

.pricing-info h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: clamp(18px, 4vw, 22px);
}

.pricing-info p {
    color: var(--text-secondary);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.7;
    font-size: clamp(14px, 3.5vw, 16px);
}

/* Redesigned Contact Section - Modern Layout */
.contact-redesigned {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(99, 102, 241, 0.03) 100%);
    position: relative;
    overflow: hidden;
    
    /* Enhanced visual appeal */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

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

/* Contact Layout */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 5rem);
}

/* Contact Information Cards */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 2.5rem);
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(99, 102, 241, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 40px rgba(99, 102, 241, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(99, 102, 241, 0.15);
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.04) 100%);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.contact-card-icon {
    width: clamp(60px, 10vw, 75px);
    height: clamp(60px, 10vw, 75px);
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.35);
}

.contact-card-icon svg {
    width: clamp(24px, 5vw, 30px);
    height: clamp(24px, 5vw, 30px);
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.contact-card-content h4 {
    color: var(--text-primary);
    font-size: clamp(18px, 4vw, 22px);
    font-weight: 700;
    margin-bottom: clamp(0.5rem, 1.5vw, 0.8rem);
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card-content h4 {
    color: var(--indigo-blue);
}

.contact-card-content p {
    color: var(--text-secondary);
    font-size: clamp(15px, 3.5vw, 17px);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.5;
}

.contact-card .contact-link {
    color: var(--indigo-blue);
    font-size: clamp(16px, 3.5vw, 18px);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
    padding: clamp(8px, 2vw, 10px) clamp(12px, 3vw, 16px);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(99, 102, 241, 0.05);
}

.contact-card .contact-link:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.contact-availability {
    color: var(--text-muted);
    font-size: clamp(13px, 3vw, 15px);
    font-style: italic;
    display: block;
}

/* Main Contact Section */
.contact-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3rem, 5vw, 4rem);
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-main {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* Hero Visual */
.contact-hero-visual {
    position: relative;
    order: -1;
}

@media (min-width: 1024px) {
    .contact-hero-visual {
        order: 0;
    }
}

.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
}

.hero-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2);
}

.hero-image-container img {
    width: 100%;
    height: clamp(250px, 40vw, 400px);
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.hero-overlay-content {
    position: absolute;
    top: clamp(1rem, 3vw, 1.5rem);
    right: clamp(1rem, 3vw, 1.5rem);
    z-index: 2;
}

.consultation-badge {
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    color: var(--white);
    padding: clamp(8px, 2vw, 12px) clamp(16px, 3vw, 20px);
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 8px);
    font-weight: 600;
    font-size: clamp(13px, 3vw, 15px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.45);
    }
}

.badge-icon {
    width: clamp(18px, 3vw, 22px);
    height: clamp(18px, 3vw, 22px);
    background: rgba(255, 255, 255, 0.95);
    color: var(--indigo-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 
        0 15px 40px rgba(99, 102, 241, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
}

.form-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
    border-bottom: 2px solid rgba(99, 102, 241, 0.08);
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 15vw, 80px);
    height: 2px;
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    border-radius: 1px;
}

.form-header h3 {
    color: var(--text-primary);
    font-size: clamp(26px, 5vw, 34px);
    font-weight: 800;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.form-header p {
    color: var(--text-secondary);
    font-size: clamp(17px, 3.8vw, 20px);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Multi-Step Form */
.form-step {
    display: none;
    animation: stepFadeIn 0.4s ease-out;
}

.form-step.active {
    display: block;
}

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

.step-header {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
}

.step-number {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(16px, 3vw, 20px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    flex-shrink: 0;
}

.step-header h4 {
    color: var(--text-primary);
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 700;
    margin: 0;
}

/* Enhanced Form Inputs */
.contact-form .form-group {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.contact-form .form-group label {
    color: var(--text-primary);
    font-weight: 700;
    font-size: clamp(16px, 3.5vw, 18px);
    margin-bottom: clamp(10px, 2vw, 14px);
    display: block;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.01em;
}

.contact-form .form-group:focus-within label {
    color: var(--indigo-blue);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: clamp(16px, 3vw, 20px);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    font-size: clamp(15px, 3vw, 17px);
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.01) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.04);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--indigo-blue);
    background: var(--white);
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.1),
        0 6px 20px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08);
    transform: translateY(-1px);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(12px, 2vw, 16px);
    margin-top: clamp(12px, 2vw, 16px);
}

.checkbox-card {
    display: block;
    cursor: pointer;
    position: relative;
}

.checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-content {
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    padding: clamp(12px, 3vw, 16px);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 1.5vw, 8px);
    min-height: clamp(80px, 15vw, 100px);
    justify-content: center;
}

.checkbox-card:hover .checkbox-content {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.checkbox-card input[type="checkbox"]:checked + .checkbox-content {
    border-color: var(--indigo-blue);
    background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.checkbox-icon {
    font-size: clamp(20px, 4vw, 24px);
    display: block;
}

.checkbox-label {
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 600;
    line-height: 1.2;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    gap: clamp(1rem, 3vw, 1.5rem);
    justify-content: space-between;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.form-navigation .btn-secondary {
    background: rgba(99, 102, 241, 0.1);
    color: var(--indigo-blue);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.form-navigation .btn-secondary:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

/* Progress Indicator */
.form-progress {
    margin-top: clamp(2rem, 4vw, 3rem);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 3px;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

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

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-step {
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
    text-align: center;
    flex: 1;
}

.progress-step.active {
    color: var(--indigo-blue);
}

.progress-step.completed {
    color: var(--indigo-blue);
}

/* Trust Indicators */
.trust-indicators {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(3rem, 5vw, 4rem);
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

@media (min-width: 768px) {
    .trust-indicators {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    text-align: left;
}

@media (max-width: 767px) {
    .trust-item {
        flex-direction: column;
        text-align: center;
    }
}

.trust-icon {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.trust-icon svg {
    width: clamp(20px, 4vw, 26px);
    height: clamp(20px, 4vw, 26px);
    color: var(--white);
}

.trust-content h5 {
    color: var(--text-primary);
    font-size: clamp(16px, 3.5vw, 18px);
    font-weight: 700;
    margin-bottom: clamp(4px, 1vw, 6px);
}

.trust-content p {
    color: var(--text-secondary);
    font-size: clamp(14px, 3vw, 16px);
    margin: 0;
    line-height: 1.4;
}

/* Enhanced Newsletter Section */
.contact-newsletter {
    margin-top: clamp(4rem, 6vw, 5rem);
    background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
    padding: clamp(3rem, 5vw, 4rem);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
}

.contact-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.newsletter-header {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.newsletter-header h3 {
    color: var(--white);
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.newsletter-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 3.5vw, 18px);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.newsletter-input-group {
    display: flex;
    gap: clamp(12px, 2vw, 16px);
    max-width: 450px;
    margin: 0 auto clamp(1.5rem, 3vw, 2rem);
    flex-direction: column;
}

@media (min-width: 640px) {
    .newsletter-input-group {
        flex-direction: row;
    }
}

.newsletter-input-group input {
    flex: 1;
    padding: clamp(16px, 3vw, 20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: clamp(15px, 3vw, 17px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-group button {
    background: var(--white);
    color: var(--indigo-blue);
    border: none;
    padding: clamp(16px, 3vw, 20px) clamp(24px, 4vw, 32px);
    border-radius: 25px;
    font-weight: 700;
    font-size: clamp(15px, 3vw, 17px);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 120px;
}

.newsletter-input-group button:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    flex-wrap: wrap;
    margin-top: clamp(1rem, 2vw, 1.5rem);
}

.newsletter-benefits span {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 3vw, 16px);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Enhanced Mobile Optimizations for Contact Section */
@media (max-width: 768px) {
    .contact-redesigned {
        padding: clamp(40px, 8vw, 60px) 0;
    }
    
    .contact-hero-banner {
        padding: clamp(2rem, 5vw, 2.5rem);
        border-radius: 20px;
        margin-bottom: clamp(2rem, 5vw, 3rem);
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    
    .contact-hero-banner::before {
        border-radius: 20px 20px 0 0;
    }
    
    .contact-methods-grid {
        padding: clamp(1.5rem, 4vw, 2rem);
        border-radius: 16px;
        gap: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: clamp(2rem, 5vw, 3rem);
    }
    
    .contact-method {
        padding: clamp(2rem, 5vw, 2.5rem);
        border-radius: 20px;
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
    }
    
    .contact-method.primary-method {
        transform: scale(1.02);
        margin: clamp(0.5rem, 1.5vw, 1rem) 0;
    }
    
    .contact-method.primary-method::after {
        top: -10px;
        right: 16px;
        font-size: 11px;
        padding: 4px 12px;
    }
    
    .method-icon {
        width: clamp(65px, 12vw, 80px);
        height: clamp(65px, 12vw, 80px);
        margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
    }
    
    .method-content h4 {
        font-size: clamp(18px, 5vw, 24px);
        margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
    }
    
    .method-content p {
        font-size: clamp(15px, 4vw, 18px);
        margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .method-link {
        font-size: clamp(16px, 4vw, 20px);
        padding: clamp(14px, 3.5vw, 18px) clamp(24px, 5vw, 32px);
        border-radius: 22px;
        min-height: 52px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto clamp(0.8rem, 2vw, 1.2rem);
    }
    
    .method-note {
        font-size: clamp(13px, 3.5vw, 15px);
        padding: clamp(10px, 2.5vw, 12px) clamp(14px, 3.5vw, 18px);
        border-radius: 10px;
        margin-top: clamp(10px, 2.5vw, 14px);
    }
    
    .trust-credentials {
        padding: clamp(2rem, 5vw, 2.5rem);
        border-radius: 20px;
        margin-top: clamp(2rem, 5vw, 3rem);
    }
    
    .trust-credentials::before {
        border-radius: 20px 20px 0 0;
    }
    
    .credentials-grid {
        gap: clamp(1.5rem, 4vw, 2rem);
    }
    
    .credential-item {
        padding: clamp(1.5rem, 4vw, 2rem);
        border-radius: 14px;
        border-top: 3px solid transparent;
        border-left: none;
    }
    
    .credential-item:hover {
        border-top-color: var(--indigo-blue);
        border-left: none;
        transform: translateY(-3px);
    }
    
    .credential-icon {
        width: clamp(55px, 10vw, 70px);
        height: clamp(55px, 10vw, 70px);
        margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    }
    
    .credential-content h5 {
        font-size: clamp(16px, 4vw, 20px);
        margin-bottom: clamp(8px, 2vw, 12px);
    }
    
    .credential-content p {
        font-size: clamp(14px, 3.5vw, 16px);
    }
    
    .newsletter-section {
        padding: clamp(2.5rem, 6vw, 3rem);
        border-radius: 24px;
        margin-top: clamp(3rem, 6vw, 4rem);
    }
    
    .newsletter-content h3 {
        font-size: clamp(22px, 6vw, 30px);
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
    }
    
    .newsletter-content p {
        font-size: clamp(16px, 4vw, 19px);
        margin-bottom: clamp(1.5rem, 4vw, 2rem);
        max-width: 100%;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        gap: clamp(14px, 3.5vw, 18px);
        max-width: 100%;
    }
    
    .newsletter-input-wrapper input {
        max-width: 100%;
        width: 100%;
        padding: clamp(16px, 4vw, 20px);
        border-radius: 26px;
        min-height: 52px;
    }
    
    .newsletter-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: clamp(16px, 4vw, 20px) clamp(24px, 5vw, 32px);
        border-radius: 26px;
        min-height: 52px;
        font-size: clamp(15px, 4vw, 17px);
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: clamp(12px, 3vw, 16px);
        align-items: center;
        margin-top: clamp(1.5rem, 3vw, 2rem);
    }
    
    .newsletter-benefits span {
        font-size: clamp(13px, 3.5vw, 15px);
        padding: clamp(8px, 2vw, 10px) clamp(14px, 3.5vw, 18px);
        border-radius: 16px;
        width: 100%;
        max-width: 240px;
        text-align: center;
        justify-content: center;
    }
    
    /* Enhanced mobile touch interactions */
    .contact-method:active {
        transform: scale(0.98);
        transition: transform 0.15s ease;
    }
    
    .contact-method.primary-method:active {
        transform: scale(0.98);
    }
    
    .method-link:active {
        transform: scale(0.96);
        transition: transform 0.1s ease;
    }
    
    .newsletter-btn:active {
        transform: scale(0.96);
        transition: transform 0.1s ease;
    }
    
    /* Better mobile spacing */
    .section-header {
        padding: 0 clamp(16px, 4vw, 20px);
        margin-bottom: clamp(2rem, 5vw, 3rem);
    }
    
    .section-header h2 {
        font-size: clamp(26px, 7vw, 32px);
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
    }
    
    .section-header p {
        font-size: clamp(16px, 4vw, 19px);
        line-height: 1.5;
    }
    
    /* Enhanced mobile visual hierarchy */
    .contact-method h4 {
        color: var(--text-high-contrast, var(--text-primary));
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }
    
    .contact-method:hover h4 {
        color: var(--indigo-blue);
    }
    
    /* Better mobile readability */
    .method-content p,
    .credential-content p {
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Enhanced mobile accessibility */
    .method-link,
    .newsletter-btn {
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.2);
        tap-highlight-color: rgba(99, 102, 241, 0.2);
    }
    
    /* Mobile-specific animations */
    .contact-method,
    .credential-item {
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .contact-method:nth-child(1) { animation-delay: 0.1s; }
    .contact-method:nth-child(2) { animation-delay: 0.2s; }
    .contact-method:nth-child(3) { animation-delay: 0.3s; }
    
    .credential-item:nth-child(1) { animation-delay: 0.1s; }
    .credential-item:nth-child(2) { animation-delay: 0.2s; }
    .credential-item:nth-child(3) { animation-delay: 0.3s; }
    .credential-item:nth-child(4) { animation-delay: 0.4s; }
}

/* Legacy Contact Hero Image Styling (kept for compatibility) */
.contact-hero-image {
    width: 100%;
    max-width: 800px;
    margin: 0 auto clamp(3rem, 6vw, 4rem);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15), 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.contact-hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2), 0 12px 35px rgba(0, 0, 0, 0.12);
}

.contact-hero-image img {
    width: 100%;
    height: clamp(250px, 40vw, 400px);
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Mobile-specific contact hero image */
@media (max-width: 768px) {
    .contact-hero-image {
        margin: 0 auto clamp(2rem, 5vw, 3rem);
        border-radius: 16px;
        max-width: 100%;
    }
    
    .contact-hero-image img {
        height: clamp(200px, 50vw, 300px);
    }
    
    .contact-hero-image:hover {
        transform: translateY(-3px);
    }
}

/* Desktop-specific contact hero image */
@media (min-width: 769px) {
    .contact-hero-image {
        margin: 0 auto clamp(4rem, 6vw, 5rem);
        border-radius: 24px;
        max-width: 900px;
    }
    
    .contact-hero-image img {
        height: clamp(350px, 35vw, 450px);
    }
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 6vw, 4rem);
}

/* Enhanced Desktop Contact Layout - Professional Grid */
@media (min-width: 769px) {
    .contact {
        padding: clamp(100px, 10vw, 140px) 0;
        background: linear-gradient(135deg, var(--light-gray) 0%, rgba(99, 102, 241, 0.03) 100%);
    }
    
    .contact .container {
        max-width: 1400px;
        padding: 0 clamp(40px, 5vw, 80px);
    }
    
    /* Enhanced section header */
    .contact .section-header {
        text-align: center;
        margin: 0 auto clamp(4rem, 6vw, 5rem);
        max-width: 900px;
    }
    
    .contact .section-header h2 {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        font-weight: 800;
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }
    
    .contact .section-header p {
        font-size: clamp(20px, 2.5vw, 24px);
        color: var(--text-secondary);
        font-weight: 500;
    }
    
    /* Professional desktop contact layout */
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: clamp(4rem, 6vw, 6rem);
        align-items: start;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* Contact information sidebar */
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: clamp(2rem, 3vw, 2.5rem);
        order: 1;
    }
    
    .contact-item {
        background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
        padding: clamp(2rem, 3vw, 2.5rem);
        border-radius: 20px;
        border: 1px solid rgba(99, 102, 241, 0.06);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.08);
        text-align: center;
        transition: all 0.3s ease;
        min-height: auto;
        justify-content: flex-start;
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.12);
        border-color: rgba(99, 102, 241, 0.12);
    }
    
    .contact-item .contact-image {
        display: none;
    }
    
    .contact-item .contact-icon {
        width: clamp(60px, 8vw, 75px);
        height: clamp(60px, 8vw, 75px);
        background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto clamp(1.5rem, 2vw, 2rem);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
        position: static;
    }
    
    .contact-item .contact-icon svg {
        color: var(--white);
        width: clamp(24px, 5vw, 30px);
        height: clamp(24px, 5vw, 30px);
    }
    
    .contact-item .contact-details {
        position: static;
        margin-top: 0;
    }
    
    .contact-details h4 {
        font-size: clamp(18px, 2.5vw, 22px);
        font-weight: 700;
        margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
        color: var(--text-primary);
    }
    
    .contact-link {
        font-size: clamp(16px, 2vw, 18px);
        font-weight: 600;
        color: var(--indigo-blue);
        text-decoration: none;
        padding: clamp(8px, 1.5vw, 12px) clamp(16px, 2.5vw, 20px);
        border-radius: 12px;
        transition: all 0.3s ease;
        display: inline-block;
        margin-top: clamp(0.5rem, 1vw, 0.8rem);
    }
    
    .contact-link:hover {
        background: rgba(99, 102, 241, 0.08);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
    }
    
    /* Enhanced contact form */
    .contact-form-section {
        background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
        padding: clamp(3rem, 4vw, 4rem);
        border-radius: 24px;
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.1), 0 8px 25px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(99, 102, 241, 0.06);
        order: 2;
    }
    
    .contact-form-section h3 {
        font-size: clamp(24px, 3vw, 28px);
        font-weight: 700;
        margin-bottom: clamp(2rem, 3vw, 2.5rem);
        text-align: center;
        color: var(--text-primary);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 5vw, 3rem);
    order: 1;
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    padding: clamp(2rem, 5vw, 3rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.12),
        0 12px 25px rgba(0, 0, 0, 0.08),
        0 6px 15px rgba(45, 37, 32, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    min-width: clamp(300px, 40vw, 400px);
    width: 100%;
}

/* Desktop-specific contact item fixes to prevent text over image */
@media (min-width: 769px) {
    .contact-item {
        background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
        border: 1px solid rgba(99, 102, 241, 0.06);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.08);
        transition: all 0.3s ease;
        min-height: 300px;
        justify-content: center;
        position: relative;
        padding: clamp(2.5rem, 4vw, 3.5rem);
        min-width: clamp(350px, 45vw, 450px);
        width: 100%;
    }
    
    .contact-item .contact-image {
        display: none;
    }
    
    .contact-item .contact-icon {
        position: static;
        margin-top: 0;
        margin-bottom: clamp(1.5rem, 2vw, 2rem);
        width: clamp(60px, 8vw, 75px);
        height: clamp(60px, 8vw, 75px);
        background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
    }
    
    .contact-item .contact-icon svg {
        color: var(--white);
        width: clamp(24px, 5vw, 30px);
        height: clamp(24px, 5vw, 30px);
    }
    
    .contact-item .contact-details {
        position: static;
        margin-top: 0;
        z-index: auto;
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.12);
        border-color: rgba(99, 102, 241, 0.12);
    }
}

.contact-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    z-index: 1;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.contact-item:hover .contact-image img {
    transform: scale(1.05);
}

.contact-item .contact-icon {
    position: relative;
    z-index: 2;
    margin-top: 20%;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.contact-item .contact-details {
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.contact-item .contact-icon {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
}

@media (min-width: 768px) {
    .contact-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
}

.contact-icon {
    width: clamp(55px, 10vw, 65px);
    height: clamp(55px, 10vw, 65px);
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
}

.contact-icon svg {
    width: clamp(24px, 5vw, 30px);
    height: clamp(24px, 5vw, 30px);
    color: var(--white);
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: clamp(18px, 4vw, 20px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: clamp(16px, 3.5vw, 18px);
    font-weight: 400;
}

.contact-link {
    color: var(--sage-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(16px, 4vw, 18px);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover, .contact-link:focus {
    background: rgba(168, 181, 163, 0.1);
    text-decoration: underline;
}

/* Mobile-responsive Contact Form */
.contact-form-section {
    background: var(--white);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid rgba(168, 181, 163, 0.1);
    order: 0;
}

/* Desktop-specific form centering */
@media (min-width: 769px) {
    .contact-form-section {
        margin: 0 auto;
        text-align: center;
        background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
        border: 1px solid rgba(99, 102, 241, 0.06);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.08);
        border-radius: 24px;
        padding: clamp(2.5rem, 4vw, 3rem);
    }
    
    .contact-form-section h3 {
        color: var(--text-primary);
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
    }
    
    .contact-form {
        text-align: left;
        max-width: 100%;
    }
}

/* Enhanced mobile form spacing */
@media (max-width: 768px) {
    .contact-form-section {
        padding: clamp(24px, 6vw, 32px);
        border-radius: 20px;
        margin: var(--mobile-spacing-md, 16px) 0;
    }
}

.contact-form-section h3 {
    color: var(--text-primary);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    font-weight: 600;
    font-size: clamp(20px, 5vw, 28px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 3vw, 1.5rem);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.form-group label {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: clamp(16px, 3.5vw, 18px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: clamp(18px, 4.5vw, 20px);
    border: 2px solid var(--sand-light);
    border-radius: 12px;
    font-size: 16px; /* Prevent zoom on iOS */
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-primary);
    -webkit-appearance: none;
    appearance: none;
    min-height: var(--mobile-touch-min, 48px);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    
    /* Enhanced mobile form styling */
    line-height: 1.4;
    box-sizing: border-box;
    width: 100%;
    
    /* Better mobile focus states */
    outline: none;
    outline-offset: 2px;
    
    /* Form shadow styling */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Enhanced mobile form focus states */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 3px solid rgba(168, 181, 163, 0.3);
    border-color: var(--sage-accent);
    box-shadow: 0 0 0 4px rgba(168, 181, 163, 0.15);
    transform: scale(1.02);
}

/* Mobile-specific form validation */
@media (max-width: 768px) {
    .form-group input.error,
    .form-group select.error,
    .form-group textarea.error {
        border-color: #e74c3c;
        background-color: rgba(231, 76, 60, 0.05);
        animation: shake 0.3s ease-in-out;
    }
    
    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-5px); }
        75% { transform: translateX(5px); }
    }
    
    .field-error {
        color: #e74c3c !important;
        font-size: clamp(13px, 3.5vw, 15px) !important;
        margin-top: 6px !important;
        display: block !important;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* Enhanced mobile form field sizing */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: clamp(20px, 5vw, 22px);
        min-height: 52px;
        font-size: 16px;
        border-radius: 14px;
        
        /* Better mobile touch targets */
        margin-bottom: var(--mobile-spacing-sm, 12px);
        
        /* Prevent iOS zoom on focus */
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
        transform-origin: left top;
        
        /* Enhanced mobile form performance */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        
        /* Better mobile input handling */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        
        /* Improved mobile keyboard interaction */
        -webkit-user-select: text;
        user-select: text;
    }
    
    .form-group textarea {
        min-height: clamp(120px, 25vw, 140px);
        resize: vertical;
        
        /* Better mobile textarea handling */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .form-group label {
        font-size: clamp(15px, 4vw, 17px);
        margin-bottom: var(--mobile-spacing-sm, 12px);
        font-weight: 600;
        
        /* Better mobile label styling */
        display: block;
        width: 100%;
        cursor: pointer;
    }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage-accent);
    box-shadow: 0 0 0 4px rgba(168, 181, 163, 0.15);
    transform: scale(1.02);
}

.form-group textarea {
    resize: vertical;
    min-height: clamp(120px, 20vw, 130px);
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a89788' stroke-width='2'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
    padding-right: 50px;
}

/* Simplified Clean Footer */
.footer {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--charcoal-gray) 100%);
    color: var(--white);
    padding: clamp(40px, 6vw, 60px) 0 clamp(20px, 3vw, 30px);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
}

/* Safe area support for footer */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .footer {
        padding-bottom: calc(clamp(20px, 3vw, 30px) + env(safe-area-inset-bottom));
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 2fr 1fr;
        text-align: left;
        gap: clamp(2rem, 4vw, 3rem);
    }
}

.footer-brand {
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: clamp(0.5rem, 1.5vw, 0.8rem);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(16px, 3.6vw, 20.8px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: clamp(0.3rem, 1vw, 0.5rem);
    font-size: clamp(12px, 2.8vw, 13.6px);
    font-weight: 500;
    line-height: 1.4;
}

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(10.4px, 2.4vw, 12px);
    font-weight: 400;
    margin-top: clamp(0.3rem, 0.8vw, 0.5rem);
}

.footer-contact {
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.footer-contact h4 {
    color: var(--white);
    margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
    font-weight: 700;
    font-size: clamp(12.8px, 2.8vw, 16px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
}

.footer-contact p {
    margin-bottom: clamp(0.4rem, 1.2vw, 0.6rem);
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(11.2px, 2.56vw, 12.8px);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: clamp(5px, 1.2vw, 7px) clamp(6px, 1.5vw, 10px);
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-serving {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: clamp(10.4px, 2.4vw, 12px);
    margin-top: clamp(0.4rem, 0.8vw, 0.6rem);
}

.footer-contact a:hover,
.footer-contact a:focus {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: center;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-legal {
    flex: 1;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: clamp(0.3rem, 0.8vw, 0.5rem);
    line-height: 1.5;
    font-size: clamp(9.6px, 2.24vw, 11.2px);
    font-weight: 400;
}

.footer-bottom .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.8rem, 2vw, 1.2rem);
    justify-content: center;
    margin: 0;
}

@media (min-width: 768px) {
    .footer-bottom .footer-links {
        justify-content: flex-end;
    }
}

.footer-bottom .footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: clamp(9.6px, 2.24vw, 11.2px);
    font-weight: 500;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2.5vw, 14px);
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-bottom .footer-links a:hover,
.footer-bottom .footer-links a:focus {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Consultation Image Styling */
.consultation-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto clamp(2rem, 4vw, 2.5rem);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.12), 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.consultation-image:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.15), 0 6px 20px rgba(0, 0, 0, 0.08);
}

.consultation-image img {
    width: 100%;
    height: clamp(200px, 30vw, 300px);
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Mobile-specific consultation image */
@media (max-width: 768px) {
    .consultation-image {
        margin: 0 auto clamp(1.5rem, 4vw, 2rem);
        border-radius: 14px;
        max-width: 100%;
    }
    
    .consultation-image img {
        height: clamp(180px, 35vw, 250px);
    }
    
    .consultation-image:hover {
        transform: translateY(-2px);
    }
}

/* Desktop-specific consultation image */
@media (min-width: 769px) {
    .consultation-image {
        margin: 0 auto clamp(2rem, 4vw, 3rem);
        border-radius: 20px;
        max-width: 600px;
    }
    
    .consultation-image img {
        height: clamp(250px, 25vw, 350px);
    }
}

/* Enhanced Mobile Interactions */
@media (max-width: 768px) {
    /* Touch-friendly link areas */
    a, button, .btn-primary, .btn-secondary, .btn-tertiary {
        min-height: var(--mobile-touch-min, 48px);
        min-width: var(--mobile-touch-min, 48px);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        
        /* Enhanced mobile touch feedback */
        position: relative;
        overflow: hidden;
        
        /* Better mobile accessibility */
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        
        /* Enhanced mobile performance */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        
        /* Better mobile interaction states */
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Enhanced mobile card interactions */
    .service-card,
    .benefit-card,
    .feature {
        /* Better mobile touch feedback */
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.1);
        tap-highlight-color: rgba(99, 102, 241, 0.1);
        
        /* Enhanced mobile performance */
        contain: layout style paint;
        
        /* Better mobile interaction */
        cursor: pointer;
        
        /* Improved mobile animation */
        transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }
    
    /* Enhanced mobile form interactions */
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        /* Better mobile focus handling */
        -webkit-tap-highlight-color: transparent;
        
        /* Enhanced mobile focus states */
        outline: 3px solid rgba(99, 102, 241, 0.3);
        outline-offset: 2px;
        
        /* Better mobile keyboard interaction */
        transform: scale(1.02);
        transition: all 0.2s ease;
    }
    
    /* Improved mobile link styling */
    a:not(.btn-primary):not(.btn-secondary):not(.btn-tertiary) {
        padding: var(--mobile-spacing-xs, 8px) var(--mobile-spacing-sm, 12px);
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }
    
    a:not(.btn-primary):not(.btn-secondary):not(.btn-tertiary):active {
        background-color: rgba(168, 181, 163, 0.1);
    }
    
    /* Improved mobile card interactions */
    .service-card,
    .benefit-card {
        position: relative;
        overflow: hidden;
        
        /* Enhanced mobile card styling */
        margin-bottom: var(--mobile-spacing-md, 16px);
    }
    
    /* Mobile card touch ripple effect */
    .service-card::after,
    .benefit-card::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(168, 181, 163, 0.2);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease;
        pointer-events: none;
    }
    
    .service-card:active::after,
    .benefit-card:active::after {
        width: 200px;
        height: 200px;
    }
    
    /* Enhanced mobile section spacing */
    .section-header {
        padding: 0 var(--mobile-spacing-md, 16px);
        margin-bottom: clamp(32px, 8vw, 48px);
    }
    
    .section-header h2 {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: clamp(16px, 4.5vw, 19px);
        line-height: 1.5;
    }
}

/* Image Loading States */
.image-loading {
    background: var(--sand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-radius: 12px;
}

.image-loading::before {
    content: 'Loading...';
    color: var(--text-muted);
    font-size: 14px;
}

/* Image Error States */
.image-error {
    background: var(--sand-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-radius: 12px;
    border: 2px dashed var(--sand-taupe);
}

.image-error::before {
    content: 'Image unavailable';
    color: var(--text-muted);
    font-size: 14px;
}

/* Smooth Animations - Mobile Optimized */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Apply animations with mobile consideration */
.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.benefit-card {
    animation: slideInFromRight 0.6s ease-out;
}

.feature,
.provider-item {
    animation: scaleIn 0.6s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Staggered animation for about features */
.about-features .feature:nth-child(1) { animation-delay: 0.2s; }
.about-features .feature:nth-child(2) { animation-delay: 0.4s; }
.about-features .feature:nth-child(3) { animation-delay: 0.6s; }

/* Stagger animations */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

/* Respect 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;
        scroll-behavior: auto !important;
    }
}

/* Custom Scrollbar - Mobile Optimized */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--sand-light);
}

::-webkit-scrollbar-thumb {
    background: var(--sage-accent);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sand-deep);
}

/* Enhanced mobile scrollbar */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 3px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: rgba(168, 181, 163, 0.6);
        border-radius: 2px;
    }
    
    /* Hide scrollbar on mobile for cleaner look */
    body {
        scrollbar-width: thin;
        scrollbar-color: rgba(168, 181, 163, 0.6) transparent;
    }
    
    /* Mobile pull-to-refresh styling */
    body {
        overscroll-behavior-y: contain;
    }
    
    /* Mobile-specific smooth scrolling */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Improve mobile scroll performance */
    .hero,
    .services,
    .benefits,
    .about {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: scroll-position;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        -webkit-appearance: none;
        border-radius: 12px;
        
        /* Fix iOS zoom on focus */
        font-size: 16px !important;
        transform: scale(1);
        -webkit-text-size-adjust: 100%;
    }
    
    /* Fix iOS Safari viewport issues */
    .hero {
        min-height: -webkit-fill-available;
    }
    
    /* iOS-specific button fixes */
    .btn-primary, .btn-secondary, .btn-tertiary {
        -webkit-appearance: none;
        border-radius: 26px;
    }
    
    /* iOS safe area support */
    body {
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .navbar {
        padding-top: calc(clamp(12px, 3vw, 15px) + env(safe-area-inset-top));
    }
    
    .footer {
        padding-bottom: calc(clamp(20px, 4vw, 30px) + env(safe-area-inset-bottom));
    }
}

/* High DPI Display Optimizations */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
    .hero-background img,
    .about-image img,
    .providers-image img,
    .experience-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .service-icon svg,
    .benefit-icon svg,
    .feature-icon svg {
        shape-rendering: geometricPrecision;
    }
}

/* Mobile-specific interaction improvements */
@media (max-width: 768px) {
    /* Improve touch target spacing */
    .nav-links.mobile-menu a {
        margin-bottom: clamp(8px, 2vw, 12px);
    }
    
    /* Better mobile card spacing */
    .service-card,
    .benefit-card {
        margin-bottom: clamp(16px, 4vw, 20px);
    }
    
    /* Mobile-optimized form spacing */
    .form-group {
        margin-bottom: clamp(16px, 4vw, 20px);
    }
    
    /* Improve mobile button accessibility */
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: none;
    }
    
    /* Mobile-specific hover states (for devices that support hover) */
    @media (hover: hover) {
        .service-card:hover,
        .benefit-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(45, 37, 32, 0.15);
        }
    }
}

/* Professional Background Carousel Styles */
.professional-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(99, 102, 241, 0.02) 100%);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: clamp(280px, 35vw, 350px);
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: 300%; /* 3 items × 100% */
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateX(0%);
}

.carousel-item {
    width: 33.333%; /* 100% / 3 items */
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3rem);
    opacity: 0.7;
    transition: opacity 0.6s ease;
    position: relative;
}

.carousel-item.active {
    opacity: 1;
}

.carousel-item .feature {
    width: 100%;
    height: 100%;
    display: flex;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: center;
    padding: clamp(2rem, 4vw, 2.5rem);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(99, 102, 241, 0.04) 100%);
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.08);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    margin: 0;
    animation: none; /* Override any existing animations */
    opacity: 1; /* Override any existing opacity */
}

.carousel-item.active .feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(99, 102, 241, 0.06) 100%);
    border-color: rgba(99, 102, 241, 0.15);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
    transform: scale(1.02);
}

.carousel-item .feature-icon {
    width: clamp(60px, 10vw, 75px);
    height: clamp(60px, 10vw, 75px);
    background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
}

.carousel-item.active .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.carousel-item .feature-icon svg {
    width: clamp(28px, 6vw, 34px);
    height: clamp(28px, 6vw, 34px);
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
}

.carousel-item.active .feature-icon svg {
    transform: scale(1.1);
}

.carousel-item .feature-content h4 {
    color: #2d5016;
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 700;
    margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
    line-height: 1.3;
    transition: color 0.4s ease;
}

.carousel-item.active .feature-content h4 {
    color: #2d5016;
}

.carousel-item .feature-content p {
    color: #2d5016;
    font-size: clamp(16px, 3.5vw, 18px);
    line-height: 1.6;
    margin: 0;
    transition: color 0.4s ease;
}

.carousel-item.active .feature-content p {
    color: #2d5016;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: clamp(1rem, 3vw, 1.5rem);
    background: rgba(99, 102, 241, 0.05);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    position: relative;
}

.carousel-indicators .indicator:hover {
    border-color: rgba(99, 102, 241, 0.6);
    background: rgba(99, 102, 241, 0.2);
    transform: scale(1.2);
}

.carousel-indicators .indicator.active {
    background: var(--indigo-blue);
    border-color: var(--indigo-blue);
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.carousel-indicators .indicator.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: indicatorShine 4s linear infinite;
}

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

.carousel-indicators .indicator:focus-visible {
    outline: 2px solid var(--indigo-blue);
    outline-offset: 3px;
}

/* Carousel Animation States */
.carousel-track.slide-to-1 {
    transform: translateX(-33.333%);
}

.carousel-track.slide-to-2 {
    transform: translateX(-66.666%);
}

.carousel-track.slide-to-0 {
    transform: translateX(0%);
}

/* Enhanced carousel transitions */
.carousel-track.transitioning {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track.fast-transition {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth rotation indicator */
.professional-carousel.rotating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--indigo-blue), #4F46E5);
    animation: rotationProgress 4s linear infinite;
    z-index: 20;
    opacity: 0.7;
}

@keyframes rotationProgress {
    0% { transform: scaleX(0); transform-origin: left; }
    100% { transform: scaleX(1); transform-origin: left; }
}

/* Mobile-specific carousel adjustments */
@media (max-width: 768px) {
    .professional-carousel {
        margin: clamp(1.5rem, 4vw, 2rem) 0;
        border-radius: 16px;
        position: relative;
    }
    
    .professional-carousel.rotating::before {
        height: 3px;
        border-radius: 0 0 16px 16px;
    }
    
    .carousel-container {
        height: clamp(320px, 45vw, 380px);
        overflow: hidden;
        position: relative;
    }
    
    .carousel-item {
        padding: clamp(1.5rem, 4vw, 2rem);
        touch-action: pan-y;
    }
    
    .carousel-item .feature {
        flex-direction: column;
        text-align: center;
        gap: clamp(1rem, 3vw, 1.5rem);
        padding: clamp(1.5rem, 4vw, 2rem);
        border-radius: 16px;
        transition: all 0.3s ease;
    }
    
    .carousel-item.active .feature {
        transform: scale(1.02);
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
    }
    
    .carousel-item .feature-icon {
        margin-bottom: clamp(0.5rem, 2vw, 1rem);
    }
    
    .carousel-indicators {
        padding: clamp(0.8rem, 2vw, 1rem);
        background: rgba(99, 102, 241, 0.08);
    }
    
    .carousel-indicators .indicator {
        width: 12px;
        height: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .carousel-indicators .indicator.active {
        transform: scale(1.4);
        box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
    }
    
    /* Mobile swipe hint */
    .professional-carousel::after {
        content: 'Swipe to navigate';
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 12px;
        color: var(--text-muted);
        opacity: 0.7;
        animation: swipeHint 3s ease-in-out infinite;
    }
    
    @keyframes swipeHint {
        0%, 80%, 100% { opacity: 0.7; }
        40% { opacity: 0.3; }
    }
}

/* Desktop-specific carousel enhancements */
@media (min-width: 769px) {
    .carousel-container {
        height: clamp(300px, 25vw, 320px);
        position: relative;
    }
    
    .carousel-item .feature {
        align-items: flex-start;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .carousel-item.active .feature {
        transform: scale(1.01);
        box-shadow: 0 12px 40px rgba(99, 102, 241, 0.18);
    }
    
    .carousel-item .feature-content {
        flex: 1;
    }
    
    /* Enhanced desktop hover effects */
    .professional-carousel:hover {
        box-shadow: 0 15px 50px rgba(99, 102, 241, 0.15);
    }
    
    .professional-carousel:hover .carousel-item.active .feature {
        transform: scale(1.03);
        box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
    }
    
    .carousel-indicators {
        background: rgba(99, 102, 241, 0.06);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .carousel-indicators .indicator {
        width: 14px;
        height: 14px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .carousel-indicators .indicator:hover {
        transform: scale(1.4);
        border-color: rgba(99, 102, 241, 0.8);
        background: rgba(99, 102, 241, 0.3);
    }
    
    .carousel-indicators .indicator.active {
        transform: scale(1.5);
    }
    
    .carousel-indicators .indicator.active:hover {
        transform: scale(1.6);
    }
    
    /* Desktop keyboard navigation hint */
    .professional-carousel[tabindex]:focus::after {
        content: 'Use arrow keys to navigate';
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 13px;
        color: var(--indigo-blue);
        background: rgba(99, 102, 241, 0.1);
        padding: 4px 12px;
        border-radius: 12px;
        white-space: nowrap;
        z-index: 30;
    }
}

/* Enhanced smooth transitions for all carousel elements */
.carousel-item,
.carousel-item .feature,
.carousel-item .feature-icon,
.carousel-item .feature-icon svg,
.carousel-item .feature-content h4,
.carousel-item .feature-content p {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced carousel loading state */
.professional-carousel.loading {
    opacity: 0.7;
}

.professional-carousel.loading .carousel-track {
    transform: translateX(0%) !important;
    transition: none;
}

.professional-carousel.loading .carousel-indicators .indicator {
    animation: indicatorPulse 1.5s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Carousel ready state */
.professional-carousel.ready {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.professional-carousel.ready .carousel-indicators .indicator {
    animation: none;
}

/* Enhanced accessibility for carousel */
.professional-carousel[role="region"]:focus {
    outline: 3px solid var(--indigo-blue);
    outline-offset: 4px;
    border-radius: 20px;
}

/* Pause indicator */
.professional-carousel.paused::before {
    animation-play-state: paused;
    opacity: 0.3;
}

/* Auto-rotation active indicator */
.professional-carousel.auto-rotating {
    position: relative;
}

.professional-carousel.auto-rotating::before {
    opacity: 1;
}

/* Enhanced accessibility improvements */
.professional-carousel {
    /* Respect reduced motion preferences */
    position: relative;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        transition: none;
    }
    
    .professional-carousel.rotating::before {
        display: none;
    }
    
    .carousel-indicators .indicator.active::before {
        animation: none;
    }
    
    .carousel-item,
    .carousel-item .feature,
    .carousel-item .feature-icon,
    .carousel-item .feature-icon svg,
    .carousel-item .feature-content h4,
    .carousel-item .feature-content p {
        transition: none;
    }
    
    @keyframes rotationProgress,
    @keyframes indicatorShine,
    @keyframes swipeHint,
    @keyframes indicatorPulse {
        0%, 100% { transform: none; opacity: 1; }
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .professional-carousel {
        border: 2px solid currentColor;
    }
    
    .carousel-indicators .indicator {
        border-width: 3px;
        background: transparent;
    }
    
    .carousel-indicators .indicator.active {
        background: currentColor;
    }
    
    .professional-carousel.rotating::before {
        background: currentColor;
        opacity: 1;
    }
}

/* Enhanced Mobile Typography with Better Readability */
@media (max-width: 768px) {
    /* Improved mobile heading hierarchy with better contrast */
    h1 {
        font-size: clamp(32px, 8vw, 40px);
        line-height: 1.1;
        margin-bottom: clamp(16px, 4vw, 20px);
        font-weight: 800;
        
        /* Enhanced mobile readability */
        letter-spacing: -0.02em;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        
        /* Better mobile text contrast */
        color: var(--text-high-contrast, var(--text-primary));
    }
    
    h2 {
        font-size: clamp(26px, 7vw, 32px);
        line-height: 1.15;
        margin-bottom: clamp(14px, 3.5vw, 18px);
        font-weight: 700;
    }
    
    h3 {
        font-size: clamp(22px, 6vw, 26px);
        line-height: 1.2;
        margin-bottom: clamp(12px, 3vw, 16px);
        font-weight: 700;
    }
    
    h4 {
        font-size: clamp(20px, 5vw, 22px);
        line-height: 1.25;
        margin-bottom: clamp(10px, 2.5vw, 14px);
        font-weight: 700;
    }
    
    /* Enhanced mobile hero text contrast and readability */
    .hero h1 {
        text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 1px 1px 4px rgba(0, 0, 0, 0.8);
        font-weight: 900;
        font-size: clamp(32px, 8vw, 40px);
        background: rgba(0, 0, 0, 0.6);
        padding: clamp(16px, 4vw, 20px) clamp(20px, 5vw, 24px);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        display: inline-block;
        color: var(--white);
        
        /* Better mobile text layout */
        max-width: 95vw;
        box-sizing: border-box;
        
        /* Enhanced mobile hero typography */
        line-height: 1.1;
        letter-spacing: -0.02em;
        word-spacing: 0.1em;
        
        /* Better mobile hero accessibility */
        max-width: 90vw;
        text-align: center;
        
        /* Enhanced mobile hero animation */
        animation: heroTextIn 1s ease-out;
    }
    
    @keyframes heroTextIn {
        from {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .hero-subtitle {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        font-size: clamp(19px, 5.5vw, 24px);
        line-height: 1.5;
        font-weight: 500;
        color: var(--white);
        
        /* Enhanced mobile subtitle styling */
        background: rgba(0, 0, 0, 0.5);
        padding: clamp(16px, 4vw, 20px);
        border-radius: 10px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin: clamp(20px, 5vw, 24px) auto;
        max-width: 95vw;
        display: block;
        text-align: center;
        box-sizing: border-box;
        
        /* Better mobile subtitle readability */
        letter-spacing: 0.01em;
        word-spacing: 0.05em;
        
        /* Enhanced mobile subtitle animation */
        animation: heroSubtitleIn 1s ease-out 0.3s both;
    }
    
    @keyframes heroSubtitleIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Enhanced mobile section headers */
    .section-header h2 {
        font-size: clamp(26px, 7vw, 32px);
        font-weight: 800;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        line-height: 1.2;
        margin-bottom: clamp(16px, 4vw, 20px);
        word-wrap: break-word;
    }
    
    .section-header p {
        font-size: clamp(17px, 4.5vw, 20px);
        font-weight: 500;
        color: var(--text-secondary);
        line-height: 1.5;
        max-width: 100%;
    }
    
    .section-header {
        padding: 0 clamp(16px, 4vw, 20px);
        margin-bottom: clamp(40px, 10vw, 60px);
    }
}

/* Performance Optimizations */
.service-card,
.benefit-card,
.hero-background {
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

/* Enhanced mobile performance optimizations */
@media (max-width: 768px) {
    /* Reduce will-change usage on mobile for better performance */
    .service-card,
    .benefit-card {
        will-change: auto;
    }
    
    .service-card:active,
    .benefit-card:active {
        will-change: transform;
    }
    
    /* Better mobile scroll performance */
    body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Optimize mobile images */
    img {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
    }
    
    /* Mobile-specific GPU acceleration */
    .hero-background,
    .mobile-menu,
    .navbar {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Optimize animations for mobile */
    .service-card,
    .benefit-card,
    .feature,
    .hero-background,
    .mobile-menu,
    .navbar {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Improve mobile scrolling performance */
    body {
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
    
    /* Optimize mobile image loading */
    img {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
    
    /* Reduce motion for better mobile performance */
    .service-card, .benefit-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    /* Optimize mobile images */
    img {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    /* Mobile-specific GPU acceleration */
    .hero-background,
    .mobile-menu,
    .navbar {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-perspective: 1000;
        perspective: 1000;
    }
    
    /* Optimize mobile rendering */
    .service-card,
    .benefit-card,
    .feature,
    .testimonial-card {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Mobile-specific content optimization */
    .hero-content,
    .section-header {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Mobile-specific image optimization */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    /* Mobile battery optimization */
    .reduce-motion {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    /* Battery-conscious animations */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
        
        .hero-background,
        .service-card,
        .benefit-card {
            transform: none !important;
        }
    }
    
    /* Mobile data-saving mode */
    @media (prefers-reduced-data: reduce) {
        .hero-background img,
        .about-image img,
        .experience-image img {
            display: none;
        }
        
        .hero-background::before {
            display: block;
        }
        
        /* Show text alternatives for images */
        .image-alt-text {
            display: block !important;
            padding: clamp(20px, 5vw, 30px);
            background: var(--sand-light);
            border-radius: 12px;
            text-align: center;
            color: var(--text-muted);
            font-style: italic;
        }
    }
}
}

/* DESKTOP CLEANUP & FINAL POLISH */

/* Remove will-change after animations complete */
.animation-complete {
    will-change: auto;
}

/* Desktop-specific smooth animations */
@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
    .service-card,
    .benefit-card {
        animation: fadeInUp 0.8s ease-out both;
    }
    
    .feature {
        animation: slideInFromLeft 0.8s ease-out both;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes slideInFromLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Desktop hover states for better UX */
@media (min-width: 769px) and (hover: hover) {
    .service-card:hover,
    .benefit-card:hover {
        cursor: pointer;
    }
    
    .nav-links a:hover {
        cursor: pointer;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-tertiary:hover {
        cursor: pointer;
    }
}

/* Desktop-specific performance optimizations */
@media (min-width: 769px) {
    /* Optimize desktop rendering */
    .service-card,
    .benefit-card,
    .feature {
        contain: layout style paint;
    }
    
    /* Desktop GPU acceleration */
    .hero-background,
    .navbar {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
    
    /* Desktop image loading optimization */
    img {
        loading: lazy;
        decoding: async;
    }
    
    /* Desktop font optimization */
    body {
        font-display: swap;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

/* RESPONSIVE BREAKPOINT UTILITIES - CLEANED UP */

/* Extra small devices */
@media (max-width: 479px) {
    .xs-hidden { display: none !important; }
    .xs-only { display: block !important; }
}

@media (min-width: 480px) and (max-width: 767px) {
    .sm-hidden { display: none !important; }
    .sm-only { display: block !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .md-hidden { display: none !important; }
    .md-only { display: block !important; }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .lg-hidden { display: none !important; }
    .lg-only { display: block !important; }
}

@media (min-width: 1200px) {
    .xl-hidden { display: none !important; }
    .xl-only { display: block !important; }
}

/* Enhanced mobile-first grid system */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.col {
    flex: 1;
    padding: 0 8px;
    min-width: 0;
}

@media (max-width: 767px) {
    .row {
        margin: 0 -4px;
    }
    
    .col {
        padding: 0 4px;
    }
    
    .col-mobile-full {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-mobile-half {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Enhanced form responsiveness */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr !important;
        gap: clamp(12px, 3vw, 16px) !important;
    }
    
    .form-group {
        margin-bottom: clamp(16px, 4vw, 20px) !important;
    }
    
    .checkbox-group {
        gap: clamp(12px, 3vw, 16px) !important;
    }
    
    .checkbox-group label {
        font-size: clamp(15px, 4vw, 17px) !important;
        line-height: 1.4 !important;
    }
}

/* Enhanced button responsiveness */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column !important;
        gap: clamp(16px, 4vw, 20px) !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .hero-buttons .btn-tertiary {
        width: 100% !important;
        max-width: 320px !important;
        justify-content: center !important;
    }
}

/* Enhanced navigation responsiveness */
@media (max-width: 767px) {
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: var(--z-navbar) !important;
    }
    
    .nav-container {
        padding: 0 clamp(16px, 4vw, 20px) !important;
    }
    
    .nav-logo h2 {
        font-size: clamp(1.1rem, 4vw, 1.3rem) !important;
    }
    
    .nav-tagline {
        font-size: clamp(11px, 3vw, 13px) !important;
    }
}

/* Enhanced footer responsiveness */
@media (max-width: 767px) {
    .footer {
        padding: clamp(30px, 6vw, 40px) 0 clamp(15px, 3vw, 20px);
    }
    
    .footer-main {
        grid-template-columns: 1fr !important;
        gap: clamp(20px, 5vw, 24px) !important;
        text-align: center !important;
    }
    
    .footer-brand {
        margin-bottom: clamp(16px, 4vw, 20px) !important;
    }
    
    .footer-brand h3 {
        font-size: clamp(18px, 4vw, 22px) !important;
        margin-bottom: clamp(8px, 2vw, 12px) !important;
    }
    
    .footer-brand p {
        font-size: clamp(14px, 3.5vw, 16px) !important;
        margin-bottom: clamp(4px, 1vw, 6px) !important;
    }
    
    .footer-tagline {
        font-size: clamp(12px, 3vw, 14px) !important;
    }
    
    .footer-contact {
        margin-bottom: clamp(12px, 3vw, 16px) !important;
    }
    
    .footer-contact h4 {
        font-size: clamp(15px, 3.5vw, 18px) !important;
        margin-bottom: clamp(12px, 3vw, 16px) !important;
    }
    
    .footer-contact a {
        font-size: clamp(13px, 3.2vw, 15px) !important;
        padding: clamp(8px, 2vw, 10px) clamp(12px, 3vw, 14px) !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        gap: clamp(12px, 3vw, 16px) !important;
        text-align: center !important;
        padding-top: clamp(16px, 4vw, 20px) !important;
    }
    
    .footer-legal p {
        font-size: clamp(11px, 2.8vw, 13px) !important;
        margin-bottom: clamp(4px, 1vw, 6px) !important;
    }
    
    .footer-bottom .footer-links {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: clamp(12px, 3vw, 16px) !important;
    }
    
    .footer-bottom .footer-links a {
        font-size: clamp(11px, 2.8vw, 13px) !important;
        padding: clamp(8px, 2vw, 10px) clamp(12px, 3vw, 14px) !important;
    }
}

/* Mobile accessibility improvements */
@media (max-width: 768px) {
    /* Improve mobile screen reader support */
    .sr-only {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }
    
    /* Mobile-specific ARIA labels */
    .mobile-menu[aria-hidden="true"] {
        visibility: hidden;
        pointer-events: none;
    }
    
    .mobile-menu[aria-hidden="false"] {
        visibility: visible;
        pointer-events: auto;
    }
}

/* Mobile-specific loading states */
@media (max-width: 768px) {
    .loading {
        position: relative;
        overflow: hidden;
    }
    
    .loading::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        animation: shimmer 1.5s infinite;
    }
    
    @keyframes shimmer {
        0% { left: -100%; }
        100% { left: 100%; }
    }
    
    /* Mobile-specific error states */
    .error-state {
        padding: clamp(20px, 5vw, 24px);
        text-align: center;
        background: rgba(231, 76, 60, 0.1);
        border: 1px solid rgba(231, 76, 60, 0.3);
        border-radius: 12px;
        margin: clamp(16px, 4vw, 20px) 0;
    }
    
    .error-state h4 {
        color: #e74c3c;
        margin-bottom: 8px;
        font-size: clamp(16px, 4vw, 18px);
    }
    
    .error-state p {
        color: #c0392b;
        font-size: clamp(14px, 3.5vw, 16px);
        margin: 0;
    }
}

/* Focus Management */
.focus-visible {
    outline: 2px solid var(--indigo-blue);
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--indigo-blue);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10002;
    transition: top 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.skip-to-content:focus {
    top: 6px;
}

/* Print Styles */
@media print {
    .navbar,
    .nav-toggle,
    .hero-buttons,
    .contact-form-section {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-content {
        color: var(--text-primary) !important;
    }
    
    .section-padding {
        padding: 1rem 0 !important;
    }
}

/* DESKTOP FINAL OPTIMIZATIONS */

/* Desktop-only professional enhancements */
@media (min-width: 769px) {
    /* Smooth desktop scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    /* Professional desktop shadows */
    .navbar {
        box-shadow: 0 2px 20px rgba(99, 102, 241, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    }
    
    /* Desktop image optimizations */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    /* Desktop performance optimizations */
    .service-card,
    .benefit-card,
    .hero-background {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
    }
    
    /* Professional desktop typography */
    .section-header h2 {
        color: var(--text-high-contrast, var(--text-primary));
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .section-header p {
        color: var(--text-secondary);
        font-weight: 500;
    }
    
    /* Desktop button enhancements */
    .btn-primary:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .btn-secondary:active,
    .btn-tertiary:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Desktop card stagger animations */
    .service-card:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .service-card:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .service-card:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    .benefit-card:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .benefit-card:nth-child(2) {
        animation-delay: 0.2s;
    }
    
    .benefit-card:nth-child(3) {
        animation-delay: 0.3s;
    }
    
    /* Desktop focus management */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
        outline: 2px solid var(--indigo-blue);
        outline-offset: 2px;
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    }
    
    /* Desktop accessibility improvements */
    .skip-to-content {
        position: absolute;
        top: -40px;
        left: 6px;
        background: var(--indigo-blue);
        color: var(--white);
        padding: 8px 16px;
        text-decoration: none;
        border-radius: 4px;
        z-index: 10002;
        transition: top 0.3s ease;
        font-weight: 600;
    }
    
    .skip-to-content:focus {
        top: 6px;
    }
    
    /* Desktop print optimizations */
    @media print {
        .navbar,
        .hero-buttons,
        .contact-form-section {
            display: none !important;
        }
        
        .hero {
            min-height: auto;
            padding: 2rem 0;
        }
        
        .hero-background {
            display: none;
        }
        
        .hero-content {
            color: var(--text-primary) !important;
        }
        
        section {
            padding: 1rem 0 !important;
        }
        
        .service-card,
        .benefit-card {
            break-inside: avoid;
            page-break-inside: avoid;
        }
    }
}

/* Form validation styling */
.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.field-error {
    color: #e74c3c;
    font-size: clamp(13px, 3vw, 15px);
    margin-top: 6px;
    display: block;
    font-weight: 500;
}

.form-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: var(--white);
    padding: clamp(16px, 4vw, 20px);
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    margin-top: clamp(16px, 4vw, 20px);
}

/* Enhanced Mobile-specific utility classes */
@media (max-width: 768px) {
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .mobile-center {
        text-align: center !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
    
    .mobile-no-margin {
        margin: 0 !important;
    }
    
    .mobile-small-text {
        font-size: clamp(13px, 3.5vw, 15px) !important;
    }
    
    /* Enhanced mobile container */
    .container {
        padding: 0 clamp(16px, 4vw, 24px) !important;
        max-width: 100% !important;
    }
    
    /* Better mobile section spacing */
    section {
        padding: clamp(40px, 10vw, 60px) 0 !important;
    }
    
    /* Mobile-optimized hero */
    .hero {
        padding-top: clamp(70px, 15vw, 100px) !important;
        padding-bottom: clamp(30px, 6vw, 50px) !important;
    }
    
    /* Better mobile navigation */
    .navbar {
        padding: clamp(8px, 2vw, 12px) 0 !important;
    }
    
    /* Enhanced mobile spacing utilities */
    .mobile-padding-sm {
        padding: clamp(8px, 2vw, 12px) !important;
    }
    
    .mobile-padding-md {
        padding: clamp(16px, 4vw, 20px) !important;
    }
    
    .mobile-padding-lg {
        padding: clamp(24px, 6vw, 32px) !important;
    }
    
    .mobile-margin-sm {
        margin: clamp(8px, 2vw, 12px) !important;
    }
    
    .mobile-margin-md {
        margin: clamp(16px, 4vw, 20px) !important;
    }
    
    .mobile-margin-lg {
        margin: clamp(24px, 6vw, 32px) !important;
    }
    
    /* Mobile text utilities */
    .mobile-text-xs {
        font-size: clamp(12px, 3vw, 14px) !important;
    }
    
    .mobile-text-sm {
        font-size: clamp(14px, 3.5vw, 16px) !important;
    }
    
    .mobile-text-md {
        font-size: clamp(16px, 4vw, 18px) !important;
    }
    
    .mobile-text-lg {
        font-size: clamp(18px, 4.5vw, 20px) !important;
    }
    
    .mobile-text-xl {
        font-size: clamp(20px, 5vw, 24px) !important;
    }
    
    /* Mobile layout utilities */
    .mobile-stack {
        flex-direction: column !important;
        gap: clamp(12px, 3vw, 16px) !important;
    }
    
    .mobile-scroll {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: thin !important;
    }
    
    /* Mobile card optimizations */
    .mobile-card-compact {
        padding: clamp(16px, 4vw, 20px) !important;
        border-radius: 16px !important;
        margin-bottom: clamp(12px, 3vw, 16px) !important;
    }
    
    /* Mobile button optimizations */
    .mobile-btn-full {
        width: 100% !important;
        max-width: none !important;
        margin: clamp(8px, 2vw, 12px) 0 !important;
    }
    
    .mobile-btn-compact {
        padding: clamp(12px, 3vw, 14px) clamp(20px, 5vw, 24px) !important;
        font-size: clamp(14px, 3.5vw, 16px) !important;
        min-height: 44px !important;
    }
    
    /* Additional mobile utilities */
    .mobile-sticky {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 100 !important;
    }
    
    .mobile-fixed {
        position: fixed !important;
    }
    
    .mobile-relative {
        position: relative !important;
    }
    
    .mobile-absolute {
        position: absolute !important;
    }
    
    .mobile-flex {
        display: flex !important;
    }
    
    .mobile-block {
        display: block !important;
    }
    
    .mobile-inline {
        display: inline !important;
    }
    
    .mobile-inline-block {
        display: inline-block !important;
    }
}

/* DESKTOP REDESIGN - CLEAN & PROFESSIONAL */

/* Enhanced Desktop Typography & Visual Hierarchy */
@media (min-width: 769px) {
    /* Desktop-first container improvements */
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 clamp(40px, 5vw, 80px);
    }
    
    /* Desktop section spacing - cleaner and more professional */
    section {
        padding: clamp(100px, 10vw, 140px) 0;
        position: relative;
    }
    
    /* Alternating section backgrounds for better visual separation */
    section:nth-child(even) {
        background: linear-gradient(135deg, #f8fafc 0%, rgba(99, 102, 241, 0.02) 100%);
    }
    
    section:nth-child(odd) {
        background: var(--white);
    }
    
    /* Desktop typography scaling - professional and readable */
    h1 {
        font-size: clamp(3.5rem, 5vw, 5.5rem);
        line-height: 1.1;
        letter-spacing: -0.02em;
        font-weight: 800;
        margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    }
    
    h2 {
        font-size: clamp(2.5rem, 4vw, 3.8rem);
        line-height: 1.15;
        letter-spacing: -0.01em;
        font-weight: 700;
        margin-bottom: clamp(1.2rem, 2.5vw, 2rem);
        color: var(--text-high-contrast, var(--text-primary));
    }
    
    h3 {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        line-height: 1.2;
        letter-spacing: -0.01em;
        font-weight: 600;
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }
    
    h4 {
        font-size: clamp(1.4rem, 2.5vw, 1.8rem);
        line-height: 1.3;
        font-weight: 600;
        margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
    }
    
    p {
        font-size: clamp(18px, 2vw, 21px);
        line-height: 1.7;
        color: var(--text-secondary);
        max-width: 70ch;
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
        font-weight: 400;
    }
    
    /* Desktop utility classes */
    .desktop-hidden {
        display: none !important;
    }
    
    .mobile-only {
        display: none !important;
    }
    
    .desktop-only {
        display: block !important;
    }
    
    /* Enhanced Desktop Navigation */
    .navbar {
        padding: clamp(15px, 2vw, 20px) 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(99, 102, 241, 0.08);
        box-shadow: 0 2px 20px rgba(99, 102, 241, 0.06);
    }
    
    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 clamp(40px, 5vw, 80px);
    }
    
    .nav-logo h2 {
        font-size: clamp(1.6rem, 2.5vw, 2rem);
        font-weight: 800;
        letter-spacing: -0.01em;
    }
    
    .nav-tagline {
        font-size: clamp(14px, 1.5vw, 16px);
        font-weight: 500;
    }
    
    .nav-links {
        gap: clamp(2rem, 3vw, 3rem);
    }
    
    .nav-links a {
        padding: 12px 20px;
        font-size: clamp(16px, 1.8vw, 18px);
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .nav-links a:hover {
        color: var(--indigo-blue);
        background: rgba(99, 102, 241, 0.08);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.15);
    }
    
    .nav-links a.active {
        color: var(--indigo-blue);
        background: rgba(99, 102, 241, 0.12);
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
    }
    
    /* Enhanced Desktop Hero Section - Professional and Impactful */
    .hero {
        min-height: 100vh;
        padding-top: clamp(160px, 12vw, 200px);
        padding-bottom: clamp(80px, 8vw, 100px);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }
    
    /* Hero background enhancements */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(79, 70, 229, 0.08) 0%, transparent 50%);
        z-index: 1;
        pointer-events: none;
    }
    
    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 clamp(40px, 5vw, 80px);
        z-index: 2;
        position: relative;
        width: 100%;
    }
    
    .hero-text {
        max-width: 1000px;
        text-align: center;
        margin: 0 auto;
    }
    
    /* Enhanced hero typography */
    .hero h1 {
        font-size: clamp(3.5rem, 5vw, 5.5rem);
        line-height: 1.1;
        font-weight: 900;
        letter-spacing: -0.02em;
        margin-bottom: clamp(2rem, 3vw, 2.5rem);
        
        /* Enhanced desktop hero text styling */
        background: rgba(0, 0, 0, 0.6);
        padding: clamp(2rem, 3vw, 2.5rem) clamp(2.5rem, 4vw, 3rem);
        border-radius: 20px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: inline-block;
    }
    
    .hero-subtitle {
        font-size: clamp(22px, 3vw, 28px);
        line-height: 1.6;
        font-weight: 500;
        max-width: 800px;
        margin: 0 auto clamp(2.5rem, 4vw, 3rem);
        
        /* Enhanced subtitle styling */
        background: rgba(0, 0, 0, 0.4);
        padding: clamp(1.5rem, 2.5vw, 2rem);
        border-radius: 16px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .hero h1 {
        color: var(--white);
        text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8), 1px 1px 5px rgba(0, 0, 0, 0.9);
        font-weight: 900;
        background: rgba(0, 0, 0, 0.5);
        padding: clamp(2rem, 3vw, 2.5rem) clamp(2.5rem, 4vw, 3rem);
        border-radius: 20px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: inline-block;
        margin-bottom: clamp(2rem, 3vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(22px, 3vw, 28px);
        line-height: 1.6;
        color: var(--white);
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
        background: rgba(0, 0, 0, 0.4);
        padding: clamp(1.5rem, 2.5vw, 2rem);
        border-radius: 16px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        margin-bottom: clamp(2.5rem, 4vw, 3rem);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Enhanced Desktop Buttons - Professional and Interactive */
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: clamp(20px, 2.5vw, 24px) clamp(40px, 4vw, 50px);
        font-size: clamp(17px, 2vw, 19px);
        font-weight: 700;
        border-radius: 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        text-transform: none;
        letter-spacing: 0.02em;
        cursor: pointer;
        border: 2px solid transparent;
        
        /* Enhanced desktop button styling */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        
        /* Professional shadow system */
        box-shadow: 
            0 4px 15px rgba(99, 102, 241, 0.15),
            0 2px 8px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3), 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .btn-primary:hover {
        transform: translateY(-4px) scale(1.02);
        box-shadow: 0 15px 50px rgba(99, 102, 241, 0.4), 0 8px 25px rgba(0, 0, 0, 0.15);
        background: linear-gradient(135deg, #4F46E5 0%, var(--indigo-blue) 100%);
    }
    
    .btn-secondary:hover,
    .btn-tertiary:hover {
        transform: translateY(-3px) scale(1.01);
        box-shadow: 0 12px 40px rgba(99, 102, 241, 0.25), 0 6px 20px rgba(0, 0, 0, 0.1);
    }
    
    .hero-buttons {
        display: flex;
        gap: clamp(2rem, 3vw, 2.5rem);
        justify-content: center;
        flex-wrap: wrap;
        margin-top: clamp(3rem, 4vw, 4rem);
    }
    
    /* Enhanced Desktop Section Headers - Professional Typography */
    .section-header {
        text-align: center;
        margin-bottom: clamp(4rem, 6vw, 6rem);
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 clamp(20px, 3vw, 40px);
        position: relative;
    }
    
    .section-header::after {
        content: '';
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        width: clamp(60px, 10vw, 100px);
        height: 3px;
        background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
        border-radius: 2px;
    }
    
    .section-header h2 {
        color: var(--text-high-contrast, var(--text-primary));
        font-size: clamp(2.5rem, 4vw, 3.8rem);
        font-weight: 800;
        letter-spacing: -0.02em;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
        line-height: 1.15;
    }
    
    .section-header p {
        font-size: clamp(20px, 2.5vw, 24px);
        color: var(--text-secondary);
        font-weight: 500;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
        letter-spacing: 0.01em;
    }
    
    .section-tag {
        display: inline-block;
        padding: clamp(10px, 1.5vw, 12px) clamp(24px, 3vw, 30px);
        background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
        color: var(--white);
        border-radius: 25px;
        font-size: clamp(13px, 1.5vw, 15px);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }
    
    /* Enhanced Desktop Cards - Professional Interactive Design */
    .service-card,
    .benefit-card,
    .feature {
        padding: clamp(2.5rem, 4vw, 3.5rem);
        border-radius: 24px;
        background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
        border: 1px solid rgba(99, 102, 241, 0.08);
        box-shadow: 
            0 4px 6px rgba(99, 102, 241, 0.04),
            0 10px 25px rgba(99, 102, 241, 0.08),
            0 2px 4px rgba(0, 0, 0, 0.02);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        cursor: pointer;
        height: 100%;
        display: flex;
        flex-direction: column;
        
        /* Professional desktop card enhancements */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        
        /* Enhanced desktop interaction states */
        transform-origin: center;
        will-change: transform, box-shadow;
    }
    
    /* Desktop card content layout */
    .service-card > *,
    .benefit-card > *,
    .feature > * {
        position: relative;
        z-index: 2;
    }
    
    .service-card p,
    .benefit-card p {
        flex: 1;
        margin-bottom: 0;
    }
    
    /* Enhanced desktop card visual effects */
    .service-card::before,
    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
        transform: scaleX(0);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1;
    }
    
    /* Desktop card background glow effect */
    .service-card::after,
    .benefit-card::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        z-index: 1;
        opacity: 0;
    }
    
    /* Enhanced desktop card hover states */
    .service-card:hover,
    .benefit-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 
            0 25px 60px rgba(99, 102, 241, 0.15),
            0 50px 100px rgba(99, 102, 241, 0.08),
            0 10px 20px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.06) 100%);
        border-color: rgba(99, 102, 241, 0.2);
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 35px rgba(99, 102, 241, 0.35);
    }
    
    .service-card:hover::after,
    .benefit-card:hover::after {
        width: 300px;
        height: 300px;
        opacity: 1;
    }
    
    /* Desktop card icon enhancements */
    .service-card:hover .service-icon,
    .benefit-card:hover .benefit-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 35px rgba(99, 102, 241, 0.35);
    }
    
    .service-card:hover h3,
    .benefit-card:hover h3 {
        color: var(--indigo-blue);
        transform: translateY(-2px);
    }
    
    .service-card:hover::before,
    .benefit-card:hover::before {
        transform: scaleX(1);
    }
    
    /* Enhanced desktop card typography */
    .service-card h3,
    .benefit-card h3 {
        font-size: clamp(22px, 2.5vw, 26px);
        font-weight: 700;
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
        color: var(--text-primary);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        letter-spacing: -0.01em;
        line-height: 1.3;
    }
    
    .service-card p,
    .benefit-card p {
        font-size: clamp(17px, 2vw, 19px);
        line-height: 1.7;
        color: var(--text-secondary);
        margin: 0;
        font-weight: 400;
        letter-spacing: 0.01em;
        transition: color 0.3s ease;
    }
    
    .service-card:hover p,
    .benefit-card:hover p {
        color: var(--text-primary);
    }
    
    .service-card:hover h3,
    .benefit-card:hover h3 {
        color: var(--indigo-blue);
    }
    
    .service-card p,
    .benefit-card p {
        font-size: clamp(17px, 2vw, 19px);
        line-height: 1.7;
        color: var(--text-secondary);
        margin: 0;
    }
    
    /* Enhanced Desktop Grids - Responsive and Professional */
    .services-grid,
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(2rem, 3vw, 3rem);
        margin-bottom: clamp(3rem, 5vw, 4rem);
        
        /* Enhanced grid container */
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 clamp(20px, 3vw, 40px);
    }
    
    /* Responsive grid adjustments */
    @media (min-width: 1400px) {
        .services-grid,
        .benefits-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(3rem, 4vw, 4rem);
            max-width: 1400px;
        }
    }
    
    @media (min-width: 769px) and (max-width: 1100px) {
        .services-grid,
        .benefits-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(2rem, 3vw, 2.5rem);
        }
    }
    
    /* Enhanced grid item spacing for desktop */
    .service-card,
    .benefit-card {
        margin-bottom: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    /* Enhanced Desktop Forms */
    .contact-form-section {
        background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
        padding: clamp(3rem, 5vw, 4rem);
        border-radius: 28px;
        box-shadow: 
            0 10px 30px rgba(99, 102, 241, 0.08),
            0 4px 15px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(99, 102, 241, 0.06);
        max-width: 900px;
        margin: 0 auto;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: clamp(18px, 2.5vw, 22px);
        font-size: clamp(16px, 2vw, 18px);
        border-radius: 14px;
        border: 2px solid rgba(99, 102, 241, 0.08);
        background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.01) 100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(99, 102, 241, 0.04);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--indigo-blue);
        background: var(--white);
        box-shadow: 
            0 0 0 4px rgba(99, 102, 241, 0.08),
            0 6px 20px rgba(99, 102, 241, 0.12);
        transform: translateY(-2px);
    }
    
    .form-group input:hover,
    .form-group select:hover,
    .form-group textarea:hover {
        border-color: rgba(99, 102, 241, 0.15);
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08);
        transform: translateY(-1px);
    }
    
    .form-group label {
        font-size: clamp(16px, 2vw, 18px);
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: clamp(8px, 1.5vw, 12px);
        transition: color 0.3s ease;
    }
    
    .form-group:focus-within label {
        color: var(--indigo-blue);
    }
    
    /* Enhanced Desktop About Section */
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(4rem, 6vw, 6rem);
        align-items: center;
    }
    
    .about-features {
        display: flex;
        flex-direction: column;
        gap: clamp(2rem, 3vw, 2.5rem);
        margin: clamp(2rem, 3vw, 2.5rem) 0;
    }
    
    .feature {
        display: flex;
        gap: clamp(1.5rem, 2.5vw, 2rem);
        align-items: flex-start;
        padding: clamp(2rem, 3vw, 2.5rem);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(99, 102, 241, 0.04) 100%);
        border-radius: 20px;
        border: 1px solid rgba(99, 102, 241, 0.06);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.08);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .feature:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
        border-color: rgba(99, 102, 241, 0.15);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(99, 102, 241, 0.06) 100%);
    }
    
    .feature-icon {
        width: clamp(60px, 8vw, 75px);
        height: clamp(60px, 8vw, 75px);
        background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
        transition: all 0.3s ease;
    }
    
    .feature:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
    }
    
    .feature-content h4 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
        color: var(--text-primary);
    }
    
    .feature-content p {
        font-size: clamp(17px, 2vw, 19px);
        line-height: 1.7;
        color: var(--text-secondary);
        margin: 0;
    }
    
    /* Enhanced Desktop Footer */
    .footer {
        background: linear-gradient(135deg, var(--text-primary) 0%, var(--charcoal-gray) 100%);
        padding: clamp(80px, 8vw, 100px) 0 clamp(40px, 4vw, 50px);
    }
    
    .footer-main {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: clamp(3rem, 5vw, 4rem);
        text-align: left;
        margin-bottom: clamp(3rem, 4vw, 4rem);
    }
    
    .footer-brand h3 {
        font-size: clamp(24px, 3vw, 28px);
        font-weight: 800;
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: clamp(2rem, 3vw, 3rem);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Professional Desktop Utility Classes */
    .desktop-flex {
        display: flex !important;
    }
    
    .desktop-grid {
        display: grid !important;
    }
    
    .desktop-block {
        display: block !important;
    }
    
    .desktop-text-center {
        text-align: center !important;
    }
    
    .desktop-text-left {
        text-align: left !important;
    }
    
    .desktop-text-right {
        text-align: right !important;
    }
    
    /* Desktop spacing utilities */
    .desktop-spacing-sm {
        margin: clamp(1rem, 2vw, 1.5rem) !important;
    }
    
    .desktop-spacing-md {
        margin: clamp(2rem, 3vw, 2.5rem) !important;
    }
    
    .desktop-spacing-lg {
        margin: clamp(3rem, 4vw, 4rem) !important;
    }
    
    /* Desktop width utilities */
    .desktop-max-width {
        max-width: 1400px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .desktop-full-width {
        width: 100% !important;
    }
    
    /* Desktop visual utilities */
    .desktop-shadow-light {
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.08) !important;
    }
    
    .desktop-shadow-medium {
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.12) !important;
    }
    
    .desktop-shadow-heavy {
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15) !important;
    }
    
    /* Enhanced Desktop Visual Effects */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(79, 70, 229, 0.08) 0%, transparent 50%);
        z-index: 1;
        pointer-events: none;
    }
    
    /* Professional Desktop Animations - Smooth and Engaging */
    .hero h1 {
        animation: heroTitleDesktop 1.2s cubic-bezier(0.4, 0, 0.2, 1) both;
    }
    
    .hero-subtitle {
        animation: heroSubtitleDesktop 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    }
    
    .hero-buttons {
        animation: heroButtonsDesktop 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    }
    
    .hero-stats {
        animation: heroStatsDesktop 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
    }
    
    /* Desktop card entrance animations */
    .service-card,
    .benefit-card {
        animation: cardFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
    }
    
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }
    
    .benefit-card:nth-child(1) { animation-delay: 0.1s; }
    .benefit-card:nth-child(2) { animation-delay: 0.2s; }
    .benefit-card:nth-child(3) { animation-delay: 0.3s; }
    .benefit-card:nth-child(4) { animation-delay: 0.4s; }
    .benefit-card:nth-child(5) { animation-delay: 0.5s; }
    .benefit-card:nth-child(6) { animation-delay: 0.6s; }
    
    @keyframes cardFadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    @keyframes heroTitleDesktop {
        from {
            opacity: 0;
            transform: translateY(50px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    @keyframes heroSubtitleDesktop {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes heroButtonsDesktop {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes heroStatsDesktop {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Enhanced Desktop Stats */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: clamp(2rem, 3vw, 3rem);
        margin: clamp(3rem, 4vw, 4rem) auto;
        max-width: 800px;
    }
    
    /* Enhanced Desktop Hero Stats Design */
    .stat {
        text-align: center;
        padding: clamp(2rem, 3vw, 2.5rem);
        background: rgba(0, 0, 0, 0.5);
        border-radius: 24px;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        box-shadow: 
            0 8px 30px rgba(0, 0, 0, 0.4),
            0 4px 15px rgba(99, 102, 241, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .stat::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
        transform: scaleX(0);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .stat:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 8px 25px rgba(99, 102, 241, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
        background: rgba(0, 0, 0, 0.6);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .stat:hover::before {
        transform: scaleX(1);
    }
    
    .stat:hover .stat-number {
        transform: scale(1.05);
        text-shadow: 
            2px 2px 8px rgba(0, 0, 0, 0.8),
            0 0 20px rgba(99, 102, 241, 0.3);
    }
    
    .stat-number {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        font-weight: 900;
        color: var(--white);
        font-family: var(--font-heading);
        margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        display: block;
    }
    
    .stat-label {
        color: var(--white);
        font-size: clamp(14px, 1.8vw, 16px);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
        opacity: 0.95;
    }
    
    /* Enhanced Desktop Experience Section */
    .experience-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(4rem, 6vw, 6rem);
        align-items: center;
    }
    
    .experience-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(1.5rem, 2.5vw, 2rem);
        margin: clamp(2rem, 3vw, 2.5rem) 0;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(99, 102, 241, 0.02));
        padding: clamp(2rem, 3vw, 2.5rem);
        border-radius: 20px;
        border: 1px solid rgba(99, 102, 241, 0.08);
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.08);
    }
    
    .exp-stat {
        text-align: center;
        padding: clamp(1.5rem, 2.5vw, 2rem);
        background: var(--white);
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.06);
        transition: all 0.3s ease;
    }
    
    .exp-stat:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.12);
    }
    
    .exp-number {
        font-size: clamp(2.2rem, 3.5vw, 3rem);
        font-weight: 800;
        color: var(--indigo-blue);
        font-family: var(--font-heading);
        margin-bottom: clamp(0.5rem, 1vw, 0.8rem);
        display: block;
    }
    
    .exp-label {
        color: var(--text-muted);
        font-size: clamp(13px, 1.5vw, 15px);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
    }
    
    /* Enhanced Desktop Contact Section */
    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: clamp(2rem, 4vw, 3rem);
        align-items: start;
    }
    
    .contact-item {
        background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
        padding: clamp(2rem, 3vw, 2.5rem);
        border-radius: 20px;
        border: 1px solid rgba(99, 102, 241, 0.06);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.08);
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.12);
        border-color: rgba(99, 102, 241, 0.12);
    }
    
    .contact-icon {
        width: clamp(60px, 8vw, 75px);
        height: clamp(60px, 8vw, 75px);
        background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto clamp(1.5rem, 2vw, 2rem);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
    }
    
    .contact-details h4 {
        font-size: clamp(18px, 2.5vw, 22px);
        font-weight: 700;
        margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
        color: var(--text-primary);
    }
    
    .contact-link {
        font-size: clamp(16px, 2vw, 18px);
        font-weight: 600;
        color: var(--indigo-blue);
        text-decoration: none;
        padding: clamp(8px, 1.5vw, 12px) clamp(16px, 2.5vw, 20px);
        border-radius: 12px;
        transition: all 0.3s ease;
        display: inline-block;
        margin-top: clamp(0.5rem, 1vw, 0.8rem);
    }
    
    .contact-link:hover {
        background: rgba(99, 102, 241, 0.08);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
    }
    
    /* Enhanced Desktop Newsletter */
    .contact-newsletter {
        margin-top: clamp(4rem, 6vw, 5rem);
        background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
        padding: clamp(3rem, 5vw, 4rem);
        border-radius: 28px;
        text-align: center;
        box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
        position: relative;
        overflow: hidden;
    }
    
    .contact-newsletter::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .newsletter-content {
        position: relative;
        z-index: 2;
    }
    
    .newsletter-content h3 {
        color: var(--white);
        font-size: clamp(24px, 3vw, 32px);
        font-weight: 700;
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .newsletter-content p {
        color: rgba(255, 255, 255, 0.9);
        font-size: clamp(18px, 2.5vw, 20px);
        margin-bottom: clamp(2rem, 3vw, 2.5rem);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .newsletter-form {
        display: flex;
        gap: clamp(1rem, 2vw, 1.5rem);
        max-width: 500px;
        margin: 0 auto;
        justify-content: center;
    }
    
    .newsletter-form input {
        flex: 1;
        padding: clamp(16px, 2vw, 20px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        font-size: clamp(16px, 2vw, 18px);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    
    .newsletter-form input:focus {
        outline: none;
        border-color: rgba(255, 255, 255, 0.5);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    }
    
    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .newsletter-form button {
        background: var(--white);
        color: var(--indigo-blue);
        border: none;
        padding: clamp(16px, 2vw, 20px) clamp(24px, 3vw, 32px);
        border-radius: 25px;
        font-weight: 700;
        font-size: clamp(16px, 2vw, 18px);
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .newsletter-form button:hover {
        background: rgba(255, 255, 255, 0.95);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
    
    /* Enhanced Desktop Performance Optimizations */
    .service-card,
    .benefit-card,
    .hero-background {
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transform: translateZ(0);
    }
    
    /* Better desktop scroll performance */
    body {
        scroll-behavior: smooth;
    }
    
    /* Optimize desktop images */
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
    }
    
    /* Desktop-specific GPU acceleration */
    .hero-background,
    .navbar {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
    }
    
    /* Enhanced carousel performance for desktop */
    .professional-carousel {
        contain: layout style paint;
        will-change: auto;
    }
    
    .professional-carousel.auto-rotating {
        will-change: contents;
    }
    
    .carousel-track {
        contain: layout style;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    .carousel-item {
        contain: layout style paint;
    }
    
    /* Close desktop media query */
}

/* Contact Form Styling */
.contact-form-wrapper {
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 
        0 15px 40px rgba(99, 102, 241, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
}

.form-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
    border-bottom: 2px solid rgba(99, 102, 241, 0.08);
    position: relative;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 15vw, 80px);
    height: 2px;
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    border-radius: 1px;
}

.form-header h3 {
    color: var(--text-primary);
    font-size: clamp(26px, 5vw, 34px);
    font-weight: 800;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.form-header p {
    color: var(--text-secondary);
    font-size: clamp(17px, 3.8vw, 20px);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.contact-form .form-group label {
    color: var(--text-primary);
    font-weight: 700;
    font-size: clamp(16px, 3.5vw, 18px);
    margin-bottom: clamp(10px, 2vw, 14px);
    display: block;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.01em;
}

.contact-form .form-group:focus-within label {
    color: var(--indigo-blue);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: clamp(16px, 3vw, 20px);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    font-size: clamp(15px, 3vw, 17px);
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.01) 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.04);
    color: var(--text-primary);
    min-height: var(--mobile-touch-min, 48px);
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--indigo-blue);
    background: var(--white);
    box-shadow: 
        0 0 0 4px rgba(99, 102, 241, 0.1),
        0 6px 20px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.08);
    transform: translateY(-1px);
}

.contact-form textarea {
    resize: vertical;
    min-height: clamp(120px, 20vw, 150px);
    line-height: 1.6;
}

.contact-form button[type="submit"] {
    align-self: center;
    margin-top: clamp(1rem, 2vw, 1.5rem);
    min-width: clamp(200px, 40vw, 250px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.3);
}

.contact-form button[type="submit"]:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

/* Mobile optimizations for contact form */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: clamp(24px, 6vw, 32px);
        border-radius: 20px;
        margin: 0 clamp(16px, 4vw, 20px);
    }
    
    .form-header {
        padding-bottom: clamp(16px, 4vw, 20px);
        margin-bottom: clamp(24px, 6vw, 32px);
    }
    
    .contact-form {
        gap: clamp(20px, 5vw, 24px);
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: clamp(18px, 4vw, 22px);
        font-size: 16px; /* Prevent zoom on iOS */
        border-radius: 14px;
        min-height: 52px;
    }
    
    .contact-form textarea {
        min-height: clamp(120px, 25vw, 140px);
    }
    
    .contact-form button[type="submit"] {
        width: 100%;
        max-width: 320px;
        min-height: 52px;
        margin-top: clamp(16px, 4vw, 20px);
    }
    
    .contact-form button[type="submit"]:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Desktop enhancements for contact form */
@media (min-width: 769px) {
    .contact-form-wrapper {
        padding: clamp(3rem, 4vw, 4rem);
        border-radius: 28px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: clamp(18px, 2.5vw, 22px);
        font-size: clamp(16px, 2vw, 18px);
        border-radius: 14px;
    }
    
    .contact-form button[type="submit"] {
        padding: clamp(18px, 2.5vw, 22px) clamp(32px, 4vw, 40px);
        font-size: clamp(16px, 2vw, 18px);
        border-radius: 25px;
    }
    
    .contact-form .form-group label {
        font-size: clamp(16px, 2vw, 18px);
        margin-bottom: clamp(8px, 1.5vw, 12px);
    }
}
    

    

    

    

    
    /* Enhanced desktop hero animations */
    .hero h1 {
        animation: heroTitleIn 1.2s ease-out;
    }
    
    .hero-subtitle {
        animation: heroSubtitleIn 1.2s ease-out 0.3s both;
    }
    
    .hero-buttons {
        animation: heroButtonsIn 1.2s ease-out 0.6s both;
    }
    
    .hero-stats {
        animation: heroStatsIn 1.2s ease-out 0.9s both;
    }
    
    @keyframes heroTitleIn {
        from {
            opacity: 0;
            transform: translateY(40px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    @keyframes heroSubtitleIn {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes heroButtonsIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes heroStatsIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    

}

/* Collaboration Levels Section - Redesigned */
.collaboration-levels {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.collaboration-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

@media (min-width: 768px) {
    .collaboration-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.collaboration-tier {
    background: linear-gradient(135deg, var(--white) 0%, rgba(99, 102, 241, 0.02) 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.12), 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(99, 102, 241, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.collaboration-tier.featured {
    border-color: var(--indigo-blue);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2), 0 8px 25px rgba(0, 0, 0, 0.12);
}

.collaboration-tier:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.18), 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(99, 102, 241, 0.3);
}

.collaboration-tier.featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: clamp(12px, 3vw, 14px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    z-index: 10;
}

.tier-header {
    padding: clamp(2rem, 5vw, 2.5rem) clamp(2rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.02));
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

.collaboration-tier.featured .tier-header {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
}

.tier-icon {
    width: clamp(70px, 12vw, 85px);
    height: clamp(70px, 12vw, 85px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(1rem, 3vw, 1.5rem);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.tier-icon.essential {
    background: linear-gradient(135deg, #6366F1, #4F46E5);
}

.tier-icon.comprehensive {
    background: linear-gradient(135deg, var(--indigo-blue), var(--slate-gray));
}

.tier-icon.premium {
    background: linear-gradient(135deg, var(--slate-gray), var(--charcoal-gray));
}

.tier-icon svg {
    width: clamp(30px, 6vw, 38px);
    height: clamp(30px, 6vw, 38px);
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.tier-title h3 {
    color: var(--text-primary);
    font-size: clamp(20px, 5vw, 24px);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.tier-subtitle {
    color: var(--text-muted);
    font-size: clamp(14px, 3.5vw, 16px);
    font-style: italic;
    font-weight: 500;
}

.tier-body {
    padding: clamp(1.5rem, 4vw, 2rem) clamp(2rem, 4vw, 2.5rem);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tier-description {
    color: var(--text-secondary);
    font-size: clamp(16px, 4vw, 18px);
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.tier-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: clamp(0.75rem, 2vw, 1rem);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.tier-features .feature-item:hover {
    background: rgba(99, 102, 241, 0.08);
    border-left-color: var(--indigo-blue);
    transform: translateX(4px);
}

.tier-features .feature-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.tier-features .feature-item span:last-child {
    color: var(--text-secondary);
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.5;
    font-weight: 500;
}

.tier-footer {
    padding: clamp(1.5rem, 3vw, 2rem) clamp(2rem, 4vw, 2.5rem) clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02), rgba(99, 102, 241, 0.01));
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.collaboration-tier.featured .tier-footer {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(99, 102, 241, 0.02));
}

.tier-footer .btn-outline,
.tier-footer .btn-primary {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: clamp(14px, 3.5vw, 16px);
    min-height: 48px;
}

/* Mobile optimizations for collaboration tiers */
@media (max-width: 768px) {
    .collaboration-tier {
        border-radius: 20px;
        margin-bottom: clamp(16px, 4vw, 20px);
    }
    
    .collaboration-tier.featured {
        transform: scale(1);
        margin: clamp(8px, 2vw, 12px) 0;
    }
    
    .collaboration-tier:active {
        transform: scale(0.98);
        transition: transform 0.15s ease;
    }
    
    .tier-header {
        padding: clamp(24px, 6vw, 28px) clamp(20px, 5vw, 24px) clamp(16px, 4vw, 20px);
    }
    
    .tier-body {
        padding: clamp(20px, 5vw, 24px);
    }
    
    .tier-footer {
        padding: clamp(20px, 5vw, 24px);
    }
    
    .tier-features .feature-item {
        padding: clamp(12px, 3vw, 16px);
        border-radius: 10px;
    }
}

/* Hover effects for desktop */
@media (min-width: 769px) {
    .collaboration-tier {
        cursor: pointer;
    }
    
    .collaboration-tier:hover .tier-icon {
        transform: scale(1.05);
    }
    
    .collaboration-tier:hover .tier-icon svg {
        transform: scale(1.1);
    }
    
    .collaboration-tier.featured:hover {
        box-shadow: 0 30px 80px rgba(99, 102, 241, 0.25), 0 12px 35px rgba(0, 0, 0, 0.15);
    }
}

/* Animation delays for staggered entrance */
.collaboration-tier:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.collaboration-tier:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.collaboration-tier:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Enhanced Final mobile optimization layer */
@media (max-width: 768px) {
    /* Ensure all interactive elements are touch-friendly */
    button,
    input[type="submit"],
    input[type="button"],
    .btn-primary,
    .btn-secondary,
    .btn-tertiary,
    .contact-link,
    .nav-links a {
        min-height: 48px;
        min-width: 48px;
        padding: clamp(14px, 3.5vw, 18px) clamp(18px, 4.5vw, 24px);
        
        /* Enhanced mobile touch feedback */
        position: relative;
        overflow: hidden;
        
        /* Better mobile tap behavior */
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.15);
        tap-highlight-color: rgba(99, 102, 241, 0.15);
        
        /* Improved mobile accessibility */
        outline-offset: 4px;
        
        /* Better mobile visual feedback */
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Enhanced mobile active states */
    button:active,
    input[type="submit"]:active,
    input[type="button"]:active,
    .btn-primary:active,
    .btn-secondary:active,
    .btn-tertiary:active {
        transform: scale(0.96);
        background-color: rgba(99, 102, 241, 0.2);
    }
    
    /* Better mobile link states */
    .contact-link:active,
    .nav-links a:active {
        background-color: rgba(99, 102, 241, 0.15);
        transform: scale(0.98);
    }
    
    /* Enhanced mobile card interactions */
    .service-card,
    .benefit-card,
    .feature {
        /* Better mobile touch response */
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(99, 102, 241, 0.1);
        
        /* Enhanced mobile performance */
        contain: layout style paint;
        will-change: transform;
        
        /* Better mobile interaction feedback */
        transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease, background-color 0.2s ease;
        
        /* Improved mobile touch area */
        min-height: 44px;
        
        /* Better mobile visual feedback */
        position: relative;
        overflow: hidden;
    }
    
    /* Mobile touch ripple effect */
    .service-card::after,
    .benefit-card::after,
    .feature::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(99, 102, 241, 0.15);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
        opacity: 0;
    }
    
    .service-card:active::after,
    .benefit-card:active::after,
    .feature:active::after {
        width: 200px;
        height: 200px;
        opacity: 1;
    }
    
    /* Mobile-specific animation optimizations */
    .service-card:active,
    .benefit-card:active,
    .feature:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Enhanced mobile form interactions */
    input, select, textarea {
        /* Better mobile keyboard handling */
        -webkit-appearance: none;
        appearance: none;
        
        /* Enhanced mobile focus states */
        border-radius: 12px;
        
        /* Better mobile input performance */
        will-change: transform, box-shadow;
    }
    
    /* Mobile-specific scroll optimizations */
    .mobile-scroll::-webkit-scrollbar {
        height: 4px;
    }
    
    .mobile-scroll::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 2px;
    }
    
    .mobile-scroll::-webkit-scrollbar-thumb {
        background: rgba(99, 102, 241, 0.3);
        border-radius: 2px;
    }
    
    /* Enhanced mobile typography */
    h1, h2, h3, h4, h5, h6 {
        /* Better mobile text rendering */
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        
        /* Better mobile line breaks */
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
    }
    
    /* Mobile-specific image optimizations */
    img {
        /* Better mobile image performance */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        
        /* Enhanced mobile image rendering */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: optimize-contrast;
        
        /* Better mobile loading states */
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
    }
    
    @keyframes shimmer {
        0% { background-position: -200% 0; }
        100% { background-position: 200% 0; }
    }
    
    img.loaded {
        background: none;
        animation: none;
    }
    
    /* Optimize mobile text readability */
    p, li, td, th {
        line-height: 1.6;
        word-break: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }
    
    /* Mobile-specific link styling */
    a {
        -webkit-tap-highlight-color: rgba(168, 181, 163, 0.3);
        tap-highlight-color: rgba(168, 181, 163, 0.3);
    }
    
    /* Improve mobile form usability */
    input, select, textarea {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Mobile-specific table responsiveness */
    table {
        width: 100%;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
    
    thead, tbody, th, td, tr {
        display: block;
    }
    
    th, td {
        white-space: normal;
        text-align: left;
    }
}

/* Mobile-First Media Queries for Better Organization */

/* Extra Small Devices (phones, 320px and up) */
@media (min-width: 320px) {
    .container {
        padding: 0 16px;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: clamp(16px, 4vw, 20px);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: clamp(16px, 4vw, 20px);
    }
    
    /* Enhanced small device optimizations */
    .hero {
        padding-top: clamp(100px, 18vw, 140px);
    }
    
    .hero h1 {
        font-size: clamp(32px, 7vw, 42px);
    }
    
    .hero-subtitle {
        font-size: clamp(18px, 4.5vw, 22px);
    }
    
    .nav-links a {
        padding: 8px 14px;
        font-size: clamp(15px, 3vw, 16px);
    }
    
    .service-card,
    .benefit-card {
        padding: clamp(20px, 4vw, 24px);
    }
    
    .section-header h2 {
        font-size: clamp(28px, 6vw, 34px);
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: clamp(16px, 3vw, 20px) clamp(24px, 5vw, 32px);
        font-size: clamp(15px, 3vw, 17px);
    }
    
    /* Better small device forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: clamp(16px, 3vw, 20px);
        font-size: 16px;
        border-radius: 12px;
    }
    
    /* Enhanced small device navigation */
    .navbar {
        padding: clamp(10px, 2vw, 12px) 0;
    }
    
    .nav-logo h2 {
        font-size: clamp(1.4rem, 3.5vw, 1.6rem);
    }
    
    .nav-tagline {
        font-size: clamp(13px, 2.5vw, 15px);
    }

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Enhanced medium device optimizations */
    .hero {
        padding-top: clamp(120px, 15vw, 160px);
        padding-bottom: clamp(40px, 6vw, 60px);
    }
    
    .hero h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(20px, 3vw, 24px);
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: clamp(20px, 3vw, 24px);
    }
    
    /* Better medium device navigation */
    .nav-links {
        gap: clamp(1.5rem, 3vw, 2rem);
    }
    
    .nav-links a {
        padding: 10px 16px;
        font-size: clamp(15px, 2vw, 17px);
    }
    
    /* Enhanced medium device sections */
    section {
        padding: clamp(60px, 8vw, 80px) 0;
    }
    
    .section-header {
        margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
    }
    
    .section-header h2 {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }
    
    /* Better medium device cards */
    .service-card,
    .benefit-card {
        padding: clamp(2rem, 3vw, 2.5rem);
        border-radius: 20px;
    }
    
    /* Enhanced medium device forms */
    .contact-form-section {
        padding: clamp(2rem, 4vw, 2.5rem);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: clamp(14px, 2vw, 18px);
        border-radius: 10px;
    }
    
    /* Better medium device containers */
    .container {
        max-width: 1000px;
        padding: 0 clamp(24px, 3vw, 40px);
    }

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Enhanced large device optimizations */
    .hero {
        padding-top: clamp(140px, 12vw, 180px);
        padding-bottom: clamp(60px, 6vw, 80px);
    }
    
    .hero h1 {
        font-size: clamp(3rem, 4vw, 4rem);
    }
    
    .hero-subtitle {
        font-size: clamp(22px, 2.5vw, 26px);
    }
    
    /* Better large device navigation */
    .nav-links {
        gap: clamp(2rem, 3vw, 2.5rem);
    }
    
    .nav-links a {
        padding: 12px 18px;
        font-size: clamp(16px, 1.5vw, 18px);
    }
    
    /* Enhanced large device sections */
    section {
        padding: clamp(80px, 8vw, 100px) 0;
    }
    
    .section-header {
        margin-bottom: clamp(3rem, 5vw, 4rem);
    }
    
    .section-header h2 {
        font-size: clamp(2.5rem, 4vw, 3.2rem);
    }
    
    /* Better large device cards */
    .service-card,
    .benefit-card {
        padding: clamp(2.5rem, 3vw, 3rem);
        border-radius: 24px;
    }
    
    .service-card:hover,
    .benefit-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(99, 102, 241, 0.15), 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    /* Enhanced large device buttons */
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: clamp(18px, 2vw, 22px) clamp(32px, 3vw, 40px);
        font-size: clamp(16px, 1.5vw, 18px);
    }
    
    .btn-primary:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    }
    
    /* Better large device containers */
    .container {
        max-width: 1200px;
        padding: 0 clamp(40px, 4vw, 60px);
    }
    
    /* Enhanced large device grids */
    .services-grid,
    .benefits-grid {
        gap: clamp(2rem, 3vw, 3rem);
    }
    
    /* Better large device forms */
    .contact-form-section {
        padding: clamp(2.5rem, 4vw, 3rem);
        border-radius: 24px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: clamp(16px, 2vw, 20px);
        font-size: clamp(16px, 1.5vw, 18px);
        border-radius: 12px;
    }
    
    /* Enhanced large device hero stats */
    .hero-stats {
        gap: clamp(2rem, 3vw, 3rem);
    }
    
    .stat {
        padding: clamp(1.5rem, 2vw, 2rem);
        border-radius: 20px;
    }
    
    .stat-number {
        font-size: clamp(2rem, 3vw, 2.8rem);
    }
    
    .stat-label {
        font-size: clamp(14px, 1.5vw, 16px);
    }

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 clamp(40px, 6vw, 80px);
    }
    
    /* Enhanced extra large device optimizations */
    .hero {
        padding-top: clamp(160px, 10vw, 200px);
        padding-bottom: clamp(80px, 6vw, 100px);
    }
    
    .hero h1 {
        font-size: clamp(3.5rem, 4vw, 5rem);
        letter-spacing: -0.02em;
    }
    
    .hero-subtitle {
        font-size: clamp(24px, 2vw, 28px);
        max-width: 800px;
    }
    
    /* Better extra large device navigation */
    .navbar {
        padding: clamp(12px, 1vw, 15px) 0;
    }
    
    .nav-links {
        gap: clamp(2.5rem, 3vw, 3rem);
    }
    
    .nav-links a {
        padding: 14px 20px;
        font-size: clamp(17px, 1.2vw, 19px);
        border-radius: 10px;
    }
    
    .nav-logo h2 {
        font-size: clamp(1.6rem, 2vw, 1.8rem);
    }
    
    /* Enhanced extra large device sections */
    section {
        padding: clamp(100px, 8vw, 120px) 0;
    }
    
    .section-header {
        margin-bottom: clamp(4rem, 5vw, 5rem);
        max-width: 900px;
    }
    
    .section-header h2 {
        font-size: clamp(3rem, 4vw, 4rem);
        letter-spacing: -0.02em;
    }
    
    .section-header p {
        font-size: clamp(20px, 2vw, 24px);
        max-width: 800px;
    }
    
    /* Better extra large device cards */
    .service-card,
    .benefit-card {
        padding: clamp(3rem, 4vw, 4rem);
        border-radius: 28px;
    }
    
    .service-card h3,
    .benefit-card h3 {
        font-size: clamp(24px, 2vw, 28px);
    }
    
    .service-card p,
    .benefit-card p {
        font-size: clamp(18px, 1.5vw, 20px);
        line-height: 1.7;
    }
    
    /* Enhanced extra large device buttons */
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: clamp(20px, 2vw, 24px) clamp(36px, 3vw, 44px);
        font-size: clamp(17px, 1.5vw, 19px);
        border-radius: 30px;
    }
    
    /* Better extra large device grids */
    .services-grid,
    .benefits-grid {
        gap: clamp(3rem, 4vw, 4rem);
    }
    
    /* Enhanced extra large device forms */
    .contact-form-section {
        padding: clamp(3rem, 4vw, 4rem);
        border-radius: 28px;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: clamp(18px, 2vw, 22px);
        font-size: clamp(17px, 1.5vw, 19px);
        border-radius: 14px;
    }
    
    .form-group label {
        font-size: clamp(17px, 1.5vw, 19px);
        margin-bottom: clamp(10px, 1vw, 14px);
    }
    
    /* Better extra large device hero content */
    .hero-content {
        max-width: 1200px;
        padding-top: clamp(2rem, 3vw, 4rem);
    }
    
    .hero-text {
        max-width: 900px;
    }
    
    .hero-buttons {
        gap: clamp(24px, 3vw, 32px);
        margin-top: clamp(3rem, 4vw, 4rem);
    }
    
    /* Enhanced extra large device stats */
    .hero-stats {
        gap: clamp(3rem, 4vw, 4rem);
        margin: clamp(3rem, 4vw, 4rem) 0;
    }
    
    .stat {
        padding: clamp(2rem, 3vw, 2.5rem);
        border-radius: 24px;
    }
    
    .stat-number {
        font-size: clamp(2.5rem, 3vw, 3.5rem);
    }
    
    .stat-label {
        font-size: clamp(16px, 1.5vw, 18px);
    }
    
    /* Professional desktop visual polish */
    .service-card::before,
    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .service-card:hover::before,
    .benefit-card:hover::before {
        transform: scaleX(1);
    }
    
    /* Enhanced desktop hero background effects */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(79, 70, 229, 0.08) 0%, transparent 50%);
        z-index: 1;
        pointer-events: none;
    }
    
    /* Desktop section alternating backgrounds */
    section:nth-child(even) {
        background: linear-gradient(135deg, #f8fafc 0%, rgba(99, 102, 241, 0.02) 100%);
    }
    
    section:nth-child(odd) {
        background: var(--white);
    }
    
    /* Desktop section reveal animation */
    section {
        position: relative;
        overflow: hidden;
    }
    
    section::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--indigo-blue), transparent);
        animation: sectionReveal 2s ease-in-out;
    }
    
    @keyframes sectionReveal {
        0% { left: -100%; }
        100% { left: 100%; }
    }
    
    /* Ultra-wide desktop enhancements */
    @media (min-width: 1600px) {
        .container {
            max-width: 1600px;
            padding: 0 clamp(60px, 6vw, 100px);
        }
        
        .hero {
            padding-top: clamp(200px, 12vw, 240px);
        }
        
        .hero h1 {
            font-size: clamp(4rem, 5vw, 6rem);
        }
        
        .hero-subtitle {
            font-size: clamp(26px, 2vw, 32px);
            max-width: 900px;
        }
        
        .services-grid,
        .benefits-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: clamp(3rem, 4vw, 5rem);
        }
        
        .service-card,
        .benefit-card {
            padding: clamp(3.5rem, 4vw, 4.5rem);
        }
        
        .section-header h2 {
            font-size: clamp(3.5rem, 4vw, 5rem);
        }
        
        .section-header p {
            font-size: clamp(22px, 2vw, 26px);
        }
    }
    
    /* Professional desktop polish - close media query */
}
    

    
    /* Professional desktop navigation effects */
    .nav-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-links a:hover::before {
        left: 100%;
    }
    
    .nav-links a.active::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 20px;
        right: 20px;
        height: 2px;
        background: linear-gradient(135deg, var(--indigo-blue), #4F46E5);
        border-radius: 1px;
    }
    
    /* Enhanced desktop form styling */
    .contact-form button[type="submit"] {
        background: linear-gradient(135deg, var(--indigo-blue) 0%, #4F46E5 100%);
        border: none;
        color: var(--white);
        padding: clamp(18px, 2vw, 22px) clamp(36px, 4vw, 48px);
        border-radius: 15px;
        font-size: clamp(16px, 1.8vw, 18px);
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .contact-form button[type="submit"]:hover {
        background: linear-gradient(135deg, #4F46E5 0%, var(--indigo-blue) 100%);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    }
    
    .contact-form button[type="submit"]:active {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    }
}

/* Mobile-Specific Enhancements */

/* Landscape phone orientation */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: clamp(80px, 15vw, 100px);
        padding-bottom: clamp(20px, 4vw, 30px);
    }
    
    .hero-stats {
        display: none; /* Hide stats in landscape to save space */
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: clamp(12px, 3vw, 16px);
    }
}

/* Ultra-wide mobile screens */
@media (max-width: 480px) {
    .container {
        padding: 0 clamp(16px, 4vw, 20px);
    }
    
    .section-header {
        padding: 0 clamp(12px, 3vw, 16px);
        margin-bottom: clamp(32px, 8vw, 48px);
    }
    
    /* Better small screen typography */
    .section-header h2 {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.2;
        margin-bottom: clamp(12px, 3vw, 16px);
    }
    
    .section-header p {
        font-size: clamp(16px, 4vw, 18px);
        line-height: 1.5;
    }
    
    /* Enhanced small screen cards */
    .service-card,
    .benefit-card {
        padding: clamp(20px, 5vw, 24px);
        border-radius: 16px;
        margin-bottom: clamp(16px, 4vw, 20px);
    }
    
    /* Better small screen navigation */
    .nav-toggle {
        width: 44px;
        height: 44px;
    }
    
    .nav-logo h2 {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
    }
    
    .nav-tagline {
        font-size: clamp(12px, 3vw, 14px);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: clamp(12px, 3vw, 16px);
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .hero-buttons .btn-tertiary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        
        /* Enhanced small screen button styling */
        padding: clamp(18px, 5vw, 20px) clamp(20px, 5vw, 24px);
        font-size: clamp(16px, 4.5vw, 18px);
        
        /* Better small screen touch targets */
        min-height: 56px;
        
        /* Improved small screen interaction */
        border-radius: 28px;
    }
    
    /* Enhanced small screen navigation */
    .nav-toggle {
        width: 52px;
        height: 52px;
        padding: 14px;
    }
    
    .nav-toggle span {
        width: 24px;
        height: 2px;
    }
    
    /* Better small screen typography */
    h1 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.1;
    }
    
    h2 {
        font-size: clamp(24px, 7vw, 30px);
        line-height: 1.15;
    }
    
    /* Enhanced small screen sections */
    .section-header h2 {
        font-size: clamp(26px, 8vw, 32px);
        margin-bottom: clamp(12px, 3vw, 16px);
    }
    
    .section-header p {
        font-size: clamp(16px, 4.5vw, 18px);
        line-height: 1.5;
    }
}

/* Enhanced Tablet-specific optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: clamp(16px, 2vw, 20px);
    }
    
    .services-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(20px, 3vw, 24px);
    }
    
    /* Enhanced tablet typography */
    h1 {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        line-height: 1.1;
    }
    
    h2 {
        font-size: clamp(2rem, 5vw, 2.8rem);
        line-height: 1.15;
    }
    
    /* Better tablet navigation */
    .nav-links a {
        padding: 10px 16px;
        font-size: clamp(15px, 2vw, 17px);
    }
    
    /* Enhanced tablet forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: clamp(14px, 2vw, 18px);
        font-size: 16px;
        border-radius: 10px;
    }
    
    /* Better tablet buttons */
    .btn-primary,
    .btn-secondary,
    .btn-tertiary {
        padding: clamp(16px, 2vw, 20px) clamp(28px, 4vw, 36px);
        font-size: clamp(16px, 2vw, 18px);
        border-radius: 25px;
    }
    
    /* Enhanced tablet cards */
    .service-card,
    .benefit-card {
        padding: clamp(2rem, 4vw, 2.5rem);
        border-radius: 20px;
    }
    
    /* Better tablet hero */
    .hero {
        padding-top: clamp(120px, 15vw, 160px);
    }
    
    .hero-content {
        padding-top: clamp(1rem, 3vw, 2rem);
    }
    
    /* Enhanced tablet sections */
    section {
        padding: clamp(60px, 8vw, 80px) 0;
    }
    
    .section-header {
        margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    /* Better tablet containers */
    .container {
        max-width: 1000px;
        padding: 0 clamp(24px, 4vw, 40px);
    }

/* High-density displays (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background img,
    .about-image img,
    .experience-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Dark mode support for mobile */
@media (prefers-color-scheme: dark) {
    :root {
        --sand-cream: #1a1a1a;
        --sand-light: #2d2d2d;
        --text-primary: #ffffff;
        --text-secondary: #e0e0e0;
        --text-muted: #b0b0b0;
        --pure-white: #ffffff;
        --white: #ffffff;
    }
    
    .hero-overlay {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(45, 37, 32, 0.4) 100%);
    }
    
    /* Enhanced dark mode text visibility */
    h1, h2, h3, h4, h5, h6 {
        color: var(--white);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    p {
        color: var(--text-secondary);
    }
    
    /* Ensure white text remains white in dark mode */
    .hero h1,
    .hero h2,
    .hero-subtitle,
    .stat-number,
    .stat-label {
        color: var(--white) !important;
    }
}

/* Improved mobile focus management */
@media (max-width: 768px) {
    /* Better focus indicators for mobile */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
        outline: 3px solid var(--indigo-blue);
        outline-offset: 2px;
        box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.2);
        
        /* Enhanced mobile focus animation */
        animation: focusPulse 1.5s infinite;
    }
    
    @keyframes focusPulse {
        0%, 100% { box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.2); }
        50% { box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.1); }
    }
    
    /* Improve mobile menu accessibility */
    .nav-links.mobile-menu a:focus {
        background: rgba(99, 102, 241, 0.2);
        outline: 2px solid var(--white);
        outline-offset: 2px;
        border-radius: 12px;
    }
    
    /* Enhanced mobile keyboard navigation */
    .service-card:focus-visible,
    .benefit-card:focus-visible {
        outline: 3px solid var(--indigo-blue);
        outline-offset: 4px;
        transform: scale(1.02);
    }
    
    /* Better mobile form focus states */
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--indigo-blue);
        box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), 0 4px 12px rgba(99, 102, 241, 0.1);
        transform: scale(1.02);
        
        /* Smooth mobile focus transition */
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Mobile-specific animations */
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
    .service-card,
    .benefit-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    }
    
    .service-card:hover,
    .benefit-card:hover {
        transform: translateY(-4px);
    }
    
    /* Mobile swipe gesture hint */
    .services-grid::after,
    .benefits-grid::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: var(--sage-accent);
        border-radius: 2px;
        opacity: 0.3;
    }
}

/* ENHANCED 3x3 SERVICES GRID LAYOUT */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2.5rem !important;
    align-items: stretch !important;
}

.service-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 300px !important;
    padding: 2rem !important;
    text-align: center !important;
}

.service-card h3 {
    margin: 1.5rem 0 1rem 0 !important;
    font-size: 1.25rem !important;
    line-height: 1.4 !important;
}

.service-card p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    flex-grow: 1 !important;
}

/* Responsive adjustments for 3x3 grid */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .service-card {
        min-height: 250px !important;
        padding: 1.5rem !important;
    }
}