/* Corporate page specific styles */

/* Brochure Section */
.brochure-section {
    padding: 4rem 0;
    background-color: #f9f9f9;
    text-align: center;
    position: relative;
}

.brochure-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brochure-content h2 {
    color: #2D6D62;
    margin-bottom: 1rem;
}

.brochure-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.brochure-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn, .view-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2D6D62, #2EA891);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.view-btn {
    background: white;
    color: #2D6D62;
    border: 2px solid #2D6D62;
}

.view-btn:hover {
    background: #f0f0f0;
}

.download-btn:hover, .view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* PDF Viewer Modal */
.pdf-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pdf-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.pdf-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.pdf-modal-header {
    padding: 1rem 1.5rem;
    background: #2D6D62;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.5rem;
}

.pdf-viewer-container {
    flex: 1;
    overflow: auto;
    padding: 1.5rem;
    background: #f5f5f5;
}

#pdfViewer {
    width: 100%;
    min-height: 60vh;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pdf-controls {
    padding: 1rem;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid #eee;
}

.control-btn {
    background: #2D6D62;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.control-btn:hover {
    background: #1e4d3f;
}

.control-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

#pageNum, #pageCount {
    font-weight: 600;
    color: #333;
}

.pdf-download {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #eee;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brochure-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .download-btn, .view-btn {
        width: 100%;
    }
    
    .pdf-controls {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .pdf-modal-content {
        width: 95%;
    }
}

