/* Corporate Wellness Page Styles */

/* Hero Section */
.corporate-hero {
    background: linear-gradient(135deg, #FFE4CC 0%, #FFDAB3 100%);
    padding: 6em 6em 4em 6em;
    margin-top: 70px;
    text-align: center;
}

.corporate-hero-content h1 {
    font-size: 48px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #D35400;
    margin-bottom: 0.5em;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 2.5em;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 2.5em 0;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #D35400;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.cta-button {
    text-decoration: none;
    display: inline-block;
}

/* Trusted By Section - Compact Collage */
.trusted-by-section {
    padding: 2.5em 6em;
    background: #fff;
    text-align: center;
}

.clients-note {
    font-size: 13px;
    color: #888;
    font-style: italic;
    margin-bottom: 1.8em;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    background: white;
    border: 1.5px solid #FFE4CC;
    border-radius: 6px;
    padding: 12px 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #D35400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    white-space: nowrap;
}

/* Add logo image support */
.client-logo img {
    max-height: 32px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(211, 84, 0, 0.12);
    border-color: #FF9933;
}

/* Corporate Programs Section */
.corporate-programs-section {
    padding: 4em 6em;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 3em;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: white;
    border: 2px solid #FFE4CC;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(211, 84, 0, 0.15);
    border-color: #FF9933;
}

.program-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.program-card h3 {
    font-size: 22px;
    color: #D35400;
    margin-bottom: 12px;
}

.program-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.program-features li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 0;
}

/* White Label Section */
.white-label-section {
    padding: 4em 6em;
    background: #00132F;
    color: white;
    text-align: center;
}

.white-label-section h2 {
    color: white;
    margin-bottom: 0.5em;
}

.section-intro {
    font-size: 18px;
    color: #ddd;
    margin-bottom: 3em;
}

.white-label-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 2.5em;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 153, 51, 0.3);
    border-radius: 12px;
    padding: 28px 20px;
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.benefit-item h4 {
    font-size: 18px;
    color: #FF9933;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

.white-label-note {
    font-size: 15px;
    color: #bbb;
    max-width: 800px;
    margin: 0 auto;
}

/* Results Section */
.results-section {
    padding: 4em 6em;
    background: white;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.result-card {
    background: linear-gradient(135deg, #FFF5ED 0%, #FFFFFF 100%);
    border: 2px solid #FFE4CC;
    border-radius: 12px;
    padding: 32px 20px;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.15);
    border-color: #FF9933;
}

.result-number {
    font-size: 42px;
    font-weight: 700;
    color: #D35400;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
}

.result-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.result-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Pricing Section */
.corporate-pricing-section {
    padding: 4em 6em;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
    text-align: center;
}

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

.pricing-card {
    background: white;
    border: 2px solid #FFE4CC;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border: 3px solid #D35400;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(211, 84, 0, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #D35400, #FF9933);
    color: white;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
}

.pricing-card h3 {
    font-size: 26px;
    color: #D35400;
    margin-bottom: 8px;
}

.pricing-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #D35400;
    font-family: 'Poppins', sans-serif;
    margin: 24px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.pricing-features li {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 8px;
}

.pricing-button {
    background: linear-gradient(135deg, #D35400, #FF9933);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(211, 84, 0, 0.3);
}

/* Contact Form Section */
.contact-form-section {
    padding: 4em 6em;
    background: white;
    text-align: center;
}

.corporate-contact-form {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #FFE4CC;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF9933;
}

.submit-button {
    background: linear-gradient(135deg, #D35400, #FF9933);
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.3);
}

.contact-info {
    margin-top: 3em;
    font-size: 15px;
    color: #666;
}

.contact-info p {
    margin: 8px 0;
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
    .corporate-hero,
    .trusted-by-section,
    .corporate-programs-section,
    .white-label-section,
    .results-section,
    .corporate-pricing-section,
    .contact-form-section {
        padding: 3em 1.5em;
    }

    .corporate-hero-content h1 {
        font-size: 32px;
    }

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

    .hero-stats {
        gap: 30px;
    }

    .stat-num {
        font-size: 28px;
    }

    .clients-logos {
        gap: 8px;
    }

    .client-logo {
        font-size: 11px;
        padding: 8px 14px;
    }

    .client-logo img {
        max-height: 24px;
        max-width: 80px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .white-label-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

/* Tablet Responsive */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .white-label-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}
