/* =========================
   FONTS (Optimized)
========================= */
@font-face {
    font-family: "Avenir Next";
    src: url('../Font/AvenirNext-Regular.ttf') format("truetype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Next";
    src: url('../Font/AvenirNext-Medium.ttf') format("truetype");
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Next";
    src: url('../Font/AvenirNext-Bold.ttf') format("truetype");
    font-weight: 700;
    font-display: swap;
}

/* =========================
   DESIGN TOKENS
========================= */
:root {
    --color-bg: #f6f6f6;
    --color-white: #fff;
    --color-text: #111;
    --color-muted: #777;

    --font-base: "Avenir Next", sans-serif;

    --fs-body: 1rem;
    --fs-h3: clamp(1.75rem, 2.5vw, 2.5rem);

    --space-sm: clamp(0.5rem, 1vw, 1rem);
    --space-md: clamp(1rem, 2vw, 1.5rem);
    --space-lg: clamp(2rem, 4vw, 5rem);

    --radius-sm: 4px;
    --radius-md: 10px;

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.15);

    --transition: 0.3s ease;


    /* START: variables */

    --color1-hsl: 0 0% 0%;
    --color1: hsl(var(--color1-hsl));
    --color2: hsl(0 0% 100%);
    --color3: hsl(var(--color1-hsl) / 15%);
    --gap: 1.5rem;
    --spacing: 5rem;
    --padding: 2rem;
    --border-radius: 1rem;
}

/* =========================
   GLOBAL
========================= */
body {
    font-family: var(--font-base);
    font-size: var(--fs-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-decoration: none !important;
}

/* =========================
   TYPOGRAPHY
========================= */
h3 {
    font-weight: 500;
    font-size: var(--fs-h3);
    line-height: 1.2;
    text-decoration: none !important;
}

p {
    font-weight: 400;
    font-size: var(--fs-h3);
    line-height: 1.2;
    text-decoration: none !important;
}

label {
    font-weight: 500;
    font-size: 14px;
}

label span{
    font-weight: 500;
    font-size: 14px;
    color: red;
}


.frm-pstin {
    width: 100%;
    position: relative;
    /* bottom: 0px; */
}


input {
    font-weight: 400;
    font-size: 14px;
    border-radius: 0;
}

a {
    text-decoration: none;
    color: #000;
}

.form-control {
    height: 56px;
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 0px;
    margin-right: -1px;
}

.form-select {
    height: 56px;
    border: 1px solid #EBEBEB;
    border-radius: 0px;
}

.footer-form .error {
    color: #ff6b6b;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.footer-form .form-control.error-border,
.footer-form .form-select.error-border {
    border: 1px solid #ff6b6b;
}


.footer-form .form-message {
    color: #d6e290;
    font-weight: 500;
}





.popup-slides {
    touch-action: pan-y;
}


/* ------------- */

.radio-inline {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    background: rgb(0 0 0 / 74%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgb(0 0 0 / 20%);
    backdrop-filter: blur(6px);
    padding: 20px 50px 10px 30px;
    width: fit-content;
    margin-left: 10px;
    border-radius: 10px 60px 0px 0px;
    color: white;
}

.radio-inline p {
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
}


.radio-inline label span {
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
}

.radio-inline label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #ffffff;
}

/* custom radio */
.radio-inline input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #ececec;
    border-radius: 50%;
    margin-right: 6px;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* inner dot */
.radio-inline input[type="radio"]::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.2s ease;
}

/* checked state */
.radio-inline input[type="radio"]:checked {
    border-color: #ffffff;
}

.radio-inline input[type="radio"]:checked::before {
    transform: translate(-50%, -50%) scale(1);
}

/* hover */
.radio-inline label:hover input[type="radio"] {
    border-color: #e9e9e9;
}


/* ------------- */





.owl-theme .owl-dots .owl-dot span {
    width: 8px !important;
    height: 8px !important;
    margin: 5px 5px !important;
}



.hero-form .form-control {
    height: 56px;
    background: #ffffff;
    border: 1px solid #EBEBEB;
    border-radius: 0px;
    margin-right: -1px;
}

.hero-form .form-select {
    height: 56px;
    border: 1px solid #EBEBEB;
    border-radius: 0px;
}

.hero-form .error {
    color: #ff6b6b;
    font-size: 12px;
    display: block;
    margin-top: 4px;
}

.hero-form .form-control.error-border,
.hero-form .form-select.error-border {
    border: 1px solid #ff6b6b;
}

.hero-form .btn {
    padding: 16px 45px;
    border-radius: 0px;
    transition: all 0.3s ease;
    margin-top: 28px;
    color: #f6f6f6;
    background-color: #000;
}


.form-message {
    color: #1ba336;
    font-weight: 500;
}


/* =========================
   NAVBAR
========================= */
.navbar {
    position: fixed;
    top: 20px; /* add some breathing space */
    left: 50%;
    transform: translateX(-50%);

    width: 80%;
    max-width: 1320px; /* like Bootstrap container */

    z-index: 999;

    padding: var(--space-sm) var(--space-md);

    background: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);

    border-radius: 12px; /* optional but looks premium */
}

