/* ===== ABOUT PAGE STYLES ===== */
::-webkit-scrollbar {
    width: 2px;
    background: transparent;
}

::-webkit-scrollbar-track {
    /* background: #f1f1f1; */
    display: none;
}

::-webkit-scrollbar-thumb {
    background: #2E8B57;
}

::-webkit-scrollbar-thumb:hover {
    background: #0066ff;
}

/* ===== ABOUT HERO BANNER ===== */
.about-hero {
    position: relative;
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    padding: 180px 91px 100px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.about-hero-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
    opacity: 0;
    transform: translateY(40px);
}

.about-hero-content.animate-in {
    animation: fadeSlideUp 0.8s ease forwards;
}

.about-hero-title {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 72px;
    line-height: 74px;
    color: #000000;
    margin-bottom: 24px;
}

.highlight-eco {
    color: #2E8B57;
}

.about-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 32px;
    color: #333333;
    max-width: 560px;
}

/* Hero decorative circles */
.about-hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
}

.deco-circle.animate-in {
    animation: decoFadeIn 1s ease forwards;
}

.deco-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(167, 255, 254, 0.35) 0%, transparent 70%);
    top: 40px;
    right: 60px;
    animation-delay: 0.2s;
}

.deco-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 139, 87, 0.15) 0%, transparent 70%);
    top: 180px;
    right: 300px;
    animation-delay: 0.4s;
}

.deco-3 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(167, 255, 254, 0.5) 0%, transparent 70%);
    bottom: 40px;
    right: 150px;
    animation-delay: 0.6s;
}


/* ===== ABOUT SECTIONS SHARED ===== */
.about-section {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 80px 60px;
}

.section-title {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 48px;
    line-height: 50px;
    color: #000000;
    margin-bottom: 24px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #2E8B57;
    margin-top: 12px;
    border-radius: 2px;
}

.section-title.centered {
    text-align: center;
}

.section-title.centered::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #555555;
    max-width: 560px;
}

.section-subtitle.centered {
    text-align: center;
    margin: 0 auto;
}

.section-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 28px;
    color: #444444;
    margin-bottom: 18px;
}


/* ===== WHO WE ARE ===== */
.who-we-are .about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text-block {
    flex: 1;
    opacity: 0;
    transform: translateX(-40px);
}

.about-text-block.animate-in {
    animation: slideInLeft 0.7s ease forwards;
}

.about-image-block {
    flex: 1;
    max-width: 500px;
    opacity: 0;
    transform: translateX(40px);
}

.about-image-block.animate-in {
    animation: slideInRight 0.7s ease 0.2s forwards;
}

.about-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 20px;
    /* background: #E9E9E9; */
}


/* ===== VISION & MISSION ===== */
.vision-mission {
    padding-top: 40px;
    padding-bottom: 40px;
}

.vm-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.vm-card {
    flex: 1;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vm-card.animate-in {
    animation: fadeSlideUp 0.7s ease forwards;
}

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.vision-card {
    border-top: 4px solid #2E8B57;
}

.mission-card {
    border-top: 4px solid #A7FFFE;
}

.vm-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vision-card .vm-icon {
    background: rgba(46, 139, 87, 0.1);
    color: #2E8B57;
}

.mission-card .vm-icon {
    background: rgba(167, 255, 254, 0.3);
    color: #1a8a7e;
}

.vm-title {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 36px;
    line-height: 38px;
    color: #000000;
    margin-bottom: 18px;
}

.vm-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    color: #555555;
}

.vm-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #A7FFFE 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vm-card:hover .vm-accent-line {
    opacity: 1;
}


/* ===== CORE VALUES ===== */
.core-values {
    padding-top: 60px;
    padding-bottom: 60px;
}

.values-header {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.values-header.animate-in {
    animation: fadeSlideUp 0.7s ease forwards;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 36px 28px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.value-card.animate-in {
    animation: fadeSlideUp 0.6s ease forwards;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(167, 255, 254, 0.2);
    color: #2E8B57;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background 0.3s ease;
}

.value-card:hover .value-icon {
    background: rgba(46, 139, 87, 0.15);
}

.value-title {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 24px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 12px;
}

.value-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
    color: #666666;
}


/* ===== CTA SECTION ===== */
.about-cta {
    text-align: center;
    padding: 80px 60px 100px;
}

.cta-container {
    background: #111111;
    border-radius: 24px;
    padding: 70px 60px;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.cta-container.animate-in {
    animation: fadeSlideUp 0.7s ease forwards;
}

.cta-title {
    font-family: 'Iceland', cursive;
    font-weight: 400;
    font-size: 48px;
    line-height: 50px;
    color: #FFFFFF;
    margin-bottom: 18px;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    color: #aaaaaa;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Override hero btn for CTA (already visible, no delay) */
.about-cta .btn-connect-hero {
    opacity: 1;
    transform: none;
}

.about-cta .btn-connect-hero:hover {
    background: #A7FFFE;
    color: #111111;
}


/* ===== NAV ACTIVE STATE ===== */
.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    width: 100%;
}


/* ===== ANIMATIONS ===== */
@keyframes decoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .about-hero {
        padding: 160px 50px 80px;
    }

    .about-hero-title {
        font-size: 56px;
        line-height: 58px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        padding: 60px 40px;
    }
}

@media (max-width: 900px) {
    .about-hero {
        padding: 140px 30px 60px;
        min-height: auto;
    }

    .about-hero-title {
        font-size: 44px;
        line-height: 48px;
    }

    .about-hero-subtitle {
        font-size: 18px;
        line-height: 28px;
    }

    .about-hero-decoration {
        display: none;
    }

    .who-we-are .about-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-image-block {
        max-width: 100%;
    }

    .vm-container {
        flex-direction: column;
    }

    .section-title {
        font-size: 40px;
        line-height: 42px;
    }

    .about-section {
        padding: 50px 24px;
    }

    .cta-container {
        padding: 50px 30px;
    }

    .cta-title {
        font-size: 36px;
        line-height: 40px;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 120px 20px 50px;
    }

    .about-hero-title {
        font-size: 36px;
        line-height: 40px;
    }

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

    .vm-card {
        padding: 32px 24px;
    }

    .vm-title {
        font-size: 28px;
    }
}