/* ==================================== */
/* **********   COMMON CSS   ********** */
/* ==================================== */
:root {
    --project-primary-font: 'Gesta';
    --project-secondry-font: 'AlberNew';

    --bg-primary: #0B3454;
    --text-primary: #0B3454;
    --border-primary: #0B3454;

    --bg-blue: rgba(74, 129, 133, 1);
    --bg-blue-60: rgba(74, 129, 133, 0.60);
    --text-blue: rgba(74, 129, 133, 1);
    --border-blue: rgba(74, 129, 133, 1);

    --bg-white: #FFFFFF;
    --bg-white-80: rgba(255, 255, 255, 0.84);
    --text-white: #FFFFFF;
    --border-white: #FFFFFF;

    --bg-off-white: #F8F8F8;
    --text-off-white: #F8F8F8;
    --border-off-white: #F8F8F8;

    --bg-orange: #E7B368;
    --text-orange: #E7B368;
    --border-orange: #E7B368;

    --bg-light-blue: #A6D9F5;
    --text-light-blue: #A6D9F5;
    --border-light-blue: #A6D9F5;

    --bg-dark-blue: #0A3352;
    --text-dark-blue: #0A3352;
    --border-dark-blue: #0A3352;

    --bg-light-gray: #E4DDCD;
    --text-light-gray: #E4DDCD;
    --border-light-gray: #E4DDCD;

    --bg-black: #000000;
    --bg-black-40: rgba(0, 0, 0, 0.4);
    --text-black: #000000;
    --border-black: #000000;

    --bg-light-black: #404041;
    --bg-light-black-80: rgba(64, 64, 65, 0.8);
    --bg-light-black-40: rgba(64, 64, 65, 0.4);
    --text-light-black: #404041;
    --border-light-black: #404041;

    --bg-gray: #7F8285;
    --text-gray: #7F8285;
    --border-gray: #7F8285;

    --bg-dark-gray: #414044;
    --text-dark-gray: #414044;
    --border-dark-gray: #414044;

    --bg-red: #D11242;
    --text-red: #D11242;
    --border-red: #D11242;

    --bg-purple: #51378E;
    --text-purple: #51378E;
    --border-purple: #51378E;

    --primary-font: "Be Vietnam Pro", sans-serif;
    --secondary-font: "Cormorant Garamond", Georgia, serif;
    --color-transparent: transparent;
    --font-64px: 4rem;
    --font-60px: 3.75rem;
    --font-54px: 3.375rem;
    --font-48px: 3rem;
    --font-44px: 2.75rem;
    --font-42px: 2.625rem;
    --font-40px: 2.5rem;
    --font-36px: 2.25rem;
    --font-34px: 2.125rem;
    --font-32px: 2rem;
    --font-30px: 1.875rem;
    --font-28px: 1.75rem;
    --font-26px: 1.625rem;
    --font-24px: 1.5rem;
    --font-22px: 1.375rem;
    --font-20px: 1.25rem;
    --font-18px: 1.125rem;
    --font-16px: 1rem;
    --font-14px: 0.875rem;
    --font-13px: 0.8125rem;
    --font-12px: 0.75rem;
    --max-width: 980px;
}

a {
    text-decoration: none;
}

p {
    line-height: normal;
}

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}

body {
    background-color: var(--body-bg);
    font-family: var(--project-secondry-font);
    transition: all 0.3s ease;
    position: relative;
}

section {
    overflow: hidden;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    color: inherit;
    background: none;
    box-shadow: none;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

img,
picture {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.section-padding-top {
    padding-top: 70px;
}

.section-padding-bottom {
    padding-bottom: 70px;
}

.main-container {
    padding: 0 140px;
}

.right-container {
    padding-right: 140px;
}

.left-container {
    padding-left: 140px;
}

.header-container {
    padding: 0 120px;
}

.cd-flex {
    display: flex;
}

.flex-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.common-heading {
    width: 100%;
    max-width: 80%;
    margin: 0 auto 36px;
    text-align: center;
}

.heading-select {
    display: flex;
    gap: 10px;
}

select.form-control {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
}

.heading-btn-position {
    text-align: right;
}

.main-heading-row {
    display: flex;
    justify-content: space-between;
}

.heading-col-right h2 {
    font-size: var(--font-48px) !important;
}

.common-heading h6 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: var(--font-16px);
    font-weight: 400;
    color: var(--text-blue);
    margin: 0 0 14px;
}

.common-heading h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: var(--font-44px);
    line-height: 1.2;
    color: var(--text-black);
}