.navbar-brand {
    font-weight: 600;
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
}

.btn-dark {
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-dark:hover {
    transform: translateY(-1px);
}




/* =========================
   HERO
========================= */
.hero {
    position: relative;
    width: 100%;
    /* overflow: hidden; */
    height: 100vh;
}

/* VIDEO BACKGROUND */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}


.statment {
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 99;
    justify-content: flex-end;
    height: 50vh;
    flex-direction: column;
    /* bottom: 110px; */
}


.inner {
    padding: var(--space-md) var(--space-lg);
    max-width: 1100px;
    /* background: rgb(255 255 255 / 64%); */
    /* backdrop-filter: blur(18px); */
    -webkit-backdrop-filter: blur(12px);
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    /* box-shadow: 0 4px 20px rgb(0 0 0 / 20%); */
    animation: floatUp 2s ease-out;
    /* min-width: 610px; */
    justify-content: center;
    display: flex;
    align-items: center;
    /* border-radius: 80px; */
}

.inner h1 {
    /* margin: 0;
    color: #ffffff;
    font-size: clamp(20px, 8.5vw, 90px);
    font-weight: 900;
    text-transform: uppercase;
    -webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke-width: 4px;
	-webkit-text-stroke-color: #fff; */

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(20px, 8.5vw, 80px);
    font-weight: 900;
    background: #00000042;
    padding: 10px 40px;
}

.inner h1 u {
    margin: 0;
    font-weight: 600;
    color: #000000;
    /* text-transform: uppercase; */
}


.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY (optional but recommended) */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.35); */
    z-index: 1;
}

/* CONTENT ABOVE VIDEO */
.hero .container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 40px;
}

.hero-form {
    position: relative;
    z-index: 2;
}


.hero-form {
    background: var(--color-white);
    padding: var(--space-sm) var(--space-md);
    width: 100%;
    background: rgb(255 255 255 / 85%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgb(0 0 0 / 20%);
    backdrop-filter: blur(6px);
    margin: 0px 0;
    border-radius: 10px;
}


/* @keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(-50%, 0px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%, 0);
    }
} */


/* Scroll wheel */
.scroll-indicator {
    display: inherit;
    margin-bottom: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    z-index: 9999;
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.8;
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}


.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

/* Animation */
@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    50% {
        opacity: 0.4;
        transform: translate(-50%, 10px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 18px);
    }
}


/* =========================
   SECTION TITLE
========================= */
.section-title {
    text-align: center;
    margin: var(--space-lg) 0 var(--space-md);
}

.section-title h2 {
    font-weight: 600;
    font-size: clamp(1.5rem, 2vw, 2rem);
}

.section-title p {
    color: var(--color-muted);
    font-size: clamp(0.9rem, 1vw, 1rem);
}

/* =========================
   CARDS
========================= */
.property-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    will-change: transform;
}

