/* === DESIGN SYSTEM === */
:root {
    /* Color Tokens */
    --cream: #FDFBF7;
    /* page background */
    --ivory: #F5F2ED;
    /* section alternate */
    --forest: #1B4332;
    /* primary forest green */
    --forest-light: #2D5A46;
    --deep-green: #1F3A2E;
    /* a more distinct 'proper' green for headings */
    --stone: #3A4D44;
    /* darker, more readable green-grey for body text */
    --glass: rgba(27, 67, 50, 0.05);
    --shadow: rgba(27, 67, 50, 0.1);
    --white: #FFFFFF;

    /* Typography Scale */
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;

    --container-max: 1400px;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

p {
    line-height: 1.8;
    margin-bottom: 20px;
}

body {
    background-color: var(--cream);
    color: var(--stone);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
    font-weight: 300;
}

h1,
h2,
h3,
h4 {
    color: var(--deep-green);
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 50px 0;
}

.alternate-bg {
    background-color: var(--ivory);
}

.dark-bg {
    background-color: var(--deep-green);
    color: var(--white);
}

.dark-bg h2 {
    color: var(--white);
}

.caption {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #2D6A4F !important;
    /* Force vibrant forest green */
    display: block;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title {
    font-size: 40px;
    margin-bottom: 24px;
}

.centered {
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-desc {
    font-size: 18px;
    opacity: 0.8;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

.btn--primary {
    background-color: var(--forest);
    color: var(--white);
}

.btn--primary:hover {
    background-color: var(--forest-light);
    transform: translateY(-2px);
}

.btn--secondary {
    border-color: var(--white);
    color: var(--white);
}

.btn--secondary:hover {
    background-color: var(--white);
    color: var(--deep-green);
}

.btn--outline {
    border-color: var(--forest);
    color: var(--forest);
}

.btn--outline:hover {
    background-color: var(--forest);
    color: var(--white);
}

.btn--nav {
    border-color: var(--forest);
    padding: 10px 24px;
    color: var(--forest);
}

.btn--nav:hover {
    background-color: var(--forest);
    color: var(--white);
}

.full-width {
    width: 100%;
}

.text-link {
    color: var(--forest);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
}

.text-link:hover {
    gap: 12px;
}

/* === 1. PAGE LOADER === */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--deep-green);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader__content {
    width: 300px;
    text-align: center;
}

.loader__logo {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 24px;
    opacity: 0;
}

.loader__line-container {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.loader__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--white);
}

.loader__counter {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: var(--white);
    font-size: 48px;
    font-family: var(--font-display);
}

/* === 2. TOP BAR === */
.top-bar {
    background-color: var(--deep-green);
    height: 50px;
    display: flex;
    align-items: center;
    color: var(--white);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.top-bar__left {
    display: flex;
    gap: 24px;
}

.top-bar__left span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
}

.top-bar__left i {
    width: 12px;
    color: var(--forest);
}

.top-bar__right {
    display: flex;
    gap: 16px;
}

.top-bar__right a {
    opacity: 0.7;
    transition: 0.3s;
}

.top-bar__right a:hover {
    opacity: 1;
    color: var(--forest);
}

/* === 3. NAVBAR === */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    padding: 15px 0;
    background: rgba(13, 27, 21, 0.15);
    /* Ultra-transparent glass */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.5s ease, backdrop-filter 0.5s ease, border 0.5s ease, padding 0.5s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.navbar__logo {
    display: flex;
    align-items: center;
}

.navbar__logo img {
    height: 60px;
    /* Increased as requested */
    width: auto;
    object-fit: contain;
    transition: 0.3s;
}

.navbar.scrolled .navbar__logo img {
    height: 50px;
    /* Slightly smaller on scroll */
}



.navbar__links {
    display: flex;
    gap: 40px;
}

.navbar__links a {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1f3a2e;
    position: relative;
    font-weight: 500;
}

.navbar.scrolled .navbar__links a {
    color: var(--deep-green);
}

.navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--forest);
    transition: 0.3s ease;
}

.navbar__links a i {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    transition: 0.3s;
}

