/* ===== Styles for Offer Cards (index.php) ===== */
.offers-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    gap: 30px;
    width: 100%;
    padding: 10px 5px 30px 5px;
    -webkit-overflow-scrolling: touch;
}
.PAGE5_CONTENT_TESX h2{
    letter-spacing: 0.03em;
}
.offers-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
.PAGE5_CONTENT{
    margin-top: 120px !important;
}
.new-offer-card {
    flex: 0 0 380px;
    max-width: 90vw;
    scroll-snap-align: start;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0px; /* Sharp corners */
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    font-family: inherit;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.new-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.noc-header { 
    padding: 20px 20px 15px 20px; 
}
.noc-title {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 12px 0;
    color: #333;
    min-height: 52px;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.noc-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    flex-wrap: wrap;
    row-gap: 8px;
}
.noc-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.noc-link {
    margin-left: auto;
    color: #a47665;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.noc-link:hover { 
    text-decoration: underline; 
    color: #8c6354;
}

/* Swiper Customizations */
.noc-swiper {
    width: 100%;
    height: 280px;
    position: relative;
}
.noc-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.noc-nav {
    color: #fff !important;
    background: rgba(0,0,0,0.3) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    transition: background 0.3s ease;
}
.noc-nav:hover {
    background: rgba(0,0,0,0.6) !important;
}
.noc-nav::after { 
    font-size: 16px !important; 
    font-weight: bold; 
}
.noc-swiper .swiper-pagination-bullet { 
    background: #fff; 
    opacity: 0.6; 
}
.noc-swiper .swiper-pagination-bullet-active { 
    background: #fff; 
    opacity: 1; 
    transform: scale(1.2); 
}

.noc-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    border-top: 1px solid #f5f5f5;
}
.noc-urgency {
    color: #a47665;
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 20px;
}
.noc-price-wrap { 
    color: #333; 
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.noc-price-val { 
    font-size: 26px; 
    font-weight: bold; 
    line-height: 1;
}
.noc-price-currency { 
    font-size: 16px; 
    font-weight: 500; 
}
.noc-per-night { 
    font-size: 14px; 
    color: #666; 
    margin-top: 4px; 
}
.noc-btn {
    background-color: #bfa08e;
    color: #fff;
    padding: 12px 20px;
    border-radius: 0px; /* Sharp corners */
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.noc-btn:hover { 
    background-color: #8c6354; /* Darker on hover */
    color: #fff;
    transform: scale(1.02); /* Slight scale up */
}
.noc-btn svg {
    transition: transform 0.3s ease;
}
.noc-btn:hover svg {
    transform: translateX(4px); /* Arrow moves right on hover */
}
.offers-wid{
    width: 92% !important;
    padding: 0 15px;
    position: relative;
}

/* Offers Navigation Buttons */
.offers-nav-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
    padding-right: 5px;
}

.offers-scroll-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offers-scroll-btn:hover {
    background-color: #bfa08e;
    color: #fff;
    border-color: #bfa08e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-section {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
/* Responsive adjustments */
@media (max-width: 991px) {
    .new-offer-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 576px) {
    .offers-wid{
        width: 100% !important;
        padding : unset !important;
    }
    .offers-nav-buttons {
        /* Optional: hide buttons on mobile or adjust them */
        padding-right: 15px;
        margin-top: -10px;
        margin-bottom: 20px;
    }
    .offers-grid {
        gap: 20px;
        padding: 0 15px;
        margin-top: 5px !important;
        padding-bottom: 15px;
    }
    
    .new-offer-card {
        flex: 0 0 calc(100% - 30px); /* Leave small gap for next card */
        scroll-snap-align: center;
        max-width: 100%;
    }

    .noc-swiper {
        height: 220px;
    }
    .noc-header {
        padding: 15px;
    }
    .noc-title { 
        font-size: 20px; 
        min-height: auto;
    }
    .noc-price-val { 
        font-size: 22px; 
    }
    .noc-footer {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .noc-footer-right {
        width: 100%;
    }
    .noc-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Accommodation Section (เหมือนตัวอย่าง) ===== */
.accom-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.accom-header {
    text-align: center;
    margin-bottom: 40px;
}

.accom-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.accom-title {
    font-size: 36px;
    font-weight: 300;
    color: #7d6256;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.accom-container {
    width: 92%;
    margin: 0 auto;
    padding: 0 15px;
}

.accom-tabs {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    /* เพิ่ม padding-bottom เผื่อพื้นที่ให้ลูกศรย้อยลงมาไม่ถูกตัด และใช้ margin ติดลบเพื่อดึงคอนเทนต์ด้านล่างขึ้นมาให้ชิดกัน */
    padding-bottom: 15px; 
    margin-bottom: -15px;
    z-index: 10;
    position: relative;
}

.accom-tab {
    padding: 15px 30px;
    background-color: #d1c8c1;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
    border: none;
    /* ยืดหยุ่นบนหน้าจอเล็ก */
    flex-shrink: 0;
}

.accom-tab.active {
    background-color: #a48e82;
}
/* เปลี่ยนเป็นลูกศรย้อยลงมาออกแนวไทยๆ อ่อนช้อย */
.accom-tab.active::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 14px;
    background-color: #a48e82;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 2;
}
.accom-tab.active::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 10px;
    background-color: #a48e82;
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.accom-content {
    display: flex;
    flex-wrap: wrap;
    background-color: #f1f2f2;
    width: 100%;
}

.accom-image-col {
    flex: 1 1 60%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: hidden;
}

.accom-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.accom-text-col {
    flex: 1 1 40%;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accom-text-title {
    font-size: 24px;
    font-weight: 300;
    color: #7d6256;
    margin-bottom: 20px;
}

.accom-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.accom-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}
.accom-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}
.accom-list li::before {
    content: '•';
    color: #a48e82;
    font-weight: bold;
    display: inline-block;
    width: 1em;
}

.accom-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #a48e82;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.accom-btn:hover {
    background-color: #8c6354;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .accom-tab {
        padding: 8px 18px;
        background-color: #d1c8c1;
        color: #fff;
        font-size: 10px;
        letter-spacing: 1px;
        text-transform: uppercase;
        cursor: pointer;
        transition: background 0.3s ease;
        position: relative;
        border: none;
        flex-shrink: 0;
    }
    .accom-content {
        flex-direction: column;
    }
    .accom-image-col, .accom-text-col {
        flex: 1 1 100%;
        height: auto;
        min-height:unset !important;    
    }
    .accom-text-col {
        padding: 30px 20px;
    }
    .accom-title {
        font-size: 0.95rem;
    }
    .accom-tabs {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .accom-tabs::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 576px) {
    .accom-container {
        width: 100% !important;
        padding: 0 !important;
    }
    .accom-header {
        padding: 0 0px;
        text-align: left;
    }
    /* Offers */
    .offers-header {
                padding: 0px 0px 0px 0px !important;
        width: 100% !important;
    }
    .offers-grid{
        padding-left: unset !important;
    }
    .PAGE-3-P-P {
                margin-top: 10px !important;
    }
    .accom-title{
        font-size: 0.95rem !important;
    }
    .mobile_data_index{
        margin-top: 40px !important;
    }
     .PAGE6_CONTENT_ROW {
        margin-top: unset !important;
    }
    .CONTENT_PAGE6_1 img ,.PAGE6_CONTENT2_SETTING{
        padding: unset !important;
    }
    .SETTIG_LINEHIGHT_PAGE6{
        margin-top: 1px !important;
    }
    .PAGE6_CONTENT2_SETTING p{
        margin-top: 10px !important;
    }
    .PAGE5_CONTENT_TESX{
        padding: unset !important;
        width: 100% !important;
        text-align: left !important;
    }
    .PAGE5_CONTENT_TESX h2{
        text-align: left !important;
    }
    .PAGE5_LINE_page7{
        margin-top: unset !important;
    }
    main section {
        padding: 15px 28px 15px 28px !important; 
        box-sizing: border-box !important;
        width: 100% !important;
        overflow: hidden !important;
    }
}

/* ===== Homepage Scoped Overrides From Shared Styles ===== */
.index-page .hero-title {
    font-weight: 700 !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7) !important;
    letter-spacing: 0.5px !important;
    font-size: 3rem !important;
}

