/* =========================================================
   ENDE HOLIDAYS — TENTANG KAMI
   PREMIUM / CLEAN / RESPONSIVE
========================================================= */


/* =========================================================
   RESET LOCAL
========================================================= */

.tentang-page {
    width: 100%;
    background: #ffffff;
    color: #242424;
}

.tentang-page *,
.tentang-page *::before,
.tentang-page *::after {
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.tentang-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.tentang-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    padding: 28px 0 22px;

    font-size: 13px;
    line-height: 1.5;

    color: #7a7a7a;
}

.tentang-breadcrumb a {
    color: #6f6f6f;
    text-decoration: none;

    transition: color .25s ease;
}

.tentang-breadcrumb a:hover {
    color: #e99f24;
}

.tentang-breadcrumb-separator {
    color: #c8c8c8;
}

.tentang-breadcrumb span[aria-current="page"] {
    color: #2c2c2c;
    font-weight: 600;
}


/* =========================================================
   HERO
========================================================= */

.tentang-hero {
    position: relative;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(400px, .92fr);

    min-height: 430px;

    margin-bottom: 70px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #f8f5ef 0%,
            #fffdf9 100%
        );

    border-radius: 24px;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.tentang-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 65px 65px 65px 70px;
}

.tentang-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .18em;

    color: #e99f24;
}

.tentang-eyebrow::before {
    content: "";

    display: block;

    width: 28px;
    height: 2px;

    background: #e99f24;
}

.tentang-hero h1 {
    max-width: 620px;

    margin: 0 0 22px;

    color: #202020;

    font-size: clamp(38px, 4.2vw, 62px);
    line-height: 1.04;

    font-weight: 800;

    letter-spacing: -.035em;
}

.tentang-hero-content > p {
    max-width: 590px;

    margin: 0;

    color: #666666;

    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.tentang-hero-image {
    position: relative;

    min-height: 430px;

    overflow: hidden;
}

.tentang-hero-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.08),
            transparent 35%
        );

    pointer-events: none;
}

.tentang-hero-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.tentang-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        340px;

    gap: 70px;

    align-items: start;

    padding-bottom: 90px;
}

.tentang-main {
    min-width: 0;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.tentang-section-label {
    display: inline-block;

    margin-bottom: 13px;

    color: #e99f24;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .18em;
}


/* =========================================================
   STORY
========================================================= */

.tentang-story {
    padding-bottom: 55px;

    border-bottom: 1px solid #eeeeee;
}

.tentang-story h2 {
    margin: 0 0 25px;

    color: #222222;

    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -.025em;
}


/* =========================================================
   RICH CONTENT
========================================================= */

.tentang-rich-content {
    max-width: 850px;

    color: #5e5e5e;

    font-size: 16px;
    line-height: 1.9;
}

.tentang-rich-content p {
    margin: 0 0 20px;
}

.tentang-rich-content p:last-child {
    margin-bottom: 0;
}

.tentang-rich-content h2,
.tentang-rich-content h3,
.tentang-rich-content h4 {
    margin-top: 32px;
    margin-bottom: 14px;

    color: #252525;

    line-height: 1.35;
}

.tentang-rich-content ul,
.tentang-rich-content ol {
    margin: 24px 0;
    padding: 0;

    list-style: none;
}

.tentang-rich-content ul li {
    position: relative;

    padding-left: 28px;

    margin-bottom: 12px;

    color: #5c5c5c;

    line-height: 1.8;
}

.tentang-rich-content ul li::before {
    content: "";

    position: absolute;

    left: 2px;
    top: 11px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #e99f24;

    box-shadow:
        0 0 0 4px rgba(233,159,36,.12);
}

.tentang-rich-content ol {
    counter-reset: tentang-counter;
}

.tentang-rich-content ol li {
    position: relative;

    padding-left: 40px;

    margin-bottom: 14px;

    color: #5c5c5c;

    line-height: 1.8;

    counter-increment: tentang-counter;
}

.tentang-rich-content ol li::before {
    content: counter(tentang-counter);

    position: absolute;

    left: 0;
    top: 1px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    border-radius: 8px;

    background: #fff1da;

    color: #d8901b;

    font-size: 11px;
    font-weight: 800;
}

.tentang-rich-content a {
    color: #d98d15;

    text-decoration: underline;
    text-underline-offset: 3px;
}

.tentang-rich-content img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 28px auto;

    border-radius: 14px;
}

