/* ========================================
   CSS RESET & VARIABLES
   ======================================== */
:root {
    --primary-color: #8b9d83;
    --secondary-color: #99bc76;
    --hero-bg: #e0ebe3;
    --text-dark: #4a5568;
    --text-light: #6b7f71;
    --bg-light: #f8faf6;
    --white: #ffffff;
    --border-color: #e5ede0;
    --max-width: 1400px;
    --container-padding: 40px;
}

/* Safari CSS Reset */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HTML & Body Base */
html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    background: #f2f3f7;
}

body {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    overflow-x: hidden;
    background: #f2f3f7;
}

/* ========================================
   CONTAINER SYSTEM
   ======================================== */
.container,
.container-1440,
.hero-container,
.explore-container,
.service-container,
.moments-container,
.faq-container {
    max-width: 1400px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--container-padding) !important;
    padding-right: var(--container-padding) !important;
    box-sizing: border-box !important;
    position: relative;
    left: 0 !important;
    right: 0 !important;
    -webkit-transform: none !important;
    transform: none !important;
}

/* Responsive Padding */
@media (max-width: 1400px) {
    :root {
        --container-padding: 40px;
    }
}
@media (max-width: 1024px) {
    :root {
        --container-padding: 30px;
    }
}
@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }
}
@media (max-width: 480px) {
    :root {
        --container-padding: 15px;
    }
}

/* ========================================
   1. HERO SECTION - UPDATED WITH SINGLE IMAGE
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 40px 0 20px 0;
    background:
        linear-gradient(
            180deg,
            rgba(242, 243, 247, 0.08) 0%,
            rgba(242, 243, 247, 0.54) 20%,
            rgba(242, 243, 247, 1) 58%,
            rgba(242, 243, 247, 1) 67%,
            rgba(242, 243, 247, 0.08) 100%
        ),
        #f2f3f7;
    overflow: hidden;
    z-index: 1;
}

/* Hero Background - Safari compatible */
.hero-gradient {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #e0ebe3 25%,
        #e0ebe3 75%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    -webkit-mask-image: linear-gradient(
        to right,
        black 0%,
        black 20%,
        transparent 50%,
        black 80%,
        black 100%
    );
    mask-image: linear-gradient(
        to right,
        black 0%,
        black 20%,
        transparent 50%,
        black 80%,
        black 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

/* Hero Decoration - Dikurangi karena mengganggu */
.hero-section::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    left: 0;
    top: 0;
    border: 1px solid #e1e2ea;
    pointer-events: none;
    opacity: 0.3;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 300px;
    left: 0;
    top: 0;
    background: linear-gradient(
        180deg,
        rgba(242, 243, 247, 0.3) 0%,
        transparent 100%
    );
    pointer-events: none;
    z-index: -1;
}

/* Left Decoration Image */
.hero-decoration-left {
    position: absolute;
    width: auto;
    height: 250px;
    left: -10px;
    top: -10px;
    z-index: 1;
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
}

.hero-decoration-left img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

/* Main Container */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
}

/* Left Content */
.hero-text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    width: 650px;
    padding-top: 10px;
}

.hero-content-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
}

/* Breadcrumb */
.hero-breadcrumb {
    margin-bottom: 0;
}

.hero-breadcrumb .breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2px;
    padding: 0;
    margin: 0;
    background: transparent;
    list-style: none;
}

.hero-breadcrumb .breadcrumb-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}

.hero-breadcrumb .breadcrumb-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #659a71;
    text-decoration: none;
    text-transform: capitalize;
}

.hero-breadcrumb .breadcrumb-item a:hover {
    color: #507c5b;
}

.breadcrumb-icon {
    width: 14px;
    height: 14px;
}

.hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #659a71;
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 0 4px;
}

.hero-breadcrumb .breadcrumb-item.active {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 160%;
    color: #507c5b;
}

/* Title Group */
.hero-title-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
}

.hero-title {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 130%;
    color: #3f425a;
    margin: 0;
}

.hero-subtitle {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    color: #696f96;
    text-transform: capitalize;
    margin: 0;
}

/* Button */
.btn-location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 12px;
    width: 181px;
    height: 38px;
    background: #659a71;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.btn-location:hover {
    background: #507c5b;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(101, 154, 113, 0.3);
}

