@font-face {
    font-family: eicons;
    src: url(../fonts/eicons.woff);
    src: url(../fonts/eicons.eot) format("embedded-opentype"), url(../fonts/eicons.woff2) format("woff2"), url(../fonts/eicons.woff) format("woff"), url(../fonts/eicons.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

[class*=" eicon-"],
[class^=eicon] {
    display: inline-block;
    font-family: eicons;
    font-size: inherit;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

:root {
    --primary-color: #000;
    --secondory-color: #7e9e8f, serif;
    --header-cream: #FDE8CF;
    --header-cream-soft: rgba(253, 232, 207, 0.78);
    --header-cream-muted: rgba(253, 232, 207, 0.62);
    --header-black: #000000;
    --header-dark-soft: #3a3834;
    --banner-text: #faf8f5;
    --banner-text-soft: #f3f1ed;
    --banner-border: rgba(250, 248, 245, 0.75);
}

html {
    scroll-behavior: smooth
}

[data-toggle="modal"] {
    cursor: pointer;
}

html {
    scrollbar-gutter: stable;
}

body {
    font-family: "Outfit", sans-serif;
}

body.modal-open {
    overflow: hidden;
    padding-right: 0 !important;
}

img {
    max-width: 100%
}

.ptb {
    padding: 70px 0
}

.ptb-40 {
    padding: 40px 0;
}

/* header section start here */

header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: rgba(253, 232, 207, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-wrap,
.banner_section .banner-wrap {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

header .site-wrap {
    width: 90%;
    max-width: 90%;
}

header .header-left {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header .navbar-brand {
    display: block;
    line-height: 0;
    text-align: left;
}

header .navbar-brand img {
    width: auto;
    max-width: 130px;
    margin-left: 0;
    filter: none;
    transition: transform 0.3s ease;
}

header .header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

header .header-right {
    flex: 0 0 auto;
    margin-left: auto;
}

header .navbar-brand:hover img {
    transform: scale(1.03);
}

header .header-wrapper {
    display: flex;
    width: 100%;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0;
    gap: 10px;
}

header .navbar-nav {
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
}

header ul li {
    padding: 0 18px;
    list-style: none;
}

header ul li a.nav-link {
    color: var(--header-black);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.8px;
    text-transform: capitalize;
    padding: 4px 2px;
    position: relative;
    transition: color 0.25s ease;
}

header ul li a.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 2px;
    background: var(--header-black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

header .navbar-nav .nav-link:hover,
header .navbar-nav .nav-link:focus {
    color: var(--header-black);
}

header .navbar-nav .nav-link:hover::after,
header .navbar-nav .nav-link:focus::after {
    transform: scaleX(1);
    transform-origin: left;
}

header .header-helpline {
    display: inline-block;
    padding: 8px 20px;
    background: var(--header-black);
    color: var(--header-cream);
    border-radius: 4px;
    text-decoration: none;
    border: 2px solid var(--header-black);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.2;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease;
}

header .header-helpline:hover {
    background: var(--header-cream);
    color: var(--header-black);
    text-decoration: none;
}

header.fixed-header {
    position: fixed;
    background: var(--header-cream-soft);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom-color: rgba(0, 0, 0, 0.12);
}

header.fixed-header .navbar-nav .nav-link {
    color: var(--header-black);
}

header ul li.nav-item.call_btn .nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--header-black);
    color: var(--header-cream) !important;
    border-radius: 6px;
    margin-top: 12px;
}

header ul li.nav-item.call_btn .nav-cta-mobile::after {
    display: none;
}

/* header section ends here */

/* banner section start here */

.banner_section {
    position: relative;
    overflow: hidden;
}

.banner_section .carousel-inner {
    position: relative;
}

.banner_section .carousel-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.5) 45%,
            rgba(0, 0, 0, 0.2) 100%);
}

.banner_section .carousel-inner .carousel-item {
    position: relative;
    z-index: 1;
}

.banner-img {
    width: 100%;
    height: auto;
    min-height: 580px;
    object-fit: cover;
    display: block;
}

.banner_section .banner_content {
    position: absolute;
    inset: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    padding: 100px 0 88px;
    pointer-events: none;
}

.banner_section .banner-wrap {
    position: relative;
    width: 100%;
    pointer-events: auto;
}

.banner_section .banner-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: center;
}

/* Stamp — desktop: top corner on banner image (same as mobile), not on form */
.banner_section .banner-stamp--desktop {
    position: absolute;
    top: 100px;
    right: 58px;
    z-index: 8;
    pointer-events: none;
    line-height: 0;
}

.banner_section .banner-stamp--mobile {
    display: none;
}

.banner_section .banner-stamp img,
.mobBanner .banner-stamp img {
    display: block;
    width: clamp(68px, 6.5vw, 88px);
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

/* Tags */
.banner_section .banner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.banner_section .banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.banner_section .banner-tag--ref {
    background: var(--header-cream-soft);
    color: var(--header-black);
}

/* Referral tag — same 3-color cycle as banner CTAs + cross sweep */
.banner_section .banner-tag--flash {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: banner-cta-colors 6s ease-in-out infinite;
}

.banner_section .banner-tag--flash::before {
    content: "";
    position: absolute;
    top: -18%;
    left: -95%;
    width: 48%;
    height: 140%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.25) 38%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.25) 62%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: banner-cta-cross 2.8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.banner_section .banner-tag--loc {
    background: transparent;
    color: var(--banner-text);
    border: 1px solid var(--banner-border);
}

.banner_section .banner-tag--loc img {
    width: 14px;
    height: 14px;
    opacity: 0.98;
    filter: brightness(1.2);
}

/* Typography */
.banner_section .banner-info {
    color: var(--banner-text);
}

.banner_section h1.title {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    color: var(--banner-text);
    margin: 0 0 10px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.banner_section .typo,
.banner_section h2.typo {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 400;
    color: var(--banner-text-soft);
    margin: 0 0 22px;
    line-height: 1.4;
}

/* Highlights */
.banner_section ul.key_high {
    list-style: none;
    margin: 0 0 26px;
    padding: 0;
}

.banner_section ul.key_high li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--banner-text);
    margin-bottom: 10px;
    line-height: 1.4;
}

.banner_section ul.key_high .key-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--banner-text);
    border: 1.5px solid var(--banner-border);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

.banner_section ul.key_high li img {
    display: none;
}

.banner_section ul.key_high li span:not(.key-icon) {
    background: none;
    padding: 0;
    color: inherit;
}

/* CTA buttons */
.banner_section .banner_btn {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.banner_section .carousel_btns .banner_btn {
    margin-top: 0;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
}

.banner_section .banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
    line-height: 1.3;
    text-align: center;
}

.banner_section .banner-cta--dark {
    background: var(--header-black);
    color: var(--header-cream);
    border-color: var(--header-black);
}

.banner_section .banner-cta--dark:hover {
    background: var(--header-cream);
    color: var(--header-black);
}

/* Banner CTA — 3 colors one by one: black → gold → cream */
@keyframes banner-cta-colors {

    0%,
    100% {
        background: #000;
        color: #FDE8CF;
        border-color: #000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    }

    33% {
        background: #CDA45E;
        color: #111;
        border-color: #CDA45E;
        box-shadow: 0 0 18px 5px rgba(205, 164, 94, 0.55);
    }

    66% {
        background: #FDE8CF;
        color: #111;
        border-color: #FDE8CF;
        box-shadow: 0 0 16px 4px rgba(253, 232, 207, 0.5);
    }
}

@keyframes banner-cta-icon-colors {

    0%,
    100% {
        filter: brightness(10);
    }

    33%,
    66% {
        filter: brightness(0);
    }
}

@keyframes banner-cta-cross {
    0% {
        left: -95%;
    }

    38%,
    100% {
        left: 135%;
    }
}

.banner_section .banner-cta--flash {
    position: relative;
    overflow: hidden;
    animation: banner-cta-colors 6s ease-in-out infinite;
}

.banner_section .banner-cta--flash::before {
    content: "";
    position: absolute;
    top: -18%;
    left: -95%;
    width: 48%;
    height: 140%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.25) 38%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.25) 62%,
            transparent 100%);
    transform: skewX(-20deg);
    animation: banner-cta-cross 2.8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.banner_section .banner-cta--light.banner-cta--flash::before {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.45) 42%,
            rgba(255, 255, 255, 0.95) 50%,
            rgba(255, 255, 255, 0.45) 58%,
            transparent 100%);
    animation-delay: 1s;
}

.banner_section .banner-cta--light.banner-cta--flash {
    animation: banner-cta-colors 6s ease-in-out 2s infinite;
}