/* Mega Menu */
.dropdown.mega {
    position: static;
    /* Required for full-width dropdown container reference */
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: max-content;
    background: var(--white);
    box-shadow: 0 20px 40px var(--shadow);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(27, 67, 50, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
}

.dropdown.mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu__container {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.mega-menu__item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width: 280px;
}

.mega-menu__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    filter: brightness(0.95);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.mega-menu__item span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--stone);
    font-weight: 500;
    transition: 0.3s;
}

.mega-menu__item:hover span {
    color: var(--forest);
}

.navbar__links a.active {
    color: var(--forest);
}

.navbar__links a.active::after {
    width: 100%;
}

/* === INNER PAGES === */
.inner-hero {
    height: 60vh;
    background-color: var(--deep-green);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 100px;
}

.inner-hero .section-title {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.2;
}

.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    z-index: 1100;
}

.navbar__hamburger span {
    width: 24px;
    height: 1px;
    background-color: var(--deep-green);
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* White hamburger only on transparent hero state (home page scrolled to top) */
.navbar:not(.scrolled) .navbar__hamburger span {
    background-color: var(--white);
}

.navbar.scrolled .navbar__hamburger span {
    background-color: var(--deep-green);
}

.navbar__hamburger.active span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
    background-color: var(--deep-green);
}

.navbar__hamburger.active span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
    background-color: var(--deep-green);
}

/* === MOBILE MENU === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, var(--cream) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: circle(0% at 100% 0%);
    transition: clip-path 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.mobile-menu::before {
    content: 'ASTRID';
    position: absolute;
    font-family: var(--font-display);
    font-size: 16vw;
    color: rgba(27, 67, 50, 0.035);
    letter-spacing: 0.25em;
    font-weight: 700;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.mobile-menu.active {
    clip-path: circle(150% at 100% 0%);
}

.mobile-menu__links {
    list-style: none;
    text-align: center;
    counter-reset: menu-counter;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mobile-menu__links>li {
    position: relative;
    counter-increment: menu-counter;
    overflow: hidden;
}

.mobile-menu__links>li>a {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--deep-green);
    display: block;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1), color 0.3s;
    letter-spacing: -0.01em;
}

.mobile-menu__links>li>a::before {
    content: "0" counter(menu-counter) " \\ ";
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--forest);
    opacity: 0.45;
    vertical-align: middle;
    margin-right: 12px;
}

/* Mobile submenu styles */
.mobile-submenu {
    list-style: none;
    padding: 12px 0 6px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.mobile-submenu li {
    overflow: hidden;
}

.mobile-submenu a {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--forest) !important;
    opacity: 0.75;
    display: inline-block;
    transition: color 0.3s, transform 0.3s;
    transform: translateY(100%);
}

.mobile-submenu a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--forest);
    border-radius: 50%;
    margin-right: 10px;
    vertical-align: middle;
    opacity: 0.5;
}

.mobile-submenu a:hover {
    color: var(--deep-green) !important;
    opacity: 1;
}

.mobile-menu.active .mobile-menu__links a {
    transform: translateY(0);
}

/* === 3. HERO SECTION === */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__bg {
    width: 100%;
    height: 120%;
    /* For parallax */
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 27, 21, 0.4) 0%, rgba(13, 27, 21, 0.7) 100%);
    z-index: 0;
}

.hero__container {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero__eyebrow {
    color: var(--forest);
    margin-bottom: 20px;
    opacity: 0;
}

.hero__title {
    font-size: 96px;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero__title .reveal-line {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}

.hero__title .reveal-word {
    display: inline-block;
    transform: translateY(110%);
}

.hero__subtext {
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

.hero__btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background-color: rgba(201, 168, 76, 0.3);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--forest);
    animation: scrollLine 2s infinite cubic-bezier(0.7, 0, 0.3, 1);
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* === 4. BRAND STRIP === */
.brand-strip {
    background-color: var(--deep-green);
    padding: 60px 0;
}

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

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.brand-strip .divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* === 5. ABOUT SECTION === */
.about__container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about__image-wrapper {
    flex: 0 0 55%;
    position: relative;
    overflow: hidden;
}

.about__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    filter: contrast(1.05) brightness(1.02);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 2px solid var(--forest);
    border-right: 2px solid var(--forest);
    z-index: -1;
}

.about__content {
    flex: 1;
}

.about__text p {
    margin-bottom: 30px;
    line-height: 1.9;
}

.about__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 24px;
    color: var(--forest);
    margin: 40px 0;
    line-height: 1.4;
}

