/* =========================================================
   KONTAK KAMI
   Aurora Wisata Tours & Travel
========================================================= */
:root {
    --contact-green: #01ff00;
    --contact-orange: #ff6500;

    --contact-dark: #14251d;
    --contact-text: #26352e;
    --contact-muted: #6f7c76;

    --contact-bg: #f7faf8;
    --contact-white: #ffffff;
    --contact-border: #e7ece9;

    --contact-radius: 20px;
    --contact-shadow:
        0 18px 45px rgba(20, 37, 29, 0.08);
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.contact-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    isolation: isolate;
}

.contact-hero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.contact-hero-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(8, 20, 15, 0.72) 0%,
            rgba(8, 20, 15, 0.48) 35%,
            rgba(8, 20, 15, 0.16) 68%,
            rgba(8, 20, 15, 0.05) 100%
        );
}

.contact-hero-container {
    position: relative;
    z-index: 10;
    min-height: 700px;

    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.contact-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin: 0 0 22px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    line-height: 1.5;
}

.contact-breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.contact-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-breadcrumb a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;

    transition: color 0.2s ease;
}

.contact-breadcrumb a:hover {
    color: #ffffff;
}

.contact-breadcrumb li > span:not([aria-current]) {
    color: var(--contact-orange);
}

.contact-breadcrumb [aria-current="page"] {
    color: #ffffff;
    font-weight: 600;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.contact-hero-content {
    width: min(700px, 100%);
    padding-top: 35px;
}

.contact-hero-eyebrow,
.section-eyebrow,
.contact-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 13px;

    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.16em;

    color: #ffffff;
}

.contact-hero-eyebrow::before,
.section-eyebrow::before {
    content: "";

    width: 30px;
    height: 3px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--contact-green),
            var(--contact-orange)
        );
}

.contact-hero-content h1 {
    max-width: 720px;

    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(42px, 4.3vw, 62px);
    line-height: 1.06;
    font-weight: 800;

    letter-spacing: -0.04em;
}

.contact-hero-content p {
    max-width: 620px;

    margin: 0;

    color: rgba(255, 255, 255, 0.90);

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   SECTION COMMON
========================================================= */

.contact-info-section,
.contact-content-section,
.contact-location-section {
    padding: 100px 0;
}

.section-heading {
    max-width: 680px;
}

.section-heading .section-eyebrow,
.contact-main-content .section-eyebrow {
    color: var(--contact-orange);
}

.section-heading .section-eyebrow::before,
.contact-main-content .section-eyebrow::before {
    background:
        linear-gradient(
            90deg,
            var(--contact-green),
            var(--contact-orange)
        );
}

.section-heading h2,
.contact-main-content h2 {
    margin: 0 0 18px;

    color: var(--contact-dark);

    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 800;

    letter-spacing: -0.03em;
}

.section-heading p,
.contact-main-content > p {
    margin: 0;

    color: var(--contact-muted);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info-section {
    background: var(--contact-white);
}

.contact-info-heading {
    margin-bottom: 42px;
}

.contact-info-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.contact-info-card {
    position: relative;

    min-height: 205px;

    padding: 28px 24px;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid var(--contact-border);
    border-radius: var(--contact-radius);

    box-shadow:
        0 10px 30px rgba(20, 37, 29, 0.045);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255, 101, 0, 0.24);

    box-shadow:
        0 18px 40px rgba(20, 37, 29, 0.09);
}

.contact-info-icon {
    width: 50px;
    height: 50px;

    margin-bottom: 24px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(1, 255, 0, 0.12),
            rgba(255, 101, 0, 0.10)
        );
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;

    fill: none;
    stroke: var(--contact-orange);

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-label {
    display: block;

    margin-bottom: 9px;

    color: var(--contact-muted);

    font-size: 12px;
    line-height: 1.2;

    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-info-content p {
    margin: 0;

    color: var(--contact-text);

    font-size: 15px;
    line-height: 1.65;
}

.contact-info-link {
    display: inline-block;

    color: var(--contact-dark);

    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;

    text-decoration: none;

    overflow-wrap: anywhere;

    transition: color 0.25s ease;
}

.contact-info-link:hover {
    color: var(--contact-orange);
}


/* =========================================================
   WHATSAPP CARD
========================================================= */

.contact-info-card-highlight {
    background:
        linear-gradient(
            145deg,
            #14251d 0%,
            #20372b 100%
        );

    border-color: transparent;
}

.contact-info-card-highlight .contact-info-icon {
    background:
        rgba(255, 255, 255, 0.10);
}

.contact-info-card-highlight .contact-info-icon svg {
    stroke: #ffffff;
}

.contact-info-card-highlight .contact-info-label {
    color: rgba(255, 255, 255, 0.62);
}

.contact-info-card-highlight .contact-info-content p {
    color: rgba(255, 255, 255, 0.82);
}

.contact-info-action {
    display: inline-flex;
    align-items: center;

    margin-top: 15px;

    color: var(--contact-green);

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.contact-info-action::after {
    content: "→";

    margin-left: 8px;

    color: var(--contact-orange);

    transition: transform 0.25s ease;
}

.contact-info-action:hover {
    color: #ffffff;
}

.contact-info-action:hover::after {
    transform: translateX(4px);
}


/* =========================================================
   CONTACT CONTENT
========================================================= */

.contact-content-section {
    background: var(--contact-bg);
}

.contact-content-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(320px, 0.75fr);

    gap: 70px;

    align-items: start;
}

.contact-main-content {
    max-width: 760px;
}

.contact-rich-content {
    margin-top: 32px;

    color: var(--contact-text);

    font-size: 16px;
    line-height: 1.9;
}

.contact-rich-content > *:first-child {
    margin-top: 0;
}

.contact-rich-content > *:last-child {
    margin-bottom: 0;
}

.contact-rich-content h2,
.contact-rich-content h3,
.contact-rich-content h4 {
    margin-top: 42px;
    margin-bottom: 16px;

    color: var(--contact-dark);

    line-height: 1.25;
}

.contact-rich-content h2 {
    font-size: 30px;
}

.contact-rich-content h3 {
    font-size: 24px;
}

.contact-rich-content h4 {
    font-size: 19px;
}

.contact-rich-content p {
    margin: 0 0 20px;
}

.contact-rich-content ul,
.contact-rich-content ol {
    margin: 0 0 24px;
    padding-left: 22px;
}

.contact-rich-content li {
    margin-bottom: 9px;
}

.contact-rich-content a {
    color: var(--contact-orange);
    font-weight: 700;
}


/* =========================================================
   CTA CARD
========================================================= */

.contact-cta-card {
    position: sticky;
    top: 110px;

    padding: 38px;

    background:
        linear-gradient(
            145deg,
            #14251d,
            #1d3328
        );

    border-radius: 26px;

    box-shadow:
        0 22px 55px rgba(20, 37, 29, 0.14);

    overflow: hidden;
}

.contact-cta-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(1, 255, 0, 0.20),
            transparent 68%
        );
}

