/* =========================================================
   TENTANG KAMI
   AURORA WISATA
========================================================= */


/* =========================================================
   BASE
========================================================= */

.about-page {
    background: var(--aw-bg);
}

.about-container {
    width: min(calc(100% - 64px), var(--aw-container));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    color: #ffffff;
}

.about-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.about-hero-image picture {
    display: block;
    width: 100%;
    height: 100%;
}
.about-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(8, 24, 14, 0.88) 0%,
            rgba(8, 24, 14, 0.72) 27%,
            rgba(8, 24, 14, 0.38) 55%,
            rgba(8, 24, 14, 0.08) 100%
        );
}

.about-hero-content {
    position: relative;
    z-index: 2;

    width: min(calc(100% - 64px), var(--aw-container));
    height: 500px;

    margin: 0 auto;
    padding-top: 120px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


/* =========================================================
   EYEBROW
========================================================= */

.about-hero-eyebrow,
.about-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--aw-orange);

    font-size: 10px;
    font-weight: 800;
    line-height: 1.4;

    letter-spacing: 0.16em;
}

.about-hero-eyebrow {
    margin: 0 0 14px;
    font-size: 11px;
}

.about-hero-eyebrow::before,
.about-section-eyebrow::before {
    content: "";

    height: 2px;

    border-radius: 999px;

    background: var(--aw-green);
}

.about-hero-eyebrow::before {
    width: 28px;
    flex: 0 0 28px;
}

.about-hero-eyebrow::after {
    content: "";

    width: 22px;
    height: 2px;
    flex: 0 0 22px;

    border-radius: 999px;

    background: rgba(255, 101, 0, 0.65);
}

.about-section-eyebrow::before {
    width: 30px;
    flex: 0 0 30px;
}


/* =========================================================
   HERO TITLE
========================================================= */

.about-hero h1 {
    max-width: 780px;

    margin: 0 0 17px;

    color: #ffffff;

    font-size: clamp(40px, 4.3vw, 60px);
    font-weight: 800;
    line-height: 1.05;

    letter-spacing: -0.045em;
}

