:root {
    --color-bg: #F8F6F0;
    --color-bg-alt: #EFEBE1;
    --color-accent: #23352D;
    --color-accent-hover: #1A2822;
    --color-gold: #C5A059;
    --color-gold-hover: #A68444;
    --color-text-main: #1A1A1A;
    --color-text-muted: #555555;
    --color-white: #FFFFFF;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;

    /* Luxury Overlays & Depths */
    --bg-luxury-gradient: radial-gradient(circle at 50% 0%, rgba(255, 252, 248, 0.9) 0%, rgba(239, 235, 225, 0.3) 100%);
    --bg-champagne-gradient: linear-gradient(135deg, #FBF9F6 0%, #EFEBE1 100%);
    --shadow-luxury: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-inner-glow: inset 0 0 20px rgba(255, 255, 255, 0.5);
    --glow-gold: 0 0 40px rgba(197, 160, 89, 0.15);

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-floating: 0 20px 50px rgba(0, 0, 0, 0.2);

    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 160px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.luxury-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--color-text-main);
}

/* Luxury Utilities */

.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.text-gold {
    color: var(--color-gold);
}

.bg-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

/* Texture and gradient overlays removed for solid color as requested */

.bg-alt {
    background-color: var(--color-bg-alt);
    position: relative;
    z-index: 1;
}

.bg-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Soft CSS Noise Texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    z-index: -1;
}

.bg-alt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-luxury-gradient);
    pointer-events: none;
    z-index: -2;
}

/* Buttons */
.btn-luxury-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-block;
    cursor: pointer;
}

.btn-luxury-primary:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
}

.btn-luxury-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: inline-block;
    cursor: pointer;
}

.btn-luxury-outline:hover {
    background-color: var(--color-white);
    color: var(--color-accent);
    text-decoration: none;
}

.btn-gold-gradient {
    background: linear-gradient(135deg, #E6C875 0%, #C5A059 50%, #A68444 100%);
    color: #1A1A1A;
    border: none;
    font-weight: 600;
}

.btn-gold-gradient:hover {
    background: linear-gradient(135deg, #F3D995 0%, #D4B26B 50%, #B89656 100%);
    color: #000;
}

/* Slick Header Styles */
.luxury-header-static {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    background: linear-gradient(to bottom, rgba(10, 15, 12, 0.5) 0%, rgba(10, 15, 12, 0) 100%);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.luxury-header-scrolled {
    background: #1A2822;
    /* Solid dark green from theme */
    position: fixed;
    width: 100%;
    top: -115px;
    left: 0;
    z-index: 999;
    transition: top 0.5s cubic-bezier(0.25, 1, 0.5, 1), background 0.5s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-link-slick {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-link-slick::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-white);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateX(-50%);
}

.nav-link-slick:hover,
.menu-item.active .nav-link-slick {
    color: var(--color-white);
}

.nav-link-slick:hover::after,
.menu-item.active .nav-link-slick::after {
    width: 100%;
}

.btn-slick-enquire {
    padding: 10px 26px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    color: var(--color-gold) !important;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-slick-enquire::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gold) 0%, #aa771c 100%);
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.btn-slick-enquire:hover {
    transform: translateY(-2px);
    border-color: transparent;
    color: #1a1a1a !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-slick-enquire:hover::before {
    opacity: 1;
}

.luxury-header-scrolled .btn-slick-enquire {
    padding: 10px 24px;
}

.mobile-nav-slick {
    display: none;
    background: #1A2822;
    /* Match solid sticky header */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Hero Form */
.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 5;
    padding-top: 150px;
    padding-bottom: 50px;
}

.hero-text-col {
    padding-right: 12px;
}

.hero-form-col {
    /* Let Bootstrap grid handle the width */
}

.hero-form-container {
    padding: 30px;
}

.hero-form-container h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--color-accent);
}

.luxury-input-group {
    margin-bottom: 20px;
}

.luxury-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
}

.luxury-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.2);
}

.hero-form-container .btn-luxury-primary {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 10px;
}

/* Luxury Sections */
.luxury-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.luxury-section.bg-accent {
    background-color: var(--color-accent);
}

.luxury-section .container-fluid {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

.luxury-section .row {
    align-items: center;
}

.luxury-section.reverse_row .row {
    flex-direction: row-reverse;
}

.luxury-content-box {
    padding: 40px 60px;
}

.luxury-content-box h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--color-accent);
    text-transform: uppercase;
}

.bg-accent .luxury-content-box h1 {
    color: var(--color-gold);
}

.luxury-content-box p {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.bg-accent .luxury-content-box p {
    color: rgba(255, 255, 255, 0.85);
}

.gold-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 20px 0 30px;
}

/* .luxury-card-dark {
    background: rgba(35, 53, 45, 0.9);
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: var(--shadow-floating);
    margin-top: -20px;
} */

.luxury-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    position: relative;
    border: 8px solid rgba(255, 255, 255, 0.6);
    background-clip: padding-box;
    transition: var(--transition-smooth);
}

.luxury-img-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-gold);
}

.luxury-img-box img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.luxury-img-box:hover img {
    transform: scale(1.05);
}

.luxury-caption {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    font-size: 12px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top-left-radius: var(--radius-md);
    color: var(--color-accent);
}

/* Amenities Grid */
.amenities-grid-section {
    padding: var(--spacing-xl) 0;
    color: var(--color-accent);
    text-align: center;
    background-color: var(--color-bg-alt);
    position: relative;
    z-index: 1;
}

.amenities-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    z-index: -1;
}

.amenities-grid-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-luxury-gradient);
    pointer-events: none;
    z-index: -2;
}

.amenities-grid-section .luxury-heading {
    color: var(--color-gold);
    margin-bottom: var(--spacing-lg);
    font-size: 40px;
    letter-spacing: 2px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--radius-md);
    padding: 35px 20px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-luxury);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-inner-glow);
    pointer-events: none;
}

.amenity-card i {
    font-size: 32px;
    color: var(--color-gold);
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.amenity-card span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--color-text-main);
}

.amenity-card:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-8px);
    box-shadow: var(--glow-gold), 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 89, 0.35);
}

.amenity-card:hover i {
    transform: scale(1.15);
    color: var(--color-accent);
}

/* Luxury Footer */
.luxury-footer {
    background-color: #111a16;
    color: var(--color-white);
    font-family: var(--font-body);
    padding: 0;
}

/* ── Disclaimer Section ── */
.footer-disclaimer {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px 0 30px;
    text-align: center;
}