.common-heading h2 span {
    color: var(--text-blue);
    font-style: italic;
    font-weight: 500;
}

.common-heading p {
    font-family: var(--project-primary-font), "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-14px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0 0 26px;
}

.secondary-heading h4 {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: var(--font-20px);
    font-weight: 600;
    color: var(--text-black);
    margin: 0 0 14px;
}



.secondary-heading p {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: var(--font-14px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0 0 26px;
    width: 100%;
    max-width: 350px;
}

.secondary-heading h4 span {
    color: var(--text-blue);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 60px;
    background: linear-gradient(93deg, #74BECC 0%, #5B9C9C 82.69%, #569592 100%);
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-14px);
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

.btn-primary:hover {
    background: var(--bg-white-80);
    color: var(--text-blue);
    transition: all ease-in-out 0.3s;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 60px;
    background: var(--bg-white-80);
    color: var(--text-blue);
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-14px);
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
}

.btn-secondary:hover {
    background: linear-gradient(93deg, #74BECC 0%, #5B9C9C 82.69%, #569592 100%);
    color: var(--text-white);
    transition: all ease-in-out 0.3s;
}

.row-padding-top {
    padding-top: 100px;
}

/* ==================================== */
/* *****   CUSTOM CARD CSS START  ***** */
/* ==================================== */
.custom-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-card .custom-card-top {
    position: relative;
}

.custom-card .custom-card-top img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.custom-card .custom-card-bottom {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-card .custom-card-bottom .custom-card-content-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-card .custom-card-bottom .custom-card-content-top h4 {
    font-family: var(--project-secondry-font);
    color: var(--text-gray);
    font-size: var(--font-22px);
    font-weight: 400;
    flex: 1;
}

.custom-card .custom-card-bottom .custom-card-content-top p {
    font-family: var(--project-secondry-font);
    color: var(--text-dark-gray);
    font-size: var(--font-16px);
    font-weight: 400;
    flex: 1;
}

.custom-card .custom-card-bottom .custom-card-content-top .card-badge-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.custom-card .custom-card-bottom .custom-card-content-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.custom-card .custom-card-bottom .custom-card-content-bottom .date {
    display: block;
    font-family: var(--project-secondry-font);
    color: var(--text-blue);
    font-size: var(--font-16px);
}

.product-card {
    background: var(--bg-blue);
    padding: 30px 15px;
}

.product-card .product-card-top img {
    width: 70px;
    height: 70px;
    margin: 0 auto 26px;
    object-fit: contain;
}

.product-card .product-card-content .product-card-content-top p {
    font-family: var(--project-secondry-font);
    color: var(--text-white);
    font-size: var(--font-18px);
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
}

/* ==================================== */
/* ******   CUSTOM CARD CSS END  ****** */
/* ==================================== */

/* ==================================== */
/* *********   HOME PAGE CSS   ******** */
/* ==================================== */

/* ==================================== */
/* *********  ARABIC CONTENT  ********* */
/* ==================================== */
body.ar .luxury-living-section .luxury-text-block {
    text-align: left;
}

body.ar .luxury-living-section .luxury-text-block h2 {
    margin-right: auto;
    margin-left: 0;
}

body.ar .luxury-living-section .luxury-text-block .desc {
    margin-right: auto;
    margin-left: 0;
}

body.ar .amenities-section .accordion-button::after {
    right: auto;
    left: 20px;
}

body.ar .close-btn {
    right: auto;
    left: 40px;
}

body.ar .footer-help {
    right: auto;
    left: 40px;
}

/* ==================================== */
/* **********   HEADER CSS   ********** */
/* ==================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    padding: 18px 0;
}

.site-header .header-container {
    padding: 0 60px;
}

.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-header .site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.site-header .site-logo img {
    width: auto;
    height: auto;
    max-width: 160px;
    max-height: 70px;
    transition: max-width 0.3s ease, max-height 0.3s ease;
}

.site-header .main-nav {
    margin-left: auto;
}

.site-header .nav-list {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

.site-header .nav-link {
    display: inline-block;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-13px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-white);
    line-height: 1;
    padding: 8px 0;
    position: relative;
    transition: color 0.25s ease;
}

.site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.site-header .nav-item:hover .nav-link::after,
.site-header .nav-item.active .nav-link::after {
    transform: scaleX(1);
}

.site-header .nav-item:hover .nav-link {
    color: var(--bg-orange);
}

.site-header .header-socials {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 20px;
    margin-bottom: 0px !important;
}

.site-header .header-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-light-blue);
    color: var(--text-white);
    font-size: var(--font-16px);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.site-header .header-socials a:hover {
    background-color: var(--bg-orange);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* ===== Sticky / scrolled state ===== */
.site-header.is-sticky {
    background-color: var(--bg-white);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

.site-header.is-sticky .nav-link {
    color: var(--text-primary);
}

.site-header.is-sticky .nav-item:hover .nav-link {
    color: var(--bg-orange);
}

.site-header.is-sticky .header-socials a {
    background-color: var(--bg-primary);
    color: var(--text-white);
}

.site-header.is-sticky .header-socials a:hover {
    background-color: var(--bg-orange);
    color: var(--text-white);
}

.site-header.is-sticky .site-logo img {
    max-width: 130px;
    max-height: 56px;
}

.site-header.is-sticky .hamburger span {
    background-color: var(--bg-primary);
}

/* ===== Hamburger ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--bg-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

/* ===== Mobile slide-in menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu-inner {
    padding: 30px 24px 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-close {
    align-self: flex-end;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: var(--font-22px);
    cursor: pointer;
    line-height: 1;
}

.mobile-logo {
    display: inline-block;
    margin: 6px 0 28px;
}

.mobile-logo img {
    max-width: 130px;
    height: auto;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.mobile-nav-list li a {
    display: block;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-14px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    padding: 14px 0;
    border-bottom: 1px solid #eeeeee;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li.active a {
    color: var(--bg-orange);
    padding-left: 6px;
}

.mobile-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.mobile-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    color: var(--text-white);
    font-size: var(--font-16px);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile-socials a:hover {
    background-color: var(--bg-orange);
    transform: translateY(-2px);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    z-index: 1050;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* ==================================== */
/* **********   HERO SECTION   ******** */
/* ==================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background-image: url("../images/hero-banner.svg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 140px 24px 80px;
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
   background: #ffffff3d;
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-12px);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 26px;
}

.hero-section .hero-badge i {
    color: var(--bg-white);
    font-size: var(--font-14px);
}

.hero-section .hero-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: var(--font-60px);
    line-height: 1.15;
    color: var(--text-white);
    margin: 0 0 36px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================================== */
/* ********   DISCOVER SECTION   ****** */
/* ==================================== */
.discover-section {
    background-color: var(--bg-white);
}

.discover-section .discover-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
}

/* ----- Left content ----- */
.discover-section .discover-content {
    max-width: 560px;
}

.discover-section .discover-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-size: var(--font-18px);
    font-weight: 500;
    color: var(--text-light-blue);
    margin: 0 0 14px;
}

.discover-section .discover-eyebrow i {
    color: var(--bg-orange);
    font-size: var(--font-14px);
}

.discover-section .discover-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: var(--font-44px);
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 22px;
}

.discover-section .discover-title .highlight {
    color: var(--text-light-blue);
    font-style: italic;
    font-weight: 500;
}

.discover-section .discover-desc {
    font-family: var(--project-primary-font), "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-14px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0 0 26px;
}

.discover-section .discover-features {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    padding: 0;
    margin: 0;
}

.discover-features li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-14px);
    font-weight: 500;
    color: var(--text-primary);
}