.property-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg);
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-body {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price {
    font-weight: 600;
    font-size: clamp(1.5rem, 1.2vw, 1.25rem);
}

.card__content p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

.card__content h6 {
    text-decoration: none !important;
    display: flex;
    color: #000;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}


.card__content h6 span {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
    background-color: #000;
    padding:4px 10px;
    border-radius: 20px;
    color: white;
}

.price span {
    font-size: 16px;
    font-weight: 400;
}

.type-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.type-info svg {
    width: 16px;
    height: 16px;
    fill: #000;
}



.type-info p {
    font-size: 14px;
    margin-bottom: 0;
    text-decoration: none !important;
}

.cstm-button {
    display: flex;
    color: #000;
    cursor: pointer;


}





/* ===== POPUP WRAPPER ===== */
.img-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.img-popup.active {
    display: flex;
}

/* ===== OVERLAY ===== */
.popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

/* ===== MAIN BOX ===== */
.popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
}

/* ===== SCROLL AREA ===== */
.popup-body {
    max-height: 90vh;
    overflow-y: auto;
}

/* ===== SLIDER ===== */
.popup-slider {
    position: relative;
    overflow: hidden;
}

.popup-slides {
    display: flex;
    transition: transform 0.3s ease;
}

.popup-slides img {
    width: 100%;
    flex: 0 0 100%;
    height: 400px;
    object-fit: cover;
}

/* ===== ARROWS ===== */
.popup-prev,
.popup-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    z-index: 5;
}

.popup-prev { left: 10px; }
.popup-next { right: 10px; }

/* ===== DETAILS ===== */
.popup-details {
    padding: 20px;
}

.popup-title {
    font-size: 18px;
    margin-bottom: 5px;
}

.popup-price {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* ===== TABLE ===== */
.popup-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.popup-table td {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.popup-table td:first-child {
    color: #777;
    width: 40%;
}

/* ===== DESCRIPTION ===== */
.popup-desc {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.popup-full {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.6;
}

/* ===== BUTTON ===== */
.popup-actions .btn {
    padding: 10px;
}

/* ===== CLOSE BUTTON ===== */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    display: flex;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 60px;
    align-items: center;
    justify-content: center;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {
    .popup-slides img {
        height: 250px;
    }

    .popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    display: flex;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 60px;
    align-items: center;
    justify-content: center;
}



}


.popup-dots{
    position:absolute;
    bottom:15px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
    z-index:5;
}


.popup-dot{
    width:6px;
    height:5px;
    border-radius:30%;
    border:0;
    background:#ffffff;
    cursor:pointer;
    transition:.3s;
}


.popup-dot.active{
    width:20px;
    border-radius:10px;
    background:#B18A09;
}




/* START: deck */
.deck {
    width: 100%;
    margin-bottom: var(--spacing);
}

.deck__title {
    margin-bottom: 1em;
    font-size: 2em;
}

.deck__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    align-items: stretch;
    width: 100%;
    gap: var(--gap);
}

/* END: deck */

/* START: card */
.card {
    display: flex;
    z-index: 1;
    position: relative;
    flex-direction: column;
    height: 100%;
    min-height: 20rem;
    overflow: hidden;
    border: 10px solid #FFFFFF;
    border-radius: var(--border-radius);
    transition: color 0.2s, transform 0.3s;
    text-decoration: none !important;
}

.card--category {
    min-height: auto;
}

.card__wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    /* height: 100%; */
    padding: var(--padding) 0;
    overflow: hidden;
    gap: 1.5rem;
    transition: background-color 0.2s;
}

.card .card__wrapper::after {
    z-index: -1;
    position: absolute;
    inset: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    border-radius: 24rem 24rem 0 0;
    background-color: var(--color2);
    content: "";
    transition-duration: 0.4s;
    transition-property: transform, border-radius;
}

.card__header,
.card__content,
.card__footer {
    padding-inline: var(--padding);
    text-decoration: none !important;
}

.top-qty {
    background-color: #323132;
    color: #fff;
    font-size: 1em;
    width: fit-content;
    padding: 4px 8px;
    position: absolute;
    right: 10px;
    z-index: 9999;
    border-radius: 50px;
    top: 10px;
}