.footer-disclaimer-hindi {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.footer-disclaimer-en {
    color: #D4AF37;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 0;
    font-style: italic;
}

/* ── Bottom Bar ── */
.luxury-footer .footer_end {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.footer-legal-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.footer-legal-links li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-legal-links li a:hover {
    color: #D4AF37;
}

.luxury-footer .footer_end a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.luxury-footer .footer_end a:hover {
    color: var(--color-gold);
}

/* Gallery Hover Zoom */
.gallery .item {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery .item img {
    transition: transform 0.8s ease;
}

.gallery .item:hover img {
    transform: scale(1.05);
}

/* CSS Document */
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #fff;
}

p {
    color: #7a7a7a;
}

body,
p,
a,
ul,
li {
    font-family: 'Gotham', sans-serif;
    /* font-family: 'Times New Roman', sans-serif;  */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Times New Roman', sans-serif;
    color: #fff;
}

ul,
li {
    color: #fff;
}

/* .header_box {
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 0;
} */

.header_box .logo-box {
    margin: 0 auto;
    /* text-align: center; */
    /* display: flex;
    justify-content: space-between; */
}

.header_box .nav.navbar-nav.navbar-main {
    justify-content: center;
    flex-direction: inherit;
}

/* Legacy header link styles removed to prevent conflict with .nav-link-slick */

.header_box .nav.navbar-nav.navbar-main ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 0;
}

.header_box .nav.navbar-nav.navbar-main ul li {
    display: inline-block;
}

.main_banner {
    background-image: url(../images/banner1.png);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.main_banner:before {
    content: '';
    background: linear-gradient(180deg, rgba(35, 53, 45, 0.4) 0%, rgba(26, 26, 26, 0.7) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    display: block;
    pointer-events: none;
}

.main_banner img {
    width: 100%;
}

.main_banner .container {
    width: 1140px;
    z-index: 2;
    position: relative;
    padding: 0;
    max-width: 100%;
}

/* .main_banner {
    padding-top: 215px;
} */

.header_box .nav.navbar-nav.navbar-main ul li:last-child a i {
    font-size: 20px;
}

.main_banner .item img {
    width: 100%;
}

.main_banner .owl-dots {
    position: absolute;
    z-index: 10;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    bottom: 30px;
}

.main_banner .owl-theme .owl-dots .owl-dot {
    display: inline-block;
}

.main_banner .owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 250, 237, 0.5);
    border-radius: 20px;
    display: block;
    height: 12px;
    margin: 5px 7px;
    opacity: 0.5;
    width: 12px;
}

.main_banner .owl-theme .owl-dots .owl-dot.active span {
    background: #fff;
    opacity: 0;
}

.main_banner .owl-nav .owl-prev {
    position: absolute;
    display: block;
    top: 50%;
    left: 15px;
    z-index: 1000;
}

.main_banner .owl-nav .owl-next {
    position: absolute;
    display: block;
    top: 50%;
    right: 15px;
    z-index: 1000;
}

.main_banner .owl-nav .owl-prev i,
.main_banner .owl-nav .owl-next i {
    font-size: 56px;
    color: #fff;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.gallery .owl-dots {
    position: absolute;
    z-index: 10;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    bottom: 30px;
}

.gallery .owl-theme .owl-dots .owl-dot {
    display: inline-block;
}

.gallery .owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 250, 237, 0.5);
    border-radius: 20px;
    display: block;
    height: 10px;
    margin: 5px 3px;
    opacity: 0.5;
    width: 10px;
}

.gallery .owl-theme .owl-dots .owl-dot.active span {
    background: #fff;
    opacity: 1;
}

.gallery .owl-nav .owl-prev {
    position: absolute;
    display: block;
    top: 50%;
    left: 15px;
    z-index: 1000;
}

.gallery .owl-nav .owl-next {
    position: absolute;
    display: block;
    top: 50%;
    right: 15px;
    z-index: 1000;
}

.gallery .owl-nav .owl-prev i,
.gallery .owl-nav .owl-next i {
    font-size: 56px;
    color: #fff;
}

/* footer */
.footer {
    background: #3F4B40;
}

.footer_end {
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #FFFAED;
    margin-top: 36px;
}

.header_box .container {
    max-width: 1140px;
    padding: 10px;
}

.pop_up_box {
    position: fixed;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    left: 0;
    z-index: 9999;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: none;
}

.pop_up_box .form_box {
    width: 660px;
    max-width: 90%;
    margin: 0 auto;
    padding: 40px;
    margin-top: 0;
    border-radius: 4px;
    cursor: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    background: rgba(26, 40, 34, 0.85);
    /* Dark green glass */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Gold outline */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-50%);
}

form.form_pop_border {
    display: flex;
    flex-wrap: wrap;
}

.form_box .form-1 {
    border: none;
    padding: 0;
    display: block;
    width: 100%;
}

.form_box .form-1 h3 {
    text-align: center;
    color: var(--color-gold, #D4AF37);
    margin-bottom: 25px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2px;
}

.form_box .form-1 .input_box {
    width: 50%;
    display: inline-block;
    margin: 0 !important;
    padding: 12px 15px;
}

.form_box .form-1 .input_box.input_full {
    width: 100%;
    color: #fff;
    padding-top: 20px;
}

.form_box .form-1 .input_box.input_full p a {
    text-decoration: underline;
}

.form_box .form-1 .input_box input {
    background: transparent;
    width: 100%;
    border: none;
    padding: 10px 0;
    border-radius: 0 !important;
    resize: none;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    transition: border-color 0.3s ease;
    outline: none;
    margin-bottom: 2px;
}

.form_box .form-1 .input_box select {
    background: transparent;
    outline: none;
    display: block;
    width: 100%;
    border: none;
    padding: 10px 0 !important;
    border-radius: 0 !important;
    resize: none;
    color: #fff;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    transition: border-color 0.3s ease;
    height: 45px;
}

.form_box .form-1 .input_box input:focus,
.form_box .form-1 .input_box select:focus {
    border-bottom: 1px solid #D4AF37;
}

.form_box .form-1 .input_box select option {
    color: #1A2822;
    background: #fff;
}

.form_box .form-1 .input_box input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    opacity: 1;
}

.form_box .form-1 .input_box input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.form_box .form-1 .input_box input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.form_box .form-1 .btn_form {
    margin-top: 30px;
    margin-bottom: 10px;
    background: transparent;
    color: #D4AF37 !important;
    display: inline-block;
    padding: 14px 30px;
    font-size: 13px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 0;
    border: 1px solid #D4AF37;
    width: calc(100% - 30px);
    margin-left: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.form_box .form-1 .btn_form:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #AA8A2A 100%) !important;
    color: #1A2822 !important;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.close_icon {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close_icon:hover {
    transform: rotate(90deg);
}

.close_icon i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    transition: color 0.3s ease;
}

.close_icon:hover i {
    color: #D4AF37;
}

.input__class input {
    outline: none;
}

/* sections */

.show__sec {
    display: none;
}