.index-page .hero-subtitle {
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8) !important;
    line-height: 1.7 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.index-page .offer-desc,
.index-page .intro-description,
.index-page .offers-desc,
.index-page .offer-detail,
.index-page .PAGE-3-P,
.index-page .PAGE-3-P-P,
.index-page .PAGE6_CONTENT2_SETTING-p,
.index-page .PAGE6_FONT,
.index-page .PAGE5_FONT,
.index-page .PAGE8_CONTENT_MAP p {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
}

.index-page .btn-luxury {
    border-radius: 6px !important;
    padding: 14px 40px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-size: 1rem !important;
}

.index-page .btn-outline {
    border: 2px solid #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px) !important;
}

.index-page .btn-outline:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}

.index-page .btn-filled {
    background: linear-gradient(135deg, #c4a77d 0%, #9e855c 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

.index-page .btn-filled:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(196, 167, 125, 0.4) !important;
    filter: brightness(1.1) !important;
}

.index-page .booking-form-glass {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 8px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    padding: 20px 35px !important;
}

.index-page .input-content label {
    color: #555 !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    margin-bottom: 4px !important;
}

.index-page .datepicker-input {
    border: none !important;
    background: transparent !important;
    font-size: 1.15rem !important;
    color: #333 !important;
    font-weight: 600 !important;
    outline: none !important;
    cursor: pointer !important;
}

.index-page .btn-check-availability {
    background: #a48e82 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 16px 30px !important;
    transition: all 0.3s ease !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
}

.index-page .btn-check-availability:hover {
    box-shadow: 0 8px 20px rgba(196, 167, 125, 0.4) !important;
    transform: translateY(-2px) !important;
    filter: brightness(1.1) !important;
}

.index-page .offer-btn {
    border-radius: 6px !important;
    padding: 14px 25px !important;
    background: linear-gradient(135deg, #c4a77d 0%, #9e855c 100%) !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    border: none !important;
}

.index-page .offer-price-val,
.index-page .offer-price-wrapper span {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
}

.index-page .offer-name {
    font-size: 1.5rem !important;
}

.index-page .slide-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.4) 100%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.index-page .hero-content,
.index-page .booking-bar-wrapper {
    z-index: 10 !important;
}

.index-page .hero-slider .swiper-pagination-bullet {
    background-color: #ffffff !important;
    opacity: 0.6 !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease !important;
}

.index-page .hero-slider .swiper-pagination-bullet-active {
    background-color: #c4a77d !important;
    opacity: 1 !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5) !important;
}

