/* ================================
   HERO SECTION
================================ */

#video-container {
    padding-bottom: 140px !important;
}

.hero-wrapper {
    width: 100%;
    float: left;
    margin-bottom: 130px;
}

.hero-section {
    overflow: visible !important;
}

.hero-inner {
    padding-left: 64px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    color: white;
    line-height: 68px;
    text-shadow: 2px 4px 50px rgba(62, 58, 57, 1.00);
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    max-width: 600px;
}

.hero-content h3 {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}

.hero-tagline {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #E8E8E8;
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 400;
    line-height: 68px;
    text-shadow: 2px 4px 50px rgba(62, 58, 57, 1.00);
    margin-bottom: 56px;
    margin-top: 118px;
    line-height: 1.2;
    max-width: 400px;
    margin-left: auto;
    margin-right: 270px;
}

.tagline-small {
    font-size: 24px;
}

.tagline-big {
    font-size: 30px;
}

.hero-search-card {
    position: absolute;
    left: 64px;
    right: 64px;
    bottom: 0;

    transform: translateY(50%);

    background: #fff;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid #50C3CB;

    display: flex;
    flex-direction: column;
    gap: 20px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

/* ================================
   RENT BUY
================================ */

.search-type {
    display: flex;
    gap: 32px;
    color: #3E3A39;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    line-height: 28px;
    word-wrap: break-word;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.radio-item input {
    display: none;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #717171;
    position: relative;
}

.radio-item input:checked+.radio-circle {
    border: 6px solid #00A4CA;
}

.radio-label {
    font-size: 18px;
    font-weight: 500;
    color: #3E3A39;
}

/* ================================
   INPUT ROW
================================ */

.search-input-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F7F7F7;
    padding: 0px 20px;
    border-radius: 24px;
}

.search-input i {
    color: #3E3A39;
}

.search-input input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.placeholder-wrapper {
    position: relative;
    width: 100%;
}

.placeholder-wrapper input {
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    position: relative;
    z-index: 2;
}

.animated-placeholder {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(100%);
    opacity: 0;
    color: #717171;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.35s cubic-bezier(0.13, 0.66, 0.55, 1), opacity 0.35s ease-out;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

/* Slide animation */
.slide-out {
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.95, 0.05, 0.81, 0.06), opacity 0.3s ease-in;
}

.slide-in {
    transform: translateY(-50%);
    opacity: 1;
    transition: transform 0.35s cubic-bezier(0.13, 0.66, 0.55, 1), opacity 0.35s ease-out;
}

/* ================================
   BUTTON
================================ */

.btn-find {
    padding: 14px 28px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    color: white;
    background: linear-gradient(90deg, #50C3CB 0%, #00A4CA 100%);
    transition: 0.3s ease;
}

.btn-find:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 164, 202, 0.3);
}

/* ================================
   SEARCH EXTRA
================================ */