.hide__navbar {
    display: block;
}

.gallery .item {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* scroll navbar */
#scroll__nav {
    /* Handled by .luxury-header-scrolled to avoid ID specificity issues */
}

#scroll__nav .logo-box .logo-change1 {
    max-width: 145px;
}

#scroll__nav .logo_col {
    width: 15%;
    padding: 10px;
}

#scroll__nav .nav_col {
    width: 70%;
    padding: 10px;
}

#scroll__nav .row {
    margin: 0;
}

/* mobile menu */
.hamburg__menu {
    /* display: none; Removed so d-lg-none handles visibility */
}

.hamburg__menu a {
    color: #fff;
}

.menus {
    display: block;
}

.mobile__nav__logo {
    display: block;
}

/* StructuredÂ progress */

.fancybox-slide--video .fancybox-content {
    width: 960px !important;
    height: 540px !important;
}

/* -- Thank you page -- */

.fancybox-button--share {
    display: none !important;
}

.pop_up_box p.privacy {
    position: relative;
    padding-left: 21px;
    font-size: 13px;
    color: #FFF;
    margin-top: 5px;
    margin-bottom: 0;
}

.pop_up_box p.privacy input {
    width: auto !important;
    height: auto;
    position: absolute;
    left: 0;
    top: 6px;
}

.pop_up_box p.privacy a {
    font-weight: 500;
}

.country_code {
    pointer-events: none;
}

/* intl-tel-input overrides to match form theme */
.iti {
    width: 100%;
}

.iti__flag-container {
    background: transparent;
}

.iti__selected-flag {
    background: rgba(255, 255, 255, 0.08) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 10px;
    border-radius: 4px 0 0 4px;
}

.iti__selected-dial-code {
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 600;
}

.iti__country-list {
    background: #1b2e25 !important;
    background-color: #1b2e25 !important;
    border: 1px solid rgba(197, 160, 89, 0.3) !important;
    color: #e0d5c5 !important;
    max-height: 220px;
    z-index: 9999;
}

.iti__dropdown-content {
    background: #1b2e25 !important;
    background-color: #1b2e25 !important;
}

.iti__country.iti__highlight,
.iti__country:hover {
    background: rgba(197, 160, 89, 0.15) !important;
    background-color: rgba(197, 160, 89, 0.15) !important;
}

.iti__dial-code {
    color: var(--color-gold) !important;
}

.iti__country-name {
    color: #e0d5c5 !important;
}

#inquiryformerror-5 {
    position: absolute;
    line-height: 1;
    transform: translateY(100%);
    bottom: 7px;
}

/* Fix browser autofill colors to match dark theme */
.form_box .form-1 .input_box input:-webkit-autofill,
.form_box .form-1 .input_box input:-webkit-autofill:hover,
.form_box .form-1 .input_box input:-webkit-autofill:focus,
.form_box .form-1 .input_box input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #fff !important;
}

/* Group Hover Utilities (like Tailwind) */

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header Enhancements */
.hover-gold:hover {
    background: #d4af37 !important;
    border-color: #d4af37 !important;
    color: #fff !important;
}

.hover-gold-solid:hover {
    background: #a98d64 !important;
    border-color: #a98d64 !important;
}

/* Premium Hero Enhancements */
.hero-premium-section {
    min-height: 100vh !important;
    position: relative;
    display: flex;
    align-items: flex-start !important;
    /* Force top alignment to clear fixed header globally */
    padding-bottom: 80px;
}

/* Cinematic Overlay & Vignette */
.hero-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
    z-index: 1;
    pointer-events: none;
}

.hero-premium-section .hero-container {
    position: relative;
    z-index: 2;
}

.hero-heading-premium {
    font-family: var(--font-heading) !important;
    font-size: 96px;
    font-weight: 600 !important;
    line-height: 1.1 !important;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
    /* text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.5); */
}

.hero-subtext-premium {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* Gold Pill Button */
.btn-gold-pill-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 18px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid #d4af37;
    border-radius: 50px;
    color: #d4af37 !important;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.btn-gold-pill-large:hover {
    background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
    border-color: transparent;
}

/* Premium Form Card */
.glass-form-premium {
    background: rgba(10, 15, 12, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    padding: 30px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.form-heading-gold {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 32px !important;
    color: #e6c266 !important;
    /* Brighter gold */
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.glass-form-premium .luxury-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    color: #fff !important;
    height: 45px !important;
    padding: 10px 15px !important;
    font-family: 'Inter', sans-serif !important;
    transition: all 0.3s ease !important;
}

.glass-form-premium .luxury-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2) !important;
}

.glass-form-premium .luxury-input::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
    /* Brighter placeholder */
    font-weight: 400;
}

.glass-form-premium select.luxury-input {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* ==========================================================================
   Premium Gallery Redesign Styles
   ========================================================================== */
.gallery {
    background-color: #0f1c15 !important;
    padding: 80px 0 !important;
}

.gallery .luxury-heading {
    color: #fff !important;
}

.gallery-main-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.gallery-image-wrapper img.gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-image-wrapper:hover img.gallery-main-img {
    transform: scale(1.03);
}

/* Glassmorphic Overlay Details Card */
.gallery-info-card {
    position: absolute;
    left: 50px;
    bottom: 50px;
    width: 380px;
    background: rgba(10, 18, 15, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 16px;
    padding: 35px;
    z-index: 10;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    /* Allow clicks on elements inside card */
}

.gallery-info-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #e6c266;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-info-sub i {
    font-size: 14px;
}

.gallery-info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-info-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
}

.gallery-info-counter {
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 4px 15px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* Custom Navigation Buttons */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
    background: #aa771c;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.gallery-nav-btn i {
    font-size: 18px;
}

.gallery-nav-prev {
    left: 20px;
}

.gallery-nav-next {
    right: 20px;
}

/* Custom Hide for Default owl dots/nav */
.gallery .owl-nav,
.gallery .owl-dots {
    display: none !important;
}

