
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #333 100%);
    padding: 5rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx=".66" cy=".5" r=".6"><stop offset="0" stop-color="%23FFFFFF" stop-opacity=".1"/><stop offset="1" stop-color="%23FFFFFF" stop-opacity="0"/></radialGradient></defs><circle transform="translate(-50 -50)" cx="50" cy="50" r="40" fill="url(%23a)"/></svg>') repeat;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.mission-section {
    padding: 5rem 0;
    background: var(--white);
}

.mission-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--primary-color);
    margin: 2rem 0;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 2rem;
}

.values-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.value-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.stats-section {
    padding: 5rem 0;
    background: var(--charcoal);
    color: white;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.story-section {
    padding: 5rem 0;
    background: white;
}

.story-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--charcoal);
}

.story-highlight {
    background: var(--charcoal);
    background-size: 100% 0.3em;
    background-repeat: no-repeat;
    background-position: 0 88%;
    padding: 0 0.2em;
    color: white;
    font-weight: 600;
}

.team-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.team-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), #333);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.team-content {
    padding: 2rem;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: #6c757d;
    line-height: 1.6;
}

.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #333);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .mission-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .story-content {
        font-size: 1.1rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 3rem 0;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .mission-section,
    .values-section,
    .stats-section,
    .story-section,
    .team-section,
    .cta-section {
        padding: 3rem 0;
    }

    .value-card {
        margin-bottom: 2rem;
    }

    .team-image {
        height: 200px;
        font-size: 3rem;
    }
}


/* Contact Page Specific Styles */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), #333);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx=".66" cy=".5" r=".6"><stop offset="0" stop-color="%2328A745" stop-opacity=".1"/><stop offset="1" stop-color="%2328A745" stop-opacity="0"/></radialGradient></defs><circle transform="translate(-50 -50)" cx="50" cy="50" r="40" fill="url(%23a)"/></svg>') repeat;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.contact-form-card:hover {
    box-shadow: var(--shadow-hover);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Form Styles */
.contact-form .form-label {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.15);
    background: white;
}

.contact-form .form-control:valid {
    border-color: var(--primary-color);
}

.contact-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check-input {
    border: 2px solid #dee2e6;
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Contact Button */
.btn-contact {
    background: var(--secondary-dark);
    border: none;
    color: white;
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}



.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    color: #fff;
    background: var(--primary-color);
}



.btn-contact span,
.btn-contact i {
    position: relative;
    z-index: 1;
}

/* Contact Info Card */
.contact-info-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-hover);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f3f4;
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details small {
    font-size: 0.875rem;
}

/* FAQ Card */
.faq-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.faq-card:hover {
    box-shadow: var(--shadow-hover);
}

.faq-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.faq-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-link {
    color: #6c757d;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.faq-link:hover {
    color: var(--primary-color);
    background: rgba(40, 167, 69, 0.05);
    border-color: rgba(40, 167, 69, 0.2);
    transform: translateX(5px);
}

/* Social Card */
.social-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.social-card:hover {
    box-shadow: var(--shadow-hover);
}

.social-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.social-links-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    transform: scale(0);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 1.25rem;
}

/* Success Message */
.contact-success {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 500px;
    margin: 1rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.success-content h3 {
    color: var(--charcoal);
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-content p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Form Validation States */
.contact-form .was-validated .form-control:valid {
    border-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.94-.94 4.94-4.94.94.94L2.3 8.67z'/%3e%3c/svg%3e");
}

.contact-form .was-validated .form-control:invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4M6 7h0'/%3e%3c/svg%3e");
}

/* Loading State for Form */
.contact-form.loading .btn-contact {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.contact-form.loading .btn-contact::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0 2rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-info-card,
    .faq-card,
    .social-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-info-card,
    .faq-card,
    .social-card {
        padding: 1.25rem;
    }
    
    .btn-contact {
        width: 100%;
        padding: 1rem 2rem;
    }
    
    .social-links-contact {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .social-link i {
        font-size: 1.1rem;
    }
    
    .success-content {
        padding: 2rem;
        margin: 0.5rem;
    }
    
    .success-icon {
        font-size: 3rem;
    }
}

/* Focus states for accessibility */
.contact-form .form-control:focus,
.faq-link:focus,
.social-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .contact-form-card,
    .contact-info-card,
    .faq-card,
    .social-card {
        border: 1px solid #dee2e6;
    }
    
    .contact-item {
        border-bottom-color: #dee2e6;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .contact-form-card:hover,
    .contact-info-card:hover,
    .faq-card:hover,
    .social-card:hover,
    .faq-link:hover,
    .social-link:hover,
    .btn-contact:hover {
        transform: none;
    }
    
    .contact-hero::before {
        animation: none;
    }
}



/* Hero Section */
.partner-hero {
    background: linear-gradient(135deg, var(--primary-color), #333);
    padding: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.partner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx=".66" cy=".5" r=".6"><stop offset="0" stop-color="%23ffffff" stop-opacity=".1"/><stop offset="1" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle transform="translate(-50 -50)" cx="50" cy="50" r="40" fill="url(%23a)"/></svg>') repeat;
    opacity: 0.3;
}

.partner-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.partner-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Stats Section */
.partner-stats {
    background: white;
    padding: 3rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.benefit-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.benefit-description {
    color: #6c757d;
    line-height: 1.6;
}

/* Partnership Types Section */
.partnership-types {
    padding: 4rem 0;
    background: white;
}

.partnership-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: translateY(-4px);
    transition: var(--transition);
}

.partnership-card:hover::before {
    transform: translateY(0);
}

.partnership-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.partnership-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.partnership-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.partnership-features li {
    padding: 0.5rem 0;
    color: #6c757d;
    position: relative;
    padding-left: 1.5rem;
}

.partnership-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-hover);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    outline: none;
}

.form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
}

.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    outline: none;
}

.btn-submit {
    background: var(--secondary-dark);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    width: 100%;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--charcoal);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Success Stories Section */
.success-stories {
    padding: 4rem 0;
    background: var(--charcoal);
    color: white;
}

.success-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.success-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.success-metric {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

.success-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.success-description {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partner-hero {
        padding: 3rem 0;
    }
    
    .partner-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .benefit-card,
    .partnership-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
}

/* Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
