/* =========================================================
   ENDE HOLIDAYS — SYARAT & KETENTUAN
   PREMIUM / CLEAN / RESPONSIVE
   SCOPED ONLY TO .syarat-page
========================================================= */


/* =========================================================
   ROOT
========================================================= */

.syarat-page {
    --syarat-gold: #e5a02b;
    --syarat-gold-dark: #c9820d;
    --syarat-text: #242424;
    --syarat-muted: #707070;
    --syarat-border: #e9e9e9;
    --syarat-bg: #f7f7f7;
    --syarat-white: #ffffff;

    width: 100%;
    background: var(--syarat-bg);
    color: var(--syarat-text);
    font-family: inherit;
}

.syarat-page *,
.syarat-page *::before,
.syarat-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.syarat-page .syarat-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.syarat-page .syarat-hero {
    position: relative;
    min-height: 360px;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .22)
        ),
        url("../../images/tour-hero.webp");

    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.syarat-page .syarat-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .10),
            rgba(0, 0, 0, .30)
        );

    pointer-events: none;
}

.syarat-page .syarat-hero-content {
    position: relative;
    z-index: 2;

    max-width: 760px;

    padding: 90px 0 80px;
}

.syarat-page .syarat-eyebrow {
    display: inline-flex;
    align-items: center;

    margin-bottom: 16px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--syarat-gold);
}

.syarat-page .syarat-eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;

    margin-right: 12px;

    background: var(--syarat-gold);
}

.syarat-page .syarat-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -.7px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.syarat-page .syarat-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 24px;

    font-size: 14px;
    line-height: 1.5;

    color: rgba(255, 255, 255, .72);
}

.syarat-page .syarat-breadcrumb a {
    color: #ffffff;
    text-decoration: none;

    transition:
        color .2s ease,
        opacity .2s ease;
}

.syarat-page .syarat-breadcrumb a:hover {
    color: var(--syarat-gold);
}

.syarat-page .syarat-breadcrumb span {
    color: rgba(255, 255, 255, .65);
}


/* =========================================================
   MAIN
========================================================= */

.syarat-page .syarat-main {
    padding: 70px 0 90px;
}

.syarat-page .syarat-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;

    align-items: start;
}


/* =========================================================
   CONTENT CARD
========================================================= */