/* Custom Interactive Thumbnail Row */
.gallery-thumbnails-wrapper {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 0 15px;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.gallery-thumb-item {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transition: all 0.3s ease;
}

.gallery-thumb-item:hover img {
    filter: brightness(0.8);
    transform: scale(1.05);
}

.gallery-thumb-item.active {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.gallery-thumb-item.active img {
    filter: brightness(1);
}

/* Dots pagination */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: #e6c266;
    width: 22px;
    border-radius: 4px;
}

/* Owl Carousel FadeOut Fix */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

/* Perfect Overlay / Layout Lock for Carousel Slides */
.gallery .owl-item:not(.active):not(.animated) {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Mobile & Tablet Responsiveness for Premium Gallery */
@media (max-width: 991px) {
    .gallery-info-card {
        left: 30px;
        bottom: 30px;
        width: 340px;
        padding: 25px;
    }

    .gallery-info-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .gallery {
        padding: 60px 0 !important;
    }

    .gallery-image-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .gallery-image-wrapper>a {
        display: block;
        width: 100%;
        height: 320px;
        overflow: hidden;
    }

    .gallery-image-wrapper picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    .gallery-image-wrapper img.gallery-main-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .gallery-info-card {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        border-radius: 0 0 16px 16px;
        border: none;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        background: rgba(10, 18, 15, 0.95);
        box-shadow: none;
        padding: 25px 20px;
        animation: none;
    }

    .gallery-nav-btn {
        top: 160px;
        /* Vertically centered relative to the 320px image portion */
        transform: translateY(-50%);
    }

    .gallery-nav-prev {
        left: 10px;
    }

    .gallery-nav-next {
        right: 10px;
    }
}

@media (max-width: 575px) {
    .gallery-image-wrapper>a {
        height: 260px;
        /* Slightly shorter on mobile screens for better aspect ratio */
    }

    .gallery-nav-btn {
        top: 130px;
        /* Centered relative to 260px image portion */
    }

    .gallery-info-card {
        padding: 20px 15px;
    }

    .gallery-info-title {
        font-size: 24px;
    }

    .gallery-info-subtitle {
        font-size: 12px;
    }
}

/* 1. Universal Spacing and Max-Width Bounds */
.luxury-section .container-fluid,
.hero-premium-section .hero-container,
.gallery-main-wrapper,
.gallery-thumbnails-wrapper,
.footer_end .container,
.header_box .container-fluid {
    max-width: 1300px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    width: 100% !important;
}

/* Amenities section: full-width background, constrained inner content */
.amenities-grid-section .luxury-heading,
.amenities-grid-section .gold-line,
.amenities-grid-section .amenities-grid {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
}

/* 2. Standardized Section Paddings and Rhythm */
.luxury-section,
.amenities-grid-section,
.gallery,
#contact {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* 3. Normalized Split Content Grids */
.luxury-section .row {
    display: flex !important;
    align-items: center !important;
}

.luxury-content-box {
    padding: 0 !important;
    max-width: 540px !important;
    width: 100% !important;
}

.luxury-section:not(.reverse_row) .luxury-content-box {
    margin-right: auto !important;
    margin-left: 0 !important;
}

.luxury-section.reverse_row .luxury-content-box {
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Header/Heading styles uniformity */
.luxury-content-box h1 {
    font-family: var(--font-heading) !important;
    font-size: 48px;
    font-weight: 500 !important;
    line-height: 1.15 !important;
    letter-spacing: 2px !important;
    margin-bottom: 25px !important;
    color: var(--color-accent) !important;
}

.luxury-section.bg-accent .luxury-content-box h1 {
    color: var(--color-gold) !important;
}

.luxury-content-box p {
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
    color: var(--color-text-muted) !important;
    margin-bottom: 20px !important;
}

.luxury-section.bg-accent .luxury-content-box p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Locked aspect ratio split section images */
.luxury-img-box {
    width: 100% !important;
    aspect-ratio: 3/4 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: var(--shadow-luxury) !important;
    margin: 0 !important;
    border: 8px solid rgba(255, 255, 255, 0.5) !important;
    background-clip: padding-box !important;
    transition: var(--transition-smooth) !important;
}

.luxury-img-box:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--glow-gold) !important;
}

.luxury-img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* 4. Navbar & Navigation Visual Enhancements */
.navbar-main .menu-primary-inner {
    gap: 3.5rem !important;
    justify-content: center !important;
}

/* Underline link micro-interaction */
.navbar-main .menu-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.navbar-main .menu-item.active a::after,
.navbar-main .menu-item a:hover::after {
    width: 100% !important;
}

/* Scrolled header alignment fix */

.luxury-header-scrolled .menu-primary-inner {
    gap: 2.5rem !important;
}

/* 5. Hero Alignment & Proportions */
.hero-premium-section .hero-container {
    height: 100% !important;
}

.hero-premium-section .hero-content-wrapper {
    min-height: 100vh !important;
    height: auto !important;
    padding-top: 120px !important;
    /* Elegant vertical clearance of absolute/fixed header */
    padding-bottom: 0px !important;
}

/* 8. Contact Section Premium Layout */

#contact .row {
    justify-content: center !important;
    align-items: center !important;
}

#contact .col-lg-6:first-child {
    display: flex;
    justify-content: flex-end;
}

#contact .col-lg-6:last-child {
    display: flex;
    justify-content: flex-start;
}

/* Eyebrow Pill */
.eyebrow-pill {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid var(--color-gold);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 25px;
    background: rgba(197, 160, 89, 0.05);
}

/* Stats Grid — always min 2 per row (beats .luxury-section .row flex stacking) */
.luxury-section .stats-grid-row,
.stats-grid-row {
    margin-top: 60px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    gap: 1rem;
}

.luxury-section .stats-grid-row>.stats-col,
.stats-grid-row>.stats-col {
    flex: none !important;
    width: 100% !important;
    max-width: none !important;
    padding-left: 0;
    padding-right: 0;
}

.stats-col {
    padding: 0 15px;
}

.stat-luxury-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--radius-md);
    padding: 35px 20px;
    height: 100%;
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-inner-glow);
    pointer-events: none;
}

.stat-luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-gold), 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 89, 0.35);
    background: rgba(255, 255, 255, 0.85);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-main);
    opacity: 0.7;
    line-height: 1.4;
}

/* Highlights Grid */
.highlights-grid-row {
    margin-top: 50px;
    margin-bottom: 40px;
}

.highlight-col {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.highlight-col>.highlight-luxury-card {
    flex: 1 1 auto;
    width: 100%;
}

.highlight-luxury-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--radius-md);
    padding: 35px;
    height: 100%;
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
    display: flex;
    gap: 25px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.highlight-luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-inner-glow);
    pointer-events: none;
}

.highlight-luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-gold), 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 89, 0.35);
    background: rgba(255, 255, 255, 0.85);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
    font-size: 20px;
    transition: var(--transition-smooth);
}

.highlight-luxury-card:hover .highlight-icon {
    background: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.05);
}

.highlight-content h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.highlight-content p {
    font-family: var(--font-body);
    font-size: 14px !important;
    line-height: 1.6;
    margin: 0;
    color: var(--color-text-main);
    opacity: 0.6;
}

/* ==========================================================================
   Floor Plans Section
   ========================================================================== */