.banner_section .banner-cta--flash .icon-next {
    animation: banner-cta-icon-colors 6s ease-in-out infinite;
}

.banner_section .banner-cta--light.banner-cta--flash .icon-next {
    animation-delay: 2s;
}

.banner_section .banner-cta--flash:hover {
    animation: none;
    box-shadow: none;
    background: var(--header-cream);
    color: var(--header-black);
    border-color: var(--header-cream);
}

.banner_section .banner-cta--flash:hover .icon-next {
    animation: none;
    filter: brightness(0);
}

.banner_section .banner-cta--flash:hover::before {
    animation: none;
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {

    .banner_section .banner-cta--flash,
    .banner_section .banner-cta--flash::before,
    .banner_section .banner-cta--flash .icon-next,
    .banner_section .banner-tag--flash,
    .banner_section .banner-tag--flash::before {
        animation: none;
        box-shadow: none;
    }
}

.banner_section .banner-cta--light {
    background: var(--header-cream-soft);
    color: var(--header-black);
    border-color: var(--header-cream-soft);
}

.banner_section .banner-cta--light:hover {
    background: transparent;
    color: var(--header-cream);
    border-color: var(--header-cream);
}

.banner_section .banner-cta--dark .icon-next {
    filter: brightness(10);
}

.banner_section .banner-cta--dark:hover .icon-next,
.banner_section .banner-cta--light .icon-next {
    filter: brightness(0);
}

.banner_section .banner-cta--light:hover .icon-next {
    filter: brightness(10);
}

/* Banner info CTAs — soft gray text on image */
.banner_section .banner-info .banner-cta--dark,
.banner_section .banner-info .banner-cta--light {
    color: var(--banner-text);
    border-color: var(--banner-border);
}

.banner_section .banner-info .banner-cta--dark {
    background: rgba(0, 0, 0, 0.55);
}

.banner_section .banner-info .banner-cta--light {
    background: transparent;
}

.banner_section .banner-info .banner-cta--dark:hover,
.banner_section .banner-info .banner-cta--light:hover {
    background: var(--header-cream-soft);
    color: var(--header-black);
    border-color: var(--header-cream-soft);
}

.banner_section .banner-info .banner-cta .icon-next {
    opacity: 1;
    filter: brightness(1.15);
}

.banner_section .banner-info .banner-cta:hover .icon-next {
    opacity: 1;
    filter: brightness(0);
}

/* Form card */
.banner_section .right_form {
    position: relative;
    width: 100%;
}

.banner_section .form_sec {
    background: #f8efe6;
    border: 1px solid rgba(0, 0, 0, 0.12);
    /* border-radius: 8px; */
    padding: 28px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.banner_section .form_label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--header-black);
    opacity: 0.6;
    margin: 0 0 4px;
}

.banner_section h2.form_title {
    font-size: 26px;
    font-weight: 700;
    color: var(--header-black);
    margin: 0 0 20px;
    text-align: left;
}

.banner_section .right_form .form-control {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 12px 14px;
    color: var(--header-black);
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.banner_section .right_form .form-control:focus {
    border-color: var(--header-black);
    outline: none;
    box-shadow: none;
}

.banner_section .right_form .form-control::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.banner_section .form-group {
    margin-bottom: 14px;
}

.banner_section button.btn.main_button {
    width: 100%;
    padding: 13px;
    background: var(--header-black);
    color: var(--header-cream);
    border: 2px solid var(--header-black);
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.banner_section button.btn.main_button:hover {
    background: transparent;
    color: var(--header-black);
}

.banner_section .banner-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 4px;
}

.banner_section .banner-consent .inp-txt {
    margin: 0;
    font-size: 9px;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.65);
}

/* Carousel arrows — bottom right */
.banner_section .carousel_btns {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    margin-left: 200px;
    align-items: center;
    /* padding: 10px 5% 18px; */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.banner_section .banner-bottom-bar {
    width: 0%;
    max-width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    pointer-events: auto;
}

.banner_section .carousel-nav-group {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px 5px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--header-cream-muted);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-shrink: 0;
    pointer-events: auto;
}

.banner_section .carousel-nav-btn {
    width: 28px;
    height: 28px;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--header-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    position: static;
    opacity: 1;
}

.banner_section .carousel-nav-btn:hover {
    background: var(--header-cream-soft);
    color: var(--header-black);
    transform: scale(1.05);
}

.banner_section .carousel-nav-btn .carousel-nav-icon {
    display: block;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
}

.banner_section .carousel-control-prev .carousel-nav-icon {
    transform: rotate(-135deg);
    margin-left: 2px;
}

.banner_section .carousel-control-next .carousel-nav-icon {
    transform: rotate(45deg);
    margin-right: 2px;
}

.banner_section .carousel-nav-divider {
    width: 1px;
    height: 14px;
    background: var(--header-cream-muted);
}

@media (max-width: 1100px) {
    .banner_section .banner-bottom-bar .banner_btn {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .banner_section .banner-bottom-bar .banner-cta {
        white-space: normal;
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 767px) {
    .banner_section .banner-bottom-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .banner_section .carousel_btns .banner_btn {
        flex-direction: column;
        justify-content: stretch;
    }

    .banner_section .banner-bottom-bar .banner-cta {
        width: 100%;
        justify-content: center;
    }
}

.banner_section .carousel_btns img {
    display: none;
}

.banner_section .carousel-control-prev,
.banner_section .carousel-control-next {
    position: static;
}

/* Legacy shared banner_btn (other sections) */
.banner_btn {
    text-align: center;
}

/* Left-align banner button when used inside side_content (Get Detailed Pricing) */
.side_content .banner_btn {
    text-align: left;
}

/* Left-align banner button in overview section (Download Brochure under text) */
.overview .banner_btn {
    text-align: left;
}

.banner_btn button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border: none;
    background-color: #ffffffa8;
    color: #fff;
    /* text-transform:uppercase; */
    letter-spacing: 1px;
    font-size: 18px;
    position: relative;
    border-radius: 10px;
    backdrop-filter: blur(25px);
    background-color: #6f584d;
}

/* Anchor version of banner button (e.g. Download Brochure link) */
.banner_btn .download-brochure-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border: none;
    background-color: #6f584d;
    color: #fff;
    letter-spacing: 1px;
    font-size: 18px;
    position: relative;
    border-radius: 10px;
    backdrop-filter: blur(25px);
    text-decoration: none;
}

/* Align arrow icon nicely within the download brochure button */
.banner_btn .download-brochure-btn .icon-next {
    top: 0;
}

/* Align arrow icon for regular banner buttons (e.g. Get Detailed Pricing) */
.banner_btn button .icon-next {
    top: 0;
}

.icon-next {
    position: relative;
    top: -.1em;
    margin-left: .6em;
    vertical-align: middle;
    display: inline-block;
    width: .94em;
    height: .75em;
    background: url(../images/icon/next.png) 0 0 / .94em .75em no-repeat;
    filter: brightness(100%);
}

.banner_section .bottom_content .item .inner p span.key {
    font-size: 30px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 2px dotted #55A630;
}

.banner_section .bottom_content .item .inner p {
    display: flex;
    flex-direction: column;
}

button.btn.main_button {
    display: inline-block;
    width: 100%;
}

.form-control::placeholder {
    color: var(--primary-color);
}

@media (max-width: 1100px) {
    .banner_section .banner-layout {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .banner_section .banner-stamp--desktop img {
        width: clamp(64px, 18vw, 80px);
    }

    .banner_section .carousel_btns {
        display: none;
    }
}

/* banner section end here */

/* dates section */
.dates-section {
    display: flex;
    justify-content: space-between;
    background: var(--header-black);
    color: var(--banner-text);
    text-align: center;
}

.date-box-2 {
    flex: 1;
    padding: 20px 10px;
    border-left: 1px solid var(--banner-border);
}

.date-box-2:first-child {
    border-left: none;
}

.date-box-2 h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--banner-text);
}

.date-box-2 p {
    margin: 8px 0 0;
    font-size: 15px;
    color: var(--banner-text-soft);
}

@media (max-width: 768px) {
    .dates-section {
        flex-direction: column;
    }

    .date-box-2 {
        border-left: none;
        border-top: 1px solid var(--banner-border);
    }

    .date-box-2:first-child {
        border-top: none;
    }
}

.item_wrap {
    padding: 20px;
    background-color: #fff;
}

.item_wrap:hover {
    background-color: #55A630;
    transition: 0.50s;
}

.price_section .banner_btn button {
    background-color: #6f584d;
    color: #ffffff;
}