.discover-features li i {
    font-size: var(--font-18px);
    color: var(--text-light-blue);
}

/* ----- Right media ----- */
.discover-section .discover-media {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 510px;
    margin-left: auto;
}

.discover-section .discover-image {
    position: relative;
    width: 100%;
    max-width: 460px;
    /* aspect-ratio: 4 / 4; */
    border-radius: 240px 240px 28px 28px;
    overflow: hidden;
    /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12); */
}

.discover-section .discover-image img {
    width: 100%;
    height: 500px !important;
    object-fit: cover;
    object-position: top;
    display: block;
}

.discover-section .discover-image-caption {
    position: absolute;
    top: 22px;
    left: 22px;
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    line-height: 1;
    z-index: 2;
}

.discover-section .discover-image-caption .caption-top {
    display: block;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-14px);
    font-weight: 500;
    margin-bottom: 4px;
}

.discover-section .discover-image-caption .caption-bottom {
    display: block;
    font-family: "Dancing Script", "Cormorant Garamond", cursive;
    font-size: var(--font-32px);
    font-weight: 600;
    line-height: 1;
}

.discover-section .rating-card {
    position: absolute;
    top: 36px;
    right: 0;
    background-color: var(--bg-white);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
    text-align: center;
    z-index: 3;
    min-width: 130px;
}

