/* =============================================
/* Hero / Page Banner */
.about-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f0f23;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.about-hero:hover .about-hero__bg {
    transform: scale(1.08);
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.92) 0%, rgba(15, 15, 35, 0.65) 60%, rgba(232, 164, 0, 0.25) 100%);
}

.about-hero__content {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
}

.about-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.about-hero__breadcrumb a {
    color: #e8a400;
    text-decoration: none;
}

.about-hero__breadcrumb a:hover {
    color: #fff;
}

.about-hero__breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
}

.about-hero__title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 20px;
}

.about-hero__title span {
    color: #e8a400;
}

.about-hero__desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    line-height: 1.8;
    margin: 0;
}

.about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 164, 0, 0.15);
    border: 1px solid rgba(232, 164, 0, 0.4);
    color: #e8a400;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

/* About Main Section */
.about-intro {
    padding: 90px 0 70px;
}

.about-intro__img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.about-intro__img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-intro__img-wrap:hover img {
    transform: scale(1.04);
}

.about-intro__img-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #e8a400;
    color: #fff;
    padding: 18px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(232, 164, 0, 0.4);
}

.about-intro__img-badge strong {
    display: block;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}

.about-intro__img-badge span {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.about-intro__img-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 3px solid #e8a400;
    border-radius: 18px;
    opacity: 0.3;
}

/* Content Side */
.about-intro__tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e8a400;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-intro__tagline::before,
.about-intro__tagline::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #e8a400;
}

.about-intro__heading {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 22px;
}

.about-intro__text {
    color: #5a6070;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}

/* Visi Misi Cards */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 35px 0;
}

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

.vm-card {
    background: #f8f9fc;
    border-radius: 14px;
    padding: 28px 25px;
    border-top: 3px solid #e8a400;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vm-card:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.vm-card__icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #e8a400, #f5c842);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.vm-card__icon i {
    color: #fff;
    font-size: 18px;
}

.vm-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vm-card__text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

/* CTA Buttons */
.about-cta-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border: 2px solid #e8a400;
    color: #e8a400;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: #e8a400;
    color: #fff;
}

/* Stats Counter */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a40 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232, 164, 0, 0.06);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(232, 164, 0, 0.04);
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    border-color: rgba(232, 164, 0, 0.4);
    background: rgba(232, 164, 0, 0.08);
    transform: translateY(-6px);
}

.stat-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, rgba(232, 164, 0, 0.2), rgba(232, 164, 0, 0.05));
    border: 1px solid rgba(232, 164, 0, 0.35);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card__icon i {
    color: #e8a400;
    font-size: 22px;
}

.stat-card__number {
    font-size: 50px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card__number .odometer {
    font-family: inherit;
}

.stat-card__suffix {
    color: #e8a400;
    font-size: 30px;
    font-weight: 800;
}

.stat-card__label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Why Choose */
.why-choose-modern {
    padding: 90px 0;
    background: #fff;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    height: 100%;
}

.feature-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    border-color: #e8a400;
}

.feature-card__icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff8e6, #fff3cc);
    border: 2px solid rgba(232, 164, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.feature-card:hover .feature-card__icon-wrap {
    background: linear-gradient(135deg, #e8a400, #f5c842);
}

.feature-card__icon-wrap i,
.feature-card__icon-wrap span {
    font-size: 28px;
    color: #e8a400;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-card__icon-wrap i,
.feature-card:hover .feature-card__icon-wrap span {
    color: #fff;
}

.feature-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.feature-card__text {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.feature-card__num {
    font-size: 60px;
    font-weight: 800;
    color: rgba(232, 164, 0, 0.08);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 24px;
}

/* Team Photo Section */
.team-photo-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.team-photo-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
    aspect-ratio: 16/7;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.team-photo-wrap:hover img {
    transform: scale(1.03);
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 35, 0.7) 0%, transparent 55%);
}

.team-photo-caption {
    position: absolute;
    bottom: 35px;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.team-photo-caption h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.team-photo-caption h3 i {
    color: #e8a400;
    margin-right: 10px;
}

.team-photo-caption p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 4px 0 0;
}

.team-photo-badge {
    background: #e8a400;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

/* CTA Section */
.about-cta-section {
    padding: 80px 0 90px;
    background: #fff;
}

.cta-box {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a40 50%, #0f0f23 100%);
    border-radius: 20px;
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(232, 164, 0, 0.07);
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(232, 164, 0, 0.05);
}

.cta-box__label {
    color: #e8a400;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-box__title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-box__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 32px;
    background: #25d366;
    color: #fff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    border: 2px solid #25d366;
}

.btn-wa:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
    color: #fff;
}

/* Contact Cards */
.contact-cards-section {
    padding: 0 0 90px;
    background: #fff;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 30px;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: #e8a400;
}

.contact-card__icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e8a400, #f5c842);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(232, 164, 0, 0.3);
}

.contact-card__icon i {
    color: #fff;
    font-size: 20px;
}

.contact-card__label {
    font-size: 12px;
    font-weight: 700;
    color: #e8a400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-card__value {
    font-size: 15px;
    color: #1a1a2e;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

/* Section Header */
.section-header {
    margin-bottom: 55px;
}

.section-header__tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e8a400;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-header__tagline::before,
.section-header__tagline::after {
    content: '';
    width: 25px;
    height: 2px;
    background: #e8a400;
}

.section-header__title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-header__text {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
    max-width: 600px;
}

.section-header.text-center .section-header__text {
    margin: 0 auto;
}

@media (max-width: 991px) {
    .about-intro__img-wrap img {
        height: 380px;
    }

    .cta-box {
        padding: 50px 30px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        min-height: 320px;
    }

    .about-intro {
        padding: 60px 0 50px;
    }

    .about-intro__img-wrap {
        margin-bottom: 40px;
    }

    .stats-section {
        padding: 60px 0;
    }

    .stat-card {
        padding: 30px 15px;
    }

    .stat-card__number {
        font-size: 38px;
    }

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