.floor-plan-subtext {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.fp-filter-row {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    margin-top: 50px;
    margin-bottom: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.fp-filter-btn {
    border: 1px solid transparent;
    background-color: #FDFCF9;
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.fp-filter-btn.active,
.fp-filter-btn:hover {
    background-color: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.fp-card {
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.fp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(197, 160, 89, 0.3);
}

.fp-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.fp-badge {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 6px 16px;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-main);
    background: transparent;
}

.fp-badge-filled {
    background-color: var(--color-bg-alt);
    padding: 6px 16px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-main);
}

.fp-image-placeholder {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    min-height: 280px;
    background: #FAFAF8;
    border-radius: var(--radius-sm);
}

.fp-image-placeholder img {
    max-width: 100%;
    max-height: 380px;
    height: auto;
    object-fit: contain;
}

.fp-card-footer {
    background-color: var(--color-bg-alt);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    border-radius: var(--radius-sm);
}

.fp-footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-main);
    margin: 0;
}

/* Floor Plan Carousel */
.fp-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.fp-carousel .owl-item {
    display: flex;
}

.fp-carousel .fp-slide {
    width: 100%;
    display: flex;
}

.fp-carousel .fp-slide .fp-card {
    width: 100%;
}

.fp-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.fp-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    display: inline-block;
    margin: 0 5px;
    transition: var(--transition-smooth);
}

.fp-carousel .owl-dot.active span {
    background: var(--color-gold);
    width: 28px;
    border-radius: 5px;
}

.fp-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.fp-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    color: var(--color-text-main);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-nav-btn:hover {
    background: var(--color-gold);
    color: #fff;
    border-color: var(--color-gold);
}

/* Phase 4: Key Consultants Section CSS */
.consultant-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 45px 35px;
    height: 100%;
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.consultant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-md);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.consultant-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.consultant-badge {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.consultant-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.consultant-location {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consultant-divider {
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
    margin-bottom: 20px;
    opacity: 0.6;
}

.consultant-desc {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* Phase 5: Transitions & Premium Contact Section CSS */
.contact-details-panel {
    padding-right: 30px;
}

.contact-intro-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-main);
    opacity: 0.7;
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(197, 160, 89, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-info-item:hover .contact-info-icon {
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.15);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
    transform: scale(1.05);
}

.contact-info-text h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.contact-info-text p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text-main);
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}

.contact-link {
    color: var(--color-text-main);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--color-gold);
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(197, 160, 89, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 50px 45px;
    box-shadow: var(--shadow-luxury);
    position: relative;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-inner-glow);
    pointer-events: none;
}

.form-card-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 10px;
}

.form-card-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-main);
    opacity: 0.65;
    margin-bottom: 35px;
    line-height: 1.5;
}

.inline-input-group {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.inline-input-group:focus-within {
    border-bottom-color: var(--color-gold);
}

.inline-input-group input {
    background: transparent;
    border: none;
    width: 100%;
    color: var(--color-text-main);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.inline-input-group input::placeholder {
    color: rgba(35, 53, 45, 0.6);
    transition: var(--transition-smooth);
}

.inline-input-group input:focus {
    outline: none;
}

.inline-input-group input:focus::placeholder {
    opacity: 0.5;
}

.inline-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.inline-checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--color-gold);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.inline-checkbox-group label {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
    cursor: pointer;
}

.inline-checkbox-group a {
    color: var(--color-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.inline-checkbox-group a:hover {
    text-decoration: underline;
}

.inline-submit-btn {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: var(--radius-sm);
    color: #ffffff;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.inline-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold), 0 8px 25px rgba(197, 160, 89, 0.2);
    border-color: rgba(197, 160, 89, 0.8);
}

.inline-submit-btn:active {
    transform: translateY(0);
}

.inline-error-msg {
    font-family: var(--font-body);
    font-size: 11px;
    color: #E74C3C;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

#inline_lblProcessCarrier {
    margin-top: 15px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
}

/* Location Section — loc-wrap Component */
.loc-wrap {
    width: 100%;
}

.loc-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.loc-tab {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    transition: var(--transition-smooth);
    background: transparent;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.loc-tab i {
    font-size: 16px;
}

.loc-tab:hover {
    color: var(--color-white);
    border-color: rgba(197, 160, 89, 0.6);
    background: rgba(255, 255, 255, 0.02);
}

.loc-tab.active {
    color: var(--color-white);
    border-color: var(--color-gold);
    background: rgba(197, 160, 89, 0.15);
    box-shadow: var(--glow-gold);
}

.loc-body {
    margin-top: 10px;
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.loc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-luxury);
}

.loc-item:hover {
    transform: translateY(-3px);
    border-color: rgba(197, 160, 89, 0.35);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.loc-item-icon {
    color: var(--color-gold);
    font-size: 18px;
    flex-shrink: 0;
    opacity: 0.9;
}

.loc-item-name {
    flex: 1;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
}

.loc-item-time {
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* Section 2: Pricing Cards & Built for a Life Well-Lived */
.pricing-intro-box {
    padding-right: 20px;
}

.pricing-luxury-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-luxury);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-luxury-card.highlighted {
    border-color: var(--color-gold);
    background: #FAF7F2;
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.08);
}

.card-header-badge {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    display: inline-block;
}

.card-header-badge.highlight {
    color: var(--color-gold);
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1;
    margin-bottom: 25px;
}

.pricing-amount .currency {
    font-size: 28px;
    vertical-align: top;
    color: var(--color-gold);
    margin-right: 4px;
    font-weight: 500;
}

.pricing-amount .unit {
    font-size: 22px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.pricing-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 20px 0;
    width: 100%;
}

.pricing-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
    width: 100%;
}

.detail-item {
    font-family: var(--font-body);
}

.detail-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.detail-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-main);
}

.pricing-luxury-card button {
    margin-top: auto;
}

.why-choose-box {
    padding-right: 15px;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.list-square-gold {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 1px;
    margin-top: 8px;
    flex-shrink: 0;
}

.why-choose-item p {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

/* Blueprint SVG Layout Graphic Styling */
.blueprint-vector-container {
    background: #FAF7F2;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.blueprint-vector-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
}

.blueprint-svg {
    width: 100%;
    height: auto;
    display: block;
}

.blueprint-level {
    transition: var(--transition-smooth);
    cursor: pointer;
    transform-origin: center;
}

.blueprint-level:hover {
    fill: rgba(197, 160, 89, 0.08) !important;
    stroke-width: 2px !important;
    filter: drop-shadow(0 4px 12px rgba(197, 160, 89, 0.15));
}

rect.blueprint-level {
    transition: var(--transition-smooth);
}

rect.blueprint-level:hover {
    fill: rgba(197, 160, 89, 0.08) !important;
    stroke: var(--color-gold-hover) !important;
}

/* Callback Footer Bar styling */

.btn-callback-submit {
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 35px;
    height: 52px;
    transition: var(--transition-smooth);
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-callback-submit:hover {
    background: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

/* Section 3: Key Highlights & RERA */
.highlight-premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-luxury);
}

.highlight-premium-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: var(--shadow-floating);
}

.highlight-premium-card:hover .card-glow-border {
    opacity: 1;
}

.card-glow-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.highlight-square-box {
    width: 12px;
    height: 12px;
    border: 2px solid var(--color-gold);
    border-radius: 2px;
    margin-bottom: 22px;
    transition: var(--transition-smooth);
}

.highlight-premium-card:hover .highlight-square-box {
    background: var(--color-gold);
    transform: rotate(45deg);
}

.highlight-card-title {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.highlight-card-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-muted);
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}

