/* ========== ABOUT US HERO (VIDEO BACKGROUND) ========== */
.about-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #ffffff;
}

/* Background video */
.about-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
}

/* Dark overlay to make text readable */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: -1;
}

/* Top bar (needs to be adapted for white text) */
.about-hero-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 56px;
    position: relative;
    z-index: 2;
}

/* Filter to turn the black logo into white */
.logo-white-filter {
    filter: brightness(0) invert(1);
}

.hero-cta-btn.btn-white {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}
.hero-cta-btn.btn-white:hover {
    background: #ffffff;
    color: #111111;
}

.hamburger-white span {
    background-color: #ffffff;
}

/* ========== OUR VISION SECTION ========== */
.about-vision-section {
    background: #f5f5f0;
    padding: 120px 56px;
    color: #111111;
}

.about-vision-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.about-vision-content {
    flex: 1;
    max-width: 700px;
}

.about-vision-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #666;
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
}

.about-vision-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.about-vision-title em {
    font-style: italic;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
    color: #555;
}

.about-vision-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
}

.about-vision-text p {
    margin-bottom: 24px;
}

/* Stats */
.about-stats-grid {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-stat-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: #111111;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    line-height: 1.5;
}

/* ========== BANNER SECTION ========== */
.about-banner-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.about-banner-text {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.about-banner-text h3 {
    font-family: 'Times New Roman', Times, serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-vision-section {
        padding: 80px 40px;
    }
    .about-vision-container {
        flex-direction: column;
        gap: 64px;
    }
    .about-stats-grid {
        flex: auto;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .about-stat-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 600px) {
    .about-vision-section {
        padding: 60px 24px;
    }
    .about-stats-grid {
        flex-direction: column;
    }
}

/* ========== CORE VALUES SECTION ========== */
.about-values-section {
    background: #ffffff;
    padding: 120px 56px;
    color: #111111;
}

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

.about-values-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.about-values-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
}

.about-values-title em {
    font-style: italic;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
    color: #555;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-value-card {
    background: #f5f5f0;
    padding: 56px 40px;
    border-radius: 24px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.about-value-card:hover {
    background: #111111;
    transform: translateY(-10px);
}

.value-icon {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 24px;
    transition: color 0.4s ease;
}

.value-title {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: #111111;
    transition: color 0.4s ease;
}

.value-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    transition: color 0.4s ease;
}

/* Hover state changes colors */
.about-value-card:hover .value-icon {
    color: rgba(255, 255, 255, 0.5);
}
.about-value-card:hover .value-title {
    color: #ffffff;
}
.about-value-card:hover .value-desc {
    color: #cccccc;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-values-section {
        padding: 80px 40px;
    }
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-values-section {
        padding: 60px 24px;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Body / Content */
.about-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 56px;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.about-eyebrow {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-bottom: 32px;
}

.about-headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(4rem, 8vw, 7.5rem);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -3px;
    color: #ffffff;
    margin-bottom: 32px;
}

.about-headline em {
    font-style: italic;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
    color: rgba(255, 255, 255, 0.85);
}

.about-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-hero-top-bar {
        padding: 40px;
    }
    .about-hero-content {
        padding: 0 40px;
    }
}

@media (max-width: 600px) {
    .about-hero-top-bar {
        padding: 28px 24px;
    }
    .about-hero-content {
        padding: 0 24px;
    }
    .about-headline {
        font-size: clamp(3.5rem, 10vw, 5rem);
    }
    .about-desc {
        font-size: 1.1rem;
    }
}