/* ===== Featured Showcase Duo ===== */
.index-page .showcase-duo-section {
    padding: 0 0 12px;
    background:
        radial-gradient(circle at 8% 12%, rgba(191, 160, 142, 0.16), transparent 24%),
        radial-gradient(circle at 92% 88%, rgba(164, 142, 130, 0.14), transparent 22%),
        linear-gradient(180deg, #fffdfb 0%, #f8f2ec 100%);
}

.index-page .showcase-duo-shell {
    width: 92% !important;
    margin: 120px auto 0 !important;
    padding: 30px 15px !important;
    background: rgba(255, 250, 245, 0.9);
    border: 1px solid rgba(188, 159, 136, 0.18);
    box-shadow: 0 28px 60px rgba(120, 86, 65, 0.08);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.index-page .showcase-duo-shell::before,
.index-page .showcase-duo-shell::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.index-page .showcase-duo-shell::before {
    width: 220px;
    height: 220px;
    top: -110px;
    left: -60px;
    background: rgba(191, 160, 142, 0.14);
}

.index-page .showcase-duo-shell::after {
    width: 180px;
    height: 180px;
    bottom: -90px;
    right: -30px;
    background: rgba(164, 142, 130, 0.1);
}

.index-page .showcase-duo-grid {
    position: relative;
    z-index: 1;
    row-gap: 28px;
    margin-left: -15px;
    margin-right: -15px;
}

.index-page .showcase-duo-col {
    display: flex;
}

.index-page .showcase-duo-media,
.index-page .showcase-duo-copy-wrap {
    width: 100%;
    min-height: 100%;
}

.index-page .showcase-duo-media {
    position: relative;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 22px 44px rgba(90, 62, 45, 0.16);
}

.index-page .showcase-duo-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(32, 22, 18, 0.04) 0%, rgba(32, 22, 18, 0.2) 100%);
    pointer-events: none;
    z-index: 2;
}

.index-page .showcase-duo-media .slider_NEW_PAGE6,
.index-page .showcase-duo-media .slides_NEW_PAGE6,
.index-page .showcase-duo-media .slide_NEW_PAGE6 {
    /* height: 100% !important; */
    min-height: 100% !important;
    max-height: 100% !important;
}

.index-page .showcase-duo-media .slider_NEW_PAGE6,
.index-page .showcase-duo-media .slides_NEW_PAGE6 {
    overflow: hidden !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.index-page .showcase-duo-media .slides_NEW_PAGE6::-webkit-scrollbar {
    display: none;
}

.index-page .showcase-duo-media .slide_NEW_PAGE6 img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: scale(1.01);
}

.index-page .showcase-duo-copy-wrap {
    background: transparent !important;
}

.index-page .showcase-duo-copy {
    padding: clamp(28px, 3vw, 42px) !important;
    min-height: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(121, 89, 70, 0.1);
}

.index-page .showcase-duo-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), transparent 52%);
    pointer-events: none;
}