.price_section .icon-next {
    filter: unset;
}

.modal-header .close {
    position: absolute;
    right: 18px;
    top: 14px;
}

/* enquiry modal */
.enquiry-modal .modal-dialog {
    max-width: 440px;
    margin: 1rem auto;
}

.enquiry-modal .modal-content {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.enquiry-modal .modal-header {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--header-cream);
    padding: 18px 44px 16px 20px;
    text-align: center;
}

.enquiry-modal .modal-header .close {
    position: absolute;
    right: 12px;
    top: 12px;
    margin: 0;
    padding: 0;
    width: 36px;
    height: 36px;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: var(--header-black);
    opacity: 1;
    text-shadow: none;
    transition: opacity 0.2s ease;
}

.enquiry-modal .modal-header .close:hover {
    opacity: 0.65;
}

.enquiry-modal-head {
    max-width: 100%;
}

.enquiry-modal-label {
    display: inline-block;
    margin-bottom: 8px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: var(--header-black);
    background: #ffffff;
    border-radius: 4px;
}

.enquiry-modal .enquiry-modal-title {
    margin: 0;
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--header-black);
}

.enquiry-modal .enquiry-modal-title span {
    display: block;
    margin-top: 2px;
}

.enquiry-modal-referral {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 0;
    padding: 6px 16px;
    background: var(--header-black);
    color: var(--header-cream);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.enquiry-modal-referral-label {
    opacity: 0.9;
}

.enquiry-modal-referral-code {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.enquiry-modal .modal-body {
    padding: 18px 20px 20px;
    background: #ffffff;
}

.enquiry-modal .form-group {
    margin-bottom: 10px;
}

.enquiry-modal .form-control {
    min-height: 44px;
    height: 44px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--header-black);
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.enquiry-modal .form-control:focus {
    border-color: var(--header-black);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(253, 232, 207, 0.65);
}

.enquiry-modal .form-control::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.enquiry-modal .enquiry-modal-submit,
.enquiry-modal button.main_button {
    width: 100%;
    min-height: 44px;
    height: 44px;
    padding: 10px 16px;
    margin: 4px 0 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--header-cream);
    background: var(--header-black);
    border: 2px solid var(--header-black);
    border-radius: 8px;
    text-transform: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.enquiry-modal .enquiry-modal-submit:hover,
.enquiry-modal button.main_button:hover {
    background: #1a1a1a;
    color: var(--header-cream);
    border-color: #1a1a1a;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.enquiry-modal-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 4px;
}

.enquiry-modal-consent .inp-txt {
    margin: 0;
    font-size: 9px;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.65);
}

.enquiry-modal .error-msg {
    font-size: 12px;
    color: #c0392b;
    margin-top: 4px;
}

@media (max-width: 767px) {
    .enquiry-modal .modal-dialog {
        max-width: calc(100% - 24px);
        margin: 0.75rem auto;
    }

    .enquiry-modal .modal-header {
        padding: 18px 44px 16px 18px;
    }

    .enquiry-modal .modal-body {
        padding: 18px 18px 20px;
    }
}

/* welcome / onload popup */
.welcome-modal-dialog {
    max-width: 820px;
    width: calc(100% - 24px);
    margin: 1.75rem auto;
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

.welcome-modal .modal-content {
    position: relative;
    border: none;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.welcome-modal-close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 5;
    margin: 0;
    padding: 0;
    width: 36px;
    height: 36px;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    transition: opacity 0.2s ease;
}

.welcome-modal-close:hover {
    opacity: 0.75;
    color: #ffffff;
}

.welcome-modal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.welcome-modal-media {
    position: relative;
    display: block;
    min-height: 420px;
    background: var(--header-black);
    overflow: hidden;
}

.welcome-modal-media img {
    width: 100%;
    height: 420px;
    min-height: 420px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.welcome-modal-form-panel {
    display: flex;
    flex-direction: column;
    padding: 22px 24px 24px;
    background: #ffffff;
}

.welcome-modal-header {
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--header-cream);
    margin: -22px -24px 16px;
    padding: 18px 20px 14px;
}

.welcome-modal-title {
    margin: 0;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--header-black);
}

.welcome-modal-title span {
    display: block;
    margin-top: 2px;
}

.welcome-modal .form-group {
    margin-bottom: 10px;
}

.welcome-modal .form-control {
    min-height: 44px;
    height: 44px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--header-black);
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.welcome-modal .form-control:focus {
    border-color: var(--header-black);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(253, 232, 207, 0.65);
}

.welcome-modal .form-control::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.welcome-modal .welcome-modal-submit,
.welcome-modal button.main_button {
    width: 100%;
    min-height: 44px;
    height: 44px;
    padding: 10px 16px;
    margin: 4px 0 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--header-cream);
    background: var(--header-black);
    border: 2px solid var(--header-black);
    border-radius: 8px;
    text-transform: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.welcome-modal .welcome-modal-submit:hover,
.welcome-modal button.main_button:hover {
    background: #1a1a1a;
    color: var(--header-cream);
    border-color: #1a1a1a;
}

.welcome-modal .error-msg {
    font-size: 12px;
    color: #c0392b;
    margin-top: 4px;
}

@media (max-width: 767px) {
    .welcome-modal.modal {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: calc(54px + env(safe-area-inset-bottom, 0));
    }

    .welcome-modal .welcome-modal-dialog {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        min-height: calc(100vh - 54px - env(safe-area-inset-bottom, 0));
        padding: 12px 0;
        box-sizing: border-box;
    }

    .welcome-modal .welcome-modal-dialog::before {
        display: none !important;
        content: none !important;
        height: 0 !important;
    }

    .welcome-modal .modal-content {
        width: 100%;
        max-height: calc(100vh - 80px - env(safe-area-inset-bottom, 0));
        margin: 0 auto;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex-shrink: 0;
    }

    .welcome-modal-inner {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    /* Hide popup image on mobile — form only */
    .welcome-modal-media {
        display: none !important;
    }

    .welcome-modal-form-panel {
        padding: 18px 18px 20px;
    }

    .welcome-modal-header {
        margin: 0 -18px 14px;
        padding: 16px 16px 12px;
    }

    .welcome-modal-close {
        top: 8px;
        right: 8px;
        color: var(--header-black);
        text-shadow: none;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 50%;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
}

/* welcome modal ends */

/* overview section start here */

/* .overview {
    background: linear-gradient(135deg,
            #ffffff 0%,
            rgba(253, 232, 207, 0.35) 50%,
            rgba(253, 232, 207, 0.15) 100%);
} */

.overview.ptb {
    padding: 80px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: stretch;
}

/* Image — fills column height */
.overview-media {
    position: relative;
    display: flex;
    min-height: 420px;
}

.overview-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transition: box-shadow 0.3s ease;
}

.overview-media:hover img {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

/* Content — same height as image */
.overview-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
    height: 100%;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 24px 28px;
    /* box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1); */
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .overview-content.overview-content--fit {
        width: fit-content;
        max-width: 100%;
        justify-self: start;
    }
}

.overview .overview-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--header-black);
    margin: 0 0 10px;
    padding: 6px 14px;
    background: #fff;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    border-bottom: none;
}

.overview .overview-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--header-black);
    line-height: 1.25;
    margin: 0 0 12px;
}

.overview .overview-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #444;
    margin-top: 6px;
    line-height: 1.45;
}

.overview .overview-content>p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin: 0 0 18px;
    max-width: 52ch;
}

.overview .banner_btn {
    text-align: left;
    margin-top: 6px;
    flex-shrink: 0;
    width: fit-content;
}

.overview .banner_btn .overview-btn,
.overview .banner_btn .download-brochure-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: var(--header-black);
    border: 2px solid var(--header-black);
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.overview .banner_btn .overview-btn:hover,
.overview .banner_btn .download-brochure-btn:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: var(--header-cream);
    text-decoration: none;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
}

.overview .banner_btn .overview-btn .icon-next,
.overview .banner_btn .download-brochure-btn .icon-next {
    filter: brightness(10);
}

.overview .banner_btn .overview-btn:hover .icon-next,
.overview .banner_btn .download-brochure-btn:hover .icon-next {
    filter: brightness(10);
}