.discover-section .rating-card .rating-score {
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-20px);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
    text-align: left;
}

.discover-section .rating-card .rating-stars {
    display: flex;
    justify-content: left;
    gap: 2px;
    margin: 6px 0 6px;
    color: var(--bg-orange);
    font-size: var(--font-12px);
}

.discover-section .rating-card .rating-text {
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-12px);
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.3;
}

.rating-card-blur {
    box-shadow: 0px 23.15px 46.31px 0px #0000001A;
    box-shadow: 0px 0px 0px 0px #171A1F00;
    backdrop-filter: blur(13.891891479492188px)
}

.discover-section .rating-card-blur {
    position: absolute;
    top: 36px;
    right: 0;
    background-color: #ffffffad;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.12);
    text-align: center;
    z-index: 3;
    min-width: 130px;
}

.discover-section .rating-card-blur .rating-score {
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-20px);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1;
    text-align: left;
}

.discover-section .rating-card-blur .rating-stars {
    display: flex;
    justify-content: left;
    gap: 2px;
    margin: 6px 0 6px;
    color: var(--bg-orange);
    font-size: var(--font-12px);
}

.discover-section .rating-card-blur .rating-text {
    font-family: "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-12px);
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.3;
}




.discover-section .common-heading {
    max-width: 100%;
    text-align: left;
}

.break-fast-card.active {
    scale: 1.1;
    margin-top: 0;
}

.break-fast-card {
    padding: 20px 20px 20px 20px;
    border-radius: 43px;
    background: #FFF;
    box-shadow: -20px -20px 50px 0 #FFF, 11px 11px 20px 0 #D2D2D2;
    scale: 0.9;
    margin-top: 30px;
}