.btn-location span {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    color: #ffffff;
}

.btn-location i {
    font-size: 20px;
    color: #ffffff;
    font-style: normal;
}

/* ========================================
   HERO IMAGE - SINGLE IMAGE
   ======================================== */
.hero-image-container {
    position: relative;
    width: 45%;
    max-width: 550px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
}

.hero-img-wrapper {
    width: 100%;
    height: auto;
    position: relative;
}

.hero-img-main {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}

/* ========================================
   2. EXPLORE SECTION
   ======================================== */
.explore-section {
    width: 100%;
    padding: 20px 0 80px 0;
    background: #f2f3f7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -90px;
    position: relative;
    z-index: 5;
}

.explore-section .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Frame 4807 - Main Container */
.explore-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    max-width: 1320px;
    height: 140px;
    margin: 0 auto 0 0;
}

/* Base Card Style */
.explore-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px 100px;
    width: 330px;
    height: 140px;
    background: #e1e2ea;
    border-radius: 60px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    -webkit-appearance: none;
    appearance: none;
}

/* Card with Background Image */
.explore-card:has(img) {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.explore-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 60px;
    z-index: 0;
}

/* Card Titles */
.explore-card-title {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 120%;
    text-align: center;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Frame 4803 - Explore Card (No Image) */
.explore-card:nth-child(1) {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}

.explore-card:nth-child(1) .explore-card-title {
    color: #3f425a;
    width: auto;
}

/* Frame 4804 - Your Card (With Image) */
.explore-card:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.explore-card:nth-child(2) .explore-card-title {
    color: #ffffff;
    width: auto;
}

/* Frame 4806 - Arrow Button */
.arrow-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    width: 330px;
    height: 140px;
    background: #507c5b;
    border-radius: 60px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    border: none;
    -webkit-appearance: none;
    appearance: none;
}

.arrow-button svg {
    width: 100px;
    height: 100px;
    display: block;
}

.arrow-button:hover {
    background: #5f8c6b;
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

/* Frame 4805 - Moments Card (With Image) */
.explore-card:nth-child(4) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.explore-card:nth-child(4) .explore-card-title {
    color: #ffffff;
    width: auto;
}

/* Hover Effects */
.explore-card:hover {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.explore-card:has(img):hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 60px;
    z-index: 0;
}

/* ========================================
   3. SERVICE LIST SECTION
   ======================================== */
.service-list {
    width: 100%;
    padding: 40px 0;
    background: #f2f3f7;
    margin-top: -30px;
    position: relative;
    z-index: 5;
}

.service-list .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* Frame 4815 - Main Container */
.service-list-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    gap: 2px;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    box-sizing: border-box;
}

/* Frame 4814 - Header Section */
.service-list-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 435px;
    width: 100%;
}

.service-list-title {
    width: 533px;
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 120%;
    color: #3f425a;
    margin: 0;
}

.service-list-description {
    width: 459px;
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    text-align: right;
    color: #3f425a;
    margin: 0;
}

/* Frame 4812 - Subheader */
.service-list-subheader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 765px;
    margin-top: 12px;
}

.service-subheader-label {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-transform: capitalize;
    color: #3f425a;
}

.service-subheader-label:first-child {
    width: 80px;
}

.service-subheader-label:last-child {
    width: 90px;
}

/* Service Items Container */
.service-list-container > .service-item:first-of-type {
    margin-top: 12px;
}

/* Component 4 - Service Item */
.service-item {
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 104px;
    background: #f2f3f7;
    border-bottom: 1px solid #c3c5d5;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.service-item:hover {
    background: #e0ebe3;
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
}

/* Arrow Icon - Default & Hover States */
.service-arrow .arrow-default {
    width: 20px;
    height: 20px;
    display: block;
}

.service-arrow .arrow-hover {
    width: 20px;
    height: 20px;
    display: none;
}

.service-item:hover .service-arrow .arrow-default {
    display: none;
}

.service-item:hover .service-arrow .arrow-hover {
    display: block;
}

/* Frame 4800 - Left Section */
.service-item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    gap: 12px;
    width: 320px;
    height: 104px;
}

