/* ==========================================================================
   About Us Page Specific Styles - about.css
   ========================================================================== */

/* --- Story Section --- */
.about-story-section {
    padding: 90px 0;
    background-color: #fff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-story-images {
    position: relative;
}

.story-img-main {
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    position: relative;
}

.story-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.story-img-main:hover img {
    transform: scale(1.04);
}

.img-badge-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, hsl(136, 50%, 14%), hsl(136, 53%, 8%));
    color: #fff;
    padding: 14px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.years-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.years-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.75);
    white-space: nowrap;
}

.story-img-secondary {
    margin-top: 20px;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
}

.story-img-secondary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.story-img-secondary:hover img {
    transform: scale(1.04);
}

/* Story Text Side */
.about-story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.about-lead-para {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-story-content p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 14px;
}

.about-story-content em {
    color: var(--primary);
    font-style: italic;
    font-weight: 600;
}

.about-cta-row {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* --- Values Section --- */
.about-values-section {
    padding: 90px 0;
    background-color: var(--primary-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.value-card {
    padding: 36px 30px;
    text-align: center;
    border-radius: 18px;
}

.value-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, hsl(136, 45%, 14%), hsl(136, 53%, 8%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.6rem;
    color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(15, 48, 20, 0.3);
}

.value-card h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Stats Section --- */
.about-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, hsl(136, 50%, 12%) 0%, hsl(136, 53%, 7%) 100%);
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(136,175,140,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-plus {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-top: -8px;
}

.stat-label {
    width: 100%;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    margin-top: 6px;
}

/* --- Journey / Timeline Section --- */
.about-journey-section {
    padding: 90px 0;
    background-color: #fff;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold), hsl(136, 45%, 25%));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    margin-bottom: 50px;
    padding-left: 0;
}

.timeline-item.right {
    justify-content: flex-end;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-dark);
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 20px;
    top: 18px;
    z-index: 3;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border: 2px solid var(--accent-gold);
}

.timeline-content {
    width: 44%;
    padding: 24px 28px;
    border-radius: 16px;
    position: relative;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.timeline-content p em {
    color: var(--primary);
    font-weight: 600;
}

/* --- CTA Band Section --- */
.about-cta-band {
    padding: 70px 0;
    background: linear-gradient(90deg, hsl(136, 45%, 10%) 0%, hsl(136, 55%, 16%) 100%);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-band-text h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.cta-band-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

.cta-band-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-whatsapp-mini {
    background-color: #25d366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-mini:hover {
    background-color: #20ba59;
    transform: translateY(-2px);
}

/* =====================
   Responsive
   ===================== */
@media (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 30px 20px;
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .cta-band-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-band-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-story-content h2 {
        font-size: 2.0rem;
    }

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

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item.right {
        justify-content: flex-start;
        padding-left: 60px;
    }

    .timeline-year {
        left: 20px;
        transform: none;
        top: 18px;
    }

    .timeline-content {
        width: 100%;
    }

    .cta-band-text h2 {
        font-size: 1.7rem;
    }
}