.search-extra {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-by-text {
    font-size: 14px;
    color: #717171;
    text-align: left;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
}

.quick-filters {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
    align-items: center;
}

.pill-btn {
    padding: 10px 18px;
    border-radius: 24px;
    border: 1px solid #E8E8E8;
    background: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s ease;
}

.pill-btn:hover {
    background: #F7F7F7;
}

/* Advanced Search */

.advanced-search {
    margin-left: auto;
    font-size: 16px;
    font-weight: 500;
    color: #717171;
    text-decoration: none;
}

.advanced-search:hover {
    color: #00A4CA;
}

@media (max-width: 768px) {

    .search-input-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-find {
        width: 100%;
    }

    .advanced-search {
        margin-left: 0;
        margin-top: 8px;
    }

    .hero-inner {
        padding: 0 16px;
    }

    .hero-content {
        margin-top: 100px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content h3 {
        color: #E8E8E8;
        font-size: 16px;
        font-family: ' Lato', sans-serif;
        font-weight: 400;
        line-height: 22px;
        letter-spacing: 0.32px;
        word-wrap: break-word;
        text-shadow: 4px 2px 10px rgba(62, 58, 57, 1.00);
    }

    .hero-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .tagline-small {
        font-size: 18px;
    }

    .tagline-big {
        font-size: 24px;
    }

    .hero-search-card {
        left: 16px;
        right: 16px;
    }

    .hero-wrapper {
        margin-bottom: 180px;
    }

}

@media (max-width: 480px) {
    .hero-wrapper {
        margin-bottom: 205px;
    }
}

@media (max-width: 375px) {
    .hero-inner {
        padding-bottom: 40px;
    }

    .hero-wrapper {
        margin-bottom: 240px;
    }

    .animated-placeholder {
        font-size: 12px;
    }

    .search-input {
        gap: 0;
    }
}

/* ============================= */
/* HOT LISTING SECTION */
/* ============================= */

.hot-listing-section {
    background: linear-gradient(180deg,
            rgba(113, 113, 113, 0.50) 0%,
            #ffffff 50%,
            #ffffff 100%);
}

/* Title */
.hot-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 48px;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.hot-title .letter {
    display: inline-block;
    opacity: 0;
}

/* See More Button */
.hot-see-more {
    border-radius: 24px;
    padding: 8px 20px;
    font-weight: 500;
}

/* Responsive title */
@media (max-width: 768px) {
    .hot-title {
        font-size: 32px;
    }
}

/* ==============================
   DEVELOPER PARTNER
================================ */
.developer-partner-section {
    position: relative;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #E8E8E8 80%,
            #ffffff 100%);
    padding: 100px 0;
    overflow: hidden;
}

/* Lengkungan bawah */
.developer-partner-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 200px;
    background: white;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
}

.developer-partner-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #151314;
}

.highlight-number {
    color: #EE4733;
}

.partner-logo {
    max-width: 100px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

/* ==============================
   INTERNATIONAL PROPERTIES
================================ */
.section-title {
    font-weight: 700;
    font-size: 28px;
    color: #1D4656;
}

.btn-filter {
    border-radius: 24px;
    border: 1px solid #717171;
    padding: 8px 18px;
    font-weight: 500;
    background: transparent;
    color: #717171 !important;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    word-wrap: break-word;
}

.btn-filter.active,
.btn-filter:hover {
    background: #06323E;
    color: white !important;
    border-color: #06323E;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.property-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.property-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.property-arrow:hover {
    background: #f5f5f5;
}

.property-arrow i {
    font-size: 16px;
    color: #717171;
}

.property-arrow.swiper-button-disabled {
    box-shadow: none;
    cursor: not-allowed;
    opacity: 1;
}

.property-arrow.swiper-button-disabled i {
    color: #E8E8E8;
}

.see-more-link {
    color: #717171;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    word-wrap: break-word;
}

.see-more-link-white {
    color: white;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
    border-radius: 24px;
    outline: 1px #E8E8E8 solid;
    padding: 10px 18px;
}

.property-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #E8E8E8;
    display: flex;
    flex-direction: column;
    min-height: 586px;
}

.property-card:hover {
    background: #77CCD11A;
}

.property-image {
    height: 240px;
    object-fit: cover;
    width: 100%;
    border-radius: 24px;
    padding: 10px;
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgb(62 58 57 / 25%);
    color: white;
    padding: 6px 14px;
    margin: 10px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.property-bookmark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgb(62 58 57 / 25%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    cursor: pointer;
    transition: 0.2s ease;
    margin: 10px;
}

.property-bookmark:hover {
    background: rgb(62 58 57 / 45%);
}

.property-bookmark:hover i {
    font-weight: 900;
}

.property-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-body .info-header {
    margin-bottom: 16px;
}

.property-price {
    color: #06323E;
    font-size: 24px;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    letter-spacing: 1.20px;
    word-wrap: break-word;
    text-align: left;
    margin-bottom: 40px;
}

.property-price span {
    font-size: 14px;
    font-weight: 400;
    color: #717171;
}

.property-title {
    color: #3E3A39;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    word-wrap: break-word;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.property-location {
    color: #3E3A39;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    text-align: left;
}

.property-location i {
    background: linear-gradient(180deg, var(--Tosca-Primary-Tosca-100, #50C3CB) 0%, var(--Tosca-Primary-Tosca-300, #006A81) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: unset;
    text-align: left;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #3E3A39;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.facilities-list li i {
    color: #3E3A39;
    font-size: 14px;
}

.agent-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
    border: 1px white solid;
    margin-top: unset !important;
}

.agent-name {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.agent-office {
    font-size: 12px;
    color: #717171;
    text-align: left;
}

.propertySwiper .swiper-slide {
    height: auto;
}

.propertyImageSwiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.propertyImageSwiper .swiper-wrapper {
    width: 100%;
}

.propertyImageSwiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
}

.property-image-pagination {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.property-image-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #D9D9D9;
    opacity: 1;
    margin: 0 4px !important;
    transition: 0.3s;
}

.property-image-pagination .swiper-pagination-bullet-active {
    background: #3E3A39;
    border-radius: 10px;
}

.agent-menu-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.agent-menu-toggle:hover {
    background: rgba(113, 113, 113, 0.15);
}

.agent-menu-toggle::after {
    display: none;
}

.agent-dropdown {
    width: 220px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid #E8E8E8;
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.15);
}

.agent-dropdown-title {
    font-size: 13px;
    color: #717171;
}

.agent-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
}

.agent-contact-item i {
    font-size: 18px;
    color: #717171;
}

/* ==============================
   PROPERTY SERVICES
================================ */

.property-services-section {
    background: #fff;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1D4656;
    text-align: left;
    padding-bottom: unset;
}

/* CARD */

.service-card {
    background: #F7F7F7;
    border-radius: 18px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-card:hover {
    background: linear-gradient(#F7F7F7, #F7F7F7) padding-box, linear-gradient(180deg, #50C3CB 0%, #00A4CA 100%) border-box;
    border: 1px solid transparent;
}

/* TOP */

.service-icon {
    width: 36px;
    height: 36px;
    background: #77CCD1;
    border-radius: 50%;
}

.service-icon:hover {
    background: #3E3A39;
}

.service-icon i {
    color: #fff;
    font-size: 16px;
    line-height: 36px;
    text-align: center;
    display: block;
    transform: rotate(45deg);
}

.service-img {
    width: 180px;
    height: 192px;
    object-fit: cover;
    border-radius: 12px;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* CONTENT */

.service-content {
    margin-top: -90px;
}

.col-lg-5 .service-content {
    max-width: 315px;
}

.col-lg-7 .service-content {
    max-width: 540px;
}

.service-label {
    color: #00A4CA;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.service-content h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #151314;
    margin-bottom: 8px;
}

.service-content p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #3E3A39;
    line-height: 24px;
    margin-bottom: 0;
}

/* responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .service-content {
        margin-top: unset;
    }
}

@media only screen and (max-width: 1290px) {
    .col-lg-5 .service-content {
        max-width: 240px;
    }

    .col-lg-7 .service-content {
        max-width: 420px;
    }
}

/* ==============================
   STATISTIC SECTION
================================ */

.statistic-section {
    background: #F7F7F7;
}

.statistic-wrapper {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

/* Description */

.statistic-description {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #717171;
    margin: 0 auto;
}

/* Grid */

.statistic-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Item */

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 150px;
}

/* Number */

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #F05728;
}

/* Label */

.stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #3E3A39;
    text-align: center;
}

/* responsive */
@media (max-width: 768px) {
    .statistic-description {
        font-size: 16px;
    }
}

/* ==============================
   APP PRODUCT SECTION
================================ */

.app-product-wrapper {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Tabs */

.app-tabs {
    display: flex;
    gap: 16px;
}

.app-tab .nav-link {
    border-radius: 24px;
    border: 1px solid #717171;
    background: transparent;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.app-product-wrapper .nav-link {
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
}

.app-product-wrapper .nav-link.active {
    background: #50C3CB;
    color: #fff;
    border: none;
    border-radius: 24px;
}

/* Content */

.app-product-section .tab-content {
    display: block !important;
}

.app-content {
    padding: 50px;
    position: relative;
}

.app-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 860px;
    background: #50c3cb26;
    border-radius: 32px;
    z-index: 0;
}

.app-pane {
    display: none;
}

.app-pane.active {
    display: block;
}

.app-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    text-align: left;
}

.xmart-features-left {
    margin: 120px 0 180px 0;
    text-align: right;
}

.xmart-features-right {
    margin: 150px 0 180px 0;
    text-align: left;
}

/* Layout */

.app-center img {
    max-width: 450px;
    height: auto;
}

.app-feature h4 {
    color: #151314;
    font-size: 18px;
    font-family: Lato;
    font-weight: 500;
    word-wrap: break-word;
}

.app-feature i {
    color: rgba(0, 164, 202, 1);
    font-size: 18px;
}

.app-feature p {
    color: #717171;
    font-size: 16px;
    font-family: Lato;
    font-weight: 400;
    word-wrap: break-word;
}

/* responsive */
@media (max-width: 768px) {
    .app-content {
        padding: 30px 20px;
    }

    .app-title {
        font-size: 24px;
    }

    .xmart-features-left,
    .xmart-features-right {
        margin: 20px 0 -20px 0;
        text-align: left;
    }

    .app-content::before {
        height: 905px;
    }

    .app-product-wrapper {
        gap: unset;
    }
}

/* =========================
   XMART WAY SECTION
========================= */

.app-title-xway {
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    color: #3E3A39;
    font-size: 46px;
    font-weight: 600;
    word-wrap: break-word;
}

.app-way-wrapper {
    background: rgba(0, 164, 202, 0.1);
    border-radius: 64px;
    padding: 60px;
    position: relative;
}

.app-desc {
    color: #3E3A39;
    font-size: 18px;
    font-family: Lato;
    font-weight: 500;
    line-height: 28px;
    word-wrap: break-word;
    text-align: left;
}

.app-way-logo {
    max-width: 250px;
}

.app-way-character {
    max-height: 660px;
}

/* Zigzag feel */
.app-way-left .app-feature:nth-child(1) {
    margin-top: 40px;
}

.app-way-left .app-feature:nth-child(2) {
    margin-top: 60px;
}

.app-way-left .app-feature:nth-child(3) {
    margin-top: 60px;
}

.app-way-right .app-feature {
    margin-top: 120px;
    text-align: left;
}

/* responsive */
@media (max-width: 768px) {
    .app-way-left .app-feature {
        text-align: left !important;
        margin-top: 20px !important;
    }

    .app-way-right .app-feature {
        text-align: left !important;
        margin-top: unset !important;
    }

    .app-way-wrapper {
        padding: 40px 20px;
    }

    .app-title-xway {
        font-size: 24px;
    }

    .app-desc {
        margin-bottom: unset;
    }

    .app-way-character {
        max-width: 100%;
        height: auto;
    }

    #tab-2.app-content::before,
    #tab-3.app-content::before {
        height: 1100px;
    }
}