/* Tablet */
@media (max-width: 991px) {
    .overview.ptb {
        padding: 45px 0;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        align-items: stretch;
    }

    .overview-media {
        min-height: auto;
        display: block;
    }

    .overview-media img {
        min-height: 280px;
        height: auto;
    }

    .overview-content,
    .overview-content.overview-content--fit {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        height: auto;
        justify-self: stretch;
        padding: 22px 24px;
    }

    .overview .overview-content>p {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .overview.ptb {
        padding: 40px 0;
    }

    .overview .site-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        box-sizing: border-box;
    }

    .overview-grid {
        gap: 24px;
    }

    .overview-media {
        padding: 0;
    }

    .overview-media img {
        min-height: 220px;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .overview-content,
    .overview-content.overview-content--fit {
        width: 100%;
        padding: 20px 18px;
        border-radius: 10px;
        justify-content: flex-start;
    }

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

    .overview .overview-subtitle {
        font-size: 13px;
    }

    .overview .overview-content>p {
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 16px;
    }

    .overview .overview-btn,
    .overview .download-brochure-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .overview .site-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .overview-grid {
        gap: 20px;
    }

    .overview-media img {
        min-height: 200px;
    }

    .overview-content {
        padding: 18px 16px;
    }
}

/* overview section ends here */

/* highlight section start here */

.highlight.ptb {
    padding: 80px 0;
    background: var(--header-black);
    position: relative;
    overflow: hidden;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: stretch;
}

.highlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 420px;
    padding: 28px 30px;
    background: var(--header-cream-soft);
    border: 1px solid rgba(253, 232, 207, 0.35);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

.highlight .highlight-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--header-black);
    margin: 0 0 12px;
    padding: 6px 14px;
    background: #fff;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.highlight .highlight-title {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 700;
    color: var(--header-black);
    line-height: 1.3;
    margin: 0 0 22px;
}

.highlight-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease, transform 0.2s ease;
}

.highlight-list li:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: translateX(4px);
}

.highlight-num {
    flex-shrink: 0;
    min-width: 44px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--header-cream);
    background: var(--header-black);
    border-radius: 4px;
    text-align: center;
    line-height: 1;
}

.highlight-point {
    font-size: 13px;
    font-weight: 600;
    color: var(--header-black);
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.highlight-media {
    position: relative;
    display: flex;
    min-height: 420px;
}

.highlight-img-wrap {
    flex: 1;
    width: 100%;
    min-height: 100%;
}

.highlight-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Tablet */
@media (max-width: 991px) {
    .highlight.ptb {
        padding: 45px 0;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .highlight-content {
        min-height: auto;
        order: 1;
        padding: 24px 26px;
    }

    .highlight-media {
        min-height: auto;
        order: 2;
    }

    .highlight-img-wrap img {
        min-height: 280px;
        height: auto;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .highlight.ptb {
        padding: 40px 0;
    }

    .highlight .site-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        box-sizing: border-box;
    }

    .highlight-grid {
        gap: 20px;
    }

    .highlight-content {
        padding: 20px 18px;
        border-radius: 10px;
    }

    .highlight .highlight-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .highlight-list {
        gap: 8px;
    }

    .highlight-list li {
        padding: 7px 8px;
    }

    .highlight-num {
        min-width: 40px;
        font-size: 13px;
        padding: 7px 8px;
    }

    .highlight-point {
        font-size: 12px;
    }

    .highlight-img-wrap img {
        min-height: 220px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .highlight .site-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .highlight-grid {
        gap: 16px;
    }

    .highlight-content {
        padding: 18px 16px;
    }

    .highlight-img-wrap img {
        min-height: 200px;
    }
}

/* highlight section ends here */

/* amenities section start here */

.amenities.ptb {
    padding: 80px 0;
    background: linear-gradient(180deg,
            #ffffff 0%,
            rgba(253, 232, 207, 0.45) 100%);
}

.amenities-head {
    margin-bottom: 24px;
}

.amenities .amenities-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--header-black);
    margin: 0 0 10px;
    padding: 6px 14px;
    background: var(--header-cream);
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.amenities .amenities-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--header-black);
    line-height: 1.3;
    margin: 0;
    max-width: 720px;
}

.amenities-box {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
}

.amenities-layout {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 0;
    align-items: stretch;
    min-height: 420px;
}

.amenities-layout>* {
    min-width: 0;
}

.amenities-list-panel,
.amenities-carousel-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    align-self: stretch;
}

.amenities-list-panel {
    background: rgba(253, 232, 207, 0.35);
    border: none;
    border-radius: 0;
    padding: 20px 16px;
    box-shadow: none;
    box-sizing: border-box;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.amenities-carousel-panel {
    background: var(--header-black);
    min-height: 100%;
}

.amenities-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    justify-content: space-between;
    min-height: 0;
}

.amenities-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 1;
    min-height: 0;
    padding: 9px 11px;
    border-radius: 7px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    cursor: pointer;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.amenities-list li:hover {
    background: rgba(253, 232, 207, 0.75);
}

.amenities-list li.is-active {
    background: var(--header-black);
    border-color: var(--header-black);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.amenities-num {
    flex-shrink: 0;
    min-width: 32px;
    padding: 5px 7px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    color: var(--header-cream);
    background: var(--header-black);
    border-radius: 4px;
    line-height: 1;
}

.amenities-list li.is-active .amenities-num {
    color: var(--header-black);
    background: var(--header-cream);
}

.amenities-list-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--header-black);
}

.amenities-list li.is-active .amenities-list-text {
    color: var(--header-cream);
}

.amenities-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.amenities .amenities_wrapper {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    flex: 1;
    min-height: 0;
}

.amenities_wrapper .item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    outline: none;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    will-change: opacity;
}

.amenities_wrapper .item.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    pointer-events: auto;
}

.amenity-slide {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    border: none;
    background: var(--header-black);
}

.amenity-slide-media {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    line-height: 0;
    overflow: hidden;
}

.amenity-slide-media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}

.amenity-slide-caption {
    flex-shrink: 0;
    padding: 17px 19px 19px;
    background: var(--header-black);
}

.amenity-slide-caption h3 {
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 700;
    color: var(--header-cream);
    line-height: 1.3;
    margin: 0 0 8px;
}

.amenity-slide-caption p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--banner-text-soft);
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .amenities.ptb {
        padding: 45px 0;
    }

    .amenities-box {
        border-radius: 12px;
    }

    .amenities-layout {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: auto;
        max-height: none;
    }

    .amenities-list-panel,
    .amenities-carousel-panel {
        height: auto;
    }

    .amenities-list-panel {
        order: 2;
        padding: 18px 16px;
        border-right: none;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .amenities-carousel-panel {
        order: 1;
    }

    .amenities-list {
        flex: none;
        justify-content: flex-start;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .amenities-list li {
        flex: none;
    }

    .amenities-slider-wrap,
    .amenities .amenities_wrapper {
        flex: none;
        min-height: 315px;
        height: 315px;
    }

    .amenity-slide-media {
        max-height: 230px;
    }

    .amenity-slide-media img {
        height: 100%;
        min-height: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .amenities.ptb {
        padding: 40px 0;
    }

    .amenities .site-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        box-sizing: border-box;
    }

    .amenities-head {
        margin-bottom: 20px;
    }

    .amenities .amenities-title {
        font-size: 20px;
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .amenities-list-text {
        font-size: 11px;
    }

    .amenities-slider-wrap,
    .amenities .amenities_wrapper {
        min-height: 295px;
        height: 295px;
    }

    .amenity-slide-media {
        max-height: 210px;
    }

    .amenity-slide-caption {
        padding: 15px 16px 17px;
    }

    .amenity-slide-caption p {
        font-size: 13px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .amenities .site-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .amenities-slider-wrap,
    .amenities .amenities_wrapper {
        min-height: 275px;
        height: 275px;
    }

    .amenity-slide-media {
        max-height: 195px;
    }
}

/* amenities section ends here */

/* price list section start here */

.price-list.ptb {
    padding: 80px 0;
    background: #fff;
}

.price-list-head {
    margin-bottom: 24px;
}

.price-list .price-list-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--header-black);
    margin: 0 0 10px;
    padding: 6px 14px;
    background: var(--header-cream);
    border-radius: 4px;
    display: inline-block;
}

.price-list .price-list-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--header-black);
    line-height: 1.3;
    margin: 0;
}

.price-list-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.08);
}

.price-unit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 22px 22px 18px;
    background: rgba(253, 232, 207, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.price-unit-item {
    text-align: center;
    padding: 16px 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.price-unit-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.price-unit-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.35;
}

.price-unit-value {
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    color: var(--header-black);
    margin: 0;
    line-height: 1.2;
}

.price-unit-item--total {
    background: var(--header-black);
    border-color: var(--header-black);
}

.price-unit-item--total .price-unit-label {
    color: var(--banner-text-soft);
}

.price-unit-item--total .price-unit-value {
    color: var(--header-cream);
}

.price-unit-item--total:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.price-payments {
    padding: 28px 28px 32px;
}

.price-payments-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--header-black);
    margin: 0 0 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--header-cream);
}

