/* Page background override */
body.about-page {
    background-color: #ffffff;
}

/* About Hero Section */
.about-hero-section {
    position: relative;
    padding: 12rem 2rem 8rem;
    background-image: url('../images/about-hero.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 45, 69, 0.7);
    z-index: 1;
}

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    max-width: 1200px;
}

.about-hero-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-hero-left {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.5rem;
}

.about-hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.about-hero-subtitle {
    font-size: 0.75rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-hero-subtitle::before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    display: block;
    flex-shrink: 0;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-white);
    margin: 0;
}

.about-hero-description {
    font-size: 1rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.about-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.about-hero-btn-primary {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 40, 50, 0.4);
}

.about-hero-btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.about-hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* About Story Section */
.about-story-section {
    padding: 6rem 2rem;
    background-color: var(--primary-teal);
}

.about-story-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-story-header {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-story-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-story-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.about-story-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0.5rem 0 1.5rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease 0.3s;
}

.about-story-header.animate .about-story-line {
    transform: scaleX(1);
}

.about-story-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.3;
    max-width: 900px;
    margin-top: 4.5rem;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-story-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-story-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-story-paragraph {
    font-size: 1.1rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.about-story-paragraph p {
    margin: 0;
}

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

.about-story-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-story-feature:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.about-story-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--light-teal);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-story-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-story-feature-text strong {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
    display: block;
}

.about-story-feature-text span {
    font-size: 0.9rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.about-story-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.about-story-image:hover img {
    transform: scale(1.05);
}

/* About Stats Section */
.about-stats-section {
    padding: 6rem 2rem;
    background-color: var(--bg-card);
}

.about-stats-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-stats-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-stat-item {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.about-stat-item:hover {
    transform: translateY(-5px);
}

.about-stat-number {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--light-teal);
    line-height: 1;
    margin-bottom: 1rem;
}

.about-stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-stat-description {
    font-size: 0.9rem;
    font-weight: 200;
    color: var(--text-gray);
    line-height: 1.6;
}

/* About CTA Section */
.about-cta-section {
    padding: 6rem 2rem;
    background-color: var(--dark-teal-soft);
    border-radius: 12px;
    margin-top: 2rem;
    margin-bottom: -2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
}

.about-cta-container {
    max-width: 1400px;
    margin: 3rem auto;
}

.about-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-cta-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.about-cta-description {
    font-size: 1rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.about-cta-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.about-cta-feature {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem 0.5rem 0.75rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 300;
}

.about-cta-feature::before {
    content: '✓';
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background-color: var(--light-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}

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

.about-cta-btn-primary {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 40, 50, 0.4);
}

.about-cta-btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.about-cta-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-story-image {
        order: -1;
        min-height: 300px;
    }
    
    .about-story-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 10rem 1.5rem 4rem;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-story-section,
    .about-stats-section,
    .about-cta-section {
        padding: 4rem 1.5rem;
    }
    
    .about-story-title,
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-approach-card {
        padding: 2rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .about-stat-number {
        font-size: 2.5rem;
    }

}