.card__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--gap);
}

.card__content {
    /* margin-bottom: var(--padding); */
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card__footer {
    align-self: flex-end;
    margin-top: auto;
}

.card__image {
    display: block;
    aspect-ratio: 5/3;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
}

.card__icon {
    font-size: 1em;
    border: 1px solid #000;
    padding: 6px 14px;
    color: #000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;

    /* smooth animation */
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

/* hover effect */
.card__icon:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.card__icon:hover .arrow {
    fill: white;
}

/* subtle sliding shine effect */
.card__icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transition: 0.4s;
}

.card__icon:hover::before {
    left: 100%;
}

/* arrow animation (if inside icon) */
.card__icon .arrow {
    transition: transform 0.25s ease;
}

.card__icon:hover .arrow {
    transform: translateX(4px);
}





.card__button {
    padding: 0.5em;
    border-radius: 100vmax;
    background-color: var(--color1);
    color: var(--color2);
    font-size: 1.5em;
    text-decoration: none !important;
    transition-duration: 0.2s;
    transition-property: color, background-color;
}

.card__title {
    font-weight: 400;
    font-size: 1.2em;
    line-height: 1.4;
}

.card__description {
    margin: 0;
}

.card__date {
    opacity: 0.6;
}

/* START: -- states */
.card:is(:hover, :focus-visible) {
    z-index: 5;
    transform: scale(1.05);
    color: var(--color1);
    transition: color 0.2s, transform 0.4s;
}

.card:is(:hover, :focus-visible) .type-info svg {
    width: 16px;
    height: 16px;
    fill: #000000;
}

.arrow {
    width: 16px;
    height: 16px;
    fill: #000000;
}


.card:is(:hover, :focus-visible) .arrow {
    width: 16px;
    height: 16px;
    fill: #080808;
}

.card:is(:hover, :focus-visible) .card__wrapper {
    /* background-color: var(--color1); */
    transition: background-color 0.4s;
}

.card:is(:hover, :focus-visible) .card__wrapper::after {
    transform: scaleY(1);
    border-radius: 0;
}

.card:is(:hover, :focus-visible) .card__button {
    background-color: var(--color1);
    color: var(--color1);
}

.card:active {
    transform: scale(1);
    transition: color 0.2s, transform 0.1s;
}






/* slider  */




.card__slider {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 12px 12px;
    height: 330px;
}

.card__slider .slides {
    display: flex;
    transition: transform 0.4s ease;
}

.card__slider img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Arrows */
.card__slider .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    /* color: #fff; */
    border: none;
    /* padding: 6px 10px; */
    cursor: pointer;
    /* border-radius: 50%; */
    z-index: 2;
}

.card__slider .prev { left: 10px; }
.card__slider .next { right: 10px; }

/* Dots */
.card__slider .dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.card__slider .dots span {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.5;
    border-radius: 50%;
    cursor: pointer;
}

.card__slider .dots span.active {
    opacity: 1;
}


/* JOURNEY */
.journey {
    margin-top: var(--space-lg);
}

.journey img {
    border-radius: var(--radius-md);
}

.journey-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-sm);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.76) 32.21%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 40px 40px;
}



.journey-text h3 {
    font-weight: 600;
}

.journey-text p {
    font-weight: 400;
    font-style: italic;
    font-size: 22px;
}

.image-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* big + small */
    gap: 15px;
    min-height: 65vh;
    max-height: 55vh; 
}

.image-grid .img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
}

.image-grid .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.image-grid .img:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.image-grid .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-grid .img:hover::after {
    opacity: 1;
}