.price-pay-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.price-pay-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 0;
    min-height: 72px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
}

.price-pay-row:last-child {
    border-bottom: none;
    padding-bottom: 4px;
}

.price-pay-text {
    flex: 1;
    min-width: 0;
}

.price-pay-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--header-black);
    line-height: 1.45;
}

.price-pay-text small {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 6px;
    line-height: 1.55;
}

.price-pay-value {
    flex-shrink: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--header-black);
    white-space: nowrap;
    line-height: 1.45;
    padding-top: 2px;
}

.price-list-cta {
    display: block;
    width: 100%;
    padding: 15px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: var(--header-black);
    border: 2px solid var(--header-black);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.price-list-cta:hover {
    background: #1a1a1a;
    border-color: var(--header-cream);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991px) {
    .price-list.ptb {
        padding: 45px 0;
    }

    .price-unit-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px 16px 14px;
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .price-list.ptb {
        padding: 40px 0;
    }

    .price-list .site-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        box-sizing: border-box;
    }

    .price-list-head {
        margin-bottom: 18px;
    }

    .price-list .price-list-title {
        font-size: 20px;
    }

    .price-unit-grid {
        grid-template-columns: 1fr;
    }

    .price-unit-item {
        padding: 14px 12px;
    }

    .price-payments {
        padding: 22px 18px 26px;
    }

    .price-payments-heading {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .price-pay-list {
        margin-bottom: 22px;
    }

    .price-pay-row {
        flex-direction: column;
        gap: 8px;
        padding: 16px 0;
        min-height: auto;
    }

    .price-pay-value {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .price-list .site-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* price list section ends here */

/* price section start here (legacy) */

.price_section .item_wrap {
    padding: 30px 15px;
    color: #000;
    box-shadow: rgba(0, 0, 0, 0.25) 0 25px 50px -12px;
    text-align: center;
    border-radius: 14px;
    background-color: #F0F8FF
}

.price_section .item_wrap .title h3 {
    font-size: 24px;
    font-family: var(--primary-font);
    padding: 10px;
    margin-bottom: 0px
}

.price_section .item_wrap .price {
    border-bottom: 1px dashed var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px
}

.price_section .item_wrap .size p {
    font-size: 22px;
    font-weight: 500
}

.price_section .price_inner {
    margin-top: 40px
}

.price_section .item_wrap .title h3 {
    background: var(--primary-color);
    color: #fff;
    width: 100%
}

.price_section .item_wrap .price span {
    font-size: 20px
}

.price_btn button {
    font-size: 16px;
    letter-spacing: 1.4px;
    padding: 12px 24px
}

.price_section .item_wrap .title {
    border: 1px solid #000;
    padding: 2px;
    margin-bottom: 20px;
}

.price_section .price_inner .col-lg-4 {
    margin-bottom: 15px
}

.price_section {
    position: relative
}

.price_section::after {
    content: attr(data-name);
    font-size: 80px;
    position: absolute;
    line-height: 100px;
    color: #6d6d6d;
    font-weight: 600;
    z-index: -1;
    opacity: .1;
    text-transform: uppercase;
    left: 25px;
    writing-mode: tb-rl;
    top: 50%;
    transform: rotate(180deg) translateY(50%);
    height: 100%;
    text-align: center
}

/* price section ends here */

/* site layout section start here */

.site-layout.ptb {
    padding: 80px 0;
    background: linear-gradient(180deg, #5b5b5b 0%, #4c4c4c 45%, #3d3d3d 100%);
    text-align: center;
}

.site-layout-head {
    margin-bottom: 22px;
}

.site-layout .site-layout-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--header-black);
    margin: 0 auto 10px;
    padding: 6px 14px;
    background: var(--header-cream);
    border-radius: 4px;
    display: inline-block;
}

.site-layout .site-layout-title {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 auto;
    max-width: 560px;
}

.site-layout-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 10px;
    background: var(--header-cream);
    border: 1px solid rgba(253, 232, 207, 0.5);
    border-radius: 12px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

.site-layout-img-link {
    display: block;
    line-height: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    transition: opacity 0.25s ease;
}

.site-layout-img-link:hover {
    opacity: 0.92;
}

.site-layout-img-link img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 360px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    filter: none;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.site-layout-cta-wrap {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}

.site-layout-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    color: var(--header-black);
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-layout-cta:hover {
    background: var(--header-cream);
    color: var(--header-black);
    border-color: var(--header-cream);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.site-layout-cta .icon-next {
    filter: brightness(0);
    top: 0;
}

.site-layout-cta:hover .icon-next {
    filter: brightness(0);
}

@media (max-width: 767px) {
    .site-layout.ptb {
        padding: 40px 0;
    }

    .site-layout .site-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        box-sizing: border-box;
    }

    .site-layout-head {
        margin-bottom: 22px;
    }

    .site-layout .site-layout-title {
        font-size: 20px;
    }

    .site-layout-card {
        max-width: 100%;
        padding: 8px;
    }

    .site-layout-img-link img {
        max-height: 280px;
    }

    .site-layout-cta-wrap {
        margin-top: 18px;
        width: 100%;
    }

    .site-layout-cta {
        display: flex;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .site-layout .site-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-layout-img-link img {
        max-height: 240px;
    }
}

/* site layout section ends here */

.inp-box {
    display: flex;
    align-items: baseline;
    padding-top: 0;
}

.inp-box p.inp-txt {
    font-size: 9px;
    margin-bottom: 0;
}

/* location section start here */

.location.ptb {
    padding: 80px 0;
    background: linear-gradient(180deg,
            rgba(253, 232, 207, 0.35) 0%,
            #ffffff 55%);
}

.location-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.location-media,
.location-panel {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    max-width: none;
}

.location-media {
    position: relative;
    display: flex;
    min-height: 420px;
    border-radius: 12px;
    overflow: hidden;
}

.location-map-link {
    position: relative;
    display: block;
    flex: 1 1 auto;
    width: 100%;
    min-height: 420px;
    line-height: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    transition: opacity 0.25s ease;
}

.location-map-link:hover {
    opacity: 0.92;
}

.location-map-link img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    transform: none !important;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
}

.location-panel {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
}

.location-head {
    margin-bottom: 20px;
}

.location .location-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--header-black);
    margin: 0 0 10px;
    padding: 6px 14px;
    background: var(--header-cream);
    border-radius: 4px;
    display: inline-block;
}

.location .location-title {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--header-black);
    line-height: 1.35;
    margin: 0;
}

.location-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.location-item:last-child {
    border-bottom: none;
}

.location-item .fa-map-marker {
    flex-shrink: 0;
    width: 22px;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    color: var(--header-black);
}

.location-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--header-black);
    line-height: 1.4;
}

.location-actions {
    width: 100%;
    margin-top: auto;
    padding-top: 22px;
}

.location-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: var(--header-black);
    border: 2px solid var(--header-black);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.location-cta:hover {
    background: #1a1a1a;
    border-color: var(--header-cream);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.location-cta .icon-next {
    filter: brightness(10);
    top: 0;
}

@media (max-width: 991px) {
    .location.ptb {
        padding: 50px 0;
    }

    .location-grid {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 28px;
    }

    .location-media,
    .location-panel {
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
    }

    .location-media {
        min-height: 300px;
    }

    .location-map-link {
        min-height: 300px;
    }

    .location-map-link img {
        position: absolute;
        min-height: 100%;
    }

    .location-panel {
        padding: 24px 22px;
        min-height: 0;
    }

    .location-item span {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .location.ptb {
        padding: 40px 0;
    }

    .location .site-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        box-sizing: border-box;
    }

    .location-grid {
        gap: 22px;
    }

    .location-media {
        min-height: 240px;
    }

    .location-map-link {
        min-height: 240px;
    }

    .location-panel {
        padding: 20px 18px;
        min-height: 0;
    }

    .location .location-title {
        font-size: 20px;
    }

    .location-item {
        padding: 12px 10px;
        gap: 10px;
    }

    .location-item span {
        font-size: 14px;
    }

    .location-cta {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .location .site-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* location section ends here */

/* gallery section start here */

.gallery.ptb {
    padding: 80px 0;
    /* background: linear-gradient(180deg,
            rgba(253, 232, 207, 0.4) 0%,
            #ffffff 50%); */
}

.gallery-head {
    margin-bottom: 28px;
    text-align: center;
}

.gallery .gallery-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--header-black);
    margin: 0 auto 10px;
    padding: 6px 14px;
    background: var(--header-cream);
    border-radius: 4px;
    display: inline-block;
}

.gallery .gallery-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--header-black);
    line-height: 1.3;
    margin: 0 auto;
    max-width: 720px;
}