.index-page .showcase-duo-copy--soft {
    background: linear-gradient(180deg, #fffaf6 0%, #f5ede6 100%) !important;
}

.index-page .showcase-duo-copy--accent {
    background: linear-gradient(180deg, #f7efe7 0%, #efe2d8 100%) !important;
}

.index-page .showcase-duo-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #8f6b59;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.index-page .showcase-duo-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: rgba(143, 107, 89, 0.48);
}

.index-page .showcase-duo-copy h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #7d6256 !important;
    font-size: clamp(1.45rem, 2.3vw, 2.1rem) !important;
    line-height: 1.25 !important;
}

.index-page .showcase-duo-copy .SETTIG_LINEHIGHT_PAGE6 {
    position: relative;
    z-index: 1;
    margin-top: 18px !important;
    margin-bottom: 20px !important;
}

.index-page .showcase-duo-copy .linehight {
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, #b48e76 0%, #dbc1ad 100%);
}

.index-page .showcase-duo-copy p,
.index-page .showcase-duo-copy .PAGE6_FONT,
.index-page .showcase-duo-copy .PAGE6_CONTENT2_SETTING-p {
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    color: #5f4c42 !important;
    font-size: 1rem !important;
    line-height: 1.95 !important;
}

.index-page .showcase-duo-button {
    position: relative;
    z-index: 1;
    align-self: flex-start;
    margin-top: 28px;
    min-height: 50px;
    padding: 0 26px !important;
    border: 1px solid rgba(140, 99, 84, 0.18);
    background: linear-gradient(135deg, #b38d70 0%, #8c6354 100%) !important;
    color: #fff !important;
    box-shadow: 0 14px 26px rgba(140, 99, 84, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.index-page .showcase-duo-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(140, 99, 84, 0.24);
    filter: brightness(1.04);
}

/* ===== Resort Essentials ===== */
.resort-essentials-section {
    padding: 34px 0 10px;
    background:
        radial-gradient(circle at top left, rgba(191, 160, 142, 0.12), transparent 28%),
        linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
    margin-top: 100px;
}

.resort-essentials-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.resort-essentials-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8d6b59;
}

.resort-essentials-title {
    color: #7d6256;
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.resort-essentials-intro {
    color: #655147;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.resort-essentials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.resort-essentials-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(176, 141, 102, 0.16);
    box-shadow: 0 14px 35px rgba(113, 78, 53, 0.08);
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 220px;
}

.resort-essentials-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #bfa08e 0%, #8c6354 100%);
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 10px 20px rgba(140, 99, 84, 0.22);
}

.resort-essentials-card-title {
    margin: 0;
    color: #3e302a;
    font-size: 1.08rem;
    line-height: 1.4;
}

.resort-essentials-card-text {
    margin: 0;
    color: #655147;
    line-height: 1.75;
    font-size: 0.94rem;
}

/* ===== FAQ ===== */
.homepage-faq-section {
    padding: 86px 0 18px;
    background: linear-gradient(180deg, #fff 0%, #faf7f3 100%);
}

.homepage-faq-head {
    max-width: 720px;
    margin: 0 auto 28px;
    text-align: center;
}

.homepage-faq-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #9a7864;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.homepage-faq-title {
    color: #7d6256;
    font-size: clamp(1.3rem, 3vw, 2.25rem);
    margin: 0;
}

.homepage-faq-list {
    display: grid;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
}

.homepage-faq-item {
    background: #fff;
    border: 1px solid rgba(164, 142, 130, 0.2);
    box-shadow: 0 12px 26px rgba(125, 98, 86, 0.08);
    overflow: hidden;
}

.homepage-faq-question {
    position: relative;
    padding: 22px 56px 22px 24px;
    cursor: pointer;
    list-style: none;
    color: #2f2723;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.5;
}

.homepage-faq-question::-webkit-details-marker {
    display: none;
}

.homepage-faq-question::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    line-height: 1;
    color: #8c6354;
}

.homepage-faq-item[open] .homepage-faq-question::after {
    content: '−';
}

.homepage-faq-answer {
    padding: 0 24px 22px;
}

.homepage-faq-answer p {
    margin: 0;
    color: #655147;
    line-height: 1.8;
}

/* ===== Lead Capture ===== */
.lead-capture-section {
    padding: 72px 0 86px;
    background:
        linear-gradient(135deg, rgba(191, 160, 142, 0.16) 0%, rgba(255, 255, 255, 0.92) 38%),
        #fff;
}

.lead-capture-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 26px;
    align-items: stretch;
}

.lead-capture-copy,
.lead-capture-form-wrap {
    background: #fff;
    border: 1px solid rgba(164, 142, 130, 0.18);
    box-shadow: 0 18px 36px rgba(117, 85, 68, 0.08);
    padding: 34px;
}

.lead-capture-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #9a7864;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lead-capture-title {
    margin: 0 0 14px;
    color: #7d6256;
    font-size: clamp(1.3rem, 3vw, 2.45rem);
    line-height: 1.18;
}