/* ==============================
   XPOT SECTION
================================ */

.app-title-xpot {
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    color: #3E3A39;
    font-size: 46px;
    font-weight: 600;
    word-wrap: break-word;
    text-align: right;
}

.app-desc-xpot {
    color: #3E3A39;
    font-size: 18px;
    font-family: Lato;
    font-weight: 500;
    line-height: 28px;
    word-wrap: break-word;
    text-align: right;
}

.app-xpot {
    position: relative;
    overflow: hidden;
}

/* Soft gradient background */
.app-xpot::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(134deg, #50C3CB 0%, #00A4CA 100%);
    opacity: 0.08;
    border-radius: 32px;
    z-index: 0;
}

/* Keep content above bg */
.app-xpot>.row {
    position: relative;
    z-index: 2;
}

/* Character wrapper */
.xpot-character-wrapper {
    position: relative;
    display: inline-block;
}

/* Ellipse background */
.xpot-ellipse {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #77ccd180;
    border-radius: 50%;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
    filter: blur(2px);
    z-index: 1;
}

/* Character image */
.xpot-character {
    position: relative;
    z-index: 2;
    max-height: 660px;
}

.xpot-feature {
    text-align: left;
}

.xpot-feature i {
    color: rgba(0, 164, 202, 1);
    font-size: 18px;
}