.tentang-rich-content blockquote {
    margin: 28px 0;

    padding: 22px 24px;

    border-left: 3px solid #e99f24;

    border-radius: 0 12px 12px 0;

    background: #fffaf2;

    color: #555555;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FALLBACK CONTENT
========================================================= */

.tentang-content-fallback {
    max-width: 800px;

    margin: 0;

    color: #666666;

    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   COMPANY
========================================================= */

.tentang-company {
    padding: 55px 0;
}

.tentang-section-heading {
    margin-bottom: 30px;
}

.tentang-section-heading h2 {
    margin: 0;

    color: #242424;

    font-size: clamp(27px, 2.5vw, 36px);
    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.025em;
}


/* =========================================================
   INFORMATION GRID
========================================================= */

.tentang-info-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;
}


/* =========================================================
   INFORMATION CARD
========================================================= */

.tentang-info-card {
    display: flex;
    align-items: flex-start;

    gap: 17px;

    min-height: 115px;

    padding: 23px;

    background: #faf9f7;

    border: 1px solid #eeeeee;

    border-radius: 16px;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.tentang-info-card:hover {
    transform: translateY(-3px);

    border-color: #ead7b8;

    box-shadow:
        0 12px 30px rgba(0,0,0,.055);
}


/* =========================================================
   INFO ICON
========================================================= */

.tentang-info-icon {
    flex: 0 0 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 12px;

    background: #fff2dc;

    color: #df941d;

    font-size: 19px;
}


/* =========================================================
   INFO CONTENT
========================================================= */

.tentang-info-content {
    min-width: 0;
}

.tentang-info-content small {
    display: block;

    margin-bottom: 7px;

    color: #969696;

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .12em;
}

.tentang-info-content p {
    margin: 0;

    color: #4c4c4c;

    font-size: 14px;
    line-height: 1.65;

    overflow-wrap: anywhere;
}

.tentang-info-content a {
    color: #343434;

    text-decoration: none;

    transition: color .2s ease;
}

.tentang-info-content a:hover {
    color: #e99f24;
}


/* =========================================================
   LOCATION
========================================================= */

.tentang-location {
    padding-top: 10px;
}

.tentang-map {
    position: relative;

    width: 100%;
    height: 380px;

    overflow: hidden;

    background: #eeeeee;

    border: 1px solid #ededed;

    border-radius: 20px;
}

.tentang-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   SIDEBAR
========================================================= */

.tentang-sidebar {
    position: sticky;
    top: 30px;

    display: flex;
    flex-direction: column;

    gap: 18px;

    min-width: 0;
}


/* =========================================================
   SIDEBAR EYEBROW
========================================================= */

.tentang-sidebar-eyebrow {
    display: block;

    margin-bottom: 13px;

    color: #e99f24;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .18em;
}


/* =========================================================
   WHATSAPP CARD
========================================================= */

.tentang-whatsapp {
    position: relative;

    isolation: isolate;

    overflow: hidden;

    padding: 32px;

    border-radius: 23px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(233,159,36,.22) 0,
            rgba(233,159,36,.09) 25%,
            transparent 48%
        ),
        linear-gradient(
            145deg,
            #272727 0%,
            #151515 100%
        );

    border: 1px solid rgba(255,255,255,.07);

    color: #ffffff;

    box-shadow:
        0 20px 50px rgba(0,0,0,.14);
}


/* decorative circle */

.tentang-whatsapp::before {
    content: "";

    position: absolute;
    z-index: -1;

    width: 155px;
    height: 155px;

    top: -100px;
    right: -60px;

    border-radius: 50%;

    background: rgba(233,159,36,.13);

    pointer-events: none;
}


/* =========================================================
   WHATSAPP SYMBOL
========================================================= */

.tentang-whatsapp-symbol {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-bottom: 24px;

    border-radius: 14px;

    background: rgba(233,159,36,.16);

    color: #f4b343;

    font-size: 20px;

    box-shadow:
        inset 0 0 0 1px rgba(233,159,36,.08);
}


/* =========================================================
   WHATSAPP EYEBROW
========================================================= */

.tentang-whatsapp .tentang-sidebar-eyebrow {
    position: relative;
    z-index: 2;

    margin-bottom: 12px;

    color: #f2aa31 !important;
}


/* =========================================================
   WHATSAPP TITLE
   FORCE WHITE
========================================================= */

.tentang-whatsapp h2 {
    position: relative;
    z-index: 2;

    display: block;

    max-width: 260px;

    margin: 0 0 17px !important;

    color: #ffffff !important;

    font-family: inherit;

    font-size: 30px !important;
    line-height: 1.16 !important;

    font-weight: 800 !important;

    letter-spacing: -.025em !important;

    opacity: 1 !important;
}


/* =========================================================
   WHATSAPP DESCRIPTION
========================================================= */

.tentang-whatsapp > p {
    position: relative;
    z-index: 2;

    margin: 0 0 26px;

    color: #d2d2d2 !important;

    font-size: 14px;
    line-height: 1.75;

    opacity: 1 !important;
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.tentang-whatsapp-button {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 58px;

    padding: 0 17px;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #f0a51f,
            #e99a18
        );

    color: #ffffff !important;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 8px 22px rgba(233,159,36,.20);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        filter .25s ease;
}

.tentang-whatsapp-button:hover {
    transform: translateY(-2px);

    color: #ffffff !important;

    box-shadow:
        0 12px 28px rgba(233,159,36,.28);

    filter: brightness(1.04);
}

.tentang-whatsapp-button span {
    font-size: 20px;
    line-height: 1;
}


/* =========================================================
   WHATSAPP NUMBER
========================================================= */

.tentang-whatsapp-number {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-top: 20px;

    color: #999999;

    font-size: 11px;
    line-height: 1.5;
}

.tentang-whatsapp-number strong {
    color: #ffffff !important;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: .01em;
}


/* =========================================================
   SOCIAL CARD
========================================================= */

.tentang-social {
    padding: 27px;

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.035);
}

