/* ==========================================================================
   About Us Premium Page
   ========================================================================== */


.inner-hero--about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace URL below with actual hero image: Aerial view of Indian paddy fields at golden hour, 1920x1080 */
    background-image:
        linear-gradient(135deg, rgba(11, 31, 58, 0.92) 0%, rgba(11, 31, 58, 0.55) 60%, rgba(201, 166, 70, 0.15) 100%),
        url('/wp-content/themes/aladin-theme/assets/images/au-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    z-index: 1;
}





.inner-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 600px;
}

/* Sticky Legacy Section */
.legacy-section {
    padding: var(--space-16) 0;
    background-color: var(--color-background);
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-8);
    align-items: start;
}

.legacy-sticky {
    position: sticky;
    top: 120px;
    height: fit-content;
}



.legacy-sticky h2 {
    font-size: 3rem;
    margin-bottom: var(--space-4);
}

.legacy-sticky p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.legacy-scroller {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.legacy-card {
    background: var(--color-surface);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.legacy-card__image {
    height: 400px;
    overflow: hidden;
}

.legacy-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.legacy-card:hover .legacy-card__image img {
    transform: scale(1.05);
}

.legacy-card__content {
    padding: var(--space-5);
}

.legacy-card__content h3 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
}

/* Global Footprint Glassmorphism */
.footprint-section {
    position: relative;
    padding: var(--space-16) 0;
    background-color: var(--color-secondary);
    overflow: hidden;
}

.footprint-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 1;
}

.footprint-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-white {
    color: #fff !important;
}

.text-light {
    color: rgba(255, 255, 255, 0.7) !important;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.text-center {
    text-align: center;
}

.footprint-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-8);
}

.stat-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--space-5) var(--space-3);
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-glass:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 166, 70, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-glass__number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-glass__label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .legacy-grid {
        grid-template-columns: 1fr;
    }

    .legacy-sticky {
        position: relative;
        top: 0;
        margin-bottom: var(--space-5);
    }

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

    @media (max-width: 600px) {
    .inner-hero__title {
        font-size: 3rem;
    }

    .footprint-stats {
        grid-template-columns: 1fr;
    }
    
    .legacy-sticky h2 {
        font-size: 2.5rem;
    }
}