/* Feature styling */
.xpot-feature h4 {
    color: #151314;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.36px;
    word-wrap: break-word;
}

.xpot-feature p {
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.32px;
    word-wrap: break-word;
}

.xpot-right {
    margin: 50px 0 100px 0;
}

/* Zigzag effect */
.xpot-shift-1 {
    margin-left: 40px;
}

.xpot-shift-2 {
    margin-left: 80px;
}

.xpot-shift-3 {
    margin-left: 120px;
}

/* responsive */
@media (max-width: 768px) {

    .xpot-shift-1,
    .xpot-shift-2,
    .xpot-shift-3 {
        margin-left: 0;
    }

    .xpot-ellipse {
        width: 280px;
        height: 280px;
    }

    .app-title-xpot {
        font-size: 24px;
        text-align: left;
    }

    .app-desc-xpot {
        text-align: left;
    }

    .xpot-right {
        margin: 0 0 50px 0;
    }
}


/* =========================
   TAB PROGRESS BAR
========================= */

.app-tab-progress {
    width: 100%;
    height: 6px;
    background: #e9e9e9;
    border-radius: 10px;
    overflow: hidden;
}

.app-tab-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #50C3CB, #00A4CA);
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* ==============================
   BANK PARTNER SECTION
================================ */

.bank-partner-section {
    background: rgba(0, 164, 202, 0.15);
}