.about-hero h1 strong {
    color: var(--aw-orange);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.about-hero-content > p {
    max-width: 610px;

    margin: 0;

    color: rgba(255, 255, 255, 0.90);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================================
   BUTTON
========================================================= */

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 46px;
    padding: 0 21px;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.about-btn:hover {
    transform: translateY(-2px);
}

.about-btn span {
    font-size: 17px;
    line-height: 1;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.about-hero-actions {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.about-hero-actions .about-btn + .about-btn {
    margin-left: 24px;
}

.about-btn-primary {
    background: var(--aw-orange);
    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(255, 101, 0, 0.24);
}

.about-btn-primary:hover {
    box-shadow:
        0 14px 32px rgba(255, 101, 0, 0.32);
}

.about-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.50);

    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;

    backdrop-filter: blur(8px);
}

.about-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}


/* =========================================================
   INTRO
========================================================= */

.about-intro {
    padding: 90px 0 100px;
    background: var(--aw-white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: start;
    gap: 64px;
}


/* =========================================================
   INTRO IMAGE
========================================================= */

.about-intro-image {
    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background: var(--aw-bg);

    box-shadow:
        0 24px 55px rgba(23, 32, 24, 0.09),
        0 4px 14px rgba(23, 32, 24, 0.04);
}

.about-intro-image img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 3 / 2;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.about-intro-image:hover img {
    transform: scale(1.015);
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.about-intro-content {
    max-width: 590px;
}

.about-intro-content h2 {
    margin: 10px 0 18px;

    color: var(--aw-dark);

    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.12;

    letter-spacing: -0.035em;
}


/* =========================================================
   CONTENT
========================================================= */

.about-content {
    color: var(--aw-text);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.68;
}

.about-content p {
    margin: 0 0 15px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content strong {
    color: var(--aw-dark);
    font-weight: 700;
}


/* =========================================================
   CONTENT SECTION HEADING
   Decorative strip is used only for full-width sections.
========================================================= */

.about-content-full .about-content h2 {
    display: flex;
    align-items: center;
    gap: 14px;

    margin: 55px 0 16px;

    color: var(--aw-dark);

    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;

    letter-spacing: -0.03em;
}

.about-content-full .about-content h2::before {
    content: "";

    width: 4px;
    height: 42px;
    flex: 0 0 4px;

    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            var(--aw-orange) 0%,
            #b8f000 48%,
            var(--aw-green) 100%
        );
}


/* =========================================================
   LIST
========================================================= */

.about-content ul,
.about-content ol {
    margin: 18px 0 24px;
    padding: 0;

    list-style: none;
}

.about-content ul li,
.about-content ol li {
    position: relative;

    margin: 0;
    padding: 4px 0 4px 27px;

    line-height: 1.7;
}

.about-content ul li::before {
    content: "";

    position: absolute;

    top: 12px;
    left: 3px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--aw-orange);

    box-shadow:
        0 0 0 4px rgba(255, 101, 0, 0.09);
}

.about-content ol {
    counter-reset: about-list;
}

.about-content ol li {
    counter-increment: about-list;
}

.about-content ol li::before {
    content: counter(about-list);

    position: absolute;

    top: 4px;
    left: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: rgba(255, 101, 0, 0.10);

    color: var(--aw-orange);

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   LINKS
========================================================= */

.about-content a {
    color: var(--aw-orange);
    font-weight: 600;
    text-decoration: none;
}

.about-content a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

.about-content blockquote {
    margin: 28px 0;
    padding: 20px 24px;

    border-left: 4px solid var(--aw-orange);
    border-radius: 0 14px 14px 0;

    background:
        linear-gradient(
            90deg,
            rgba(255, 101, 0, 0.06),
            rgba(255, 255, 255, 0.7)
        );

    color: var(--aw-dark);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   TABLE
========================================================= */

.about-content table {
    width: 100%;

    margin: 28px 0;

    border-collapse: collapse;

    background: var(--aw-white);

    border: 1px solid var(--aw-border);
}

.about-content th,
.about-content td {
    padding: 12px 14px;

    border: 1px solid var(--aw-border);

    text-align: left;
}

.about-content th {
    color: var(--aw-dark);
    font-weight: 700;

    background: rgba(1, 255, 0, 0.05);
}


/* =========================================================
   FULL WIDTH CONTENT
========================================================= */

.about-content-full {
    width: 100%;
    max-width: 100%;

    margin-top: 45px;
}

.about-content-full .about-content {
    width: 100%;
    max-width: 100%;
}


/* =========================================================
   FULL WIDTH HEADINGS
========================================================= */

.about-content-full .about-content h2:first-child {
    margin-top: 0;
}

.about-content-full .about-content h2 {
    font-size: clamp(28px, 3vw, 38px);
}

.about-content-full .about-content h2:not(:first-child) {
    margin-top: 48px;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    padding: 10px 0 90px;
    background: var(--aw-white);
}

.about-cta-card {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.85fr);

    align-items: center;

    min-height: 390px;

    overflow: hidden;

    padding: 58px 70px;

    border: 1px solid rgba(23, 32, 24, 0.07);
    border-radius: 30px;

    background: #ffffff;

    box-shadow:
        0 25px 60px rgba(23, 32, 24, 0.08),
        0 5px 18px rgba(23, 32, 24, 0.04);
}


/* =========================================================
   CTA CONTENT
========================================================= */

.about-cta-content {
    position: relative;
    z-index: 3;

    max-width: 700px;
}

.about-cta .about-section-eyebrow {
    color: var(--aw-orange);
}

.about-cta h2 {
    max-width: 700px;

    margin: 15px 0 18px;

    color: var(--aw-dark);

    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.08;

    letter-spacing: -0.04em;
}

.about-cta h2 span {
    display: block;
    color: var(--aw-orange);
}

.about-cta p {
    max-width: 610px;

    margin: 0;

    color: var(--aw-text);

    font-size: 15px;
    line-height: 1.75;
}

.about-cta-actions {
    display: flex;
    align-items: center;

    margin-top: 28px;
}


/* =========================================================
   CTA VISUAL
========================================================= */

.about-cta-visual {
    position: relative;

    min-height: 280px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-cta-circle {
    position: absolute;
    border-radius: 50%;
}

.about-cta-circle-one {
    width: 280px;
    height: 280px;

    background: rgba(1, 255, 0, 0.07);
}

.about-cta-circle-two {
    width: 190px;
    height: 190px;

    background: rgba(255, 101, 0, 0.09);
}


/* =========================================================
   CTA ROUTE
========================================================= */

.about-cta-route {
    position: relative;

    width: 270px;
    height: 150px;

    transform: rotate(-8deg);
}

.about-route-line {
    position: absolute;

    top: 70px;
    left: 28px;

    width: 215px;
    height: 70px;

    border-top: 2px dashed var(--aw-orange);
    border-radius: 50%;

    transform: rotate(-8deg);
}

.about-route-dot {
    position: absolute;

    width: 12px;
    height: 12px;

    border-radius: 50%;

    background: var(--aw-green);

    box-shadow:
        0 0 0 6px rgba(1, 255, 0, 0.10);
}

.about-route-dot.dot-one {
    top: 62px;
    left: 18px;
}

.about-route-dot.dot-two {
    top: 20px;
    right: 18px;

    background: var(--aw-orange);

    box-shadow:
        0 0 0 6px rgba(255, 101, 0, 0.10);
}

.about-route-plane {
    position: absolute;

    top: 4px;
    right: 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: #ffffff;
    color: var(--aw-orange);

    font-size: 27px;

    box-shadow:
        0 12px 30px rgba(23, 32, 24, 0.10);
}


/* =========================================================
   CTA BADGE
========================================================= */

.about-cta-badge {
    position: absolute;

    right: 20px;
    bottom: 15px;

    display: flex;
    flex-direction: column;

    padding: 14px 18px;

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(23, 32, 24, 0.10);

    transform: rotate(3deg);
}

.about-cta-badge strong {
    color: var(--aw-dark);

    font-size: 14px;
    font-weight: 800;
}

.about-cta-badge span {
    margin-top: 3px;

    color: var(--aw-orange);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .about-container {
        width: min(calc(100% - 40px), var(--aw-container));
    }

    .about-hero-content {
        width: min(calc(100% - 40px), var(--aw-container));
    }

    .about-hero {
        height: 520px;
    }

    .about-hero-content {
        height: 520px;
        padding-top: 42px;
    }

    .about-hero h1 {
        max-width: 700px;
        font-size: 52px;
    }

    .about-intro-grid {
        gap: 42px;
    }

    .about-cta {
        padding: 10px 0 70px;
    }

    .about-cta-card {
        grid-template-columns: 1fr;

        padding: 50px 45px;

        gap: 20px;
    }

    .about-cta-content {
        max-width: none;
    }

    .about-cta-visual {
        min-height: 220px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-container {
        width: min(calc(100% - 32px), var(--aw-container));
    }


    /* HERO */

    .about-hero {
        height: 530px;
    }

    .about-hero-image img {
        object-position: center top;
    }

    .about-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 24, 14, 0.08) 0%,
                rgba(8, 24, 14, 0.32) 42%,
                rgba(8, 24, 14, 0.92) 100%
            );
    }

    .about-hero-content {
        width: min(calc(100% - 32px), var(--aw-container));

        height: 530px;

        padding-top: 165px;

        box-sizing: border-box;

        justify-content: flex-start;
    }

    .about-hero-eyebrow {
        margin-bottom: 8px;
        font-size: 9px;
        letter-spacing: 0.14em;
    }

    .about-hero-eyebrow::before {
        width: 20px;
        flex-basis: 20px;
    }

    .about-hero-eyebrow::after {
        width: 16px;
        flex-basis: 16px;
    }

    .about-hero h1 {
        max-width: 100%;

        margin-bottom: 12px;

        font-size: 36px;
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .about-hero-content > p {
        max-width: 100%;

        font-size: 13px;
        line-height: 1.5;
    }

    .about-hero-actions {
        width: 100%;
        margin-top: 17px;
        flex-wrap: wrap;
    }

    .about-hero-actions .about-btn + .about-btn {
        margin-left: 18px;
    }

    .about-btn {
        min-height: 43px;
        padding: 0 18px;
        font-size: 12px;
    }


    /* INTRO */

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

    .about-intro-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
    }

    .about-intro-image {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .about-intro-content {
        width: 100%;
        max-width: none;
    }

    .about-intro-content h2 {
        margin-top: 0;
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 1.15;
    }

    /* Intro heading spacing is defined above. */

    .about-content {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-content p {
        margin-bottom: 14px;
    }


    /* FULL WIDTH CONTENT */

    .about-content-full {
        margin-top: 38px;
    }

     .about-content-full .about-content h2 {
        gap: 11px;
        font-size: 27px;
        line-height: 1.2;
    }

    .about-content-full .about-content h2::before {
        width: 3px;
        height: 34px;
        flex-basis: 3px;
    }

    .about-content-full .about-content h2:not(:first-child) {
        margin-top: 48px;
    }


    /* CTA */

    .about-cta {
        /*
         * Tidak ada jarak besar antara content
         * dan CTA pada mobile.
         */
        padding: 0 0 50px;
    }

    .about-cta-card {
        grid-template-columns: 1fr;

        min-height: auto;

        padding: 38px 26px;

        border-radius: 24px;

        gap: 18px;
    }

    .about-cta h2 {
        margin: 14px 0 16px;

        font-size: 32px;
        line-height: 1.08;
    }

    .about-cta p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-cta-actions {
        margin-top: 22px;
    }

    .about-cta-visual {
        min-height: 190px;
        margin-top: 2px;
    }

    .about-cta-circle-one {
        width: 210px;
        height: 210px;
    }

    .about-cta-circle-two {
        width: 140px;
        height: 140px;
    }

    .about-cta-route {
        transform: scale(.82) rotate(-8deg);
    }

    .about-cta-badge {
        right: 5px;
        bottom: 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-container {
        width: min(calc(100% - 28px), var(--aw-container));
    }


    /* HERO */

    .about-hero {
        height: 535px;
    }

    .about-hero-content {
        width: min(calc(100% - 28px), var(--aw-container));

        height: 500px;

        padding-top: 130px;
    }

    .about-hero-eyebrow {
        margin-bottom: 7px;
        font-size: 8.5px;
    }

    .about-hero h1 {
        margin-bottom: 10px;

        font-size: 33px;
        line-height: 1.04;
    }

    .about-hero-content > p {
        font-size: 12.5px;
        line-height: 1.48;
    }

    .about-hero-actions {
        width: 100%;
        margin-top: 15px;
        flex-direction: column;
        align-items: stretch;
    }

    .about-hero-actions .about-btn + .about-btn {
        margin-left: 0;
        margin-top: 18px;
    }

    .about-btn {
        width: 100%;
        min-height: 42px;
    }


    /* INTRO */

    .about-intro {
        padding: 42px 0 20px;
    }

    .about-intro-grid {
        gap: 28px;
    }

    .about-content-full .about-content h2 {
        gap: 10px;
        font-size: 25px;
    }

    .about-content-full .about-content h2::before {
        height: 31px;
    }


    /* FULL WIDTH */

    .about-content-full {
        margin-top: 32px;
    }


    /* CTA */

    .about-cta {
        padding: 0 0 40px;
    }

    .about-cta-card {
        padding: 34px 22px;

        border-radius: 22px;
    }

    .about-cta h2 {
        font-size: 30px;
    }

    .about-cta-visual {
        min-height: 175px;
    }

    .about-cta-route {
        transform: scale(.72) rotate(-8deg);
    }

}


.about-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    line-height: 1.5;
}

.about-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.about-breadcrumb a:hover {
    color: #ffffff;
}

.about-breadcrumb-separator {
    color: var(--aw-orange);
}

.about-breadcrumb [aria-current="page"] {
    color: #ffffff;
    font-weight: 600;
}