.contact-cta-card::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    left: -90px;
    bottom: -90px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 101, 0, 0.18),
            transparent 68%
        );
}

.contact-cta-icon {
    position: relative;
    z-index: 1;

    width: 54px;
    height: 54px;

    margin-bottom: 26px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.10);
}

.contact-cta-icon svg {
    width: 25px;
    height: 25px;

    fill: none;
    stroke: #ffffff;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-cta-card .contact-cta-label {
    position: relative;
    z-index: 1;

    color: var(--contact-green);
}

.contact-cta-card h2 {
    position: relative;
    z-index: 1;

    margin: 0 0 17px;

    color: #ffffff;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;

    letter-spacing: -0.025em;
}

.contact-cta-card p {
    position: relative;
    z-index: 1;

    margin: 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 15px;
    line-height: 1.75;
}

.contact-cta-button {
    position: relative;
    z-index: 1;

    margin-top: 28px;

    min-height: 52px;
    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--contact-orange),
            #ff7a21
        );

    border-radius: 12px;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 12px 25px rgba(255, 101, 0, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-cta-button svg,
.contact-final-cta-button svg,
.contact-map-link svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-cta-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 30px rgba(255, 101, 0, 0.28);
}


/* =========================================================
   LOCATION
========================================================= */

.contact-location-section {
    background: #ffffff;
}

.contact-location-heading {
    margin-bottom: 38px;
}

.contact-location-heading p {
    margin-top: 5px;
}

.contact-map-wrapper {
    position: relative;

    width: 100%;
    height: 480px;

    overflow: hidden;

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(20, 37, 29, 0.10);

    border: 1px solid var(--contact-border);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}

.contact-map-action {
    margin-top: 20px;

    display: flex;
    justify-content: flex-end;
}

.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--contact-orange);

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.contact-map-link:hover {
    color: var(--contact-dark);
    transform: translateX(3px);
}


/* =========================================================
   FINAL CTA
========================================================= */

.contact-final-cta {
    padding: 90px 0;

    background: #f7faf8;
}

.contact-final-cta-inner {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 60px 65px;

    overflow: hidden;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #14251d 0%,
            #20372b 100%
        );

    border: 1px solid rgba(20, 37, 29, 0.08);

    box-shadow:
        0 20px 50px rgba(20, 37, 29, 0.10);
}

.contact-final-cta-inner::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -130px;
    top: -170px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(1, 255, 0, 0.17),
            transparent 68%
        );
}

.contact-final-cta-content {
    position: relative;
    z-index: 1;

    max-width: 760px;
}

.contact-final-cta-content .section-eyebrow {
    color: var(--contact-green);
}

.contact-final-cta-content h2 {
    margin: 0 0 16px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.14;
    font-weight: 800;

    letter-spacing: -0.03em;
}

.contact-final-cta-content p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.75;
}

