/* ==========================================================
   ABOUT US PAGE STYLES (VARIED DYNAMIC LAYOUT)
   ========================================================== */

/* 1. Hero Section */
.about-hero {
    position: relative;
    padding: 160px 40px 110px;
    background-color: #060b14;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(10, 17, 30, 0.4) 0%, rgba(6, 11, 20, 0.95) 85%);
}

.about-hero-content {
    position: relative;
    z-index: 5;
    max-width: 820px;
    margin: 0 auto;
}

.subtitle-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--primary-gold);
    background: rgba(178, 138, 68, 0.12);
    border: 1px solid rgba(178, 138, 68, 0.3);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.about-hero .hero-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-hero .hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-tags span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-tags .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-gold);
}


/* 2. Who We Are (Split Grid with Offset Badge) */
.story-section {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-container {
    max-width: 1240px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.story-image-box {
    position: relative;
}

.img-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.img-frame img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--navy-dark);
    color: #ffffff;
    padding: 18px 24px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(178, 138, 68, 0.4);
    display: flex;
    flex-direction: column;
}

.exp-num {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1.5px;
}

.exp-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
}

.story-text-box h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--navy-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.lead-text {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-dark);
    line-height: 1.6;
    margin-bottom: 14px;
}

.story-text-box p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.story-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-dark);
}

.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(178, 138, 68, 0.15);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}


/* 3. Mission & Vision (Clean Horizontal White Cards) */
.mv-section {
    padding: 80px 40px;
    background-color: #fafaf9;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mv-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 36px 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.mv-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fafaf9;
    border: 1px solid #e2d9c8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.mv-icon svg {
    width: 20px;
    height: 20px;
}

.mv-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-gold);
    display: block;
}

.mv-header h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--navy-dark);
    line-height: 1.25;
}

.mv-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.mv-footer-bar {
    display: flex;
    gap: 10px;
    border-top: 1px solid #f1f5f9;
    padding-top: 16px;
}

.mv-footer-bar span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--navy-dark);
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 4px;
}


/* 4. Core Pillars Interactive Accordion Panels */
.pillars-section {
    padding: 100px 40px;
    background: #ffffff;
}

.section-header.center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.section-subtitle-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}

.pillars-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar-row {
    background: #fcfbf9;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.pillar-row.active,
.pillar-row:hover {
    background: #ffffff;
    border-color: rgba(178, 138, 68, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.pillar-row-header {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pillar-row-header .p-num {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-gold);
}

.pillar-row-header h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--navy-dark);
    flex: 1;
}

.pillar-row-header .p-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.pillar-row.active .p-toggle {
    transform: rotate(45deg);
}

.pillar-row-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: center;
    padding: 0 32px;
}

.pillar-row.active .pillar-row-body {
    max-height: 300px;
    padding: 0 32px 28px;
}

.p-body-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.p-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.p-badges span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--navy-dark);
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 4px;
}

.p-body-img {
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
}

.p-body-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 5. Animated Stats Banner */
.about-stats-banner {
    padding: 50px 40px;
    background: var(--navy-dark);
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
}


/* 6. CTA Section */
.about-cta {
    padding: 90px 40px;
    background: #fafaf9;
}

.cta-inner-card {
    background: linear-gradient(135deg, #101a2d 0%, #060b14 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgba(178, 138, 68, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-inner-card h2 {
    font-family: var(--font-heading);
    font-size: 34px;
    margin: 12px 0 16px;
}

.cta-inner-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto 32px;
}


/* Responsive Mobile Rules */
@media (max-width: 992px) {
    .about-hero {
        padding: 120px 20px 60px;
    }

    .about-hero .hero-title {
        font-size: 30px;
    }

    .story-grid,
    .mv-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pillar-row-body {
        grid-template-columns: 1fr;
    }

    .pillar-row.active .pillar-row-body {
        max-height: 500px;
    }

    .p-body-img {
        display: none;
    }
}

/* Smooth Hover Zoom for Cards & Images */
.story-image-box,
.mv-card,
.pillar-row {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.story-image-box:hover,
.mv-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image Scale inside Card */
.img-frame img,
.p-body-img img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.img-frame:hover img,
.pillar-row:hover .p-body-img img {
    transform: scale(1.06);
}

.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-gold);
    width: 0%;
    z-index: 1001;
    transition: width 0.1s linear;
}