.gallery-hint {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin: 0 auto 20px;
    max-width: 480px;
    line-height: 1.5;
}

.gallery-actions {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}

.gallery-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: var(--header-black);
    border: 2px solid var(--header-black);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gallery-open-btn:hover {
    background: #1a1a1a;
    border-color: var(--header-cream);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.gallery-open-btn .icon-next {
    filter: brightness(10);
    top: 0;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.gallery-item {
    flex: 0 0 calc((100% - 36px) / 3);
    max-width: calc((100% - 36px) / 3);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.gallery-link {
    display: block;
    line-height: 0;
    cursor: zoom-in;
    overflow: hidden;
}

.gallery-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-link img {
    transform: scale(1.04);
}

@media (max-width: 991px) {
    .gallery.ptb {
        padding: 45px 0;
    }

    .gallery-grid {
        gap: 14px;
    }

    .gallery-item {
        flex: 0 0 calc((100% - 14px) / 2);
        max-width: calc((100% - 14px) / 2);
    }

    .gallery-link img {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .gallery.ptb {
        padding: 40px 0;
    }

    .gallery .site-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        box-sizing: border-box;
    }

    .gallery-head {
        margin-bottom: 22px;
    }

    .gallery .gallery-title {
        font-size: 20px;
    }

    .gallery-grid {
        gap: 12px;
    }

    .gallery-item {
        flex: 0 0 calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
    }

    .gallery-link img {
        height: 180px;
    }

    .gallery-open-btn {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .gallery .site-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gallery-link img {
        height: 160px;
    }
}

/* Gallery lightbox — prev/next slider */
/* Let clicks reach arrows (container was blocking them) */
.mfp-gallery-slider.mfp-gallery .mfp-container {
    pointer-events: none;
}

.mfp-gallery-slider.mfp-gallery .mfp-content,
.mfp-gallery-slider.mfp-gallery .mfp-arrow,
.mfp-gallery-slider.mfp-gallery .mfp-close,
.mfp-gallery-slider.mfp-gallery .mfp-counter,
.mfp-gallery-slider.mfp-gallery .mfp-title {
    pointer-events: auto;
}

.mfp-gallery-slider .mfp-arrow {
    opacity: 1;
    top: 50%;
    margin-top: -24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 1050;
}

/* Clean chevron icons (default MP triangles break on small circles) */
.mfp-gallery-slider .mfp-arrow::before {
    display: none;
}

.mfp-gallery-slider .mfp-arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    margin: 0;
    border: none;
    border-top: 2.5px solid var(--header-black);
    border-right: 2.5px solid var(--header-black);
    box-sizing: border-box;
}

.mfp-gallery-slider .mfp-arrow-left::after {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.mfp-gallery-slider .mfp-arrow-right::after {
    transform: translate(-60%, -50%) rotate(45deg);
}

.mfp-gallery-slider .mfp-arrow:hover::after,
.mfp-gallery-slider .mfp-arrow:focus::after {
    border-color: #000;
}

.mfp-gallery-slider .mfp-arrow:active {
    margin-top: -23px;
}

.mfp-gallery-slider .mfp-arrow-left {
    left: 12px;
}

.mfp-gallery-slider .mfp-arrow-right {
    right: 12px;
}

.mfp-gallery-slider .mfp-counter {
    color: var(--header-cream);
    font-size: 14px;
    font-weight: 600;
    right: 12px;
    bottom: 12px;
    top: auto;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 20px;
}

.mfp-gallery-slider .mfp-title {
    color: var(--header-cream);
    font-size: 14px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 6px;
}

.mfp-gallery-slider .mfp-close {
    color: #fff;
    opacity: 1;
}

@media (max-width: 767px) {
    .mfp-gallery-slider .mfp-arrow {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }

    .mfp-gallery-slider .mfp-arrow::after {
        width: 8px;
        height: 8px;
        border-width: 2px;
    }

    .mfp-gallery-slider .mfp-arrow:active {
        margin-top: -19px;
    }

    .mfp-gallery-slider .mfp-arrow-left {
        left: 6px;
    }

    .mfp-gallery-slider .mfp-arrow-right {
        right: 6px;
    }
}

/* gallery section ends here */

/* site footer start here */

.site-footer {
    padding: 48px 0 32px;
    background: #F8EFE6;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.site-footer-rera {
    margin: 0 auto 24px;
    font-size: 14px;
    color: var(--header-black);
}

.site-footer-rera strong {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-weight: 700;
}

.site-footer-disclaimer {
    max-width: 920px;
    margin: 0 auto 20px;
}

.site-footer-text {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(0, 0, 0, 0.72);
    text-align: center;
}

.site-footer-text--more {
    display: none;
}

.site-footer-text--more p {
    margin: 0 0 12px;
}

.site-footer-read-more {
    display: inline-block;
    margin: 4px 0 0;
    padding: 0;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--header-black);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.site-footer-read-more:hover {
    color: #333;
}

.site-footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.site-footer-bottom p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--header-black);
}

.site-footer-bottom a {
    color: var(--header-black);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s ease;
}

.site-footer-bottom a:hover {
    opacity: 0.75;
}

@media (max-width: 767px) {
    .site-footer {
        padding: 36px 18px calc(68px + env(safe-area-inset-bottom, 0));
    }

    .site-footer .site-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    .site-footer-rera strong {
        font-size: 11px;
        padding: 8px 10px;
        line-height: 1.4;
    }

    .site-footer-text {
        font-size: 12px;
        text-align: left;
    }

    .site-footer-text--more {
        text-align: left;
    }

    .site-footer-bottom {
        margin-top: 20px;
        padding-top: 16px;
    }

    .site-footer-bottom p {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px 10px;
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .site-footer-bottom p {
        font-size: 11px;
        gap: 4px 8px;
    }

    .mobile-section .mobile-section-btn {
        font-size: 11px;
        min-height: 48px;
        padding: 10px 4px;
    }
}

/* site footer ends here */

/* form css */

.right_form {
    position: absolute;
    bottom: 0;
    right: 0;
    /* width:22%; */
    border: 8px solid var(--primary-color);
    height: auto;
    z-index: 9
}

.form_sec {
    padding: 30px 15px;
    background: var(--primary-color);
    /* opacity:.95; */
}

h2.form_title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px
}

.right_form .form-control {
    border-radius: 0;
    background-color: transparent;
    padding: 12px 15px;
    border: none;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
}

.right_form .form-control::placeholder {
    color: #fff;
}

button.btn.main_button {
    background: white;
    border-radius: 9px;
    border: 1px solid #4d4b43;
    color: #000000;
    display: inline-block;
    width: 100%
}

.form-control::placeholder {
    color: var(--primary-color)
}

/* contact section (legacy footer_form rules kept for modals if needed) */

.footer_form .form_sec {
    padding: 30px;
    border-radius: 10px;
    opacity: 1
}

/* mobile-trigger */

.mobile-trigger {
    cursor: pointer;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    padding: 0;
    position: relative;
    z-index: 99999;
    border: 2px solid var(--header-black);
    border-radius: 10px;
    background: var(--header-cream);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.mobile-trigger .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--header-black);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.mobile-open .mobile-trigger {
    background: var(--header-black);
    border-color: var(--header-cream);
}

.mobile-open .mobile-trigger .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--header-cream);
}

.mobile-open .mobile-trigger .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-open .mobile-trigger .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--header-cream);
}

.mobile-open .mobile_overlay {
    background-color: #000000a1;
    opacity: 1;
    pointer-events: all
}

.mobile-open .navbar-collapse {
    left: 0;
}


/* contact section start here */

.contact.ptb {
    padding: 80px 0;
    background: linear-gradient(180deg,
            #000000 0%,
            #131312 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 36px;
    border: 1px solid rgba(253, 232, 207, 0.28);
    border-radius: 12px;
    background: rgba(253, 232, 207, 0.08);
}

.contact .contact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--header-black);
    margin: 0 0 16px;
    padding: 6px 14px;
    background: var(--header-cream);
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
}

.contact-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--banner-text-soft);
}

.contact-form-wrap {
    display: flex;
    min-height: 100%;
}

.contact-form-card {
    flex: 1;
    width: 100%;
    padding: 28px 26px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
}

.contact-form-title {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--header-black);
    margin: 0 0 22px;
    text-align: left;
}