/* === 6. VILLA SHOWCASE === */
.villa-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.filter-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    color: var(--stone);
    position: relative;
    padding-bottom: 8px;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--forest);
    transition: 0.3s ease;
}

.filter-btn.active {
    color: var(--forest);
}

.filter-btn.active::after {
    width: 100%;
}

.villas.section-padding {
    padding-bottom: 120px;
}

.villa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.villa-card {
    background-color: var(--white);
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.villa-card:hover {
    transform: translateY(-10px);
}

.villa-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.villa-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.villa-card:hover .villa-card__img img {
    transform: scale(1.1);
    filter: brightness(1);
}

.villa-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--deep-green);
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 2px;
    z-index: 1;
    text-transform: uppercase;
}

.villa-card__content {
    padding: 30px;
}

.villa-card__name {
    font-size: 24px;
    margin-bottom: 8px;
}

.villa-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    margin-bottom: 20px;
}

.villa-card__location i {
    width: 14px;
    color: var(--forest);
}

.villa-card__amenities {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.villa-card__amenities span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.villa-card__amenities i {
    width: 14px;
    color: var(--forest);
}

.villa-card__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.villa-card__price {
    font-family: var(--font-display);
    color: var(--forest);
    font-size: 18px;
}

.villa-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
}

.star-filled {
    color: var(--forest);
    fill: var(--forest);
    width: 14px;
}

/* === 7. AMENITIES === */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns for better spacing */
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

.amenity-card {
    opacity: 1 !important;
    /* Force visibility to fix cutting/fading issues */
    visibility: visible !important;
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
    border: 1px solid transparent;
}

.amenity-card:hover {
    border-color: var(--forest);
    transform: translateY(-5px);
}

.amenity-icon {
    width: 40px;
    height: 40px;
    color: var(--forest);
    margin-bottom: 24px;
    transition: 0.4s ease;
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1);
}

.amenity-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.amenity-card p {
    font-size: 14px;
    color: var(--stone);
}

/* === 8. EXPERIENCE === */
.experience-row {
    display: flex;
    height: 600px;
}

.experience-row.reverse {
    flex-direction: row-reverse;
}

.experience-img {
    flex: 0 0 50%;
    overflow: hidden;
}

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

.experience-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background-color: var(--cream);
}

.experience-row.reverse .experience-content {
    background-color: var(--ivory);
}

.experience-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.experience-content p {
    margin-bottom: 30px;
    max-width: 400px;
}

/* === 9. GALLERY === */
.gallery-masonry {
    columns: 3;
    column-gap: 20px;
}

.gallery-item {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    /* Added for a cleaner look */
}

.gallery-item img {
    width: 100%;
    transition: 0.6s ease;
}

.gallery-item::after {
    content: 'VIEW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--forest);
    color: var(--white);
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.2em;
    opacity: 0;
    transition: 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__content {
    max-width: 85%;
    max-height: 85%;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: 0.4s ease;
}

.lightbox.active .lightbox__content {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: var(--white);
    cursor: pointer;
}

.lightbox__close svg {
    width: 40px;
    height: 40px;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    cursor: pointer;
    padding: 20px;
    width: 60px;
    height: 60px;
}

.lightbox__nav.prev {
    left: 40px;
}

.lightbox__nav.next {
    right: 40px;
}

/* === 10. TESTIMONIALS === */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide {
    display: none;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 60px;
    position: relative;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.8s ease;
}

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

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

.quote-icon {
    width: 60px;
    height: 60px;
    color: #fffbff;
    margin-bottom: 30px;
    opacity: 0.5;
}

.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-family: var(--font-body);
    color: #fffbff;
    font-size: 16px;
    margin-bottom: 4px;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    width: 14px;
    color: var(--forest);
    fill: var(--forest);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.dot-indicator.active {
    background-color: var(--forest);
    width: 24px;
    border-radius: 4px;
}

/* === 11. FAQ === */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.accordion-header {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
}

.accordion-header i {
    width: 20px;
    color: var(--forest);
    transition: 0.4s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-body {
    max-height: 200px;
}

.accordion-body p {
    padding-bottom: 24px;
    color: var(--stone);
}

/* === 12. BOOKING FORM === */
.booking {
    position: relative;
    overflow: hidden;
    padding: 160px 0;
}

.booking__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.booking__bg .overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 20, 10, 0.72);
}

