/* ==========================================================================
   Section-Specific Styles
   ========================================================================== */

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background-color: var(--color-white);
    padding: 0;
    height: 90vh;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    background: linear-gradient(135deg, #0C0C0D 0%, #2C2C2C 100%) !important;
    position: relative;
    overflow: hidden;
}


.about .section__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

.about .section__title {
    color: #FFFFFF;
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team {
    background-color: var(--color-white);
}

.team .section__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    background: linear-gradient(180deg, #0C0C0D 0%, #2C2C2C 100%) !important;
    position: relative;
    overflow: hidden;
}

.services .section__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

.services .section__title {
    color: #FFFFFF;
}

/* ==========================================================================
   Footprint Section
   ========================================================================== */
.footprint {
    background-color: var(--color-white);
}

.footprint .section__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.section__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-regular);
    color: var(--color-gray);
    text-align: center;
    margin-top: calc(-1 * var(--space-4));
    margin-bottom: var(--space-4);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
    background: linear-gradient(135deg, #0C0C0D 0%, #2C2C2C 100%) !important;
    position: relative;
    overflow: hidden;
}

.contact .section__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}

.contact .section__title {
    color: #FFFFFF;
}

/* ==========================================================================
   Animation Classes
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* ==========================================================================
   Scroll Reveal (JavaScript-triggered)
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Hover Effects
   ========================================================================== */
.person {
    transition: transform var(--transition-base);
}

.person:hover {
    transform: translateY(-8px);
}

.service {
    transition: transform var(--transition-base);
}

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