.bank-partner-wrapper {
    padding: 40px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Title */

.bank-partner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #3E3A39;
    text-align: center;
}

.bank-partner-title span {
    color: #EE4733;
}

/* Logo Grid */

.bank-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.bank-logos img {
    max-height: 100px;
    max-width: 100px;
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.bank-logos img:hover {
    transform: scale(1.05);
}

/* responsive */
@media (max-width: 768px) {
    .bank-partner-wrapper {
        padding: unset;
    }

    .bank-partner-title {
        font-size: 20px;
    }

    .bank-logos {
        gap: 12px;
    }
}

/* ================================
   SOCIAL MEDIA SECTION
================================ */

.social-media-section {
    background: #F7F7F7;
    text-align: left;
}

.container-social {
    max-width: 1312px;
    margin: 0 auto;
}

.social-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #3E3A39;
    margin-bottom: 40px;
}

/* Grid Layout */
.social-grid {
    padding: 0 60px;
}

/* responsive */
@media (max-width: 768px) {
    .social-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 1290px) {
    .social-grid {
        padding: 0 20px;
    }
}

/* ================================
   INSTAGRAM
================================ */

.instagram-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 368px;
}

.instagram-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.instagram-card img {
    width: 100%;
    height: 394px;
    object-fit: cover;
    box-shadow: 0 0 44px rgba(0, 0, 0, 0.15);
}

.ig-verified {
    width: 16px !important;
    height: 16px !important;
}

/* Overlay */
.instagram-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 16px 12px 12px;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(62, 58, 57, 0.65) 34%,
            rgba(62, 58, 57, 0.95) 79%);
    color: white;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ig-username {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.ig-caption {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    line-height: 20px;
}

/* ================================
   YOUTUBE
================================ */

.youtube-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    max-width: 700px;
}

.yt-video {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 394px;
    max-width: 700px;
}