/* AMENITIES */
.amenities {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.amenity-box {
    background: var(--color-white);
    padding: var(--space-md);
    text-align: center;
    /* border-radius: var(--radius-sm); */
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
}

.amenity-box:hover {
    background: #000;
    color: #fff;
    /* transform: translateY(-5px) scale(1.03); */
    box-shadow: var(--shadow-md);
}

.amenity-icon {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: var(--space-sm);
}

.amenity-icon .ico {
    fill: #323132;
}

.amenity-box:hover .ico {
    fill: #f6f6f6;
}


.amenities-section{
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 55vh;
    transition: background-image 0.5s ease-in-out;
    padding: 0px 0;
    border-radius: 30px;
    color: #fff;
}

.overlay{
    position:absolute;
    inset:0;
    /* background: rgba(0,0,0,0.55); */
}

.amenities{
    position: relative;
    z-index: 2;
}

.amenity-box{
    /* background: rgba(255,255,255,0.1); */
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    /* border: 1px solid rgba(255,255,255,0.2); */
    cursor: pointer;
    transition: 0.3s;
}

.amenity-item.active .amenity-box{
    background: gold;
    color: #000;
    transform: scale(1.05);
}

/* slick spacing fix */
.amenities-slider .slick-slide{
    padding: 10px;
}

.slick-slider {
    width: 100% !important;
    /* bottom: 20px !important; */
    /* position: absolute !important; */
    padding-left: 0px !important;
}

.amenity-section {
    position: relative;
    color: #fff;
}

.amenity-bg {
    height: 55vh;
    background-size: cover;
    background-position: center;
    transition: 0.4s ease;
    border-radius: 30px;
}

.amenity-content {
    position: absolute;
    bottom: 200px;
    left: 0px;
    background: #000000ba;
    padding: 20px;
    border-radius: 0px 30px 30px 0px;
}

.amenity-content p { 
    font-size: 16px;
    margin: 0;
}

/* Scroll slider */
.amenities-scroll {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.amenities-scroll::-webkit-scrollbar {
    display: none;
}

.amenity-item {
    min-width: 140px;
    cursor: pointer;
    flex-shrink: 0;
}

.amenity-box {
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    color: #000;
    text-align: center;
}

.amenity-item.active .amenity-box {
    background: #000000;
    color: #FFFFFF;
}

.amenity-item.active .ico {
    fill: #f6f6f6;
}

.amenityText {
    font-weight: 400;
    font-size: var(--fs-h1);
    line-height: 1.2;
    text-decoration: none !important;
}




#sync1 .item {
  /* background: #0c83e7; */
  /* padding: 80px 0px; */
  margin: 5px;
  max-height: 580px;
  color: #fff;
  -webkit-border-radius: 30px;
  border-radius:30px ;
  text-align: center;
  overflow: hidden;
  text-align: center;
}

/* #sync1 .item p {
  position: relative;
  font-size: 16px;
  color: #fff;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #0000006e;
  text-align: center;
  padding: 10px;
  z-index: 999;
} */

#sync1 .item p {
    font-size: 16px;
    text-align: center;
    padding: 8px 16px;
    color: #fff;
    background: rgb(0 0 0 / 36%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 20%);
}

#sync1 .item div {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  bottom: 20px;
  z-index: 999;
}

/* #sync1 .item img {
  border-radius: 0px;
} */
#sync1 .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#sync2 .item {
  margin: 5px;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
#sync2 .item h1 {
  font-size: 18px;
}
#sync2 .current .item {
  /* background: #0c83e7; */
}

#sync2 .current .item .amenity-box {
    background: #000000;
    color: #FFFFFF;
}

#sync2 .current .item .ico {
    fill: #f6f6f6;
}


.owl-theme .owl-nav {
  /*default owl-theme theme reset .disabled:hover links */
}
.owl-theme .owl-nav [class*=owl-] {
  transition: all 0.3s ease;
}
.owl-theme .owl-nav [class*=owl-].disabled:hover {
  background-color: #d6d6d6;
}

#sync1.owl-theme {
  position: relative;
}
#sync1.owl-theme .owl-next,
#sync1.owl-theme .owl-prev {
  width: 22px;
  /* height: 40px; */
  margin-top: -20px;
  position: absolute;
  top: 50%;
}

#sync1.owl-theme .owl-prev {
  left: 10px;
}

#sync1.owl-theme .owl-next {
  right: 10px;
}