.booking .container {
    position: relative;
    z-index: 1;
}

.booking-form-panel {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(10, 30, 15, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 6px;
    padding: 60px 56px;
    text-align: center;
}

.white {
    color: #fff;
}

.white-text {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

/* ---- grid ---- */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    text-align: left;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-group[style*="grid-column"] {
        grid-column: span 1 !important;
    }
}

/* ---- single field wrapper ---- */
.form-group {
    position: relative;
    padding-top: 22px;
    /* room for the floating label */
    margin-bottom: 20px;
}

.form-group input,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent !important;
    background-color: transparent !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 0;
    color: #ffffff !important;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
    display: block;
    -webkit-appearance: none;
    appearance: none;
}

/* Autofill style override to maintain white text and dark green background */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #0a1e0f inset !important;
    -webkit-text-fill-color: #ffffff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    cursor: pointer;
}

.form-group select option {
    background: #0d1f14;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

/* focus line */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #2D6A4F;
}

/* ---- floating label ---- */
.form-group label {
    position: absolute;
    top: 28px;
    /* sits on the baseline */
    left: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    transition: top 0.25s, font-size 0.25s, color 0.25s;
    line-height: 1;
}

/* label floats up when field active / filled */
.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: 4px;
    font-size: 11px;
    color: #4CAF83;
}

/* select & date labels are ALWAYS floated (they don't use placeholder) */
.form-group select~label,
.form-group input[type="date"]~label {
    top: 4px;
    font-size: 11px;
    color: #4CAF83;
}

/* hide number spinners */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* success state */
.form-success.hidden {
    display: none;
}

