/* ============================================================
   about.css — Batur Jeep Experience
   About Us Page Styles
   ============================================================ */

/* =============================================================
   ABOUT HERO
============================================================= */
.about-hero {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: calc(var(--navbar-h) + 2rem);
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}
.about-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,28,20,0.5) 0%,
        rgba(10,28,20,0.7) 100%
    );
}
.about-hero__content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
}
.about-hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.about-hero__subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-style: italic;
}


/* =============================================================
   OUR STORY SECTION
============================================================= */
.about-story {
    padding: 7rem 0;
    background: #FAFAFA;
}
.about-story__inner {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.about-story__images {
    flex: 1;
    position: relative;
    min-height: 500px;
}
.about-story__img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    z-index: 2;
}
.about-story__img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    z-index: 1;
}

.about-story__content {
    flex: 1;
}
.about-story__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    color: #e08040;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: block;
    font-family: 'Poppins', sans-serif;
}
.about-story__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #1e4d38;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.about-story__text {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-story__stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E7EB;
    flex-wrap: wrap;
}
.about-stat {
    display: flex;
    flex-direction: column;
}
.about-stat__val {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2D6A4F;
    line-height: 1;
    margin-bottom: 0.3rem;
}
.about-stat__lbl {
    font-size: 0.85rem;
    color: #9CA3AF;
    font-weight: 500;
}


/* =============================================================
   DISTINCTION (FEATURES) SECTION
============================================================= */
.about-distinction {
    background: #2D6A4F;
    padding: 6rem 0;
    color: #fff;
    text-align: center;
}
.about-distinction .section-header__title {
    color: #fff;
}
.about-distinction .section-header__desc {
    color: rgba(255,255,255,0.8);
}
.distinction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.distinction-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}
.distinction-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}
.distinction-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #fff;
}
.distinction-card__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.distinction-card__desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}


/* =============================================================
   GUIDES SECTION
============================================================= */
.about-guides {
    padding: 6rem 0;
    background: #F3F4F6;
    text-align: center;
}
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.guide-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}
.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.guide-card__img-wrap {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    position: relative;
}
.guide-card__img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.guide-card__badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #F4A261;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    white-space: nowrap;
    text-transform: uppercase;
}
.guide-card__name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e4d38;
    margin-bottom: 0.25rem;
}
.guide-card__role {
    font-size: 0.9rem;
    color: #9CA3AF;
    margin-bottom: 1rem;
}
.guide-card__exp {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #F3F4F6;
    color: #4b5563;
    padding: 0.4rem 0.8rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
}


/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 992px) {
    .about-story__inner { flex-direction: column; gap: 3rem; }
    .about-story__images { min-height: 400px; width: 100%; max-width: 600px; margin: 0 auto; }
    .distinction-grid { grid-template-columns: repeat(2, 1fr); }
    .guides-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .distinction-grid { grid-template-columns: 1fr; }
    .guides-grid { grid-template-columns: 1fr; }
    .about-story__stats { justify-content: center; text-align: center; }
    .about-story__content { text-align: center; }
}