/* FOOTER FORM */
.footer-form {
    background: var(--color-white);
    padding: var(--space-md);
}

.parallax-section {
    position: relative;
    background-image: url('../images/form-bg.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.parallax-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.footer-form {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.2);
}

.footer-form label {
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-form .form-control,
.footer-form .form-select {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
}

.footer-form .form-select option {
    color: #000;
    background: #fff;
}

.footer-form .form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 35px;
}

.footer-form .form-control::placeholder {
    color: rgba(255,255,255,0.7);
}

/* Button */
.footer-form .btn {
    padding: 14px 25px;
    border-radius: 0px;
    transition: all 0.3s ease;
    margin-top: 47px;
}

.footer-form .btn:hover {
    transform: translateY(-2px);
}

.footer-form .iti__arrow {
    border-top: 4px solid #ffffff !important;
}

.footer-form .iti__country-list {
    color: #000 !important;
}

.footer-form  .iti {
    width: 100%;
    color: white !important;
}

.iti {
    width: 100%;
}

.iti input {
    width: 100%;
    padding-left: 100px !important;
}









 .contact-wrap {
    padding:20px 0px;
  }
 
  .icon-circle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 20px;
  }
 
  .info-label {
    color: #B18A09;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
 
  .info-line {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.5;
  }
 
  .info-muted {
    color: #dadada;
    font-size: 0.95rem;
  }
 
  .phone-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
  }
 
.item-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;

    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);

}



/* FOOTER */
.footer {
    padding: var(--space-md);
    font-size: 0.875rem;
    color: var(--color-muted);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
    background: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    align-items: center;
}




/* START: media queries */
@media (max-width: 1000px) {
    .card__image {
        aspect-ratio: 2;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
        padding: 60px 0;
    }


    .card__content {
        padding: 0px 10px;
    }


    .radio-inline {
        border-radius: 10px 10px 0px 0px;
        padding: 20px 20px 10px 20px;
        margin-left: 20px;
        gap: 10px;
    }


    .card__header {
        padding: 0px 10px;
    }
    .navbar {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
    }

    .card__slider img {
        height: auto;
    }
    .popup-slides img {
        height: 240px;
        width: 100%;
    }

    .card__slider {
        height: auto;
    }

    .inner h1 {
        font-size: 25px;
    }

    /* when scrolled */
    .navbar.scrolled {
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        border-radius: 12px;
    }


    .hero {
        height: auto;
        overflow: inherit;
    }

    .section-title {
        margin-top: 60px;
    }
    .hero-slides {
        position: relative;
    }

    .hero-video {
        height: auto;
    }

    .hero .container {
        height: auto;
        padding: 20px 15px;
    }

    
    
    .amenity-bg {
        height: 300px;
    }

    .amenity-content {
        bottom: 80px;
    }

    .amenity-item {
        min-width: 120px;
    }

    .image-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    /* Scroll wheel */
    .scroll-indicator {
        display: none;
    }

    #sync1 .item div {
        bottom: 0px;
    }
    .hero-form {
        /* display: none; */
        margin-top: 0px;
        width: 97%;
        margin: 0 auto;
    }


    .statment {
        bottom: -28px;
        display: none;
    }


    .amenity-icon {
        width: 50px;
    }
/* 
    #sync1 .item p {
        font-size: 14px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        background-color: #0000006e;
        text-align: center;
        padding: 5px 10px;
    } */
    #sync1 .item p {
        font-size: 12px;
        text-align: center;
        padding: 8px 16px;
        color: #fff;
        background: rgb(0 0 0 / 36%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 0px;
        box-shadow: 0 4px 20px rgb(0 0 0 / 20%);
    }

    .image-grid .img {
        height: 100%;
        width: 100%;
    }

    .image-grid {
        display: flex;
        flex-direction: column;
        grid-template-columns: 2fr 1fr;
        gap: 15px;
        min-height: 65vh;
        max-height: 55vh;
    }

    #sync1 .item {
        margin: 0px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
    }

    .journey-text p {
        font-weight: 400;
        font-size: 14px;
    }


}