.form-success {
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

.success-icon {
    width: 56px;
    height: 56px;
    color: #2D6A4F;
    margin-bottom: 16px;
}

/* --- Added Booking Gallery --- */
.booking-gallery {
    margin-top: 100px;
}

.booking-gallery .section-header {
    margin-bottom: 48px;
}

.booking-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.booking-gallery-item {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.booking-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.booking-gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .booking-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .booking-gallery-grid {
        grid-template-columns: 1fr;
    }

    .booking-gallery {
        margin-top: 60px;
    }
}

/* === 13. CONTACT === */

.contact__container {
    display: flex;
    gap: 80px;
}

.contact__info {
    flex: 1;
}

.contact-items {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item i {
    width: 24px;
    height: 24px;
    color: var(--forest);
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.contact__image {
    flex: 0 0 40%;
}

.contact__image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.whatsapp-fab {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-color: var(--forest);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 20px var(--shadow);
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* === 14. FOOTER === */
.footer {
    background-color: #111110;
    padding: 100px 0 40px;
    color: var(--white);
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 24px;
}

.footer__tagline {
    opacity: 0.6;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a i {
    width: 20px;
    opacity: 0.6;
    transition: 0.3s;
}

.social-links a:hover i {
    opacity: 1;
    color: var(--forest);
}

.footer__col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.footer__col ul li {
    margin-bottom: 12px;
}

.footer__col ul a {
    opacity: 0.6;
    font-size: 14px;
}

.footer__col ul a:hover {
    opacity: 1;
    color: var(--forest);
}

.footer__col p {
    opacity: 0.6;
    font-size: 14px;
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.newsletter-form input {
    background: none;
    border: none;
    color: var(--white);
    padding: 8px 0;
    width: 100%;
    outline: none;
}

.newsletter-form button {
    background: none;
    border: none;
    color: var(--forest);
    cursor: pointer;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.4;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 72px;
    }

    .about__container {
        flex-direction: column;
        gap: 40px;
    }

    .about__image-wrapper {
        width: 100%;
    }

    .villa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .navbar__links,
    .btn--nav {
        display: none !important;
    }

    .navbar__hamburger {
        display: flex !important;
    }

    .top-bar {
        display: none !important;
    }

    .navbar {
        top: 0 !important;
        padding: 12px 0 !important;
        background: rgba(250, 247, 242, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(27, 67, 50, 0.1) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    }

    .navbar__hamburger span {
        background-color: var(--deep-green) !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px !important;
    }

    .hero__title {
        font-size: 56px;
    }

    .hero__btns {
        flex-direction: column;
    }

    .section-padding {
        padding: 10px 0;
    }

    .experience-row {
        flex-direction: column !important;
        height: auto;
    }

    .experience-img {
        height: 350px;
        width: 100%;
    }

    .experience-content {
        padding: 40px 24px;
        width: 100%;
    }

    .gallery-masonry {
        columns: 2;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Reset span-2 on mobile */
    .form-group[style*="grid-column"] {
        grid-column: span 1 !important;
    }

    .booking-form-panel {
        padding: 40px 24px;
    }

    .booking {
        padding: 80px 0;
    }

    .contact__container {
        flex-direction: column;
    }

    /* Keep labels and values side-by-side on mobile contact page */
    .contact-grid {
        grid-template-columns: auto auto !important;
        justify-content: center !important;
        gap: 20px 40px !important;
        text-align: left !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
        padding-top: 30px !important;
    }

    .contact-grid__labels p,
    .contact-grid__values p {
        margin-bottom: 15px !important;
        font-size: 15px !important;
    }

    /* Stack info tables (booking & property detail tables) on mobile for clean scrolling */
    .info-table td {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
        padding: 8px 0 !important;
    }

    .info-table td:first-child {
        padding-top: 15px !important;
        width: 100% !important;
    }

    .info-table td:last-child {
        padding-bottom: 15px !important;
        text-align: left !important;
    }

    .section-padding table,
    .section-padding tbody,
    .section-padding tr,
    .section-padding td {
        display: block !important;
        width: 100% !important;
        text-align: left !important;
    }

    .section-padding td {
        padding: 8px 12px !important;
        border-bottom: 1px solid rgba(184, 149, 42, 0.08) !important;
    }

    .section-padding td:first-child {
        padding-top: 16px !important;
        font-weight: bold !important;
        border-bottom: none !important;
    }

    .section-padding td:last-child {
        padding-bottom: 16px !important;
        color: var(--forest) !important;
    }

    .brand-strip__container {
        flex-direction: column;
        gap: 40px;
    }

    .brand-strip .divider {
        width: 40px;
        height: 1px;
    }

    .contact-items {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px !important;
    }

    .hero__title {
        font-size: 40px;
    }

    .navbar__logo img {
        height: 48px !important;
    }

    .experience-img {
        height: 260px !important;
    }

    .contact-items {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .villa-grid {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        columns: 1;
    }

    .footer__container {
        grid-template-columns: 1fr;
    }

    .booking-form-panel {
        padding: 40px 20px;
    }
}

/* === 15. BOOKING PAGE SPECIFIC === */
.about-booking {
    padding: 120px 0;
}

.about-booking__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-booking__text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-top: 20px;
}

.info-table-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 16px;
}

.info-table td:first-child {
    font-weight: 600;
    color: #121214;
    width: 40%;
}

.info-table td:last-child {
    color: #c9a84c;
    text-align: right;
}

.info-table tr:last-child td {
    border-bottom: none;
}

.small-note {
    font-size: 14px;
    color: #888;
    margin-top: 15px;
    font-style: italic;
    text-align: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.image-card__img {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.image-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-card:hover .image-card__img img {
    transform: scale(1.1);
}

.image-card__label {
    display: block;
    padding: 20px;
    background: #fff;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #121214;
}

@media (max-width: 1024px) {
    .about-booking__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }

    .info-table-wrapper {
        padding: 25px;
    }
}

/* === 16. CONTACT PAGE SPECIFIC === */
.contact-details__intro {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
    margin: 0 auto;
    gap: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 40px;
}

.contact-grid__labels p {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #121214;
    margin-bottom: 30px;
}

.contact-grid__values p {
    font-size: 20px;
    color: #c9a84c;
    margin-bottom: 30px;
    font-weight: 500;
}

.contact-grid__values a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.contact-grid__values a:hover {
    border-bottom: 1px solid #c9a84c;
}

.map-section {
    line-height: 0;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }

    .contact-grid__labels p {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .contact-grid__values p {
        margin-bottom: 30px;
        font-size: 18px;
    }
}

/* === 17. GLOBAL ENQUIRY FORM === */
.enquiry {
    background-color: var(--ivory);
}

.enquiry__container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.enquiry h2 {
    margin-bottom: 40px;
}

.enquiry .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.enquiry .form-group input,
.enquiry .form-group textarea {
    width: 100%;
    padding: 18px;
    background: var(--white);
    border: 1px solid rgba(27, 67, 50, 0.1);
    font-family: var(--font-body);
    outline: none;
    transition: 0.3s ease;
    font-size: 14px;
}

.enquiry .form-group input:focus,
.enquiry .form-group textarea:focus {
    border-color: var(--forest);
    box-shadow: 0 5px 15px rgba(27, 67, 50, 0.05);
}

.enquiry .btn {
    width: 100%;
    border: none;
    font-size: 13px;
}

/* === ADDITIONAL GLOBAL RESPONSIVE FIXES === */
@media (max-width: 991px) {
    .contact__container {
        flex-direction: column !important;
        gap: 40px !important;
    }
    .contact__image {
        width: 100% !important;
    }
    .contact__image img {
        height: 350px !important;
        width: 100% !important;
    }
}

@media (max-width: 576px) {
    .villa-grid {
        grid-template-columns: 1fr !important;
    }
    .container {
        padding: 0 16px !important;
    }
    .section-title {
        font-size: 32px !important;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        justify-content: center !important;
        gap: 15px !important;
    }
    .contact-grid__labels p,
    .contact-grid__values p {
        margin-bottom: 5px !important;
    }
    .navbar__logo img {
        height: 40px !important;
    }
    .whatsapp-fab {
        width: 50px !important;
        height: 50px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
}

/* Clip section-level decoration overflows to prevent layout breaking scrollbars */
.about, .contact, .villas, .experience, .enquiry {
    overflow: hidden !important;
}

/* === MOBILE MENU TYPOGRAPHY & NAVBAR VISIBILITY FIXES === */
.navbar {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1100 !important;
}

/* Center top bar elements on all pages */
.top-bar__container {
    justify-content: center !important;
}
.top-bar__left {
    justify-content: center !important;
    width: 100% !important;
    gap: 24px !important;
}

@media (max-width: 991px) {
    /* Thicker, centered hamburger toggle bars */
    .navbar__hamburger {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        width: 36px !important;
        height: 36px !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }
    .navbar__hamburger span {
        height: 2.5px !important; /* Thicker and highly visible lines */
        width: 24px !important;
        background-color: var(--deep-green) !important;
        display: block !important;
        border-radius: 2px !important;
    }
    .navbar__hamburger.active span {
        background-color: var(--deep-green) !important;
    }
    
    /* Left align mobile menu options line-by-line (perfectly aligned) */
    .mobile-menu {
        align-items: center !important;
        justify-content: flex-start !important;
    }
    .mobile-menu__links {
        text-align: left !important;
        align-items: flex-start !important;
        width: 100% !important;
        padding-left: 40px !important; /* Alignment anchor */
        padding-right: 40px !important;
        max-width: 450px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 32px !important;
    }
    .mobile-menu__links > li {
        width: 100% !important;
        text-align: left !important;
    }
    .mobile-menu__links > li > a {
        display: inline-block !important;
        text-align: left !important;
        font-size: 32px !important; /* Balanced main font size */
        font-family: var(--font-display) !important;
    }
    
    /* Align submenu items cleanly below the parent with elegant prefix dash */
    .mobile-submenu {
        align-items: flex-start !important;
        padding: 10px 0 0 24px !important; /* Nested indentation */
        gap: 12px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .mobile-submenu a {
        font-family: var(--font-display) !important;
        font-size: 20px !important; /* Balanced sub-link size */
        text-transform: none !important; /* Prevent harsh all-caps */
        letter-spacing: normal !important;
        opacity: 0.85 !important;
        color: var(--stone) !important;
        transform: translateY(0) !important; /* Ensure visibility on load */
    }
    
    .mobile-submenu a::before {
        content: "— " !important;
        font-family: var(--font-body) !important;
        font-size: 16px !important;
        border-radius: 0 !important;
        width: auto !important;
        height: auto !important;
        background-color: transparent !important;
        margin-right: 6px !important;
        display: inline !important;
    }
}

/* === PROPERTY LAYOUT CONTAINER === */
.property-layout-container {
    background: #ffffff;
    border: 1px solid var(--border-color, #E2E2E2);
    border-radius: 16px;
    padding: 24px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.property-layout-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.property-layout-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-color, #1a1a1a);
    margin: 0;
    font-family: var(--font-body);
}
.property-layout-subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
    font-family: var(--font-body);
}
.property-layout-subheading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 16px;
}
.property-layout-spaces-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color, #1a1a1a);
    margin: 0;
    font-family: var(--font-body);
}
.property-layout-controls {
    display: flex;
    gap: 8px;
}
.btn-layout-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color, #E2E2E2);
    background-color: #ffffff !important;
    color: var(--text-color, #1a1a1a) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    padding: 0;
}
.btn-layout-nav:hover {
    background-color: var(--primary, #1F3D36) !important;
    color: #ffffff !important;
    border-color: var(--primary, #1F3D36) !important;
}
.property-layout-slider-container {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
    padding: 4px;
}
.property-layout-slider-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}
.property-layout-slider {
    display: flex;
    gap: 16px;
    width: max-content;
}
.property-layout-card {
    width: 260px;
    background-color: #ffffff;
    border: 1px solid var(--border-color, #E2E2E2);
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.property-layout-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.property-layout-card__img-container {
    position: relative;
    height: 160px;
    overflow: hidden;
}
.property-layout-card__img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.property-layout-card:hover .property-layout-card__img-container img {
    transform: scale(1.04);
}
.property-layout-card__img-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    color: #ffffff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.property-layout-card__body {
    padding: 16px;
    text-align: left;
}
.property-layout-card__title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color, #1a1a1a);
    font-family: var(--font-body);
}
.property-layout-card__location {
    font-size: 11px;
    color: #888;
    font-weight: 400;
}
.property-layout-card__details {
    list-style: none;
    padding: 0;
    margin: 0;
}
.property-layout-card__details li {
    font-size: 12px;
    color: #555;
    position: relative;
    padding-left: 12px;
    margin-bottom: 4px;
    line-height: 1.4;
}
.property-layout-card__details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary, #D4AF37);
    font-size: 14px;
    line-height: 1;
    top: -1px;
}
html {
    scroll-behavior: smooth;
}

/* === PROPERTY INFO TABLE === */
.prop-info-table {
    margin-top: 20px;
    margin-bottom: 8px;
    border: 1px solid var(--border-color, #E2E2E2);
    border-radius: 10px;
    overflow: hidden;
}
.prop-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color, #E2E2E2);
    gap: 12px;
}
.prop-info-row:last-child {
    border-bottom: none;
}
.prop-info-row:nth-child(even) {
    background-color: #fafaf8;
}
.prop-info-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: var(--font-body);
    font-weight: 500;
    flex: 1;
}
.prop-info-value {
    font-size: 14px;
    color: #222;
    font-weight: 600;
    font-family: var(--font-body);
    text-align: right;
    flex: 1;
}
@media (max-width: 480px) {
    .prop-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 14px;
    }
    .prop-info-value {
        text-align: left;
        font-size: 13px;
    }
    .prop-info-label {
        font-size: 11px;
    }
}