/* Service Icon */
.service-icon {
    width: 56px;
    height: 56px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

/* Service Name */
.service-name {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #3f425a;
    margin: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

/* Frame 4803 - Center Section */
.service-item-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    width: 175px;
    height: 104px;
}

/* Frame 4799 - Badge */
.service-badge {
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px 14px;
    width: 155px;
    height: 34px;
    border: 1px solid #c3c5d5;
    border-radius: 40px;
    background: transparent;
}

.service-badge-text {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 135%;
    color: #3f425a;
    white-space: nowrap;
}

/* Frame 4802 - Right Section */
.service-item-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 10px;
    gap: 12px;
    width: 200px;
    height: 104px;
}

/* Lihat Detail Text */
.service-detail-text {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #3f425a;
}

/* Frame 21 - Arrow Icon Container */
.service-arrow {
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    width: 44px;
    height: 44px;
    border: 1px solid #a5a8c0;
    border-radius: 90px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.service-item:hover .service-arrow {
    background: #507c5b;
    border-color: #507c5b;
}

/* Empty State */
.text-center {
    text-align: center;
    width: 100%;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.text-muted {
    color: #696f96;
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 18px;
}

/* ========================================
   4. MOMENTS GALLERY SECTION
   ======================================== */
.moments-gallery {
    position: relative;
    width: 100%;
    height: 700px;
    background: #f2f3f7;
    overflow: hidden !important;
    padding: 50px 0;
}

.moments-gallery .container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    position: relative !important;
    height: 100%;
    box-sizing: border-box !important;
}

/* Frame 4890 - Header Container */
.moments-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    padding: 0;
    gap: 40px;
    width: 100%;
    bottom: 50px;
    height: auto;
    z-index: 3;
    position: relative;
}

/* Main Title */
.moments-main-title {
    margin: 0;
    width: 60%;
    max-width: 849px;
    height: auto;
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 36px;
    line-height: 120%;
    text-transform: uppercase;
    color: #2a2c3c;
}

/* Description Text */
.moments-description {
    margin: 0;
    width: 35%;
    max-width: 471px;
    height: auto;
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-transform: capitalize;
    color: #696f96;
}

/* Big "Moments" Text */
.moments-title {
    position: absolute;
    left: var(--container-padding);
    right: 40px;
    width: auto;
    max-width: calc(100% - 80px);
    top: 400px;
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-style: italic;
    font-weight: 700;
    font-size: 300px;
    line-height: 1;
    color: #507c5b;
    margin: 0;
    z-index: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    pointer-events: none;
    opacity: 0.8;
    text-align: left;
}

/* Infinity Loop */
.infinity-loop {
    position: absolute;
    left: 40px;
    right: 40px;
    width: auto;
    height: 441px;
    top: 113px;
    overflow: hidden;
    z-index: 1;
}