.break-fast-card .break-fast-card-top {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

/* .break-fast-card.active .break-fast-card-top img {
    width: 150px;
    height: 150px;
} */

.break-fast-card .break-fast-card-top img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-top: -100px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.break-fast-card .break-fast-card-bottom .break-fast-card-bottom-content h4 {
    font-family: "Be Vietnam Pro", sans-serif;
    font-weight: 600;
    font-size: var(--font-18px);
    color: var(--text-blue);
    text-align: center;
}

/* ==================================== */
/* **********   MENU SECTION   ******** */
/* ==================================== */

.menu-section {
    background-image: url('../images/menu-section-bg.svg');
    background-position: center;
    background-size: cover;
}

.menu-section-content-wrapper .discover-grid .common-heading {
    max-width: 100%;
    text-align: left;
}

.menu-section-content-wrapper .discover-grid .common-heading .discover-features {
    padding-left: 0;
    margin-bottom: 7px;
}

.menu-section-content-wrapper .discover-grid .common-heading .discover-features li i {
    color: rgba(123, 210, 237, 1);
}

.menu-section-content-wrapper .discover-grid .common-heading h6,
.menu-section-content-wrapper .discover-grid .common-heading .discover-features li,
.menu-section-content-wrapper .discover-grid .common-heading h2,
.menu-section-content-wrapper .discover-grid .common-heading p {
    color: var(--text-white);
    text-align: left;
    justify-content: flex-start;
}

.menu-section-content-wrapper .discover-grid .common-heading p {
    margin: 0 0 16px 0;
}

.menu-section-content-wrapper .discover-grid .common-heading .btn-secondary {
    margin-top: 26px;
}

.spot-section .discover-grid .common-heading {
    max-width: 100%;
}

.spot-image-left {
    position: relative;
}

.spot-badge.left {
    position: absolute;
    top: 52px;
    left: -24px;
}

.spot-badge.right {
    position: absolute;
    bottom: 92px;
    right: -70px;
}

.spot-badge {
    display: inline-flex;
    gap: 10px;
    padding: 25px 27px;
    border-radius: 21.333px;
    background: #FFF;
    box-shadow: 0 11.333px 18.333px 0 rgba(23, 26, 31, 0.22), 0 0 2.667px 0 rgba(23, 26, 31, 0.08);
}

.spot-badge .spot-badge-ic {
    width: 29px;
    height: 22px;
    object-fit: contain;
    margin-top: 7px;
}
.spot-badge .spot-badge-ics{
    width: 41px;
    height: 41px;
    object-fit: contain;
}

.spot-badge .spot-badge-content h6 {
    font-family: "Be Vietnam Pro", sans-serif;
    color: var(--text-black);
    font-size: var(--font-18px);
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 0;
}

.spot-badge .spot-badge-content span {
    font-family: "Be Vietnam Pro", sans-serif;
    color: var(--text-black);
    font-size: var(--font-16px);
    font-weight: 400;
}

.spot-image-left img.img-fluid {
    width: 100%;
}

.spot-section .discover-grid .common-heading h6 {
    margin-bottom: 5px;
}

.spot-section .discover-grid .common-heading .discover-features li,
.spot-section .discover-grid .common-heading h2,
.spot-section .discover-grid .common-heading p {
    text-align: left;
    justify-content: flex-start;
}

.spot-section .discover-features {
    padding-left: 0;
    margin-top: 26px;
}

.spot-section .discover-features li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.spot-discover-features-heading {
    display: flex;
    gap: 10px;
    align-items: center;
}

.spot-discover-features-heading span {
    font-family: "Be Vietnam Pro", sans-serif;
    color: var(--text-black);
    font-size: var(--font-18px);
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 0;
}

.spot-discover-features-heading img.img-fluid {
    width: 20px;
    height: 20px;
    object-fit: contain;
}








/* ==================================== */
/* ********   CAROUSEL SECTION   ****** */
/* ==================================== */

.carousel.carousel-section {
    overflow: clip;
    /* padding: 70px 0px; */
}

.carousel-section .swiper {
    overflow: visible;
}

.carousel-section .swiper .swiper-slide {
    width: 400px;
}

.carousel-section .single {
    position: relative;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.carousel-section .single img {
    width: 100%;
    border-radius: 80px !important;
    height: auto;
    vertical-align: top;
    pointer-events: none;
}

.carousel-section .single {
    position: relative;

}

.carousel-section .overlay {
    position: absolute;
    bottom: 0px;
    width: 100%;
    border-radius: 80px !important;
    height: 100%;
    background: linear-gradient(180deg, rgba(74, 129, 133, 0) 0%, #4A8185 79.3%);
    display: flex;
    flex-direction: column;
    justify-content: end;
    margin: auto;
    padding: 50px;
}

.carousel-section .overlay h2 {
    color: #fff;
    font-family: var(--primary-font);
}

.carousel-section .overlay p {
    color: #fff;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 32px;
    text-transform: capitalize;
    font-family: var(--primary-font);
}

@media screen and (max-width:992px) {
    .carousel-section .overlay {
        padding: 40px;
        height: 100%;
    }

    .carousel-section .single img {
        height: 400px !important;
        object-fit: cover;
    }
}

/* ==================================== */
/* **********   FAQ SECTION   ********* */
/* ==================================== */

.faq-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 500;
}

.custom-faq .accordion-item {
    border: none;
    border-radius: 0px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #eef2f5;
    border-left: 4px solid #90D0EA;
}

.custom-faq .accordion-button {
    font-family: "Be Vietnam Pro", sans-serif;
    background: rgba(123, 210, 237, 0.1);
    border: none;
    font-weight: 500;
    padding: 35px 20px;
    box-shadow: none;
    font-size: var(--font-20px);
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
}

/* Active State */
.custom-faq .accordion-button:not(.collapsed) {
    background: #4f7f80;
    color: #fff;
}

.custom-faq .accordion-body {
    font-family: "Be Vietnam Pro", sans-serif;
    background: #4f7f80;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 60px 20px;
    font-size: var(--font-16px);
    line-height: normal;
}

.custom-faq .accordion-button::after {
    filter: brightness(0);
    margin-right: 20px;
    margin-left: 0 !important;
}

.custom-faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}




























.brunch-section {}

.brunch-background {
    background-image: url('../images/menu-section-bg.svg');
    background-position: center;
    background-size: cover;
    border-radius: 44px 20px;
    overflow: hidden;
}

.brunch-main-img img {
    width: 100%;
}

.brunch-section .discover-grid .common-heading h6,
.brunch-section .discover-grid .common-heading .discover-features li,
.brunch-section .discover-grid .common-heading h2,
.brunch-section .discover-grid .common-heading p {
    color: var(--text-white);
    text-align: left;
    justify-content: flex-start;
}

.brunch-section .discover-grid .common-heading h2 {
    font-size: var(--font-54px)
}

.brunch-section .hero-buttons {
    justify-content: flex-start;
}

.brunch-section .discover-grid {
    padding: 24px 24px;
}

.brunch-section .common-heading {
    max-width: 100%;
}
























.luxury-brunch-section .discover-grid .common-heading h6,
.luxury-brunch-section .discover-grid .common-heading .discover-features li,
.luxury-brunch-section .discover-grid .common-heading h2,
.luxury-brunch-section .discover-grid .common-heading p {
    text-align: left;
    justify-content: flex-start;
}

.luxury-brunch-section .common-heading {
    text-align: left;
    max-width: 100%;
}

.img-lgs {
    height: 260px;
}

.img-box:hover img {
    transform: scale(1.05);
}

.img-sm {
    height: 170px;
}

.img-box img {
    transition: transform 0.4s ease;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-lg {
    height: 260px;
    margin-top: -90px;
}


.border-radius-left-bottom {
    border-radius: 24px 24px 0 24px;
    overflow: hidden;
}

.border-radius-left-bottom-left {
    border-radius: 24px 24px 24px 0;
    overflow: hidden;
}

.border-radius-right-top {
    border-radius: 24px 0 24px 24px;
    overflow: hidden;
}

.border-radius-left-top {
    border-radius: 0 24px 24px 24px;
    overflow: hidden;
}

footer {
    background-color: rgba(86, 135, 132, 0.91);
    color: #fff !important;
    font-family: var(--primary-font);
}


.icon-footer {
    background-color: #000000;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
}

.post {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
}

.post img {
    width: 104px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.post-content h2 {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.3;
    font-weight: 600;
}

.meta {
    margin-top: 12px;
    color: #cfe3df;
    font-size: 16px;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 600px) {
    .post {
        flex-direction: column;
    }
}

.footer-link li {
    padding: 5px 0px;
}

.image-small-icon {
    height: 25px;
}


.tab-nav {
    display: flex;
    border-bottom: 1px solid #e0ddd8;
    background-color: #F9FBFC !important;
    margin-bottom: 44px;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    position: relative;
    background: none;
    width: 100%;
    border: none;
    padding: 14px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    font-weight: 400;
    color: #888;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.25s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: #3d7a6e;
}

.tab-btn.active {
    color: #2d2d2d;
    font-weight: 500;
    background-color: #fff;
    border-bottom: 2px solid #3d7a6e;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin: 0 auto;
}


@media (max-width: 620px) {
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.offer-image-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

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

.quote-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 10px 14px;
    max-width: 160px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}

.quote-badge .q-icon {
    font-size: 1.1rem;
    color: #3d7a6e;
    line-height: 1;
    margin-bottom: 4px;
    display: block;
}

.quote-badge p {
    font-size: 0.72rem;
    color: #444;
    line-height: 1.4;
    font-style: italic;
}


.checklist {
    list-style: none;
    margin-bottom: 28px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #444;
    margin-bottom: 10px;
}

.check-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid #3d7a6e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 10px;
    height: 10px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2e6b5e;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 13px 26px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.cta-btn:hover {
    background: #245a4f;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(46, 107, 94, 0.30);
}

.cta-btn svg {
    width: 14px;
    height: 14px;
}


.image-relative {
    position: relative;
}

.image-relative img {
    border-radius: 30px;
}

.quote-badge {
    position: absolute;
    z-index: 1;
    top: 20px;
}

.offer-text .discover-features {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
    gap: 28px;
    padding: 0;
    margin: 0;
}


.gallery-outer {
    border: 1.5px dashed var(--border);
    border-radius: 6px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.3);
}

.mosaic {
    display: grid;
    grid-template-columns: 1fr 1.55fr 1fr;
    grid-template-rows: 130px 165px 145px 95px 165px;
    gap: 10px;
}

.c-l1 {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.c-l2 {
    grid-column: 1;
    grid-row: 3 / span 2;
}

.c-m1 {
    grid-column: 2;
    grid-row: 1 / span 3;
}

.c-m2 {
    grid-column: 2;
    grid-row: 4 / span 2;
}

.c-r1 {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.c-r2 {
    grid-column: 3;
    grid-row: 3 / span 2;
}

.cell {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    opacity: 0;
    animation: fadeUp 0.5s ease forwards;
}

.cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cell:hover img {
    transform: scale(1.07);
}

.cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28, 26, 24, 0);
    transition: background 0.3s ease;
}

.cell:hover::after {
    background: rgba(28, 26, 24, 0.15);
}

.badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 30px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.cell:hover .badge {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.c-l1 {
    animation-delay: 0.05s;
    border-radius: 20px;
}

.c-l2 {
    animation-delay: 0.15s;
    border-radius: 20px;
}

.c-m1 {
    animation-delay: 0.08s;
    border-radius: 20px;
}

.c-m2 {
    animation-delay: 0.22s;
    border-radius: 20px;
}

.c-r1 {
    animation-delay: 0.12s;
    border-radius: 20px;
}

.c-r2 {
    animation-delay: 0.20s;
    border-radius: 20px;
}

.gallery-footer {
    text-align: center;
    margin-top: 40px;
}

.gallery-footer p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--text-mid);
    font-weight: 300;
}

@media (max-width: 680px) {
    .mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 200px 170px 180px;
    }

    .c-l1 {
        grid-column: 1;
        grid-row: 1;
    }

    .c-l2 {
        grid-column: 2;
        grid-row: 1;
    }

    .c-m1 {
        grid-column: 1 / span 2;
        grid-row: 2;
    }

    .c-m2 {
        grid-column: 1;
        grid-row: 3;
    }

    .c-r1 {
        grid-column: 2;
        grid-row: 3;
    }

    .c-r2 {
        grid-column: 1 / span 2;
        grid-row: 4;
    }
}

.cell img {
    border-radius: 20px !important;
}

.offer-text h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-weight: 700;
    font-size: var(--font-44px);
    line-height: 1.2;
    color: var(--text-black);
}

.offer-text p {
    font-family: var(--project-primary-font), "Lato", Arial, Helvetica, sans-serif;
    font-size: var(--font-14px);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0 0 26px;
}

.tab-view-data .common-heading{
    max-width: 100%;
    text-align: left;
}   


.image-fix {
    width: 75%;
    margin: auto;
}