/* ================================================================
   ABOUT PAGE — PREMIUM STYLES
   about.css v1.0
   ================================================================ */

/* ── Page section wrapper ── */
.about-page-section {
    background: #FEFCF7;
    padding: 70px 0 60px;
    overflow-x: hidden; /* Prevents right-side overflow */
}

/* ── Section label pill ── */
.abt-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(45,106,79,0.08);
    color: #2d6a4f;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(45,106,79,0.15);
    margin-bottom: 14px;
}

/* ── Section titles ── */
.abt-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.25;
    margin-bottom: 20px;
}
.abt-accent {
    background: linear-gradient(135deg, #2d6a4f, #52b788);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Body text ── */
.abt-body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════
   ROW 1 — Split: Text left, Map right
   ═══════════════════════════════════════ */
.abt-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 60px;
}

/* ── Text column ── */
.abt-text-col { /* flows naturally */ }

/* ── Timeline ── */
.abt-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 28px;
    padding-left: 4px;
    border-left: 2px solid rgba(45,106,79,0.15);
}
.abt-tl-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0 10px 14px;
    position: relative;
}
.abt-tl-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d6a4f, #52b788);
    flex-shrink: 0;
    margin-top: 3px;
    position: absolute;
    left: -6px;
    box-shadow: 0 0 0 3px rgba(82,183,136,0.2);
}
.abt-tl-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 18px;
}
.abt-tl-year {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #2d6a4f;
}
.abt-tl-event {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    color: #6b7280;
}

/* ── Map Card — Right column, fixed overflow ── */
.abt-map-col {
    /* Force column to not overflow viewport */
    min-width: 0;
    overflow: hidden;
}
.abt-map-card {
    background: #ffffff;
    border: 1px solid rgba(45,106,79,0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10,22,40,0.08);
    position: relative;
}
.abt-map-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(10,22,40,0.78);
    backdrop-filter: blur(8px);
    color: #f59e0b;
    font-family: 'Outfit', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.abt-map-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    transition: transform 0.5s ease;
}
.abt-map-card:hover .abt-map-img {
    transform: scale(1.03);
}
.abt-map-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 14px 16px;
    background: #0a1628;
    gap: 10px;
}
.abt-map-footer span {
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}
.abt-map-footer span i {
    color: #52b788;
}

/* ═══════════════════════════════════════
   ROW 2 — Feature Cards Grid
   ═══════════════════════════════════════ */
.abt-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}
.abt-feature-card {
    background: #ffffff;
    border: 1px solid rgba(10,22,40,0.07);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(10,22,40,0.04);
}
.abt-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10,22,40,0.10);
}
.abt-feat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    margin: 0 auto 16px;
}
.abt-feature-card h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 8px;
}
.abt-feature-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ═══════════════════════════════════════
   ROW 3 — Full-width Economy + Geography
   ═══════════════════════════════════════ */
.abt-full-block {
    margin-bottom: 64px;
}
.abt-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 28px;
}
.abt-two-item {
    background: #ffffff;
    border: 1px solid rgba(10,22,40,0.07);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(10,22,40,0.04);
}
.abt-sub-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0a1628;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 9px;
}
.abt-sub-heading i {
    color: #2d6a4f;
    font-size: 16px;
}

/* ═══════════════════════════════════════
   ROW 4 — Stats Grid
   ═══════════════════════════════════════ */
.abt-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}
.abt-stat-card {
    background: linear-gradient(160deg, #0a1628 0%, #1e3a5f 100%);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 10px 32px rgba(10,22,40,0.18);
    transition: transform 0.3s ease;
}
.abt-stat-card:hover {
    transform: translateY(-5px);
}
.abt-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(82,183,136,0.15);
    border: 1px solid rgba(82,183,136,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #52b788;
    margin: 0 auto 14px;
}
.abt-stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}
.abt-stat-lbl {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ═══════════════════════════════════════
   ROW 5 — CTA Banner
   ═══════════════════════════════════════ */
.abt-cta-banner {
    background: linear-gradient(135deg, #2d6a4f 0%, #1e3a2f 100%);
    border-radius: 24px;
    padding: 48px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 16px 48px rgba(45,106,79,0.25);
    overflow: hidden;
    position: relative;
}
.abt-cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: -80px;
    right: -60px;
    pointer-events: none;
}
.abt-cta-text h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}
.abt-cta-text p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin: 0;
}
.abt-cta-btns {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}
.abt-cta-call, .abt-cta-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    padding: 13px 24px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.abt-cta-call {
    background: #f59e0b;
    color: #0a1628 !important;
    box-shadow: 0 6px 20px rgba(245,158,11,0.35);
}
.abt-cta-call:hover { background: #fbbf24; transform: translateY(-2px); }
.abt-cta-book {
    background: rgba(255,255,255,0.12);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.25);
}
.abt-cta-book:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* ================================================================
   RESPONSIVE — Tablet (≤ 991px)
   ================================================================ */
@media (max-width: 991px) {
    .abt-split-row {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .abt-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .abt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .abt-two-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .abt-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }
    .abt-cta-btns {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ================================================================
   RESPONSIVE — Mobile (≤ 767px)
   ================================================================ */
@media (max-width: 767px) {
    .about-page-section {
        padding: 40px 0 80px; /* 80px bottom = room above sticky bar */
        /* Fix horizontal overflow that causes right-side white gap */
        overflow-x: hidden;
    }

    /* Ensure .container never overflows on mobile */
    .about-page-section .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden;
    }

    .abt-split-row {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 40px;
    }

    /* Map card: full width, no overflow */
    .abt-map-col {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .abt-map-card {
        border-radius: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .abt-map-img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    .abt-title {
        font-size: 24px;
    }

    .abt-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 40px;
    }
    .abt-feature-card {
        padding: 20px 14px;
    }
    .abt-feature-card h4 {
        font-size: 14px;
    }
    .abt-feature-card p {
        font-size: 12.5px;
    }
    .abt-feat-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .abt-full-block {
        margin-bottom: 40px;
    }
    .abt-two-col {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }
    .abt-two-item {
        padding: 22px 18px;
    }

    .abt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 40px;
    }
    .abt-stat-card {
        padding: 24px 14px;
    }
    .abt-stat-num {
        font-size: 26px;
    }

    .abt-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        border-radius: 16px;
    }
    .abt-cta-text h3 {
        font-size: 20px;
    }
    .abt-cta-btns {
        flex-direction: column;
        width: 100%;
    }
    .abt-cta-call, .abt-cta-book {
        justify-content: center;
        width: 100%;
        padding: 13px 20px;
    }

    /* Timeline on mobile */
    .abt-timeline {
        margin-top: 20px;
    }
    .abt-tl-year {
        font-size: 13px;
    }
    .abt-tl-event {
        font-size: 12.5px;
    }
}

/* ================================================================
   RESPONSIVE — Small Mobile (≤ 400px)
   ================================================================ */
@media (max-width: 400px) {
    .abt-features-grid {
        grid-template-columns: 1fr;
    }
    .abt-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}