.infinity-loop-wrapper {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: max-content;
    animation: infiniteScroll 40s linear infinite;
    -webkit-animation: infiniteScroll 40s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@-webkit-keyframes infiniteScroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.infinity-loop:hover .infinity-loop-wrapper {
    animation-play-state: paused;
    -webkit-animation-play-state: paused;
}

.infinity-loop-item {
    position: relative;
    width: calc(100vw - 80px);
    min-width: calc(100vw - 80px);
    max-width: calc(1400px - 80px);
    height: 441px;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

/* Gallery Images */
.gallery-img-1,
.gallery-img-2,
.gallery-img-3,
.gallery-img-4,
.gallery-img-5,
.gallery-img-6 {
    position: absolute;
    object-fit: cover;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-img-1 {
    width: 17%; /* Tetap gunakan persentase agar fleksibel */
    aspect-ratio: 245 / 292; /* Menjaga perbandingan lebar & tinggi sesuai Figma */
    position: absolute;
    left: 0;
    top: 26px;
    object-fit: cover;
}

.gallery-img-2 {
    width: 11.8%; /* Sesuai perhitunganmu (170px / Frame Width) */
    aspect-ratio: 170 / 115; /* Menjaga perbandingan Lebar:Tinggi agar tetap 170x115 */
    position: absolute; /* Karena ada nilai Left dan Top yang spesifik */
    left: 18.4%; /* Sesuai perhitunganmu (265px / Frame Width) */
    top: 87px; /* Jarak dari atas sesuai Figma */
    object-fit: cover; /* Mencegah gambar gepeng saat ukurannya berubah */
}

.gallery-img-3 {
    width: 17%; /* Disamakan dengan img-1 */
    aspect-ratio: 245 / 292; /* Disamakan dengan img-1 */
    position: absolute;
    left: 31.6%;
    top: 63px;
    object-fit: cover;
}

.gallery-img-4 {
    width: 17%; /* Disamakan dengan img-1 */
    aspect-ratio: 245 / 292; /* Disamakan dengan img-1 */
    position: absolute;
    left: 49.4%;
    top: 0px;
    object-fit: cover;
}

.gallery-img-5 {
    width: 16.8%; /* Sesuai perhitungan (242 / Frame Width) */
    aspect-ratio: 242 / 217; /* MENJAGA perbandingan lebar & tinggi agar tetap kotak agak lebar */
    position: absolute;
    left: 67.2%; /* Sesuai posisi horizontal (967 / Frame Width) */
    top: 224px; /* Jarak dari atas sesuai Figma */
    object-fit: cover; /* Agar gambar tetap tajam dan tidak distorsi (gepeng) */
}

.gallery-img-6 {
    width: 13.5%;
    left: 85.3%;
    top: 158px;
}

.infinity-loop-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Labels */
.moment-label-1,
.moment-label-2 {
    position: absolute;
    width: 101px;
    height: 88px;
    top: 119px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 135%;
    color: #3f425a;
    z-index: 2;
}

.moment-label-1 {
    left: 67.2%;
}

.moment-label-2 {
    left: auto;
    right: 5%;
}

/* ========================================
   5. FAQ SECTION
   ======================================== */
.faq-section {
    position: relative;
    width: 100%;
    height: 682px;
    overflow: visible;
    padding: 0;
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.faq-section-inner {
    position: relative;
    width: 100%;
    max-width: 1440px;
    height: 682px;
}

.faq-section-inner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 165px;
    left: 0;
    bottom: 0px;
    background: url("/images/webp/19.png") no-repeat center;
    background-size: cover;
    opacity: 0.6;
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
    z-index: 0;
}

.faq-section-inner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 500px;
    left: 0;
    bottom: 0;
    background-image: url("/images/webp/18.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 100%;
    z-index: 0;
}

@media (max-width: 767px) {
    .faq-section {
        height: 800px;
    }
    .faq-section-inner::after {
        left: 0;
        height: 400px;
        background-position: center center;
    }
    .hero-decoration-left {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .faq-section {
        position: relative !important;
        overflow: hidden !important;
    }
    .faq-section::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 800px;
        right: -450px;
        bottom: -280px;
        background: url("/images/webp/19.webp") no-repeat right bottom !important;
        background-size: cover !important;
        opacity: 0.6;
        -webkit-transform: scaleY(-1);
        -ms-transform: scaleY(-1);
        transform: scaleY(-1);
        z-index: 0;
    }
    .faq-container {
        left: 40px !important;
        width: calc(100% - 80px) !important;
    }
    .faq-section-inner::before {
        display: none !important;
    }
}

/* Frame 4894 - Main Container */
.faq-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    padding: 0px;
    gap: 79px;
    position: absolute;
    background: transparent;
    width: 1320px;
    height: 553px;
    left: 60px;
    top: 0px;
    z-index: 3;
}

/* FAQ Title */
.faq-title {
    width: 300px;
    height: 140px;
    font-family: "DM Serif Text", "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 55px;
    line-height: 110%;
    color: #3f425a;
    background: transparent;
    margin: 0;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

/* Frame 66 - FAQ Items Wrapper */
.faq-items-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    padding: 0px;
    width: 807px;
    height: 450;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
}

/* FAQ Item Base */
.faq-item {
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    padding: 24px 0px;
    gap: 20px;
    width: 807px;
    border-bottom: 1px solid #c3c5d5;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(80, 124, 91, 0.02);
}

/* FAQ Content Container */
.faq-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    padding: 0px;
    gap: 12px;
    background: transparent;
    margin: 0 auto;
    width: 737px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

/* FAQ Question */
.faq-question {
    width: 100%;
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    color: #3f425a;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question,
.faq-item:hover .faq-question {
    color: #507c5b;
}

/* FAQ Answer */
.faq-answer {
    width: 100%;
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-transform: capitalize;
    color: #3f425a;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition:
        max-height 0.4s ease,
        opacity 0.4s ease,
        margin-top 0.4s ease;
    -o-transition:
        max-height 0.4s ease,
        opacity 0.4s ease,
        margin-top 0.4s ease;
    transition:
        max-height 0.4s ease,
        opacity 0.4s ease,
        margin-top 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

/* FAQ Toggle Icon */
.faq-toggle {
    position: relative;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
    display: none;
}

.faq-toggle {
    background-image: url("data:image/svg+xml,%3Csvg width='23' height='12' viewBox='0 0 23 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.9992 10.0718L12.8492 1.92183C11.8867 0.959326 10.3117 0.959326 9.34924 1.92183L1.19922 10.0718' stroke='%233F425A' stroke-width='2.4' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 23px 12px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.faq-item.active .faq-toggle {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-item:hover .faq-toggle {
    background-image: url("data:image/svg+xml,%3Csvg width='23' height='12' viewBox='0 0 23 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.9992 10.0718L12.8492 1.92183C11.8867 0.959326 10.3117 0.959326 9.34924 1.92183L1.19922 10.0718' stroke='%23507C5B' stroke-width='2.4' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.faq-item.collapsed .faq-content {
    height: auto;
}

.faq-item.collapsed .faq-answer {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.faq-item:first-child {
    height: auto;
    min-height: 11px;
}

/* ========================================
   6. MODAL LOCATION PICKER
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-location-picker {
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow: hidden;
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-location-picker {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.modal-location-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid #e1e2ea;
}

.modal-location-title {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #3f425a;
    margin: 0;
}

.modal-close-btn {
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    -webkit-appearance: none;
    appearance: none;
}

.modal-close-btn::before,
.modal-close-btn::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    background: #696f96;
}

.modal-close-btn::before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal-close-btn::after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.modal-close-btn:hover::before,
.modal-close-btn:hover::after {
    background: #3f425a;
}

.modal-location-body {
    padding: 24px;
    max-height: calc(90vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-search-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e1e2ea;
    border-radius: 8px;
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 14px;
    margin-bottom: 16px;
    -webkit-transition: border-color 0.3s ease;
    -o-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.modal-search-input:focus {
    outline: none;
    border-color: #659a71;
}

.modal-list-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.modal-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.modal-list-item:hover {
    background: #f2f3f7;
}

.modal-location-icon svg {
    width: 15px;
    height: 18px;
    display: block;
}

.modal-item-text {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #3f425a;
}

.modal-step {
    display: none;
}

.modal-step.active {
    display: block;
}

.modal-selected-city {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 16px;
    cursor: pointer;
}

.modal-selected-city-text {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #507c5b;
}

.modal-selected-city-icon svg {
    width: 15px;
    height: 18px;
    display: block;
}

.modal-empty-state {
    text-align: center;
    padding: 40px 20px;
}

.modal-empty-state p {
    font-family:
        "Outfit",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    font-size: 14px;
    color: #696f96;
    margin: 0;
}

/* ========================================
   RESPONSIVE: TABLET (768px - 1024px)
   ======================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        min-height: 480px !important;
        padding: 30px 0 20px 0 !important;
    }

    .hero-container {
        max-width: 95%;
        gap: 30px;
    }

    .hero-text-wrapper {
        width: 55%;
    }

    .hero-image-container {
        width: 40%;
    }

    .hero-title {
        font-size: 32px;
    }

    .service-list-header {
        gap: 150px !important;
    }

    .explore-section {
        padding: 20px 0 40px 0 !important;
        margin-top: -30px !important;
    }

    .moments-gallery .container {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .infinity-loop {
        left: 30px !important;
        right: 30px !important;
        max-width: calc(100% - 60px) !important;
    }

    .moments-title {
        left: 30px !important;
    }
}

/* ========================================
   RESPONSIVE: MOBILE (max-width: 767px)
   ======================================== */
@media (max-width: 767px) {
    .hero-section {
        min-height: auto !important;
        padding: 30px 0 40px 0 !important;
    }

    .hero-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 0 20px;
        gap: 30px;
    }

    .hero-text-wrapper {
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0 !important;
    }

    .hero-content-group {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .hero-breadcrumb .breadcrumb {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 28px !important;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 12px !important;
        text-align: center;
    }

    .btn-location {
        margin: 0 auto;
    }

    .hero-decoration-left {
        display: none !important;
    }

    .hero-image-container {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .explore-section {
        padding: 20px 0 30px 0 !important;
        margin-top: -50px;
    }

    .explore-section .container {
        padding: 0 20px;
    }

    .explore-cards {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        gap: 12px !important;
    }

    .explore-card {
        width: 100%;
        max-width: 390px;
        height: 90px !important;
        padding: 20px 40px !important;
        border-radius: 50px;
    }

    .explore-card-title {
        font-size: 24px !important;
    }

    .arrow-button {
        width: 100%;
        max-width: 390px;
        height: 90px !important;
        border-radius: 50px;
    }

    .arrow-button svg {
        width: 50px;
        height: 50px;
    }

    .service-list {
        padding: 15px 0 !important;
        margin-top: -10px !important;
    }

    .service-list .container {
        padding: 0 var(--container-padding);
    }

    .service-list-container {
        gap: 2px !important;
    }

    .service-list-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2px !important;
        margin-bottom: 5px !important;
    }

    .service-list-title {
        width: 100%;
        font-size: 24px !important;
    }

    .service-list-description {
        width: 100%;
        font-size: 14px !important;
        text-align: left;
    }

    .service-list-subheader {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        width: 100%;
        font-size: 11px;
    }

    .service-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        height: 50px;
        min-height: 45px !important;
        padding: 4px 8px !important;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 4px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .service-item-left {
        width: auto;
        gap: 4px !important;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        min-width: 0;
        padding: 4px !important;
    }

    .service-icon {
        width: 24px !important;
        height: 24px !important;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .service-name {
        font-size: 13px !important;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        white-space: nowrap;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

    .service-item-center {
        width: auto;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        padding: 4px !important;
    }

    .service-badge {
        height: 30px !important;
        padding: 2px 6px !important;
    }

    .service-badge-text {
        font-size: 13px !important;
    }

    .service-item-right {
        width: auto;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        padding: 4px !important;
        gap: 4px !important;
    }

    .service-detail-text {
        font-size: 13px !important;
        white-space: nowrap;
    }

    .service-arrow {
        width: 20px !important;
        height: 20px !important;
        padding: 2px !important;
    }

    .moments-gallery {
        height: auto !important;
        min-height: 400px !important;
        padding: 20px 0 !important;
    }

    .moments-gallery .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .moments-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
        bottom: 10px !important;
    }

    .moments-main-title {
        width: 100%;
        font-size: 20px !important;
    }

    .moments-description {
        display: block !important;
        width: 100%;
        font-size: 12px;
        margin-top: 8px;
        margin-bottom: 30px;
    }

    .moments-title {
        font-size: 100px !important;
        top: 240px;
        left: 20px !important;
    }

    .infinity-loop {
        left: 10px !important;
        right: 10px !important;
        max-width: calc(100% - 20px) !important;
        top: 180px;
        height: 200px;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .moment-label-1,
    .moment-label-2 {
        display: none !important;
    }

    .infinity-loop-wrapper {
        -webkit-animation: infiniteScrollMobile 20s linear infinite;
        animation: infiniteScrollMobile 20s linear infinite;
        width: 200%;
    }

    .infinity-loop-item {
        width: 50% !important;
        min-width: 50% !important;
        max-width: 50% !important;
        height: 180px;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }

    @-webkit-keyframes infiniteScrollMobile {
        0% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
        100% {
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
        }
    }

    @keyframes infiniteScrollMobile {
        0% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
        100% {
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
        }
    }

    .gallery-img-1 {
        width: 14.9%;
        left: 0%;
        top: 15px;
    }

    .gallery-img-2 {
        width: 14.9%;
        left: 16.4%; /* Jarak: 14.9% + 1.5% gap */
        top: 30px;
    }

    .gallery-img-3 {
        width: 14.9%;
        left: 32.8%; /* Jarak: 16.4% + 14.9% + 1.5% gap */
        top: 18px;
    }

    .gallery-img-4 {
        width: 14.9%;
        left: 49.2%; /* Jarak: 32.8% + 14.9% + 1.5% gap */
        top: 8px;
    }

    .gallery-img-5 {
        width: 14.9%;
        left: 65.6%; /* Jarak: 49.2% + 14.9% + 1.5% gap */
        top: 45px;
    }

    .gallery-img-6 {
        width: 14.9%;
        left: 82%; /* Jarak: 65.6% + 14.9% + 1.5% gap */
        top: 28px;
    }

    .infinity-loop-item::after {
        display: none;
    }

    .faq-section {
        height: auto !important;
        min-height: 877px !important;
    }

    .faq-section-inner {
        position: relative;
        overflow-x: clip;
    }

    .faq-section-inner::before {
        content: "";
        display: block !important;
        position: absolute;
        bottom: -240px;
        width: 110vw !important;
        left: 50% !important;
        margin-left: -55vw !important;
        background: url("/images/webp/19.webp") no-repeat center !important;
        background-size: 100% 100% !important;
        transform: scaleY(-1) scale(1.05) !important;
        z-index: 0;
    }

    .faq-section-inner::after {
        content: "";
        display: block !important;
        position: absolute;
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: -235px !important;
        width: 100%;
        height: 400px;
        background-image: url("/images/webp/18.webp");
        z-index: 1;
        pointer-events: none;
    }

    .faq-container {
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 12px;
        width: 100;
        max-width: calc(100% - 40px);
        height: auto;
        left: 20px;
        top: 0;
        padding-bottom: px;
    }

    .faq-title {
        width: 100%;
        font-size: 36px !important;
        text-align: center;
    }

    .faq-items-wrapper {
        width: 100%;
        height: auto;
    }

    .faq-item {
        width: 100%;
        padding: 8px 0;
    }

    .faq-content {
        width: calc(100% - 40px);
    }

    .faq-question {
        font-size: 14px !important;
        line-height: 130% !important;
    }

    .faq-answer {
        font-size: 11px !important;
        line-height: 150% !important;
    }

    .faq-content {
        gap: 6px !important;
    }

    .faq-item.active .faq-answer {
        margin-top: 6px !important;
    }

    .modal-location-picker {
        width: 95%;
        max-width: 390px;
    }
}

/* ========================================
   RESPONSIVE: SMALL MOBILE (max-width: 375px)
   ======================================== */
@media (max-width: 375px) {
    .hero-image-container {
        max-width: 300px;
    }

    .hero-title {
        font-size: 24px !important;
    }

    .explore-card {
        max-width: 320px;
    }

    .explore-card-title {
        font-size: 20px !important;
    }

    .arrow-button {
        max-width: 320px;
    }

    .arrow-button svg {
        width: 50px;
        height: 50px;
    }

    .hero-decoration-left {
        display: none !important;
    }
}

/* ========================================
   FAQ SECTION - FIX MARGIN KANAN SAAT ZOOM
   ======================================== */

/* Override aturan dari @media (min-width: 1025px) */
@media (min-width: 1025px) {
    .faq-container {
        left: 0 !important;
        width: 100% !important;
        position: relative !important;
        max-width: var(--max-width) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: var(--container-padding) !important;
        padding-right: var(--container-padding) !important;
    }
}

/* Pastikan faq-container mengikuti aturan universal */
.faq-container {
    position: relative !important;
    max-width: var(--max-width) !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--container-padding) !important;
    padding-right: var(--container-padding) !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    gap: 79px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    background: transparent !important;
    height: auto !important;
}

/* Pastikan FAQ items wrapper mengikuti lebar */
.faq-items-wrapper {
    max-width: 807px !important;
    width: 100% !important;
    flex: 1 !important;
}

/* Pastikan FAQ item tidak overflow */
.faq-item {
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 20px !important;
}

/* Pastikan content FAQ memberi ruang untuk arrow */
.faq-content {
    flex: 1 !important;
    max-width: calc(100% - 60px) !important;
    box-sizing: border-box !important;
}

/* Pastikan teks tidak overflow */
.faq-question {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
}

/* Arrow tetap di kanan */
.faq-toggle {
    flex-shrink: 0 !important;
    margin-left: auto !important;
    position: relative !important;
}

/* ========================================
   ZOOM 125% KE ATAS - PERBAIKAN MARGIN
   ======================================== */

/* Deteksi zoom dengan media query berdasarkan lebar viewport */
@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .faq-container {
        padding-left: calc(var(--container-padding) - 5px) !important;
        padding-right: calc(var(--container-padding) - 5px) !important;
    }

    .faq-items-wrapper {
        max-width: 750px !important;
    }

    .faq-question {
        font-size: 22px !important;
    }

    .faq-content {
        max-width: calc(100% - 55px) !important;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1152px) {
    .faq-container {
        padding-left: calc(var(--container-padding) - 10px) !important;
        padding-right: calc(var(--container-padding) - 10px) !important;
        gap: 50px !important;
    }

    .faq-items-wrapper {
        max-width: 680px !important;
    }

    .faq-title {
        width: 260px !important;
        font-size: 48px !important;
    }

    .faq-question {
        font-size: 20px !important;
    }

    .faq-content {
        max-width: calc(100% - 50px) !important;
    }

    .faq-toggle {
        width: 28px !important;
        height: 28px !important;
        background-size: 21px 11px !important;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1100px) {
    .faq-container {
        padding-left: calc(var(--container-padding) - 12px) !important;
        padding-right: calc(var(--container-padding) - 12px) !important;
        gap: 40px !important;
    }

    .faq-items-wrapper {
        max-width: 620px !important;
    }

    .faq-title {
        width: 240px !important;
        font-size: 42px !important;
    }

    .faq-question {
        font-size: 18px !important;
    }

    .faq-content {
        max-width: calc(100% - 45px) !important;
    }

    .faq-toggle {
        width: 26px !important;
        height: 26px !important;
        background-size: 19px 10px !important;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1050px) {
    .faq-container {
        padding-left: calc(var(--container-padding) - 15px) !important;
        padding-right: calc(var(--container-padding) - 15px) !important;
        gap: 30px !important;
    }

    .faq-items-wrapper {
        max-width: 560px !important;
    }

    .faq-title {
        width: 220px !important;
        font-size: 38px !important;
    }

    .faq-question {
        font-size: 17px !important;
    }

    .faq-content {
        max-width: calc(100% - 40px) !important;
    }

    .faq-toggle {
        width: 24px !important;
        height: 24px !important;
        background-size: 17px 9px !important;
    }
}

/* ========================================
   SAFARI KHUSUS - ZOOM FIX
   ======================================== */
@supports (-webkit-touch-callout: none) {
    @media screen and (min-width: 1025px) and (max-width: 1280px) {
        .faq-container {
            padding-left: calc(var(--container-padding) - 8px) !important;
            padding-right: calc(var(--container-padding) - 8px) !important;
        }
    }
}
/* ========================================
   FIX MOBILE - TAMPILKAN FAQ ITEM TANPA UBAH FONT HEADER
   ======================================== */
@media screen and (max-width: 1024px) {
    /* Mengembalikan susunan kontainer agar item muncul di bawah judul */
    .faq-container {
        display: flex !important;
        flex-direction: column !important; /* Susun vertikal agar tidak dorong-dorongan */
        gap: 40px !important; /* Jarak antara judul dan list FAQ */
        width: 100% !important;
        padding-left: var(--container-padding) !important;
        padding-right: var(--container-padding) !important;
    }

    /* Membiarkan Header/Title menggunakan gaya asli Anda */
    .faq-title {
        width: 100% !important; /* Supaya tidak memakan ruang horizontal item */
        max-width: 100% !important;
        /* font-size TIDAK DIUBAH, akan mengikuti CSS asli Anda */
    }

    /* Memastikan Wrapper FAQ muncul dan memenuhi lebar layar */
    .faq-items-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }

    /* Memastikan item FAQ tampil penuh */
    .faq-item {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important; /* Toggle tetap di samping pertanyaan */
        justify-content: space-between !important;
    }

    /* Mengatur ulang dekorasi agar ke belakang teks */
    .faq-section::before,
    .faq-section::after {
        z-index: -1 !important;
        pointer-events: none !important;
    }
}