.syarat-page .syarat-content-card {
    min-width: 0;

    background: var(--syarat-white);
    border: 1px solid var(--syarat-border);
    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 12px 40px rgba(0, 0, 0, .055);
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.syarat-page .syarat-featured-image {
    position: relative;

    width: 100%;
    max-height: 430px;

    overflow: hidden;

    background: #eeeeee;
}

.syarat-page .syarat-featured-image img {
    display: block;

    width: 100%;
    height: 430px;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.syarat-page .syarat-content {
    padding: 42px 46px 50px;

    font-size: 16px;
    line-height: 1.85;

    color: #444444;
}


/* =========================================================
   FIRST PARAGRAPH
========================================================= */

.syarat-page .syarat-content > p:first-child {
    margin-top: 0;
}


/* =========================================================
   HEADINGS
========================================================= */

.syarat-page .syarat-content h2 {
    position: relative;

    margin: 34px 0 15px;
    padding-left: 17px;

    color: #222222;

    font-size: 25px;
    line-height: 1.35;
    font-weight: 750;
}

.syarat-page .syarat-content h2::before {
    content: "";

    position: absolute;
    left: 0;
    top: .2em;

    width: 4px;
    height: calc(100% - .4em);

    border-radius: 10px;

    background: var(--syarat-gold);
}

.syarat-page .syarat-content h3 {
    margin: 28px 0 12px;

    color: #292929;

    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

.syarat-page .syarat-content h4 {
    margin: 22px 0 10px;

    color: #333333;

    font-size: 17px;
    font-weight: 700;
}


/* =========================================================
   PARAGRAPH
========================================================= */

.syarat-page .syarat-content p {
    margin: 0 0 18px;
}

.syarat-page .syarat-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   LIST
========================================================= */

.syarat-page .syarat-content ul,
.syarat-page .syarat-content ol {
    margin: 0 0 22px;
    padding-left: 24px;
}

.syarat-page .syarat-content li {
    margin-bottom: 9px;
    padding-left: 5px;
}

.syarat-page .syarat-content ul li::marker {
    color: var(--syarat-gold);
}

.syarat-page .syarat-content ol li::marker {
    color: var(--syarat-gold-dark);
    font-weight: 700;
}


/* =========================================================
   LINKS
========================================================= */

.syarat-page .syarat-content a {
    color: var(--syarat-gold-dark);
    font-weight: 600;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.syarat-page .syarat-content a:hover {
    color: #9b6209;
}


/* =========================================================
   STRONG / BOLD
========================================================= */

.syarat-page .syarat-content strong,
.syarat-page .syarat-content b {
    color: #292929;
    font-weight: 700;
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

.syarat-page .syarat-content blockquote {
    margin: 28px 0;
    padding: 22px 24px;

    border-left: 4px solid var(--syarat-gold);
    border-radius: 0 10px 10px 0;

    background: #fff8eb;

    color: #555555;
}


/* =========================================================
   TABLE
========================================================= */

.syarat-page .syarat-content table {
    width: 100%;
    margin: 25px 0;

    border-collapse: collapse;

    font-size: 14px;
}

.syarat-page .syarat-content th,
.syarat-page .syarat-content td {
    padding: 13px 15px;

    border: 1px solid var(--syarat-border);

    text-align: left;
    vertical-align: top;
}

.syarat-page .syarat-content th {
    background: #faf5eb;

    color: #333333;
    font-weight: 700;
}


/* =========================================================
   SIDEBAR
========================================================= */

.syarat-page .syarat-sidebar {
    position: sticky;
    top: 25px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =========================================================
   INFO CARD
========================================================= */

.syarat-page .syarat-info-card {
    padding: 27px;

    background: #ffffff;

    border: 1px solid var(--syarat-border);
    border-radius: 17px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .045);
}


/* =========================================================
   CARD HEADING
========================================================= */

.syarat-page .syarat-card-heading {
    display: flex;
    align-items: center;
    gap: 14px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--syarat-border);
}

.syarat-page .syarat-card-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #fff4df;
    color: var(--syarat-gold-dark);

    font-size: 18px;
}

.syarat-page .syarat-card-label {
    display: block;

    margin-bottom: 3px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;

    color: var(--syarat-gold-dark);
}

.syarat-page .syarat-card-heading h2 {
    margin: 0;

    color: #252525;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 750;
}


/* =========================================================
   COMPANY LIST
========================================================= */

.syarat-page .syarat-company-list {
    display: flex;
    flex-direction: column;

    margin-top: 5px;
}

.syarat-page .syarat-company-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 16px 0;

    border-bottom: 1px solid #eeeeee;
}

.syarat-page .syarat-company-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.syarat-page .syarat-company-icon {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #fafafa;

    color: var(--syarat-gold-dark);

    font-size: 13px;
}

.syarat-page .syarat-company-item strong {
    display: block;

    margin-bottom: 3px;

    color: #333333;

    font-size: 13px;
    font-weight: 700;
}

.syarat-page .syarat-company-item p,
.syarat-page .syarat-company-item a {
    display: block;

    margin: 0;

    color: var(--syarat-muted);

    font-size: 13px;
    line-height: 1.65;

    text-decoration: none;

    overflow-wrap: anywhere;
}

.syarat-page .syarat-company-item a:hover {
    color: var(--syarat-gold-dark);
}


/* =========================================================
   WHATSAPP CARD
========================================================= */

.syarat-page .syarat-contact-card {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 16px;

    padding: 25px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #f8ad31,
            #d9870c
        );

    color: #ffffff;

    overflow: hidden;

    box-shadow:
        0 14px 30px rgba(218, 145, 25, .20);
}

.syarat-page .syarat-contact-card::after {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -55px;
    top: -55px;

    border-radius: 50%;

    border: 18px solid rgba(255, 255, 255, .10);
}

.syarat-page .syarat-contact-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: rgba(255, 255, 255, .17);

    font-size: 22px;
}