.contact-final-cta-button {
    position: relative;
    z-index: 1;

    flex: 0 0 auto;

    min-height: 54px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--contact-orange),
            #ff7a21
        );

    border-radius: 13px;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 15px 30px rgba(255, 101, 0, 0.20);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-final-cta-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 19px 35px rgba(255, 101, 0, 0.28);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .contact-container,
    .contact-hero-container {
        width: min(920px, calc(100% - 40px));
    }

    .contact-info-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .contact-content-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(300px, 0.7fr);

        gap: 45px;
    }

    .contact-cta-card {
        padding: 32px;
    }

    .contact-final-cta-inner {
        padding: 50px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-container,
    .contact-hero-container {
        width: calc(100% - 32px);
    }


    /* HERO */

    .contact-hero {
        min-height: 560px;
    }

    .contact-hero-media img {
        object-position: center 42%;
    }

    .contact-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 20, 15, 0.20) 0%,
                rgba(8, 20, 15, 0.28) 38%,
                rgba(8, 20, 15, 0.76) 100%
            );
    }

    .contact-hero-container {
        min-height: 560px;

        justify-content: flex-end;

        padding-bottom: 55px;
    }

.contact-breadcrumb ol {
    padding: 8px 12px;
    gap: 7px;
    font-size: 11px;
}

.contact-breadcrumb li {
    gap: 7px;
}

    .contact-hero-content {
        padding-top: 0;
    }

    .contact-hero-eyebrow {
        margin-bottom: 11px;
    font-size: 10px;
    letter-spacing: 0.14em;
    }
    
    .contact-hero-eyebrow::before {
        width: 30px;
    }

    .contact-hero-content h1 {
    margin-bottom: 14px;

    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.07;

    letter-spacing: -0.035em;
}

    .contact-hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }


    /* SECTIONS */

    .contact-info-section,
    .contact-content-section,
    .contact-location-section {
        padding: 70px 0;
    }

    .section-heading h2,
    .contact-main-content h2 {
        font-size: 32px;
    }

    .section-heading p,
    .contact-main-content > p {
        font-size: 15px;
        line-height: 1.75;
    }


    /* INFO CARDS */

    .contact-info-heading {
        margin-bottom: 30px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-info-card {
        min-height: auto;

        padding: 23px 20px;

        display: grid;
        grid-template-columns: 50px minmax(0, 1fr);

        column-gap: 17px;
        align-items: start;
    }

    .contact-info-icon {
        margin: 0;
    }

    .contact-info-content {
        min-width: 0;
    }

    .contact-info-label {
        margin-top: 2px;
    }


    /* CONTENT */

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-rich-content {
        margin-top: 25px;

        font-size: 15px;
        line-height: 1.8;
    }

    .contact-rich-content h2 {
        font-size: 27px;
    }

    .contact-rich-content h3 {
        font-size: 22px;
    }


    /* CTA */

    .contact-cta-card {
        position: relative;
        top: auto;

        padding: 30px 25px;

        border-radius: 22px;
    }

    .contact-cta-card h2 {
        font-size: 27px;
    }


    /* MAP */

    .contact-location-heading {
        margin-bottom: 28px;
    }

    .contact-map-wrapper {
        height: 380px;

        border-radius: 20px;
    }

    .contact-map-action {
        justify-content: flex-start;
    }


    /* FINAL CTA */

    .contact-final-cta {
        padding: 60px 0;
    }

    .contact-final-cta-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 30px;

        padding: 38px 25px;

        border-radius: 22px;
    }

    .contact-final-cta-content h2 {
        font-size: 31px;
    }

    .contact-final-cta-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-final-cta-button {
        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

.contact-hero {
    min-height: 440px;
}

.contact-hero-container {
    min-height: 440px;
    padding-bottom: 38px;
}

    .contact-hero-content h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .contact-hero-content p {
        font-size: 14px;
    }
    
     .contact-hero-eyebrow {
        margin-bottom: 11px;
        font-size: 10px;
        letter-spacing: 0.14em;
    }

    .contact-hero-eyebrow::before {
        width: 24px;
    }

    .contact-info-card {
        grid-template-columns: 44px minmax(0, 1fr);

        column-gap: 14px;

        padding: 20px 17px;
    }

    .contact-info-icon {
        width: 44px;
        height: 44px;

        border-radius: 13px;
    }

    .contact-info-icon svg {
        width: 21px;
        height: 21px;
    }

    .contact-info-content p,
    .contact-info-link {
        font-size: 14px;
    }

    .contact-cta-card {
        padding: 27px 21px;
    }

    .contact-cta-card h2 {
        font-size: 25px;
    }

    .contact-map-wrapper {
        height: 320px;
    }

    .contact-final-cta-inner {
        padding: 32px 20px;
    }

    .contact-final-cta-content h2 {
        font-size: 28px;
    }
}

/* =========================================================
   CONTACT HERO — DESKTOP
========================================================= */

@media (min-width: 769px) {

    .contact-hero,
    .contact-hero-container {
        min-height: 460px;
    }

    .contact-hero {
        height: 460px;
    }

    .contact-hero-media img {
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}