.yt-wrapper {
    position: relative;
}

.yt-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.yt-click-layer {
    position: absolute;
    inset: 0;
    cursor: pointer;
    z-index: 10;
}

/* ================================
   FOLLOW TEXT
================================ */

.follow-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #717171;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.follow-block strong {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* responsive */
@media (max-width: 768px) {
    .social-grid {
        padding: unset;
    }

    .instagram-side {
        width: 296px;
    }

    .yt-video {
        height: 252px;
    }
}

/* ================================
   PARTNER MAP SECTION
================================ */
.partnermap-section {
    width: 100%;
}

.partnermap-title {
    color: #3E3A39;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

.partnermap-desc {
    color: #717171;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
    margin: 0;
}

.btn-partnermap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 24px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-decoration: none;

    background: radial-gradient(ellipse 143.59% 143.59% at 52.63% 123.08%,
            #ffffff 0%,
            #50C3CB 30%,
            #00A4CA 84%);

    border: 1px solid #00A4CA;
    transition: all 0.3s ease;
}

.btn-partnermap:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 164, 202, 0.25);
}

/* ================================
   COUNTRY CARD
================================ */

.country-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.country-card img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* MOBILE CTA */
.mobile-cta {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
}

.cta-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(62, 58, 57, 0.75) 100%);
}

.cta-content {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 14px;
}

.cta-lottie {
    width: 40px;
    margin: 0 auto 8px;
}

/* overlay gradient */
.country-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 24px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0) 100%);
}

.country-overlay h4 {
    color: rgb(255 255 255 / 75%);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
}

/* hover effect */
.country-card:hover img {
    transform: scale(1.05);
}

/* responsive */
@media (max-width: 768px) {
    .country-card img {
        height: 449px;
    }

    .country-overlay h4 {
        font-size: 38px;
    }

    .btn-partnermap-wrapper {
        justify-content: flex-start;
        display: flex;
    }

    .partnermap-title {
        font-size: 24px;
    }
}

/* ==============================
   OFFICE CARD
================================ */

.office-card {
    height: 395px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Lato', sans-serif;
}

/* Header */

.office-header {
    background: #00A4CA;
    padding: 14px 16px 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #fff;
}

.office-title .brand {
    font-size: 16px;
    font-weight: 400;
    display: block;
}

.office-title strong {
    font-size: 18px;
    font-weight: 900;
}

/* Body */

.office-body {
    flex: 1;
    background: #fff;
    padding: 10px 4px;
    box-shadow: 0 0 2px rgba(113, 113, 113, 0.5);
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

/* Search */

.office-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F7F7F7;
    padding: 6px 12px;
    border-radius: 24px;
}

.office-search input {
    border: none;
    background: transparent;
    font-size: 14px;
    width: 100%;
    outline: none;
    color: #717171;
}

/* List */

.office-list {
    flex: 1;
    overflow-y: auto;
    padding-right: 6px;
    text-align: left;
}

.office-item {
    padding: 8px 14px;
    font-size: 16px;
    color: #717171;
    cursor: pointer;
    transition: 0.2s ease;
}

.office-item:hover {
    background: #F7F7F7;
    color: #151314;
}

/* Custom Scrollbar */

.office-list::-webkit-scrollbar {
    width: 4px;
}

.office-list::-webkit-scrollbar-thumb {
    background: #717171;
    border-radius: 999px;
}

.country-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

/* panel hidden */
.country-search-panel {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    background: #fff;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 3;

    display: flex;
    flex-direction: column;
}

/* DESKTOP ONLY */
@media (min-width: 992px) {
    .country-card:hover .country-search-panel {
        transform: translateY(0);
    }
}

/* MOBILE ONLY */
@media (max-width: 991px) {
    .country-card.active .country-search-panel {
        transform: translateY(0);
    }
}

/* ==============================
   FLOATING BUTTON
================================ */
.floating-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 9999;
    cursor: grab;
}