.contact .form-group {
    margin-bottom: 14px;
}

.contact .form-control {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 16px 16px;
    min-height: 52px;
    color: var(--header-black);
    font-size: 15px;
    line-height: 1.4;
    transition: border-color 0.2s ease;
}

.contact .form-control:focus {
    border-color: var(--header-black);
    outline: none;
    box-shadow: none;
}

.contact .form-control::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.contact button.contact-submit,
.contact button.btn.main_button {
    width: 100%;
    padding: 16px;
    min-height: 52px;
    background: var(--header-black);
    color: var(--header-cream);
    border: 2px solid var(--header-black);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.contact button.contact-submit:hover,
.contact button.btn.main_button:hover {
    background: transparent;
    color: var(--header-black);
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 4px;
}

.contact-consent .inp-txt {
    margin: 0;
    font-size: 9px;
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.65);
}

.contact .error-msg {
    font-size: 12px;
    color: #c0392b;
    margin-top: 4px;
}

@media (max-width: 991px) {
    .contact.ptb {
        padding: 50px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-about {
        padding: 24px 22px;
    }

    .contact-form-card {
        padding: 24px 22px;
    }
}

@media (max-width: 767px) {
    .contact.ptb {
        padding: 40px 0;
    }

    .contact .site-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        box-sizing: border-box;
    }

    .contact-grid {
        gap: 22px;
    }

    .contact-about {
        padding: 20px 18px;
    }

    .contact-text {
        font-size: 15px;
    }

    .contact-form-card {
        padding: 20px 18px;
    }

    .contact-form-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .contact .site-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* contact section ends here */


.modal-body button.btn.main_button:not(.enquiry-modal-submit):not(.welcome-modal-submit) {
    background-color: var(--primary-color);
    margin: 10px 0;
    color: #fff;
    text-transform: capitalize;
}

html,
body {
    background-color: #fff
}

.container {
    width: 100%;
    height: 100%;
    margin: 0 auto
}

.pulse-button span {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 15px;
    top: 15px;
    color: #333;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    float: right
}

.pulse-button img {
    -webkit-animation: wiggle 2s infinite;
    -moz-animation: wiggle 2s infinite;
    animation: wiggle 2s infinite
}

.pulse-button {
    color: #333;
    font-weight: 500;
    position: relative;
    text-align: left;
    border: none;
    box-shadow: 0 0 0 0 rgba(253, 232, 207, 0.6);
    border-radius: 40px;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-size: 18px;
}

.pulse-button:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none
}

.light-logo {
    display: none;
}

.dark-logo {
    display: block;
}

.fixed-header .light-logo {
    display: none;
}

.fixed-header .dark-logo {
    display: block;
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 20px rgba(253, 232, 207, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 20px rgba(253, 232, 207, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 20px rgba(253, 232, 207, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 20px rgba(253, 232, 207, 0);
    }
}

/* safari and chrome */

@-webkit-keyframes wiggle {
    0% {
        -webkit-transform: rotate(15deg);
    }

    50% {
        -webkit-transform: rotate(-15deg);
    }

    100% {
        -webkit-transform: rotate(15deg);
    }
}

/* firefox */

@-moz-keyframes wiggle {
    0% {
        -moz-transform: rotate(15deg);
    }

    50% {
        -moz-transform: rotate(-15deg);
    }

    100% {
        -moz-transform: rotate(15deg);
    }
}

/* anyone brave enough to implement the ideal method */

@keyframes wiggle {
    0% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-15deg);
    }

    100% {
        transform: rotate(15deg);
    }
}

.mobile-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    background-color: var(--header-black);
    color: #fff;
    z-index: 999;
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-sizing: border-box;
}

.mobile-section .mobile-section-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    color: #ffffff !important;
    background: transparent;
    border: none;
    border-radius: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: none !important;
    white-space: nowrap;
    text-decoration: none;
}

.mobile-section .mobile-section-btn:last-child {
    border-right: none;
}

.mobile-section .mobile-section-btn:hover,
.mobile-section .mobile-section-btn:focus {
    background: rgba(255, 255, 255, 0.08);
    color: var(--header-cream) !important;
}


@media (min-width:768px) {
    .mobile-trigger {
        display: none !important;
    }

    header ul li.nav-item.call_btn {
        display: none;
    }
}

@media (max-width:1480px) {
    header .header-wrapper {
        justify-content: flex-start;
    }

    header .navbar-brand img {
        /* max-width: 257px; */
        vertical-align: middle;
        padding: 5px 0 0 0;
    }

    .banner_section ul.key_high li {
        padding: 0px 0;
        font-size: 20px;
        margin-bottom: 13px;
    }

    .banner_section ul.key_high li img {
        max-width: 24px;
    }

    header ul li {
        padding: 0 12px;
    }

    header .header-helpline {
        padding: 6px 14px;
        font-size: 13px;
    }

    .banner_section h1.title {
        font-size: 37px
    }

    .banner_section h2.typo {
        font-size: 23px
    }

    .banner_section .bottom_content .item .inner {
        padding: 10px 5px;
        border: none
    }

    .banner_section .carousel_btns button {
        width: 45px;
        height: 45px
    }

    .banner_section .carousel-control-prev {
        left: 64%
    }


    .banner_section .bottom_content .item .inner p span.key {
        /* margin-bottom:0; */
        font-size: 22px;
        /* padding-bottom:0; */
        /* border:none; */
        margin-left: 0px;
    }

    .banner_btn button {
        font-size: 16px;
        padding: 12px 20px
    }


    .highlight-num {
        padding: 6px 10px;
    }

    .banner_section h2.form_title {
        font-size: 28px
    }

    .banner_section .form_sec {
        padding: 10px
    }

}

@media (max-width:1367px) {
    header .navbar-brand img {
        vertical-align: middle;
        padding: 5px 0 0 0;
        margin-left: 0;
    }

    header ul li {
        padding: 0 7px;
    }

    .banner_section .banner_content {
        top: 17%;
    }
}

@media (max-width:1281px) {
    header .navbar-brand img {
        max-width: 220px;
        vertical-align: middle;
        padding: 5px 0 0 0;
    }
}