.highlight-premium-card.full-width-banner {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(197, 160, 89, 0.15);
    padding: 30px 40px;
    width: 100%;
}

.rera-legal-footer {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    margin-top: 25px;
}

/* ── GLOBAL IMAGE SAFETY ── */
img {
    max-width: 100%;
    height: auto;
}

/* ── GLOBAL BOX-SIZING ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ── GLOBAL CONTAINER OVERRIDE ── */
.luxury-section .container-fluid,
.hero-premium-section .hero-container,
.gallery-main-wrapper,
.gallery-thumbnails-wrapper,
.footer_end .container,
.header_box .container-fluid {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 60px !important;
    padding-right: 60px !important;
    width: 100% !important;
}

/* ── GLOBAL SECTION VERTICAL PADDING ── */
.luxury-section,
.amenities-grid-section,
.gallery,
#contact,
#consultants,
#key-highlights {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* ── GLOBAL TYPOGRAPHY BASE ── */
h1.hero-heading-premium {
    font-size: 96px !important;
    line-height: 1.05 !important;
    letter-spacing: 2px !important;
}

.luxury-heading,
.luxury-content-box h1,
.amenities-grid-section .luxury-heading,
.gallery .luxury-heading,
h2.hero-heading-premium {
    font-family: var(--font-heading) !important;
    font-size: 48px !important;
    font-weight: 500 !important;
    line-height: 1.15 !important;
    letter-spacing: 2px !important;
}

.luxury-content-box p,
.hero-subtext-premium,
body,
p {
    font-size: 18px;
    line-height: 1.75;
}

/* ── LABEL / EYEBROW CONSISTENCY ── */
.eyebrow-pill,
.consultant-badge {
    font-size: 11px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

/* ── MOBILE NAV MENU ── */
.mobile-nav-slick {
    overflow-x: hidden !important;
}

/* ── OVERFLOW GUARD ── */
body {
    overflow-x: hidden !important;
}

.luxury-section,
.hero-premium-section,
.amenities-grid-section,
.gallery,
#contact,
#consultants,
#key-highlights {
    overflow-x: hidden !important;
}

/* Overview stats: always 2+ cards per row */
#overview .stats-grid-row {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1rem !important;
}

/* ==========================================================================
   GLOBAL RESPONSIVE SYSTEM
   ========================================================================== */