.lead-capture-text {
    margin: 0 0 20px;
    color: #655147;
    line-height: 1.85;
    font-size: 0.98rem;
}

.lead-capture-meta {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.lead-capture-meta-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #4b3d35;
    line-height: 1.7;
}

.lead-capture-meta-item i {
    color: #8c6354;
    margin-top: 4px;
}

.lead-capture-direct-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lead-capture-direct-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    text-decoration: none;
    background: #f5efea;
    color: #5c463a;
    border: 1px solid rgba(140, 99, 84, 0.14);
    transition: all 0.3s ease;
}

.lead-capture-direct-link:hover {
    color: #fff;
    background: #8c6354;
}

.lead-capture-direct-link--line {
    background: #8c6354;
    color: #fff;
}

.lead-capture-form {
    display: grid;
    gap: 16px;
}

.lead-capture-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lead-capture-field {
    display: grid;
    gap: 8px;
}

.lead-capture-field span {
    color: #6b564b;
    font-size: 0.9rem;
}

.lead-capture-field input,
.lead-capture-field select,
.lead-capture-field textarea {
    width: 100%;
    border: 1px solid rgba(164, 142, 130, 0.28);
    background: #fcfbf9;
    padding: 14px 15px;
    color: #3f322b;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-capture-field input:focus,
.lead-capture-field select:focus,
.lead-capture-field textarea:focus {
    border-color: #a48e82;
    box-shadow: 0 0 0 4px rgba(164, 142, 130, 0.12);
}

.lead-capture-field textarea {
    resize: vertical;
    min-height: 124px;
}

.lead-capture-submit {
    min-height: 52px;
    border: 0;
    background: linear-gradient(135deg, #b08d66 0%, #8c6354 100%);
    color: #fff;
    font-size: 0.96rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lead-capture-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(140, 99, 84, 0.22);
}

.lead-capture-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-left: 4px solid #a48e82;
    font-size: 0.95rem;
    line-height: 1.7;
}

.lead-capture-alert--success {
    background: #f5fbf4;
    border-left-color: #678f59;
    color: #33502a;
}

.lead-capture-alert--error {
    background: #fff6f4;
    border-left-color: #bc5f45;
    color: #8d3e2a;
}

/* ===== Contact Showcase ===== */
.contact-section-bg {
    background:
        radial-gradient(circle at top right, rgba(191, 160, 142, 0.12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f6f1eb 100%);
    padding-bottom: 78px;
}

.contact-section-shell {
    padding-top: 36px !important;
}

.contact-section-head {
    text-align: center;
}

.contact-section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #9a7864;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-section-heading {
    font-size: 28px !important;
    font-weight: 500 !important;
    margin-bottom: 0 !important;
}

.contact-section-divider {
    width: 46px !important;
    height: 2px !important;
    background-color: #a48e82 !important;
    margin: 15px 0 !important;
}

.contact-card-wrapper {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 241, 0.96)),
        rgba(253, 253, 252, 0.96);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(164, 142, 130, 0.18) !important;
    border: 1px solid rgba(206, 192, 183, 0.9);
    max-width: 1120px;
    position: relative;
}

.contact-card-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 50%);
    pointer-events: none;
}

.contact-card-wrapper::after {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(164, 142, 130, 0.12);
    border-radius: 20px;
    pointer-events: none;
}

.contact-map-col {
    background:
        radial-gradient(circle at top left, rgba(255, 213, 143, 0.22), transparent 28%),
        linear-gradient(180deg, #eee4d8 0%, #e7ddd2 100%);
}

.contact-map-frame {
    position: relative;
    height: 100%;
    min-height: 460px;
    overflow: hidden;
}

.contact-map-frame iframe {
    border: 0;
    width: 100%;
    height: 100%;
    min-height: 460px;
    display: block;
    filter: saturate(0.95) contrast(1.02) brightness(0.96);
}

.contact-map-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(38, 27, 22, 0.08) 0%, rgba(38, 27, 22, 0) 22%, rgba(38, 27, 22, 0.15) 100%);
    pointer-events: none;
}

.contact-map-topnote {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: calc(100% - 40px);
    padding: 10px 14px;
    background: rgba(255, 250, 244, 0.92);
    color: #5e473b;
    border: 1px solid rgba(140, 99, 84, 0.12);
    box-shadow: 0 14px 24px rgba(72, 52, 43, 0.12);
    backdrop-filter: blur(8px);
}

.contact-map-topnote i {
    color: #8c6354;
}

.contact-map-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: rgba(49, 35, 30, 0.86);
    color: #fff;
    box-shadow: 0 20px 34px rgba(47, 34, 28, 0.24);
    max-width: calc(100% - 48px);
    backdrop-filter: blur(8px);
}