/* Corporate Form Styles */
.contact {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.contact .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form-wrapper {
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.corporate-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.map-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.map-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.get-directions-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: #2EA891;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.get-directions-btn:hover {
    background: #2D6D62;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .map-wrapper {
        min-height: 300px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.section-header h2 {
    color: #2D6D62;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2EA891, #2D6D62);
}

.section-intro {
    color: #555;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.corporate-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #777;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: #fff;
    padding: 0 0.5rem;
    border-radius: 4px;
    transform-origin: left top;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2D6D62;
    box-shadow: 0 0 0 2px rgba(45, 109, 98, 0.2);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: #2D6D62;
    background-color: #fff;
    padding: 0 0.5rem;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.25rem;
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    grid-column: 1 / -1;
}

.submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2D6D62, #2EA891);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 109, 98, 0.3);
}

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

.submit-btn.loading .btn-text {
    visibility: hidden;
    opacity: 0;
}

.submit-btn.loading .btn-loading {
    visibility: visible;
    opacity: 1;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

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

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    display: none;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.form-error {
    color: #c62828;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    min-height: 1.2rem;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #c62828;
}

.required {
    color: #c62828;
    margin-left: 2px;
}

#corporateCharCount {
    color: #666;
    font-size: 0.8rem;
    font-weight: normal;
    float: right;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .contact {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .corporate-form {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .contact {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .corporate-form {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 0.9rem 2rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header h2::after {
        height: 2px;
        bottom: -8px;
    }
    
    .corporate-form {
        padding: 1.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
}

#corporateFormMessage {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    display: none;
    grid-column: 1 / -1;
}

#corporateFormMessage.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#corporateFormMessage.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form-container {
        width: 95%;
        padding: 1rem 0;
        min-height: auto;
    }
    
    .corporate-contact-form {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        height: auto;
        max-height: none;
    }
    
    .corporate-contact-form .submit-btn {
        width: 100%;
    }
    
    .contact-form-container {
        padding: 1rem;
    }
}


/* Team Popup Styles */
.team-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    overflow-y: auto;
}

.team-popup.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin: auto;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.team-popup.active .popup-content {
    transform: translateY(0);
}

.popup-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.popup-content .role {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
}

.popup-content p:not(.role) {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
}

.close-popup {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(45, 109, 98, 0.1);
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-popup:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
}

@media (max-width: 640px) {
    .team-popup {
        padding: 1rem;
    }

    .popup-content {
        padding: 2rem;
        max-height: calc(100vh - 2rem);
    }

    .popup-content h3 {
        font-size: 1.75rem;
    }

    .popup-content p:not(.role) {
        font-size: 1rem;
    }

    .close-popup {
        top: 1rem;
        right: 1rem;
    }
}

/* Form status styles */
.form-status {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: center;
}

.form-status.info {
    background-color: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
}

.form-status.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-status.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Hero Section */
.corporate-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(45, 109, 98, 0.9), rgba(46, 168, 145, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    width: clamp(120px, 25vw, 200px);
    margin-bottom: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

/* About Section */
.about-section {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.ocean-waves {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 168, 145, 0.1) 0%, rgba(45, 109, 98, 0.15) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-text-container {
    grid-column: 1;
}

.eco-commitment {
    grid-column: 2;
    display: block;
}

@media (min-width: 769px) {
    .eco-commitment {
        display: block;
    }
}

@media (max-width: 768px) {
    /* Hide commitment section on mobile */
    .about-section .eco-commitment,
    .eco-commitment {
        display: none !important;
    }

    /* Hide all commitment components */
    .commitment-title,
    .commitment-grid,
    .commitment-card {
        display: none !important;
    }

    /* Ensure about content layout */
    .about-content {
        display: block !important;
        grid-template-columns: 1fr !important;
    }

    .about-text-container {
        width: 100% !important;
        grid-column: 1 !important;
    }
}

@media (max-width: 991px) {
    .about-content {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .about-section {
        padding: 4rem 0;
    }

    .ocean-waves {
        opacity: 0.5;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .lead-text {
        font-size: 1.4rem;
    }

    .about-text-container {
        grid-column: 1;
    }

    .eco-commitment {
        grid-column: 1;
        margin-top: 3rem;
    }
}

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

.section-header {
    margin-bottom: 3rem;
}

.title-group {
    display: inline-flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.title-group .eco-label {
    margin: 0;
    transform: translateY(-5px);
}

.title-group .section-title {
    margin: 0;
    white-space: nowrap;
}

.eco-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #2EA891;
    background: rgba(46, 168, 145, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    color: #2D6D62;
    line-height: 1.2;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(45, 109, 98, 0.1);
    letter-spacing: -0.5px;
    position: relative;
}

.section-title .highlight,
.section-title .highlight-text {
    color: #2EA891;
    font-size: inherit;
    display: inline;
    margin: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #2EA891, transparent);
}

.lead-text {
    font-size: 1.8rem;
    line-height: 1.4;
    color: #2D6D62;
    margin-bottom: 2rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(45, 109, 98, 0.1);
    max-width: 1000px;
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

.stat-item {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2EA891;
    line-height: 1;
    margin-bottom: 1rem;
    position: relative;
}

.stat-number::before {
    content: 'Target:';
    font-size: 0.8rem;
    color: #2EA891;
    position: absolute;
    top: -1.2rem;
    left: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    line-height: 1.4;
}

.highlight-text {
    display: block;
    font-size: 1.8rem;
    color: #2EA891;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.text-accent {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #2EA891, #2D6D62);
    margin: 2rem auto;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://ecobluetours.com/wp-content/uploads/2024/10/wave-pattern.png');
    opacity: 0.1;
    pointer-events: none;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 991px) {
    .about-content {
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .about-text-container {
        order: 1;
        width: 100% !important;
    }

    /* Hide commitment section and all related elements */
    .about-section .eco-commitment,
    .about-content .eco-commitment,
    .eco-commitment,
    .commitment-grid,
    .commitment-title,
    .commitment-card {
        display: none !important;
        visibility: hidden !important;
        position: absolute !important;
        width: 0 !important;
        height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

/* Commitment Cards */
.eco-commitment {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Ensure commitment section shows on desktop */
@media (min-width: 769px) {
    .eco-commitment {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .commitment-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 1.5rem;
    }

    .commitment-card {
        display: flex;
        flex-direction: column;
        min-height: 7.5rem;
        height: 100%;
    }
}

.commitment-title {
    text-align: center;
    color: #2D6D62;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.commitment-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2EA891, #2D6D62);
    border-radius: 2px;
}

/* Commitment grid layout */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (max-width: 768px) {
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .commitment-card {
        padding: 1.5rem;
        text-align: center;
    }

    .commitment-card .icon-container {
        margin: 0 auto 1.25rem;
    }

    .commitment-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .commitment-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

.commitment-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.75rem 0.75rem 0.65rem;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(45, 109, 98, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 7.5rem;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #2EA891, #2D6D62);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 109, 98, 0.1);
    border-color: rgba(46, 168, 145, 0.25);
}

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

.commitment-card .icon-container {
    width: 24px;
    height: 24px;
    margin: 0;
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, #2EA891, #2D6D62);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(45, 109, 98, 0.08);
}

.icon-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #2EA891, #2D6D62);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.icon {
    width: 12px;
    height: 12px;
    color: white;
}

.commitment-card:hover .icon-container {
    transform: scale(1.1);
}

.card-content {
    flex-grow: 1;
}

.commitment-card h4 {
    color: #2EA891;
    margin: 1rem 0 0.3rem;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
    opacity: 0.9;
    text-transform: uppercase;
}

.commitment-card p {
    color: #2D6D62;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.01em;
    max-width: 85%;
    padding-bottom: 0.1rem;
}

@media (max-width: 768px) {
    .commitment-card {
        min-height: auto;
        padding: 1.5rem;
        text-align: center;
    }

    .commitment-card .icon-container {
        margin: 0 auto 1.25rem;
    }

    .commitment-card h3 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
        margin-bottom: 1rem;
    }

    .commitment-card p {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        line-height: 1.6;
        opacity: 0.9;
    }

    .commitment-card h4 {
        margin: 0.75rem 0 0.25rem;
    }

    .commitment-card p {
        max-width: 100%;
    }

    .icon-container {
        width: 32px;
        height: 32px;
    }

    .icon {
        width: 16px;
        height: 16px;
    }
}

/* Collaboration Section */
.collaboration-section {
    padding: 8rem 0;
    background: #2D6D62;
    color: white;
    position: relative;
    overflow: hidden;
}

.collaboration-section h2,
.collaboration-section h3,
.collaboration-section p,
.collaboration-section .highlight-text,
.collaboration-section .section-title,
.collaboration-section .section-intro,
.collaboration-section .emphasis,
.collaboration-section .impact-number .number,
.collaboration-section .impact-number .label {
    color: white;
}

.wave-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 20%, rgba(46, 168, 145, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(46, 168, 145, 0.3) 0%, transparent 40%);
    opacity: 0.6;
}

.collab-header {
    position: relative;
    margin-bottom: 6rem;
    text-align: center;
}

.collab-header .section-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.collab-header .section-title {
    display: inline-block;
    margin: 0 auto;
    transform: none;
    left: 0;
}



.collab-header .section-title {
    color: white;
    text-align: center;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.collab-header .emphasis {
    color: #2EA891;
    font-style: normal;
    display: inline;
}

.collab-header .emphasis,
.impact-number .number {
    color: #2EA891;
    font-weight: 700;
    font-size: 120%;
    text-shadow: 2px 2px 4px rgba(46, 168, 145, 0.2);
    position: relative;
    display: inline-block;
}

.collab-header .emphasis::after,
.impact-number .number::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2EA891, transparent);
    opacity: 0.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 0 1rem;
}

@media (max-width: 991px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-bottom: 4rem;
    }
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .collaboration-section {
        padding: 4rem 0;
    }

    .collab-header {
        margin-bottom: 3rem;
    }

    .collab-header .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .collab-header .section-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

.impact-number {
    text-align: center;
}

/* Brochure Section */
.brochure-section {
    padding: 4rem 0;
    background: #f9f9f9;
}

/* Team Section */
/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form-stage {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.contact-form.initial .stage-2 {
    display: none;
}

.contact-form.expanded .stage-1 {
    transform: translateY(-20px);
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.contact-form.expanded .stage-2 {
    transform: translateY(0);
    opacity: 1;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff4444;
}

/* Team Section */
.team {
    padding: 4rem 0;
    background: #f9f9f9;
    position: relative;
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2D6D62;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
    background: white;
}

.team-info h3 {
    color: #2D6D62;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team-info .role {
    color: #2EA891;
    font-weight: 500;
    margin: 0;
}

/* Team Popups */
.team-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-popup.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.team-popup.active .popup-content {
    transform: translateY(0);
    opacity: 1;
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #2D6D62;
}

.popup-content h3 {
    color: #2D6D62;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.popup-content .role {
    color: #2EA891;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.popup-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .team-image {
        height: 250px;
    }

    .popup-content {
        padding: 1.5rem;
        width: 95%;
    }
}

.impact-number .number {
    display: block;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    color: #2EA891;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-number .label {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .impact-number {
        padding: 0 1rem;
    }

    .impact-number .number {
        margin-bottom: 0.3rem;
    }
}

.impact-number .label {
    font-size: 1.2rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.2) 0%, transparent 60%),
                radial-gradient(circle at bottom left, rgba(255,255,255,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, #fff 1px, transparent 1px),
        radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 50px 50px, 100px 100px;
    opacity: 0.1;
    animation: floatParticles 20s linear infinite;
    pointer-events: none;
}

@keyframes floatParticles {
    from { transform: translateY(0); }
    to { transform: translateY(-50px); }
}

.glow {
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.intro-wrapper {
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    margin-bottom: 4rem;
}

.intro-accent {
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

.collaboration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 150%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% -50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    line-height: 1.8;
    color: white;
    position: relative;
    padding: 2rem;
}

@media (max-width: 768px) {
    .section-intro {
        margin: 0 auto 3rem;
        padding: 1.5rem 1rem;
        line-height: 1.6;
    }

    .section-intro::after {
        width: 60px;
        height: 2px;
    }
}

.section-intro::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.partnership-opportunities {
    margin-top: 3rem;
    padding: 0 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .partnership-opportunities {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .opportunity-card {
        padding: 2rem;
    }

    .opportunity-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partnership-opportunities {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }

    .opportunity-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .opportunity-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .opportunities-list li {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .opportunity-card:hover {
        transform: translateY(-5px);
    }
}

.opportunity-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(45, 109, 98, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.opportunities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.opportunities-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #666;
}

.opportunities-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: #2EA891;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .opportunities-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .opportunities-list li {
        font-size: 1rem;
    }

    .opportunity-card {
        padding: 2rem;
    }
}

.opportunity-card::before,
.opportunity-card::after {
    content: '';
    position: absolute;
    inset: 0;
    transition: all 0.6s ease;
}

.opportunity-card::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
}

.opportunity-card::after {
    background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, transparent 100%);
    opacity: 0;
    transform: scale(0.5);
}

.opportunity-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.opportunity-card:hover::after {
    opacity: 0.1;
    transform: scale(2);
}

.opportunity-card h3 {
    color: #2D6D62;
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    letter-spacing: -0.5px;
    font-weight: 600;
}

.opportunity-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2EA891, #2D6D62);
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 168, 145, 0.1) 0%, transparent 50%);
    transform: rotate(45deg);
    z-index: -1;
    transition: all 0.6s ease;
}

.opportunity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.opportunity-card:hover::before {
    transform: rotate(90deg);
}

.opportunity-card:hover {
    transform: translateY(-5px);
}

.opportunity-card h3 {
    color: #2D6D62;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.opportunity-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2EA891, #2D6D62);
    border-radius: 2px;
}

/* Benefits Section */
.benefits-section {
    padding: 8rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.benefits-header {
    text-align: center;
    margin-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.benefits-header .title-group {
    display: inline-flex;
    align-items: baseline;
    gap: 1.5rem;
}

.benefits-header .overline {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2EA891;
    margin: 0;
    transform: translateY(-5px);
}

.benefits-header .section-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-top: 1rem;
}

.benefits-layout {
    display: flex;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 991px) {
    .benefits-layout {
        gap: 3rem;
    }

    .benefits-video video {
        height: 400px;
    }

    .benefits-header {
        margin-bottom: 4rem;
    }

    .benefits-header .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

@media (max-width: 768px) {
    .benefits-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .benefits-video {
        border-radius: 20px;
    }

    .benefits-video video {
        height: 300px;
    }

    .benefits-header {
        margin-bottom: 3rem;
    }

    .benefits-header .title-group {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .benefits-header .overline {
        font-size: 0.9rem;
        transform: none;
    }

    .benefits-header .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .benefits-content {
        padding: 0 1rem;
    }

    .benefits-background {
        opacity: 0.5;
    }
}

.benefits-video {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(45, 109, 98, 0.15);
}

.benefits-video video {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.parallax-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.benefits-image:hover .parallax-image {
    transform: scale(1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(45, 109, 98, 0.3) 100%);
}

.benefits-content {
    flex: 1;
}

.benefits-background {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(46, 168, 145, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 109, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.centered {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(46, 168, 145, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(45, 109, 98, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-card {
    padding: 4rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 40px;
    box-shadow: 
        0 25px 50px rgba(45, 109, 98, 0.15),
        0 0 0 2px rgba(46, 168, 145, 0.1),
        0 0 0 8px rgba(46, 168, 145, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
}

.benefits-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 168, 145, 0.1), rgba(45, 109, 98, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefits-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(46, 168, 145, 0.3);
    box-shadow: 0 35px 60px rgba(45, 109, 98, 0.2);
}

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

.benefits-card h2 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #2EA891, #2D6D62);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.benefits-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2EA891, #2D6D62);
}

.benefits-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(46, 168, 145, 0.03) 100%);
    pointer-events: none;
}

.benefits-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 109, 98, 0.18);
    border-color: rgba(46, 168, 145, 0.3);
}

.benefits-card h2 {
    color: #2D6D62;
    margin-bottom: 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Common List Styles */
.opportunities-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.opportunities-list li,
.benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.opportunities-list li::before,
.benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section,
    .collaboration-section,
    .benefits-section {
        padding: 4rem 1rem;
    }

    .commitment-grid,
    .partnership-opportunities,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .about-text,
    .section-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .commitment-card,
    .opportunity-card,
    .benefits-card {
        padding: 1.5rem;
    }

    .benefits-card h2 {
        font-size: 1.5rem;
    }

    .opportunities-list li,
    .benefits-list li {
        font-size: 1rem;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-logo {
    max-width: 200px;
    margin: 0;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 800px;
}

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

/* Service Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.service-card h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-card:hover {
    transform: translateY(-5px);
}

.container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
    text-align: center;
}

.container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Choose Us section */
.why-choose-us {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--gray) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid::-webkit-scrollbar {
    display: none;
}

.feature {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 4rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2D6D62;
    font-size: 2.5rem;
}

.scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.team-grid {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    transition: transform 0.3s ease;
    scroll-behavior: smooth;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.team-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.team-card {
    flex: 0 0 300px;
}

/* Progress bar styles */
.scroll-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0 0;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(45, 109, 98, 0.2);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.scroll-dot.active {
    background: #2D6D62;
}

.team-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.team-info h3 {
    color: #2D6D62;
    margin: 0;
    font-size: 1.2rem;
}

.team-info .role {
    color: #2EA891;
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
}

.view-more-btn {
    background: #2D6D62;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    width: 100%;
}

.view-more-btn:hover {
    background: #2EA891;
}

.team-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
}

.team-popup.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.team-popup.active .popup-content {
    transform: translateY(0);
    opacity: 1;
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #2D6D62;
}

.popup-content h3 {
    color: #2D6D62;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.popup-content .role {
    color: #2EA891;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.popup-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .team-image {
        height: 250px;
    }

    .popup-content {
        padding: 1.5rem;
        width: 95%;
    }
}

/* Contact Form Styling */
.contact {
    padding: 6rem 5%;
    background: var(--white);
}

.contact-form {
    max-width: 800px;
    margin: 3rem auto;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input,
textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(46, 168, 145, 0.1);
}

textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.btn.primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-logo {
        max-width: 150px;
    }

    .mission,
    .vision,
    .values,
    .why-choose-us,
    .contact {
        padding: 4rem 5%;
    }

    .container h2 {
        font-size: 2rem;
    }

    .container p {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .feature {
        padding: 2rem;
    }
}

/* Contact Form Row Layout */
.contact-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group.half {
    flex: 1;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-form .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }

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