/* ── DESKTOP (1366px and below) ── */
@media (max-width: 1366px) {

    .luxury-section .container-fluid,
    .hero-premium-section .hero-container,
    .gallery-main-wrapper,
    .gallery-thumbnails-wrapper,
    .footer_end .container,
    .header_box .container-fluid {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }

    h1.hero-heading-premium {
        font-size: 96px !important;
    }

    .luxury-heading,
    .luxury-content-box h1,
    .amenities-grid-section .luxury-heading,
    .gallery .luxury-heading,
    h2.hero-heading-premium {
        font-size: 48px !important;
    }

    .luxury-content-box p,
    .hero-subtext-premium,
    body,
    p {
        font-size: 18px;
    }

    .luxury-section,
    .amenities-grid-section,
    .gallery,
    #contact,
    #consultants,
    #key-highlights {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    #overview .stats-grid-row {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

/* ── TABLET LANDSCAPE / SMALL LAPTOP (922px and below) ── */
@media (max-width: 922px) {

    .luxury-section .container-fluid,
    .hero-premium-section .hero-container,
    .gallery-main-wrapper,
    .gallery-thumbnails-wrapper,
    .footer_end .container,
    .header_box .container-fluid {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    h1.hero-heading-premium {
        font-size: 78px !important;
    }

    .luxury-heading,
    .luxury-content-box h1,
    .amenities-grid-section .luxury-heading,
    .gallery .luxury-heading,
    h2.hero-heading-premium {
        font-size: 44px !important;
    }

    .luxury-content-box p,
    .hero-subtext-premium,
    body,
    p {
        font-size: 16px;
    }

    .luxury-section,
    .amenities-grid-section,
    .gallery,
    #contact,
    #consultants,
    #key-highlights {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /* Hero */
    .hero-content-wrapper {
        align-items: center !important;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-text-col,
    .hero-form-col {
        padding-top: 0;
        margin-top: 0;
    }

    .hero-subtext-premium {
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .hero-form-container {
        margin-top: 40px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Image + Text Split (Overview) */
    .luxury-content-box {
        text-align: center;
        margin-bottom: 40px;
    }

    .luxury-content-box h1,
    .luxury-content-box .eyebrow-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .luxury-img-box {
        margin-top: 30px;
        height: auto;
    }

    .luxury-img-box img {
        height: auto;
        width: 100%;
        object-fit: cover;
    }

    /* Amenities */
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* Floor Plans */
    .fp-filter-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .fp-filter-btn {
        flex: 1 1 calc(50% - 10px);
    }

    .fp-slide {
        padding: 0 10px;
    }

    /* Consultants */
    .consultants-grid-custom {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ── TABLET PORTRAIT (768px and below) ── */
@media (max-width: 768px) {

    .luxury-section .container-fluid,
    .hero-premium-section .hero-container,
    .gallery-main-wrapper,
    .gallery-thumbnails-wrapper,
    .footer_end .container,
    .header_box .container-fluid {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    h1.hero-heading-premium {
        font-size: 64px !important;
    }

    .luxury-heading,
    .luxury-content-box h1,
    .amenities-grid-section .luxury-heading,
    .gallery .luxury-heading,
    h2.hero-heading-premium {
        font-size: 38px !important;
    }

    .luxury-content-box p,
    .hero-subtext-premium,
    body,
    p {
        font-size: 16px;
    }

    .luxury-section,
    .amenities-grid-section,
    .gallery,
    #contact,
    #consultants,
    #key-highlights {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* Overview Stats */
    #overview .stats-grid-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1.5rem !important;
    }

    /* Highlights / USP */
    .highlights-grid-row .highlight-col {
        margin-bottom: 20px;
    }

    .highlight-luxury-card {
        height: auto;
    }

    /* Location Advantages */
    .loc-grid {
        grid-template-columns: 1fr;
    }

    .loc-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .loc-tab {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
        justify-content: center;
    }

    /* Pricing */
    .pricing-details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Contact */
    .contact-form-card {
        padding: 40px 30px;
        margin-top: 40px;
    }

    .contact-details-panel {
        padding-right: 0;
        text-align: center;
    }

    .contact-info-list {
        align-items: center;
    }

    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    /* Footer */
    .footer-col-premium {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-col-premium img {
        margin: 0 auto 20px;
    }

    .footer-menu {
        align-items: center;
    }

    .footer-bottom-bar {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }

    .footer-legal-links {
        justify-content: center !important;
        gap: 20px !important;
    }

    /* Gallery */
    .gallery-thumbnails-wrapper {
        margin-top: 15px;
    }

    .gallery-thumbnails {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gallery-thumb-item {
        flex: 1 1 calc(33.333% - 15px);
        min-width: 80px;
    }

    .gallery-thumb {
        height: 60px;
    }

    .gallery .owl-item img {
        width: 100% !important;
        height: auto !important;
    }
}

/* ── MOBILE LARGE (575px and below) ── */
@media (max-width: 575px) {

    .luxury-section .container-fluid,
    .hero-premium-section .hero-container,
    .gallery-main-wrapper,
    .gallery-thumbnails-wrapper,
    .footer_end .container,
    .header_box .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    h1.hero-heading-premium {
        font-size: 38px !important;
    }

    .luxury-heading,
    .luxury-content-box h1,
    .amenities-grid-section .luxury-heading,
    .gallery .luxury-heading,
    h2.hero-heading-premium {
        font-size: 28px !important;
    }

    .luxury-content-box p,
    .hero-subtext-premium,
    body,
    p {
        font-size: 15px;
    }

    /* Navbar */
    .header_box {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .logo-change1 {
        max-height: 40px !important;
    }

    /* Consultants */
    .consultants-grid-custom {
        grid-template-columns: 1fr !important;
    }

    /* Form */
    .inline-checkbox-group {
        flex-direction: column;
        align-items: center;
    }
}

/* ── MOBILE SMALL (390px and below) ── */
@media (max-width: 390px) {

    .luxury-section .container-fluid,
    .hero-premium-section .hero-container,
    .gallery-main-wrapper,
    .gallery-thumbnails-wrapper,
    .footer_end .container,
    .header_box .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    h1.hero-heading-premium {
        font-size: 34px !important;
    }

    .luxury-heading,
    .luxury-content-box h1,
    .amenities-grid-section .luxury-heading,
    .gallery .luxury-heading,
    h2.hero-heading-premium {
        font-size: 26px !important;
    }

    .luxury-content-box p,
    .hero-subtext-premium,
    body,
    p {
        font-size: 14px;
    }

    .luxury-section,
    .amenities-grid-section,
    .gallery,
    #contact,
    #consultants,
    #key-highlights {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    /* Amenities */
    .amenities-grid {
        grid-template-columns: 1fr !important;
    }

    /* Cards */
    .pricing-luxury-card {
        padding: 30px 20px;
    }

    .highlight-premium-card {
        padding: 30px 20px;
    }

    .contact-form-card {
        padding: 30px 20px;
    }
}

/* ──────────────────────────────────────────────────────────
   UNIVERSAL PREMIUM CARD EQUAL-HEIGHT SYSTEM & RESPONSIVE SPACERS
   ────────────────────────────────────────────────────────── */

/* 1. Overview Section - Stat Cards Equal Heights */
/* #overview .stats-grid-row {
    display: flex !important;
    flex-wrap: wrap !important;
} */

#overview .stats-col {
    display: flex !important;
    flex-direction: column !important;
}

#overview .stats-col>.stat-luxury-card {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    width: 100% !important;
}

/* 2. Highlights Section - Icon Cards Equal Heights */
.highlights-grid-row {
    display: flex !important;
    flex-wrap: wrap !important;
}

.highlights-grid-row .highlight-col {
    display: flex !important;
    flex-direction: column !important;
}

.highlights-grid-row .highlight-col>.highlight-luxury-card {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    height: 100% !important;
    width: 100% !important;
}

/* 3. Pricing Section - Standard & Premium Cards Equal Heights */
#pricing .col-lg-7 .row.g-4 {
    flex-direction: row !important;
}

#pricing .col-lg-7 .row.g-4>div {
    display: flex !important;
    flex-direction: column !important;
}

#pricing .pricing-luxury-card {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    width: 100% !important;
}

/* 4. Floor Plans Section - Floor Plan Cards Equal Heights (Owl Carousel Stage) */
.fp-carousel .owl-stage {
    display: flex !important;
    align-items: stretch !important;
}

.fp-carousel .owl-item {
    display: flex !important;
}

.fp-carousel .fp-slide {
    width: 100% !important;
    display: flex !important;
}

.fp-carousel .fp-slide .fp-card {
    width: 100% !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* 5. Key Highlights Section - Grid Cards Equal Heights */
#key-highlights .row.g-4>div {
    display: flex !important;
    flex-direction: column !important;
}

#key-highlights .highlight-premium-card {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
}

/* 6. Consultants Section - Collaborator Cards Equal Heights */
#consultants .row.g-4>div {
    display: flex !important;
    flex-direction: column !important;
}

#consultants .consultant-card {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    width: 100% !important;
}

/* 7. Responsive Hero Padding & Global Layout overrides */
@media (max-width: 991px) {
    .hero-premium-section {
        align-items: flex-start !important;
    }

    .hero-premium-section .hero-content-wrapper {
        padding-top: 140px !important;
        padding-bottom: 60px !important;
    }



    /* ── 7.1. FORCE COLUMN STACKING ORDER ── */
    .luxury-section .row {
        /* flex-direction: column !important; */
        /* Standard stack: text top, image bottom */
    }

    .luxury-section.reverse_row .row {
        /* flex-direction: column !important; */
        /* Stack reverse rows in the same clean top-down hierarchy */
    }

    /* ── 7.2. GLOBAL CENTERING OF LUXURY CONTENT BOXES ── */
    .luxury-section .luxury-content-box,
    .luxury-section:not(.reverse_row) .luxury-content-box,
    .luxury-section.reverse_row .luxury-content-box {
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 680px !important;
        /* Wider, perfectly balanced reading width on tablet screens */
        width: 100% !important;
        text-align: center !important;
        padding: 20px 0 !important;
        /* Clean vertical spacing when stacked */
    }

    /* ── 7.3. TYPOGRAPHY CENTER ALIGNMENT ── */
    .luxury-content-box h1,
    .luxury-content-box p,
    .luxury-content-box .eyebrow-pill,
    .luxury-content-box .gold-line {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .stat-number {
        font-size: 30px;
    }

    .luxury-content-box .gold-line {
        margin-bottom: 25px !important;
    }

    /* ── 7.4. CENTER & CONSTRAIN LUXURY IMAGE BOXES ── */
    .luxury-section .luxury-img-box {
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 30px !important;
        margin-bottom: 10px !important;
        max-width: 680px !important;
        width: 100% !important;
    }

    /* ── 7.5. CENTER HERO FORM CONTAINER ── */
    .hero-form-container {
        margin-left: auto !important;
        margin-right: auto !important;
        margin-top: 40px !important;
        max-width: 500px !important;
        width: 100% !important;
    }
}

/* ── SMALL LAPTOP/TABLET DEVIATION OVERRIDES (922px and below) ── */
@media (max-width: 922px) {

    .luxury-heading,
    .luxury-content-box h1,
    .amenities-grid-section .luxury-heading,
    .gallery .luxury-heading,
    h2.hero-heading-premium {
        font-size: 40px !important;
        /* Slightly smaller typography to prevent overflow */
    }
}

/* ── TABLET PORTRAIT OVERRIDES (768px and below) ── */
@media (max-width: 768px) {
    .hero-premium-section .hero-content-wrapper {
        padding-top: 130px !important;
        padding-bottom: 50px !important;
    }

    .luxury-heading,
    .luxury-content-box h1,
    .amenities-grid-section .luxury-heading,
    .gallery .luxury-heading,
    h2.hero-heading-premium {
        font-size: 34px !important;
    }

    /* Center-align Location tab container for cleaner layout */
    .loc-tabs {
        justify-content: center !important;
        gap: 12px !important;
    }
}

/* ── MOBILE LARGE OVERRIDES (575px and below) ── */
@media (max-width: 575px) {
    .hero-premium-section .hero-content-wrapper {
        padding-top: 110px !important;
        padding-bottom: 40px !important;
    }

    .stat-luxury-card {
        padding: 25px 15px;
    }

    .luxury-heading,
    .luxury-content-box h1,
    .amenities-grid-section .luxury-heading,
    .gallery .luxury-heading,
    h2.hero-heading-premium {
        font-size: 28px !important;
    }

    /* Ensure forms are perfectly padded and responsive */
    .contact-form-card {
        padding: 30px 20px !important;
    }

    .hero-form-container {
        padding: 30px 20px !important;
    }
}

/* ── MOBILE SMALL OVERRIDES (390px and below) ── */
@media (max-width: 390px) {
    .hero-premium-section .hero-content-wrapper {
        padding-top: 100px !important;
        padding-bottom: 30px !important;
    }

    h1.hero-heading-premium {
        font-size: 28px !important;
    }

    .luxury-heading,
    .luxury-content-box h1,
    .amenities-grid-section .luxury-heading,
    .gallery .luxury-heading,
    h2.hero-heading-premium {
        font-size: 24px !important;
        /* Elegant small headers */
    }

    .luxury-content-box p,
    .hero-subtext-premium,
    body,
    p {
        font-size: 14px !important;

    }
}

.error-msg {
color: #ff2b2b;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    line-height: 1.2;
}

/* error border */
.has-error {
    border-color: #ff2b2b !important;
}


  .form-label{
        color: #fff !important;
            font-size: 14px;
    margin: 0;
    }

.thanks_page_container {
         display: flex;
         align-items: center;
         justify-content: center;
         padding: 50px 0px;
         box-sizing: border-box;
         width: 100%;
         max-width: 1170px;
         margin: 0 auto;
         }
         .thanks_content_box {
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         width: 100%;
         }
         .thanks_text {
         margin-top: 20px;
         }
         .thanks_text h1 {
         font-family: 'Arial MT';
         font-weight: bold;
         font-size: 80px;
         color: #1D1D1D;
         text-align: center;
         }
         .thanks_text h5 {
         font-family: 'ArialMT';
         font-weight: 500;
         font-size: 24px;
         text-align: center;
         color: #3A3A3A;
         }
         .thanks_text p {
         font-family: 'ArialMT';
         font-weight: 500;
         width: 60%;
         margin: 0 auto;
         margin-top: 30px;
         text-align: center;
         color: #3A3A3A;
         font-size: 16px;
         }
         .thanks_text p span{
         font-weight: bold;
         color: #000000;
         }
         .thanks_bottom_info {
         width: 100%;
         border-top: 1px solid #d9d9d9;
         background-repeat: no-repeat;
         background-size: 100%;
         background-position: top;
         margin-top: 20px;
         padding-top: 20px;
         height: auto;
         }
         .thanks_bottom_info p {
         font-family: 'Arial MT';
         font-weight: bold;
         text-align: center;
         font-size: 16px;
         color: #000000;
         }
         .thanks_bottom_info p span {
         color: #33b00c;
         font-weight: 600;
         }
         .thanks_bottom_info h3 {
         font-family: 'Arial MT';
         font-weight: bold;
         font-size: 24px;
         display: flex;
         align-items: center;
         justify-content: center;
         margin-top: 10px;
         color: #3A3A3A;
         }
         .thanks_bottom_info h3 img {
         margin-right: 15px;
         height: 35px;
         }

         @media(max-width: 767px){
            #scroll__nav .logo_col{padding: 0px;}
         .thanks_page_wrapper {
         overflow: hidden;
         position: relative;
         width: 100%;
         }
         .thanks_text h1 {
         font-size: 50px;
         }
         .thanks_text h5{
         font-size: 20px;
         }
         .thanks_text p {
         width: 90%;
         margin: 0 auto;
         margin-top: 30px;
         font-size: 14px;
         line-height: 22px;
         }
         .thanks_bottom_info {
         background-repeat: no-repeat;
         background-size: 100% 100%;
         height: auto;
         }
         #hihghltleft ul li:nth-child(even) { 
         display: none;
         }
         #hihghltright ul li:nth-child(odd) { 
         display: none;
         }
         .btn-gold-pill-large{margin-top: 0px !important;}
         .hero-content-wrapper{width: auto !important;}
         .hero-form-container{text-align: left;}
         .hero-premium-section .hero-content-wrapper{flex-direction: column-reverse;}
             .hero-text-col, .hero-form-col {
        padding-top: 0;
        margin-top: 0 !important;
    }
    .hero-form-container{margin-top: 0 !important;}
    .hero-form-col {margin-bottom: 20px;}
    .hero-premium-section{padding-bottom: 0px;}
    .luxury-content-box{margin-bottom: 0px;}
    .luxury-section, .amenities-grid-section, .gallery, #contact, #consultants, #key-highlights {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .btn-gold-pill-large{
        padding: 10px 15px;
    }
    .form-label {
    color: #fff !important;
    font-size: 12px;
    margin: 0;
}
.highlights-grid-row{margin-bottom: 0;}
    }

  