/* About Section Styles - Updated for Full Width Layout */
.about-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, var(--section-dark, #f8f9fa), var(--section-light, #fff));
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'100\' height=\'100\' viewBox=\'0 0 100 100\'><rect width=\'100\' height=\'100\' fill=\'none\'/><circle cx=\'50\' cy=\'50\' r=\'1\' fill=\'%23000\' opacity=\'0.1\'/></svg>');
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
    animation: backgroundMove 60s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(27, 67, 50, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.section-title {
    color: var(--heading-primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -1px;
}

.about-content {
    background: var(--section-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.about-video .ratio {
    width: 100%;
    height: auto;
    margin-bottom: 0;
    border-radius: 16px 0 0 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(27,67,50,0.08);
}

@media (max-width: 991px) {
    .about-content { border-radius: 12px; }
    .about-video .ratio { border-radius: 12px 12px 0 0; }
}

@media (max-width: 575px) {
    .about-section { padding: 1.2rem 0; }
    .about-content { border-radius: 8px; }
    .about-video .ratio { border-radius: 8px 8px 0 0; }
}

.about-text {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

@media (max-width: 991px) {
    .about-text { padding: 1.2rem 0.5rem; }
}

@media (max-width: 575px) {
    .about-text { padding: 0.7rem 0.2rem; }
    
    .about-title {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .about-btn {
        width: 100%;
        font-size: 1.05rem;
        padding: 1rem 0;
        border-radius: 12px;
    }
}

/* Keyboard navigation focus styles */
.about-video.keyboard-focus {
    outline: 3px solid #666;
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(102,102,102,0.15);
    border-radius: 12px;
    transition: outline 0.2s, box-shadow 0.2s;
}

/* Partner CTA button styles */
.partner-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(27,67,50,0.08);
    min-width: 0;
    min-height: 0;
    width: auto;
    justify-content: center;
}

.partner-cta-button:hover, .partner-cta-button:focus {
    background-color: var(--primary-dark);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(246, 250, 248, 0.13);
    outline: none;
}

.partner-cta-button svg {
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.partner-cta-button:hover svg, .partner-cta-button:focus svg {
    transform: translateX(5px);
}

@media (max-width: 575px) {
    .partner-cta-button {
        font-size: 1rem;
        padding: 0.7rem 0.8rem;
        width: auto;
    }
}

.about-title {
    color: #1B4332;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.7rem;
    letter-spacing: -0.5px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    animation: expandWidth 1s ease-out 1.5s forwards;
    transform-origin: left;
}

.about-description {
    font-size: 1.08rem;
    line-height: 1.7;
    color: #1B4332;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.8s;
    font-weight: 400;
}

.about-btn {
    background-color: var(--primary);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(27,67,50,0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.about-btn::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: all 0.6s ease;
    z-index: -1;
}

.about-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 16px rgba(27, 67, 50, 0.13);
}

.about-btn:hover::before {
    left: 100%;
}

.about-btn i {
    transition: transform 0.3s ease;
}

.about-btn:hover i {
    transform: translateX(5px);
}

.about-text, .about-title, .about-description, .about-text p {
    color: #1B1B1B !important;
}

.about-description {
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.8s;
    font-weight: 400;
}

@media (max-width: 575px) {
    .about-content {
        border-radius: 18px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.08);
        margin-bottom: 1.5rem;
    }
    .about-text {
        padding: 1.2rem 0.7rem;
        border-radius: 0 0 18px 18px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
} 