.tentang-social .tentang-sidebar-eyebrow {
    margin-bottom: 10px;

    color: #e99f24 !important;
}

.tentang-social h3 {
    margin: 0 0 20px;

    color: #242424 !important;

    font-size: 22px;
    line-height: 1.25;

    font-weight: 800;
}


/* =========================================================
   SOCIAL LIST
========================================================= */

.tentang-social-list {
    display: flex;
    flex-direction: column;

    gap: 8px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.tentang-social-list li {
    margin: 0;
    padding: 0;

    list-style: none;
}

.tentang-social-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 46px;

    padding: 0 14px;

    background: #fafafa;

    border: 1px solid #eeeeee;

    border-radius: 11px;

    color: #3c3c3c !important;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition:
        color .22s ease,
        background .22s ease,
        border-color .22s ease,
        transform .22s ease;
}

.tentang-social-list a:hover {
    transform: translateX(3px);

    background: #fffaf2;

    border-color: #efd9b4;

    color: #d88d17 !important;
}

.tentang-social-list a span:last-child {
    color: #a3a3a3;

    font-size: 15px;

    transition:
        color .22s ease,
        transform .22s ease;
}

.tentang-social-list a:hover span:last-child {
    color: #e99f24;

    transform: translateX(2px);
}


/* =========================================================
   SIDEBAR NOTE
========================================================= */

.tentang-sidebar-note {
    padding: 27px;

    background:
        linear-gradient(
            135deg,
            #fffaf1,
            #fffdf9
        );

    border: 1px solid #f0e0c6;

    border-radius: 20px;
}

.tentang-sidebar-note > span {
    display: block;

    margin-bottom: 12px;

    color: #dc941d;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .16em;
}

.tentang-sidebar-note p {
    margin: 0 0 18px;

    color: #686868;

    font-size: 13px;
    line-height: 1.7;
}

.tentang-sidebar-note a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: #282828;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
}