.contact-map-badge i {
    font-size: 1.1rem;
    color: #ffd58f;
}

.contact-map-badge strong,
.contact-map-badge span {
    display: block;
}

.contact-map-badge strong {
    font-size: 0.92rem;
    font-weight: 600;
}

.contact-map-badge span {
    margin-top: 2px;
    color: rgba(255, 244, 239, 0.78);
    font-size: 0.85rem;
}

.contact-info-col {
    background:
        radial-gradient(circle at top right, rgba(255, 216, 167, 0.16), transparent 26%),
        linear-gradient(180deg, rgba(253, 252, 249, 0.98), rgba(247, 242, 236, 0.98)),
        #fdfcf9;
}

.contact-info-inner {
    padding: 56px 54px 52px;
}

.contact-info-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #7a6053;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
}

.contact-info-pretitle-line {
    width: 32px;
    height: 1px;
    background: rgba(140, 99, 84, 0.42);
}

.contact-info-brand img {
    width: 126px;
    height: auto;
}

.contact-info-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #8c6354;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-title {
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
    color: #7f6254 !important;
}

.contact-desc {
    font-size: 15px;
    line-height: 1.85;
    color: #5d4d44;
    max-width: 520px;
}

.contact-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 22px;
}

.contact-highlight-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 238, 0.92));
    border: 1px solid rgba(164, 142, 130, 0.16);
    box-shadow: 0 10px 24px rgba(125, 98, 86, 0.08);
}

.contact-highlight-card strong {
    font-size: 1.08rem;
    font-weight: 600;
    color: #503d34;
}

.contact-highlight-card span {
    color: #7a6257;
    font-size: 0.85rem;
    line-height: 1.55;
}

.contact-feature-list {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
}

.contact-feature-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 16px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(164, 142, 130, 0.16);
    box-shadow: 0 10px 24px rgba(113, 78, 53, 0.06);
}

.contact-feature-item i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #bfa08e 0%, #8c6354 100%);
    color: #fff;
    box-shadow: 0 10px 18px rgba(140, 99, 84, 0.18);
}

.contact-feature-item span {
    display: block;
    margin-bottom: 4px;
    color: #8a6e61;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-feature-item a,
.contact-feature-item p {
    margin: 0;
    color: #3f312c;
    line-height: 1.65;
    text-decoration: none;
}

.contact-feature-item small {
    display: block;
    margin-top: 6px;
    color: #7a6559;
    font-size: 0.82rem;
    line-height: 1.6;
}

.contact-feature-item a:hover {
    color: #8c6354;
}

.contact-quick-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    background: rgba(191, 160, 142, 0.14);
    color: #6b5348;
    font-size: 0.88rem;
    border-radius: 999px;
    border: 1px solid rgba(164, 142, 130, 0.12);
}

.contact-pill i {
    color: #8c6354;
    font-size: 0.82rem;
}

.contact-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #a48e82;
    color: #fff;
    padding: 0 30px;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #8c6354;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(164, 142, 130, 0.28);
}

.contact-btn--ghost {
    background: transparent;
    border: 1px solid rgba(140, 99, 84, 0.25);
    color: #6f564a;
}

.contact-btn--ghost:hover {
    background: #f0e6df;
    color: #6f564a;
}

.contact-footnote {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(164, 142, 130, 0.16);
    color: #755d51;
    line-height: 1.7;
}

.contact-footnote i {
    color: #8c6354;
    margin-top: 4px;
}

.contact-footnote p {
    margin: 0;
}

/* ===== Promo Banner ===== */
.index-promo-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: min(360px, calc(100vw - 28px));
    background: linear-gradient(155deg, rgba(58, 40, 33, 0.98), rgba(125, 90, 65, 0.95));
    color: #fff;
    padding: 20px 20px 18px;
    box-shadow: 0 20px 40px rgba(50, 34, 28, 0.28);
    z-index: 3200;
    transform: translateY(28px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.index-promo-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.index-promo-banner__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
}

.index-promo-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 242, 235, 0.82);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.index-promo-banner__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffd47f;
    box-shadow: 0 0 0 6px rgba(255, 212, 127, 0.16);
    animation: indexPromoPulse 1.6s infinite;
}

.index-promo-banner__title {
    margin: 14px 0 10px;
    font-size: 1.2rem;
    line-height: 1.35;
}

.index-promo-banner__text {
    margin: 0 0 16px;
    color: rgba(255, 244, 239, 0.82);
    line-height: 1.75;
    font-size: 0.92rem;
}