@media (max-width:767px) {

    .light-logo {
        display: none;
    }

    .dark-logo {
        display: block;
    }

    .mobile-section {
        display: flex;
        justify-content: stretch;
    }

    .mobile-section .mobile-section-btn {
        font-size: 12px;
        padding: 12px 6px;
    }





    .banner_section .banner_content {
        position: relative;
        padding: 0;
        display: block;
    }

    .site-wrap,
    .banner_section .banner-wrap {
        width: 100%;
        max-width: 100%;
    }

    header .site-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
        box-sizing: border-box;
    }

    .banner_section .banner-layout {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
    }

    .banner_section .banner-stamp--desktop {
        display: none;
    }

    .mobBanner {
        position: relative;
    }

    .mobBanner .banner-stamp--mobile {
        display: block;
        position: absolute;
        top: 12px;
        right: 36px;
        z-index: 5;
        pointer-events: none;
        line-height: 0;
    }

    .mobBanner .banner-stamp--mobile img {
        width: 72px;
    }

    .banner_section .banner-info {
        /* background: var(--header-cream-soft); */
        padding: 24px 20px;
    }

    .banner_section h1.title,
    .banner_section .typo {
        color: var(--header-black);
    }

    .banner_section .banner-tag--loc {
        color: var(--header-black);
        background: var(--header-cream-soft);
        border-color: rgba(0, 0, 0, 0.15);
    }

    .banner_section .banner-tag--loc img {
        filter: brightness(0);
        opacity: 1;
    }

    .banner_section ul.key_high li {
        color: var(--header-black);
        font-size: 14px;
        margin-bottom: 8px;
    }

    .banner_section .banner-info ul.key_high .key-icon {
        background: var(--header-black);
        color: #fff;
        border-color: var(--header-black);
    }

    .banner_section .banner-info .banner-cta--dark,
    .banner_section .banner-info .banner-cta--light {
        color: var(--header-black);
        border-color: var(--header-black);
    }

    .banner_section .banner-info .banner-cta--dark {
        background: var(--header-black);
        color: var(--header-cream);
    }

    .banner_section .banner-info .banner-cta--light {
        background: var(--header-cream-soft);
        color: var(--header-black);
        border-color: var(--header-black);
    }

    .banner_section .banner-info .banner-cta .icon-next {
        filter: brightness(10);
    }

    .banner_section .banner-info .banner-cta--light .icon-next {
        filter: brightness(0);
    }

    .banner_section .right_form {
        /* padding: 0 20px 24px; */
        background: var(--header-cream-soft);
    }

    .banner_section .form_sec {
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }

    .banner_section .carousel_btns {
        display: block;
        position: relative;
        background: var(--header-cream-soft);
        padding: 16px 20px 20px;
    }

    .banner_section .carousel-nav-group {
        display: none;
    }

    .banner_section .banner-bottom-bar {
        width: 100%;
        max-width: 100%;
    }

    .banner_section .carousel_btns .banner_btn {
        flex-direction: column;
        justify-content: stretch;
    }

    .banner_section .banner-cta {
        width: 100%;
    }

    .mobBanner img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .banner-img {
        min-height: 220px;
        height: auto;
    }

    header .navbar-brand img {
        max-width: 88px;
        filter: unset;
        padding: 2px 0;
        margin: 0;
    }

    .header-right {
        display: none
    }

    header .navbar-nav {
        flex-direction: column;
        width: 100%;
        height: auto;
        margin-top: 0;
        align-items: center;
        justify-content: flex-start;
        gap: 4px;
    }

    body.mobile-open {
        overflow: hidden;
    }

    .mobile-open header.site-header {
        z-index: 10000;
    }

    .menu-wrapper {
        position: fixed;
        width: 100%;
        top: 0;
        bottom: 0;
        left: -100%;
        right: 0;
        z-index: 9998;
        background: var(--header-cream);
        transition: left 0.35s ease-in-out;
        height: 100vh;
        height: 100dvh;
        padding: 70px 24px 40px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-open .menu-wrapper {
        left: 0;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.12);
    }

    header ul li {
        padding: 0;
        width: 100%;
        text-align: center;
    }

    header ul li a.nav-link {
        color: var(--header-black);
        font-size: 17px;
        padding: 14px 0;
        display: block;
        width: 100%;
    }

    header ul li a.nav-link::after {
        background: var(--header-black);
    }

    header ul li.nav-item.call_btn {
        display: list-item;
        margin-top: 24px;
    }

    header ul li.nav-item.call_btn .nav-cta-mobile {
        justify-content: center;
        width: auto;
        margin-top: 0;
    }

    .banner_section {
        position: relative
    }

    header.site-header {
        position: relative;
        background: var(--header-cream-soft);
    }

    .mobile-trigger {
        display: flex;
    }



    .footer_form .form_sec {
        padding: 15px
    }

    .banner_section .bottom_content .item_box {
        flex-wrap: wrap;

    }

    .banner_section .bottom_content .item {
        margin: unset;
        margin-bottom: 7px;
        border: none;
        border-bottom: 1px solid #ccc;
        background-color: #F0F8FF;
    }

    .banner_section .bottom_content .item_box {
        padding: 10px;
        margin: 0px !important;
    }

    /* .banner_section .bottom_content .item .inner p{flex-direction:initial;justify-content:center} */
    .banner_section .bottom_content .item .inner p {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        color: #000;
        align-items: center;
    }

    .banner_section .bottom_content .item .inner p span.key {
        border-bottom: none;
        padding: 0px;
        margin: 0px 0 7px 0;
    }

    header.fixed-header .navbar-nav .nav-link {
        color: var(--header-black);
    }

    /* .contact .contact-text {
        text-align: justify;
    } */

    .ptb {
        padding: 50px 0;
    }

    .banner_section .bottom_content .item .inner {
        border-radius: 0;
        background: var(--primary-color);
        background: none;
        padding: 0;
    }

    header .header-wrapper {
        padding: 0;
        justify-content: flex-start;
    }

    header .header-left {
        margin-right: 0;
    }

    header .header-center {
        flex: 0;
        width: 0;
        height: 0;
        overflow: visible;
    }

    header .mobile-trigger {
        margin-left: auto;
    }

    .banner_section .carousel-inner {
        display: none;
    }

    div.mobBanner {
        display: block;
    }

    .banner_section .carousel_btns {
        display: none;
    }

    .img_div.col-md-6 {
        display: none;
    }

}

.mobBanner {
    display: none;
}


.priceRqst {
    filter: blur(0px);
    white-space: nowrap;
}

b#frontPrice {
    filter: blur(2px);
}






.redBrochure {
    color: red;
}

.image_section img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width:1300px) and (min-width:800px) {
    span#offerDiscountPrice {
        font-size: 10px;
    }

    .banner_section .bottom_content .item .inner p span.key {
        font-size: 15px;
    }

    #republic {
        font-size: 10px;
    }

    .PriceGet {
        font-size: 10px;
    }

    header .navbar-brand img {
        max-width: 70px;
    }

}

/* Thank you page (ty.html) */
body.ty-page {
    min-height: 100vh;
    margin: 0;
    background: #f8efe6 !important;
    color: #111;
    font-family: 'Outfit', sans-serif;
}

.ty-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

.ty-box {
    width: 100%;
    max-width: min(96vw, 920px);
    text-align: center;
}

.ty-card {
    background: #fff;
    padding: 36px 28px 28px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.ty-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #FDE8CF;
}

.ty-logo {
    display: inline-block;
    margin-bottom: 24px;
}

.ty-logo img {
    max-height: 48px;
    width: auto;
}

.ty-ok {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    line-height: 64px;
    font-size: 30px;
    font-weight: 700;
    color: #111;
    background: #FDE8CF;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.ty-box h1 {
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 4vw, 1.75rem);
    font-weight: 700;
    color: #111;
}

.ty-text {
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.55;
    color: #555;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.ty-referral {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 24px;
    padding: 8px 18px;
    background: #111;
    color: #FDE8CF;
    border-radius: 24px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Thank you page referral — fast, high-visibility blink + cross */
@keyframes ty-referral-blink {

    0%,
    100% {
        background: #111;
        color: #FDE8CF;
        border-color: rgba(253, 232, 207, 0.35);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    50% {
        background: #FDE8CF;
        color: #111;
        border-color: #111;
        box-shadow: 0 0 22px 6px rgba(253, 232, 207, 1);
    }
}

@keyframes ty-referral-cross {
    0% {
        left: -100%;
    }

    36%,
    100% {
        left: 145%;
    }
}

.ty-referral--flash {
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(253, 232, 207, 0.35);
    animation: ty-referral-blink 1.8s ease-in-out infinite;
}

.ty-referral--flash::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -100%;
    width: 50%;
    height: 140%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.45) 40%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0.45) 60%,
            transparent 100%);
    transform: skewX(-22deg);
    animation: ty-referral-cross 2.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.ty-referral--flash .ty-referral-label,
.ty-referral--flash .ty-referral-sep,
.ty-referral--flash .ty-referral-code {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {

    .ty-referral--flash,
    .ty-referral--flash::before {
        animation: none;
    }
}

.ty-referral-label {
    opacity: 0.92;
}

.ty-referral--flash .ty-referral-label,
.ty-referral--flash .ty-referral-sep {
    opacity: 1;
}

.ty-referral-sep {
    opacity: 0.7;
}

.ty-referral-code {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.ty-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    padding-top: 4px;
}

.ty-btn {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 8px;
    font-size: clamp(0.72rem, 2.2vw, 0.88rem);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #111;
    background: #FDE8CF;
    border: 1px solid #e8d4b8;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ty-btn:hover {
    background: #f5e6d0;
    color: #111;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ty-btn-dark {
    color: #fff;
    background: #111;
    border-color: #111;
}

.ty-btn-dark:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.ty-btn-outline {
    background: #fff;
    border-color: #ccc;
}

.ty-btn-outline:hover {
    background: #fafafa;
}

.ty-btn-wa {
    color: #fff;
    background: #25d366;
    border-color: #25d366;
}

.ty-btn-wa:hover {
    background: #1da851;
    border-color: #1da851;
    color: #fff;
}

.ty-btn-short {
    display: none;
}

.ty-foot {
    margin: 26px 0 0;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.82rem;
    color: #777;
    line-height: 1.6;
}

.ty-foot a {
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

.ty-foot a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .ty-box {
        max-width: 100%;
    }

    .ty-card {
        padding: 15px 12px 15px;
    }



    .ty-btn-short {
        display: inline;
    }

    .ty-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
        overflow: visible;
    }

    .ty-btn {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        min-height: 44px;
        padding: 10px 4px;
        font-size: clamp(0.62rem, 2.9vw, 0.75rem);
        line-height: 1.15;
        border-radius: 6px;
    }
}

@media (max-width: 380px) {
    .ty-card {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ty-actions {
        gap: 4px;
    }

    .ty-btn {
        padding: 2px 2px;
        font-size: 0.58rem;
    }
}