.tentang-sidebar-note a:hover {
    color: #e99f24;
}

.tentang-sidebar-note a span {
    font-size: 17px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .tentang-page .container {
        width: min(100% - 32px, 900px);
    }

    .tentang-hero {
        grid-template-columns:
            minmax(0, 1fr)
            .85fr;

        min-height: 390px;

        margin-bottom: 55px;
    }

    .tentang-hero-content {
        padding: 50px;
    }

    .tentang-hero-image {
        min-height: 390px;
    }

    .tentang-layout {
        grid-template-columns:
            minmax(0, 1fr)
            300px;

        gap: 40px;
    }

    .tentang-info-grid {
        gap: 12px;
    }

    .tentang-info-card {
        padding: 18px;
    }

    .tentang-whatsapp,
    .tentang-social,
    .tentang-sidebar-note {
        padding: 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .tentang-page .container {
        width: calc(100% - 28px);
    }


    /* -----------------------------------------
       BREADCRUMB
    ----------------------------------------- */

    .tentang-breadcrumb {
        padding: 20px 0 18px;

        font-size: 12px;
    }


    /* -----------------------------------------
       HERO
    ----------------------------------------- */

    .tentang-hero {
        display: flex;
        flex-direction: column;

        min-height: 0;

        margin-bottom: 45px;

        border-radius: 18px;
    }

    .tentang-hero-content {
        order: 1;

        padding: 38px 27px 32px;
    }

    .tentang-eyebrow {
        margin-bottom: 15px;

        font-size: 9px;

        letter-spacing: .14em;
    }

    .tentang-eyebrow::before {
        width: 22px;
    }

    .tentang-hero h1 {
        margin-bottom: 17px;

        font-size: 38px;

        line-height: 1.06;
    }

    .tentang-hero-content > p {
        font-size: 14px;

        line-height: 1.75;
    }

    .tentang-hero-image {
        order: 2;

        min-height: 245px;
        height: 245px;
    }


    /* -----------------------------------------
       MAIN
    ----------------------------------------- */

    .tentang-layout {
        display: block;

        padding-bottom: 55px;
    }


    /* -----------------------------------------
       STORY
    ----------------------------------------- */

    .tentang-story {
        padding-bottom: 38px;
    }

    .tentang-story h2 {
        margin-bottom: 19px;

        font-size: 29px;
    }

    .tentang-rich-content,
    .tentang-content-fallback {
        font-size: 14px;

        line-height: 1.8;
    }


    /* -----------------------------------------
       COMPANY
    ----------------------------------------- */

    .tentang-company {
        padding: 40px 0;
    }

    .tentang-section-heading {
        margin-bottom: 23px;
    }

    .tentang-section-heading h2 {
        font-size: 27px;
    }

    .tentang-info-grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .tentang-info-card {
        min-height: auto;

        padding: 18px;
    }


    /* -----------------------------------------
       MAP
    ----------------------------------------- */

    .tentang-location {
        padding-top: 0;
    }

    .tentang-map {
        height: 300px;

        border-radius: 16px;
    }


    /* -----------------------------------------
       SIDEBAR
    ----------------------------------------- */

    .tentang-sidebar {
        position: static;

        margin-top: 15px;
    }


    /* -----------------------------------------
       WHATSAPP
    ----------------------------------------- */

    .tentang-whatsapp {
        padding: 29px 25px;

        border-radius: 20px;
    }

    .tentang-whatsapp h2 {
        max-width: 100%;

        margin-bottom: 16px !important;

        color: #ffffff !important;

        font-size: 28px !important;
    }

    .tentang-whatsapp > p {
        color: #d2d2d2 !important;

        font-size: 14px;
    }


    /* -----------------------------------------
       SOCIAL
    ----------------------------------------- */

    .tentang-social {
        padding: 24px;

        border-radius: 18px;
    }

    .tentang-social-list a {
        min-height: 48px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .tentang-whatsapp {
        padding: 26px 22px;
    }

    .tentang-whatsapp h2 {
        font-size: 26px !important;
    }

    .tentang-whatsapp-button {
        min-height: 55px;
    }

}