/* Lingkaran avatar */
.floating-avatar {
    width: 70px;
    height: 70px;
    position: relative;
    border-radius: 999px;
    overflow: hidden;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(232, 232, 232, 0.20) 53%,
            rgba(62, 58, 57, 0.20) 100%);

    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);

    outline: 1px solid white;
    outline-offset: -1px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.floating-avatar::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 50%;
    pointer-events: none;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(0, 254, 214, 1) 20%,
            rgba(255, 255, 255, 1) 100%);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Gambar di dalam */
.floating-avatar img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: contain;
    pointer-events: none;
}

/* Efek saat drag */
.floating-wrapper:active {
    cursor: grabbing;
}

/* ============================================
   SHIMMER SKELETON LOADING STYLES
   ============================================ */

@keyframes shimmer-animation {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.shimmer-card {
    background-color: #f0f0f0;
    pointer-events: none;
}

.shimmer-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(90deg,
            #f0f0f0 0%,
            #e0e0e0 50%,
            #f0f0f0 100%);
    background-size: 1000px 100%;
    animation: shimmer-animation 2s infinite;
    border-radius: 8px;
    margin-bottom: 12px;
}

.shimmer-text {
    height: 12px;
    background: linear-gradient(90deg,
            #f0f0f0 0%,
            #e0e0e0 50%,
            #f0f0f0 100%);
    background-size: 1000px 100%;
    animation: shimmer-animation 2s infinite;
    border-radius: 4px;
    opacity: 0.7;
}

.shimmer-text.shimmer-small {
    height: 10px;
}

.shimmer-text.shimmer-large {
    height: 18px;
}

/* ================================
   ADVANCED SEARCH
================================ */
.advanced-search-wrapper {
    padding: 40px 0;
}

/* Card */
.advanced-search-card {
    width: 500px;
    background: #fff;
    border-radius: 36px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.1)
}

.advanced-search-card .modal-body {
    padding: 0;
}

/* Header */
.advanced-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.title {
    font-weight: 700;
    color: #00A4CA;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    word-wrap: break-word;
}

/* Body */
.advanced-body .section {
    padding: 12px 24px;
    scrollbar-width: none;
}

.advanced-body .bg-light {
    background: #F7F7F7;
}

.quick-filters-label {
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    word-wrap: break-word;
    text-align: left;
}

.section-label {
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
    color: #3E3A39;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    word-wrap: break-word;
    text-align: left;
}

/* Pills */
.btn-pill {
    background: #F7F7F7;
    border-radius: 24px;
    border: none;
    padding: 10px 18px;
    color: #717171 !important;
}

.btn-pill:hover {
    background: #eaeaea;
}

.btn-pill-outline {
    border: 1px solid #717171;
    border-radius: 24px;
    background: transparent;
    padding: 10px 18px;
    color: #717171 !important;
    font-size: 16px;
    font-family: Lato;
    font-weight: 500;
    word-wrap: break-word;
}

.btn-pill-active {
    background: #50C3CB;
    color: #fff;
    border-radius: 24px;
    padding: 10px 18px;
    border: none;
}

/* Form rounded */
.form-pill {
    border-radius: 24px;
    background: #F7F7F7;
    border: none;
    padding: 12px 18px;
}

/* Input Group Rounded */
.input-pill-left {
    border-top-left-radius: 24px !important;
    border-bottom-left-radius: 24px !important;
    background: #F7F7F7;
    border: none;
}

.input-pill-right {
    border-top-right-radius: 24px !important;
    border-bottom-right-radius: 24px !important;
    background: #F7F7F7;
    border: none;
}

/* Search Button */
.btn-search {
    border-radius: 24px;
    padding: 12px;
    font-weight: 500;
    background: radial-gradient(ellipse 140% 140% at 50% 120%, #ffffff 0%, #50c3cb 30%, #00a4ca 85%);
    border: 1px solid #00A4CA;
    color: white;
}

.advanced-body::-webkit-scrollbar {
    display: none;
}