.index-promo-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.index-promo-banner__link {
    flex: 1 1 140px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.index-promo-banner__link--primary {
    background: #d9ab7a;
    border-color: #d9ab7a;
    color: #3f2f29;
}

.index-promo-banner__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.index-promo-banner__link--primary:hover {
    color: #3f2f29;
    background: #efc590;
}
.setlaout{
    justify-content: center !important;
}

@keyframes indexPromoPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 212, 127, 0.28);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 212, 127, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 212, 127, 0);
    }
}

/* ===== Responsive Scoped Overrides ===== */
@media (max-width: 991px) {
    .resort-essentials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lead-capture-shell {
        grid-template-columns: 1fr;
    }

    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 360px;
    }

    .contact-info-inner {
        padding: 38px 34px;
    }

    .contact-highlight-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .index-page .showcase-duo-shell {
        width: 92% !important;
        padding: 24px 15px !important;
    }

    .index-page .showcase-duo-media {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .setlaout{
        justify-content: left !important;
    }
    .booking-bar-wrapper{
        bottom: 30px;
    }
    html,
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .index-page #PAGE5_Offer {
        padding-top: 60px !important;
    }

    .index-page .container,
    .index-page .container-custom,
    .index-page .offers-wid,
    .index-page .accom-container,
    .index-page .PAGE5_CONTENT,
    .index-page .PAGE5_CONTENT_HEADER,
    .index-page .PAGE7_CONTENT,
    .index-page .PAGE7,
    .index-page .PAGE8,
    .index-page .PAGE8_content,
    .index-page .PAGE8_map,
    .index-page .SETTING-CENTER-PAGE8_content {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 0 !important;
    }
    .PAGE3_CONTENT{
        margin-top: 20px !important;
    }
    .PAGE3_CONTENT .col-6, .PAGE3_CONTENT .col-12{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .index-page .row,
    .index-page .hero-row,
    .index-page .PAGE3_LAYOUT > .col-12.d-flex {
        margin-left: -5px !important;
        margin-right: -5px !important;
        width: calc(100% + 10px) !important;
        margin-top: 0 !important;
    }

    .index-page .col-12,
    .index-page .col-6,
    .index-page .col-md-6,
    .index-page .col-md-4,
    .index-page .col-md-8 {
        padding-left: 5px !important;
        padding-right: 5px !important;
        margin-bottom: 5px !important;
    }

    .index-page .offers-header,
    .index-page .PAGE5_CONTENT_TESX,
    .index-page .intro-content header {
        margin-top: 0 !important;
        margin-bottom: 5px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .index-page .intro-content{
        margin-top: 0 !important;
    }
    .index-page .text-box{
        margin-top: 20px !important;
    }

    .index-page .CONTENT_PAGE6_1,
    .index-page .CONTENT_PAGE6_2 {
        margin-bottom: 10px !important;
    }

    .index-page .offers-divider {
        display: none !important;
    }

    .index-page .img-fluid,
    .index-page .slide_NEW_PAGE6 img,
    .index-page .gallery-item img,
    .index-page .PAGE3_IMAGE {
        /* border-radius: 4px !important; */
    }
    .custom-swiper-wrapper{
        border-radius : 0px !important;
    }

    .index-page .hero-title {
        font-size: 1.8rem !important;
        line-height: 2.7rem !important;
        margin-bottom: 0 !important;
        text-shadow: unset !important;
    }
    .hero-title{
        width: 300px !important;
        line-height: 2.2rem !important;
    }
    .hero-subtitle:lang(th){
            letter-spacing: 0.1rem;
    }
    .index-page .hero-subtitle {
        font-size: 0.95rem !important;
        padding: 0 20px !important;
        line-height: 1.7 !important;
        margin-top: 25px !important;
    }

    .index-page .offer-desc,
    .index-page .intro-description,
    .index-page .offers-desc,
    .index-page .offer-detail,
    .index-page .PAGE-3-P,
    .index-page .PAGE6_CONTENT2_SETTING-p,
    .index-page .PAGE6_FONT,
    .index-page .PAGE8_CONTENT_MAP p {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
    }

    .index-page .PAGE5_FONT{
        font-size: 1rem !important;
        line-height: 1.7 !important;
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        text-align: left !important;
    }
    .index-page .booking-form-glass {
        padding: 12px 15px !important;
        border-radius: 8px !important;
        margin: 5px auto 15px !important;
        width: calc(100% - 20px) !important;
        box-sizing: border-box !important;
    }

    .index-page .booking-input-group {
        margin-bottom: 8px !important;
    }

    .index-page .divider-vertical {
        display: none !important;
    }

    .index-page .btn-check-availability {
        width: 100% !important;
        padding: 10px !important;
        font-size: 0.95rem !important;
        margin-top: 2px !important;
    }

    .index-page .offers-title,
    .index-page .section-title,
    .index-page {
        font-size: 1.4rem !important;
        line-height: 1.2 !important;
        margin-top: 0 !important;
        margin-bottom: 19px !important;
        padding-bottom: 0 !important;
    }
    .PAGE5_CONTENT_TESX_H2{
        font-size: 1.4rem !important;
        line-height: 1.7 !important;
        margin-top: 0 !important;
        margin-bottom: 19px !important;
        padding-bottom: 0 !important;
        font-weight: bold;
    }
    .index-page .datepicker-input {
        font-size: 0.9rem !important;
        padding: 0 !important;
    }

    .index-page .input-content label {
        font-size: 0.75rem !important;
        margin-bottom: 0 !important;
    }

    .index-page .icon-wrapper svg {
        width: 16px !important;
        height: 16px !important;
    }

    .resort-essentials-section,
    .homepage-faq-section,
    .contact-section-bg {
        padding-top: 56px !important;
        padding-bottom: 42px !important;
        margin-top: 30px !important;
    }
    .lead-capture-section{
        margin-top: 0px !important;
    }
    .index-page .showcase-duo-section {
        padding-top: 0;
    }

    .index-page .showcase-duo-shell {
        width: 100% !important;
        margin-top: 120px !important;
        padding: 18px 0 !important;
    }

    .index-page .showcase-duo-grid {
        row-gap: 16px;
    }

    .index-page .showcase-duo-media {
        height: 300px;
    }

    .index-page .showcase-duo-copy {
        padding: 24px 18px !important;
    }

    .index-page .showcase-duo-copy h3 {
        font-size: 1.35rem !important;
    }

    .index-page .showcase-duo-copy p,
    .index-page .showcase-duo-copy .PAGE6_FONT,
    .index-page .showcase-duo-copy .PAGE6_CONTENT2_SETTING-p {
        font-size: 0.95rem !important;
        line-height: 1.75 !important;
    }

    .index-page .showcase-duo-button {
        width: 100%;
        justify-content: center;
        margin-top: 22px;
    }

    .resort-essentials-grid,
    .lead-capture-field-grid {
        /* grid-template-columns: 1fr; */
    }

    .resort-essentials-card,
    .lead-capture-copy,
    .lead-capture-form-wrap {
        padding: 22px 18px;
        gap: 28px !important;
    }
.sec4-slider-section{
    margin-top: 20px !important;
}
    .contact-info-inner {
        padding: 28px 20px;
    }

    .contact-card-wrapper {
        border-radius: 20px;
    }

    .contact-card-wrapper::after {
        inset: 12px;
        border-radius: 14px;
    }

    .contact-title {
        font-size: 22px;
    }

    .contact-info-pretitle {
        justify-content: center;
    }

    .contact-highlight-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-frame,
    .contact-map-frame iframe {
        min-height: 290px;
    }

    .contact-map-topnote {
        top: 14px;
        left: 14px;
        right: 14px;
        max-width: none;
        width: auto;
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .contact-map-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
        padding: 12px 14px;
    }

    .contact-feature-item {
        grid-template-columns: 36px 1fr;
        padding: 12px 12px;
    }

    .contact-feature-item i {
        width: 36px;
        height: 36px;
    }

    .contact-action-row {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
        padding: 12px 20px;
    }

    .lead-capture-direct-actions,
    .index-promo-banner__actions {
        /* flex-direction: column; */
    }

    .index-promo-banner {
        right: 14px;
        bottom: 14px;
        width: calc(100vw - 28px);
    }
}

@media (max-width: 576px) {
    .index-page .showcase-duo-shell {
        width: 100% !important;
        margin-top: 40px !important;
        padding: 16px 0 !important;
    }

    .index-page .showcase-duo-media {
        height: 220px !important;
    }

    .index-page .showcase-duo-copy {
        padding: 20px 16px !important;
    }

    .index-page .showcase-duo-kicker {
        font-size: 0.74rem;
        letter-spacing: 0.12em;
        margin-bottom: 12px;
    }

    .index-page .showcase-duo-copy .SETTIG_LINEHIGHT_PAGE6 {
        margin-top: 14px !important;
        margin-bottom: 16px !important;
    }
    .PAGE3_CONTENT .col-6, .PAGE3_CONTENT .col-12{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .lead-capture-meta-item{
        font-size: 0.9rem;
    }
    .lead-capture-direct-link--line ,.lead-capture-direct-link{
        font-size: 0.9rem !important;
        width: 100% !important;
    }
    .lead-capture-field input,
    .lead-capture-field select,
    .lead-capture-field textarea {
            font-size: 0.9rem !important;
    }
    .index-promo-banner__link--primary,.index-promo-banner__link{
        font-size: 0.9rem !important;
    }
}