.syarat-page .syarat-contact-content {
    position: relative;
    z-index: 2;

    min-width: 0;
}

.syarat-page .syarat-contact-content > span {
    display: block;

    margin-bottom: 3px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;

    color: rgba(255, 255, 255, .78);
}

.syarat-page .syarat-contact-content h3 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 750;
}

.syarat-page .syarat-contact-content p {
    margin: 0 0 17px;

    color: rgba(255, 255, 255, .86);

    font-size: 13px;
    line-height: 1.6;
}

.syarat-page .syarat-wa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 40px;
    padding: 9px 15px;

    border-radius: 9px;

    background: #ffffff;

    color: #258b47;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.syarat-page .syarat-wa-button:hover {
    color: #258b47;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .12);
}


/* =========================================================
   SOCIAL CARD
========================================================= */

.syarat-page .syarat-social-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    padding: 20px 22px;

    background: #ffffff;

    border: 1px solid var(--syarat-border);
    border-radius: 15px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .035);
}

.syarat-page .syarat-social-label {
    color: #555555;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.syarat-page .syarat-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.syarat-page .syarat-social-links a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #f7f7f7;

    color: #555555;

    font-size: 13px;

    text-decoration: none;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.syarat-page .syarat-social-links a:hover {
    background: var(--syarat-gold);
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {

    .syarat-page .syarat-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 24px;
    }

    .syarat-page .syarat-content {
        padding: 35px 32px 42px;
    }

    .syarat-page .syarat-featured-image img {
        height: 350px;
    }

    .syarat-page .syarat-info-card {
        padding: 23px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {

    .syarat-page .syarat-container {
        width: min(100% - 28px, 1180px);
    }

    .syarat-page .syarat-hero {
        min-height: 300px;

        background-position: center;
    }

    .syarat-page .syarat-hero-content {
        padding: 75px 0 60px;
    }

    .syarat-page .syarat-eyebrow {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .syarat-page .syarat-hero h1 {
        font-size: 34px;
    }

    .syarat-page .syarat-breadcrumb {
        margin-top: 18px;

        font-size: 12px;
    }

    .syarat-page .syarat-main {
        padding: 40px 0 60px;
    }

    .syarat-page .syarat-layout {
        display: flex;
        flex-direction: column;
        gap: 22px;
    }

    .syarat-page .syarat-content-card,
    .syarat-page .syarat-sidebar {
        width: 100%;
    }

    .syarat-page .syarat-sidebar {
        position: static;
    }

    .syarat-page .syarat-featured-image {
        max-height: 280px;
    }

    .syarat-page .syarat-featured-image img {
        width: 100%;
        height: 280px;
    }

    .syarat-page .syarat-content {
        padding: 28px 22px 34px;

        font-size: 15px;
        line-height: 1.8;
    }

    .syarat-page .syarat-content h2 {
        margin-top: 28px;

        font-size: 22px;
    }

    .syarat-page .syarat-content h3 {
        font-size: 18px;
    }

    .syarat-page .syarat-content table {
        display: block;

        width: 100%;

        overflow-x: auto;

        white-space: nowrap;
    }

    .syarat-page .syarat-info-card {
        padding: 22px;
    }

    .syarat-page .syarat-contact-card {
        padding: 22px;
    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .syarat-page .syarat-container {
        width: calc(100% - 22px);
    }

    .syarat-page .syarat-hero {
        min-height: 270px;
    }

    .syarat-page .syarat-hero-content {
        padding: 65px 0 50px;
    }

    .syarat-page .syarat-hero h1 {
        font-size: 29px;
    }

    .syarat-page .syarat-main {
        padding: 30px 0 45px;
    }

    .syarat-page .syarat-content {
        padding: 25px 18px 30px;
    }

    .syarat-page .syarat-featured-image,
    .syarat-page .syarat-featured-image img {
        height: 220px;
    }

    .syarat-page .syarat-card-heading h2 {
        font-size: 17px;
    }

    .syarat-page .syarat-social-card {
        align-items: flex-start;
        flex-direction: column;
    }

}