/* =====================================
   THE HAVEN COLLECTION
   Aman-Inspired Quiet Luxury
   ===================================== */


/* ===================
   RESET
   =================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.85;
    background: var(--bg-main);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.02em;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}


/* ===================
   FONTS
   =================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');


/* ===================
   CSS VARIABLES
   =================== */

:root {
    /* Refined luxury palette */
    --bg-main: #fdfcfa;
    --bg-alt: #f8f6f3;
    --bg-card: #ffffff;
    --bg-dark: #1c1a17;

    /* Enhanced text colors for readability */
    --text-main: #1c1a17;
    --text-secondary: #3d3a35;
    --text-muted: #6b665e;
    --text-light: #faf9f7;

    /* Refined warm accent */
    --accent: #9a8b7a;
    --accent-light: #c9baa8;
    --accent-gold: #b8a88a;

    /* Borders */
    --border: rgba(156, 139, 122, 0.25);
    --border-dark: rgba(156, 139, 122, 0.5);

    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-2xl: 12rem;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
}


/* ===================
   TYPOGRAPHY
   =================== */

h1, h2, h3, h4, h5, .serif-title {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--text-main);
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: 0.04em;
    font-weight: 400;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    font-weight: 400;
}

h3 {
    font-size: 1.5rem;
    font-weight: 400;
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.85;
    font-weight: 400;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    text-align: center;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 400;
}

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto var(--space-xl);
    color: var(--text-muted);
    font-weight: 400;
}


/* ===================
   LAYOUT
   =================== */

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


/* ===================
   HEADER & NAVIGATION
   =================== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.5s ease;
}

.header.scrolled {
    background: rgba(253, 252, 250, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.8rem var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
    transition: padding 0.5s ease;
}

.header.scrolled .nav {
    padding: 1.2rem var(--space-lg);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.nav-left a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
}

.header.scrolled .nav-left a {
    color: var(--text-main);
    text-shadow: none;
}

.nav-left a:hover {
    opacity: 0.7;
}

.header.scrolled .nav-left a:hover {
    color: var(--accent);
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-image {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.header.scrolled .logo-image {
    height: 45px;
    filter: brightness(0) invert(0);
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3.5rem;
}

.nav-right a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    transition: all 0.4s ease;
}

.header.scrolled .nav-right a {
    color: var(--text-main);
    text-shadow: none;
}

.nav-right a:hover {
    opacity: 0.7;
}

.header.scrolled .nav-right a:hover {
    color: var(--accent);
    opacity: 1;
}

.nav-reserve-btn {
    background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(10px);
    padding: 0.7rem 1.8rem !important;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease !important;
}

.nav-reserve-btn:hover {
    background: white !important;
    color: var(--bg-dark) !important;
    opacity: 1 !important;
}

.header.scrolled .nav-reserve-btn {
    background: var(--bg-dark) !important;
    color: white !important;
    border-color: var(--bg-dark);
}

.header.scrolled .nav-reserve-btn:hover {
    background: var(--accent) !important;
    border-color: var(--accent);
}

.reserve-btn {
    background: var(--bg-dark);
    color: var(--text-light) !important;
    padding: 0.8rem 1.8rem;
    font-size: 0.7rem !important;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.reserve-btn:hover {
    background: #3d3530;
    color: var(--text-light) !important;
}

/* Hide old nav-links */
.nav-links {
    display: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3.5rem;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.4s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}


/* ===================
   HERO
   =================== */

.hero {
    position: relative;
    margin-top: 62px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        linear-gradient(180deg, rgba(180, 160, 140, 0.5) 0%, rgba(160, 140, 120, 0.55) 100%),
        url("../images/hero.jpg") center / cover no-repeat;
    overflow: hidden;
}

.hero-content {
    position: relative;
    max-width: 700px;
    padding: 0 var(--space-md);
}

.hero-content h1 {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-sm);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 500;
    color: #1a1715;
}

.hero-content p {
    font-size: 0.95rem;
    color: #3d3530;
    max-width: 450px;
    margin: 0 auto var(--space-md);
    line-height: 1.9;
}

/* Page heroes */
.results-hero,
.property-hero,
.concierge-hero,
.confirmation-hero {
    margin-top: 62px;
    padding: var(--space-xl) 0 var(--space-lg);
    text-align: center;
    background: var(--bg-alt);
}

.results-hero h1,
.property-hero h1,
.concierge-hero h1,
.confirmation-hero h1 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.concierge-hero p,
.confirmation-hero p {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: var(--space-xs) auto var(--space-md);
}

.search-dates {
    font-size: 0.8rem;
    margin-top: var(--space-xs);
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Availability Results */
.availability-results {
    padding: var(--space-lg) 0 var(--space-2xl);
}

.results-summary {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.results-summary p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--space-md);
}

.result-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.result-card:hover {
    border-color: var(--accent);
}

.result-image {
    width: 200px;
    height: 100%;
    min-height: 200px;
    overflow: hidden;
}

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

.result-info {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
}

.result-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.result-location {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.result-features {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.result-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.result-price-breakdown {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.result-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: auto;
}

.result-actions .btn-secondary,
.result-actions .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.65rem;
}

.no-results {
    text-align: center;
    padding: var(--space-xl) 0;
}

.no-results h2 {
    margin-bottom: var(--space-sm);
}

.no-results p {
    color: var(--text-muted);
    margin-bottom: var(--space-xs);
}

.no-results a:not(.cta-button) {
    color: var(--accent);
}

.no-results .cta-button {
    margin-top: var(--space-md);
}

/* Single Property Result */
.single-result {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.result-status {
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.result-status .status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.single-result.available .status-icon {
    background: #e8f5e9;
    color: #2e7d32;
}

.single-result.not-available .status-icon {
    background: #ffebee;
    color: #c62828;
}

.result-status h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
}

.result-status p {
    color: var(--text-muted);
}

.result-card.single {
    grid-template-columns: 250px 1fr;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.alternative-options {
    background: var(--bg-alt);
    padding: var(--space-lg);
    margin-top: var(--space-md);
}

.alternative-options p {
    margin-bottom: var(--space-md);
    color: var(--text-muted);
}

.alternative-options .cta-button {
    margin-right: var(--space-sm);
}

.alternative-options .btn-secondary {
    margin-top: var(--space-sm);
}

@media (max-width: 768px) {
    .result-card.single {
        grid-template-columns: 1fr;
    }
    
    .alternative-options .cta-button,
    .alternative-options .btn-secondary {
        display: block;
        margin: var(--space-sm) 0;
    }
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-card {
        grid-template-columns: 1fr;
    }
    
    .result-image {
        width: 100%;
        height: 200px;
    }
}


/* ===================
   BUTTONS
   =================== */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.cta-button:hover {
    background: #3a3632;
    letter-spacing: 0.22em;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border-dark);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}


/* ===================
   CARDS
   =================== */

.villa-card,
.property-card,
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.5s ease;
}

.villa-card:hover,
.property-card:hover,
.service-card:hover {
    border-color: var(--accent-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}


/* ===================
   AVAILABILITY CHECKER
   =================== */

.availability-section,
.availability-checker {
    padding: var(--space-lg) var(--space-lg);
    background: var(--bg-alt);
    margin-top: var(--space-md);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50% + var(--space-lg));
    padding-right: calc(50vw - 50% + var(--space-lg));
}

.availability-section h2,
.availability-checker h2 {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
}

.availability-section .booking-form {
    max-width: 100%;
}

.availability-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.availability-section .cta-button {
    width: 100%;
    justify-content: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
    .form-row,
    .availability-section .form-row {
        grid-template-columns: 1fr;
    }
}


/* ===================
   VILLAS SECTION
   =================== */

.villas-section {
    padding: var(--space-lg) 0 var(--space-xl);
    background: var(--bg-main);
}

.villas-section .section-title,
.villas-section h2 {
    margin-bottom: var(--space-xs);
}

.villas-section .section-subtitle {
    margin-bottom: var(--space-lg);
}

.villas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.villa-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #e8e2da, #d9d0c4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.villa-card:hover .villa-image img {
    transform: scale(1.03);
}

/* Status badge - hidden by default, add .is-booked to villa-card to show */
.villa-status,
.property-status {
    display: none;
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 0.5rem 1.2rem;
    background: var(--bg-dark);
    color: var(--text-light);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
}

.villa-card.is-booked .villa-status,
.property-card.is-booked .property-status {
    display: block;
}

.villa-info {
    padding: var(--space-md) var(--space-md) calc(var(--space-md) + 0.5rem);
}

.villa-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.villa-location {
    font-size: 0.7rem;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.villa-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.villa-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: var(--space-md);
    color: var(--text-main);
}

.villa-actions {
    display: flex;
    gap: var(--space-sm);
}

.villa-actions .cta-button,
.villa-actions .btn-secondary {
    padding: 0.9rem 1.8rem;
    font-size: 0.65rem;
}


/* ===================
   AVAILABILITY RESULTS
   =================== */

.availability-results {
    padding: var(--space-lg) 0 var(--space-xl);
    background: var(--bg-main);
}

.results-summary {
    text-align: center;
    margin-bottom: var(--space-md);
}

.results-summary h2 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.6rem;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.property-card {
    display: flex;
    flex-direction: column;
}

.property-image {
    aspect-ratio: 4/3;
    position: relative;
    background: linear-gradient(135deg, #e8e2da, #d9d0c4);
    overflow: hidden;
}

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

.property-card:hover .property-image img {
    transform: scale(1.03);
}

.property-info {
    padding: var(--space-md);
}

.property-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
}

.property-location {
    font-size: 0.7rem;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.property-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: var(--space-md);
}

.property-actions {
    display: flex;
    gap: var(--space-sm);
}

.property-actions .cta-button,
.property-actions .btn-secondary {
    padding: 0.9rem 1.8rem;
    font-size: 0.65rem;
}

.no-results {
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: var(--space-xl) var(--space-lg);
    margin: 0 auto;
    text-align: center;
}

.no-results h2 {
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* ===================
   PROPERTY DETAIL
   =================== */

.property-hero .property-location {
    font-size: 0.8rem;
    margin-top: var(--space-sm);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.property-details {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-main);
}

.property-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    align-items: start;
}

.property-gallery .main-image {
    overflow: hidden;
    background: linear-gradient(135deg, #e8e2da, #d9d0c4);
}

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

.property-description {
    max-width: 800px;
}

.property-description h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.property-description .description-main,
.property-description .description-secondary {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-main);
    margin-bottom: var(--space-md);
}

/* Amenities - With Centered Dots Between */
.property-amenities {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.property-amenities h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.amenities-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.amenities-inline span {
    font-size: 0.9rem;
    color: var(--text-main);
    padding: 0.4rem 0;
}

.amenities-inline span:not(:last-child)::after {
    content: "\00b7";
    margin: 0 1rem;
    color: var(--accent);
}

/* Reviews */
.property-reviews {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.property-reviews h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.review-item {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.review-rating {
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.review-author {
    font-size: 0.85rem;
    font-weight: 500;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
}

.no-reviews {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* Review Form - Clean */
.review-form-section {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

.review-form-section h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    text-align: center;
}

.review-form {
    max-width: 500px;
    margin: 0 auto;
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.review-form .form-group {
    margin-bottom: var(--space-md);
}

.review-form label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    background: var(--bg-main);
    font-family: inherit;
    font-size: 0.9rem;
}

.review-form textarea {
    resize: vertical;
    min-height: 100px;
}

.review-form .cta-button {
    width: 100%;
}

.rating-select {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}

.rating-select input {
    display: none;
}

.rating-select label {
    font-size: 1.5rem;
    color: var(--border);
    cursor: pointer;
    transition: color 0.2s ease;
    margin-bottom: 0;
    text-transform: none;
    letter-spacing: 0;
}

.rating-select label:hover,
.rating-select label:hover ~ label,
.rating-select input:checked ~ label {
    color: var(--accent);
}

/* Distances Below Map */
.distances-below-map {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.distances-below-map .distance-item {
    text-align: center;
}

.distances-below-map .distance-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.distances-below-map .distance-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

/* Hidden Reviews */
.hidden-review {
    display: none;
}

.show-more-reviews {
    background: transparent;
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: var(--space-md);
}

.show-more-reviews:hover {
    background: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}

/* Min nights notice - refined */
.min-nights-notice {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-sm);
}

.amenities-grid {
    margin-top: var(--space-lg);
}

.amenities-grid h3 {
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem var(--space-md);
}

.amenity-item {
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* ===================
   AMAN-STYLE HOME PAGE
   =================== */

/* Home Hero */
.home-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.home-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.home-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.4) 0%, 
        rgba(0,0,0,0.25) 40%,
        rgba(0,0,0,0.5) 100%);
}

.home-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 2rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.home-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5), 0 6px 40px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hero-cta {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    border: 1px solid rgba(255,255,255,0.6);
    color: white;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    transition: all 0.4s ease;
}

.hero-cta:hover {
    background: white;
    color: var(--bg-dark);
}

a.hero-scroll-indicator {
    text-decoration: none;
    cursor: pointer;
}

a.hero-scroll-indicator:hover span {
    opacity: 0.7;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 4rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: block;
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Home Intro */
.home-intro {
    padding: 6rem 2rem;
    background: var(--bg-alt);
    position: relative;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3.5rem 4rem;
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(156, 139, 122, 0.12);
}

.intro-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.9;
    color: var(--text-main);
    font-weight: 400;
}

/* Destinations */
.home-destinations {
    padding: 6rem 2rem 8rem;
    background: var(--bg-main);
}

.destinations-header {
    text-align: center;
    margin-bottom: 4rem;
}

.destinations-header h2 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

.header-line {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.destination-card {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.destination-image {
    position: relative;
    height: 550px;
    overflow: hidden;
}

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

.destination-card:hover .destination-image img {
    transform: scale(1.03);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.2) 30%,
        rgba(0,0,0,0.7) 70%,
        rgba(0,0,0,0.9) 100%);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: white;
    z-index: 2;
}

.destination-location {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
}

.destination-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: #ffffff;
}

.destination-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.75rem;
}

.destination-details span {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
}

.destination-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}

.destination-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.destination-cta .cta-arrow {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.destination-card:hover .destination-cta {
    opacity: 1;
    transform: translateY(0);
}

.destination-card:hover .destination-cta .cta-arrow {
    transform: translateX(5px);
}

/* Home Booking */
.home-booking {
    padding: 7rem 2rem;
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
}

.home-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.booking-text {
    margin-bottom: 4rem;
}

.booking-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.04em;
    color: white;
    font-style: italic;
}

.booking-text p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.booking-form-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.booking-fields {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.booking-field {
    text-align: left;
    min-width: 220px;
    flex: 1;
}

.booking-field label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-light);
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 1.2rem 1.3rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.04em;
    font-weight: 400;
    transition: all 0.3s ease;
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--accent-light);
    background: rgba(255,255,255,0.06);
}

.booking-field select option {
    background: var(--bg-dark);
    color: white;
}

.booking-field input::placeholder {
    color: rgba(255,255,255,0.4);
}

.booking-submit {
    background: var(--accent);
    color: white;
    border: none;
    padding: 1.4rem 4.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    cursor: pointer;
    transition: all 0.4s ease;
}

.booking-submit:hover {
    background: var(--accent-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.booking-min-stay {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

/* Experience Section */
.home-experience {
    padding: 7rem 2rem;
    background: var(--bg-alt);
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
}

.home-experience h2 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 500;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.experience-item {
    text-align: center;
}

.experience-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.experience-item h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1.2rem;
    font-weight: 500;
    color: var(--text-main);
}

.experience-item p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-muted);
    font-weight: 400;
}

/* Responsive Home */
@media (max-width: 768px) {
    .home-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .intro-text {
        font-size: 1.3rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-image {
        height: 400px;
    }
    
    .booking-fields {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    
    .booking-field {
        min-width: 100%;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ===================
   AMAN-STYLE PROPERTY PAGE
   =================== */

/* Hero - Full Screen */
.aman-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.25) 0%, 
        rgba(0,0,0,0.1) 40%,
        rgba(0,0,0,0.1) 60%,
        rgba(0,0,0,0.35) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    padding: 2rem;
}

.hero-location {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9), 0 4px 30px rgba(0,0,0,0.6);
}

.hero-title,
.aman-hero .hero-title,
.aman-hero h1.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9), 0 4px 30px rgba(0,0,0,0.6), 0 8px 50px rgba(0,0,0,0.4);
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 0;
}

.hero-features span {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
    padding: 0 1.8rem;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,1), 0 2px 10px rgba(0,0,0,0.7);
}

.hero-features span:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.6);
}

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

/* Hero CTA Button */
.hero-cta-btn {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    border: 1px solid rgba(255,255,255,0.6);
    color: white;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    transition: all 0.4s ease;
    background: transparent;
}

.hero-cta-btn:hover {
    background: white;
    color: var(--bg-dark);
    border-color: white;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-scroll:hover {
    opacity: 0.7;
}

.hero-scroll span {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 1rem;
    font-weight: 300;
    color: white;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.4);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 50px; }
    50% { opacity: 1; height: 60px; }
}

/* Property Side Navigation - Aman Style */
.property-side-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    text-decoration: none;
    z-index: 10;
    transition: all 0.4s ease;
    padding: 2.5rem 0.7rem;
}

.property-side-nav:hover {
    background: rgba(0,0,0,0.6);
}

.property-side-nav-prev {
    left: 0;
}

.property-side-nav-next {
    right: 0;
}

.side-nav-name {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.9;
}

.property-side-nav:hover .side-nav-name {
    opacity: 1;
}

.property-side-nav-prev .side-nav-name {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .property-side-nav {
        padding: 1.5rem 0.5rem;
    }
    
    .side-nav-name {
        font-size: 0.75rem;
    }
}

/* Story Section */
.aman-story {
    padding: 10rem 0;
    background: var(--bg-main);
}

.story-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.story-intro h2 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

.story-line {
    width: 60px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto 3rem;
}

.story-content {
    margin-bottom: 4rem;
}

.story-lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.story-body {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.story-details {
    display: flex;
    justify-content: center;
    gap: 6rem;
}

.detail-item {
    text-align: center;
}

.detail-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.detail-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

/* Gallery Mosaic */
/* Horizontal Scroll Gallery with Progress Line - Aman Style */
.aman-gallery {
    padding: 5rem 0;
    background: var(--bg-alt);
    position: relative;
}

.gallery-scroll-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    gap: 50px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 4rem;
    overscroll-behavior-x: contain;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 auto;
    width: 520px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: opacity 0.4s ease;
}

.gallery-item-image {
    width: 100%;
    height: 650px;
    overflow: hidden;
    position: relative;
}

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

.gallery-item:hover .gallery-item-image img {
    transform: scale(1.02);
}

/* Elegant opacity for edge items - applied via JS */
.gallery-item.edge-fade {
    opacity: 0.4;
}

.gallery-item.edge-fade:hover {
    opacity: 0.7;
}

/* Clean Progress Line */
.gallery-progress {
    max-width: 600px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.gallery-progress-track {
    height: 1px;
    background: var(--border);
    position: relative;
    cursor: pointer;
}

.gallery-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    margin-top: -0.5px;
    background: var(--text-main);
    width: 0%;
    transition: width 0.1s ease;
}

@media (max-width: 768px) {
    .gallery-item {
        width: 340px;
    }
    
    .gallery-item-image {
        height: 450px;
    }
    
    .gallery-track {
        gap: 30px;
        padding: 0 40px;
    }
}

/* Amenities */
.aman-amenities {
    padding: 6rem 0;
    background: var(--bg-main);
}

.amenities-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.amenities-section {
    text-align: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.amenities-section:last-child {
    border-bottom: none;
}

.aman-amenities h2 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Property details grid */
.amenities-grid-elegant {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.amenity-category {
    text-align: center;
}

.amenity-category h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.amenity-category p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Inline amenities with elegant separators */
.amenities-inline-elegant {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.amenities-inline-elegant span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-main);
    padding: 0.4rem 0;
    letter-spacing: 0.02em;
}

.amenities-inline-elegant span:not(:last-child)::after {
    content: "\00B7";
    margin: 0 1.2rem;
    color: var(--accent);
    font-weight: 300;
}

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

/* Location */
.aman-location {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    min-height: 550px;
    background: var(--bg-main);
}

.location-text {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-main);
}

.location-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 400;
}

.location-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 0;
    line-height: 1.2;
    font-weight: 300;
}

.location-distances {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.distance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.distance-place {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.distance-line {
    display: none;
}

.distance-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 400;
}

.location-map {
    background: var(--bg-alt);
    min-height: 500px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Reviews */
.aman-reviews {
    padding: 6rem 0;
    background: var(--bg-main);
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.aman-reviews h2 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.review-card {
    padding: 2rem;
    border: 1px solid var(--border);
}

.review-stars {
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.review-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

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

.author-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-main);
}

.author-date {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hidden-review {
    display: none;
}

.show-more-btn {
    display: block;
    margin: 3rem auto 0;
    background: transparent;
    border: 1px solid var(--border);
    padding: 1rem 2rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}

/* Reserve Section - Aman Luxury Style */
.aman-reserve {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 100vh;
    background: var(--bg-dark);
}

.reserve-image {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

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

.reserve-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(26,23,21,0.2) 100%);
}

.reserve-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 4rem;
    background: var(--bg-dark);
    text-align: center;
}

.aman-reserve-content {
    margin-bottom: 2.5rem;
}

.aman-reserve-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.aman-reserve-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

.aman-reserve-details {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 2.5rem;
}

.aman-reserve-detail {
    text-align: center;
}

.aman-reserve-detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
    display: block;
}

.aman-reserve-detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

.aman-reserve-form {
    width: 100%;
    max-width: 420px;
}

.aman-reserve-form form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.aman-reserve-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.aman-reserve-form .form-group {
    text-align: left;
}

.aman-reserve-form .form-group.full-width {
    grid-column: 1 / -1;
}

.aman-reserve-form .form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.6rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.aman-reserve-form .form-group:focus-within label {
    color: rgba(255,255,255,0.8);
}

.aman-reserve-form input,
.aman-reserve-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.aman-reserve-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.aman-reserve-form input:focus,
.aman-reserve-form select:focus {
    outline: none;
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
}

.aman-reserve-form select {
    cursor: pointer;
    appearance: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 10px 10px;
}

.aman-reserve-form select:focus {
    background-color: rgba(255,255,255,0.05);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.8)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 10px 10px;
}

/* Date inputs specific styling */
.aman-reserve-form input[type="text"],
.aman-reserve-form input[type="date"] {
    background-color: transparent;
    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='1.5'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 16px 16px;
    color: var(--text-light);
    cursor: pointer;
}

.aman-reserve-form input[type="text"]::placeholder {
    color: rgba(255,255,255,0.4);
}

.aman-reserve-form input[type="text"]:focus,
.aman-reserve-form input[type="date"]:focus {
    background-color: rgba(255,255,255,0.05);
    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.8)' stroke-width='1.5'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 16px 16px;
}

.aman-reserve-form input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
}

.aman-reserve-form select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.aman-reserve-btn {
    width: 100%;
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.4);
    padding: 1.1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 0.75rem;
}

.aman-reserve-btn:hover {
    background: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
}

@media (max-width: 1100px) {
    .reserve-container {
        padding: 3rem;
    }
    
    .aman-reserve-title {
        font-size: 2.2rem;
    }
    
    .aman-reserve-details {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .aman-reserve {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .reserve-image {
        height: 50vh;
        min-height: 350px;
    }
    
    .reserve-container {
        padding: 4rem 2rem;
    }
    
    .aman-reserve-title {
        font-size: 2rem;
    }
    
    .aman-reserve-details {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .aman-reserve-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Share Experience */
.aman-share {
    padding: 4rem 0;
    background: var(--bg-alt);
}

.share-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.share-container h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.share-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.share-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.share-form input,
.share-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    background: var(--bg-main);
    font-family: inherit;
    font-size: 0.9rem;
}

.share-form textarea {
    resize: vertical;
}

.share-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.share-rating > span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.25rem;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 1.5rem;
    color: var(--border);
    cursor: pointer;
    transition: color 0.2s ease;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input:checked ~ label {
    color: var(--accent);
}

.share-form button {
    background: var(--bg-dark);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.share-form button:hover {
    background: var(--accent);
}

/* Discover Destinations Section - Aman Style */
.discover-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.destination-feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 90vh;
}

.destination-feature-media {
    position: relative;
    overflow: hidden;
}

.destination-feature-media video,
.destination-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-feature-media iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 180%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

.destination-feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0) 70%, rgba(26,23,21,0.3) 100%);
    pointer-events: none;
}

.video-sound-toggle {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(8px);
}
.video-sound-toggle svg {
    width: 14px;
    height: 14px;
}
.video-sound-toggle:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.destination-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 5rem;
    background: var(--bg-dark);
}

.destination-region {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}

.destination-feature-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.destination-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3rem;
    max-width: 480px;
}

.destination-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.highlight-item {
    display: flex;
    gap: 2.5rem;
    align-items: baseline;
}

.highlight-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    min-width: 100px;
    flex-shrink: 0;
}

.highlight-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.destination-cta {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-light);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.destination-cta:hover {
    border-color: var(--text-light);
    letter-spacing: 0.3em;
}

@media (max-width: 1100px) {
    .destination-feature-content {
        padding: 5rem 4rem;
    }
    
    .destination-feature-content h3 {
        font-size: 2.8rem;
    }
}

@media (max-width: 900px) {
    .destination-feature {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .destination-feature-media {
        height: 50vh;
        min-height: 350px;
    }
    
    .destination-feature-content {
        padding: 4rem 2rem;
    }
    
    .destination-feature-content h3 {
        font-size: 2.2rem;
    }
    
    .highlight-item {
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .highlight-label {
        min-width: auto;
    }
}

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

.aman-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 1rem;
}

.lightbox-arrow:hover {
    opacity: 1;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .story-lead {
        font-size: 1.3rem;
    }
    
    .story-details {
        flex-direction: column;
        gap: 2rem;
    }
    
    .aman-location {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reserve-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .reserve-form .form-row {
        grid-template-columns: 1fr;
    }
}

.booking-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: var(--space-md);
    position: sticky;
    top: 120px;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border);
}

.widget-header h3 {
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.widget-header .price,
.widget-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
}

.widget-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.min-nights-notice {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
}

.min-nights-info {
    font-size: 0.8rem;
    color: var(--accent);
    text-align: center;
    padding: 0.75rem;
    background: var(--bg-main);
    border: 1px solid var(--border);
}

.min-nights-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

.min-nights-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 0.5rem;
    margin-bottom: var(--space-sm);
    text-align: center;
}

.min-nights-warning p {
    font-size: 0.75rem;
    color: #856404;
    margin: 0;
}

.min-nights-info {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    padding: 0.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
}

/* excluded-notice styling moved to availability section */

.price-display {
    background: var(--bg-alt);
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.price-display .price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.property-info-section {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.property-features-grid {
    display: flex;
    gap: var(--space-lg);
}

.feature-item {
    text-align: center;
}

.feature-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.feature-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
}

.property-description {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.property-description h2,
.property-amenities h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.property-description p {
    color: var(--text-muted);
    line-height: 1.8;
}

.property-amenities {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-sm);
}

.amenity-item {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

/* Property Navigation Arrows */
.property-nav {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
    padding: 0 var(--space-sm);
}

.nav-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    text-decoration: none;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.nav-arrow .arrow {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.nav-arrow:hover .arrow {
    background: var(--bg-dark);
    color: var(--text-light);
}

.nav-arrow.disabled {
    opacity: 0;
    pointer-events: none;
}

.nav-arrow .nav-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    max-width: 0;
    white-space: nowrap;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    padding: 0;
}

.nav-arrow:hover .nav-label {
    max-width: 250px;
    opacity: 1;
    padding: 0.5rem 1rem;
}

/* Property Gallery */
.property-gallery {
    position: relative;
    align-self: start;
}

.gallery-main {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
    background: var(--bg-alt);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.gallery-counter {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.gallery-thumbnails-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.thumb-nav {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.thumb-nav:hover {
    background: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}

.gallery-thumbnails-viewport {
    width: 536px; /* 8 thumbnails Ãƒâ€” 60px + 7 gaps Ãƒâ€” 8px = 536px */
    overflow: hidden;
}

.gallery-thumbnails {
    display: flex;
    gap: 8px;
    transition: transform 0.4s ease;
}

.thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 45px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.thumbnail:hover {
    opacity: 0.8;
}

.thumbnail.active {
    opacity: 1;
    border-color: var(--text-main);
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: 60px;
    height: 60px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    line-height: 1;
}

.lightbox-arrow:hover {
    color: rgba(255, 255, 255, 1);
}

.lightbox-prev {
    left: var(--space-md);
}

.lightbox-next {
    right: var(--space-md);
}

.lightbox-counter {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* Property Map */
.property-map {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
    margin-bottom: 0;
}

.property-map h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.map-container {
    width: calc(100% - 140px);
    margin: 0 auto;
    border: 1px solid var(--border);
}

.map-container iframe {
    display: block;
}

.booking-form .form-group {
    margin-bottom: var(--space-sm);
}

.booking-form label {
    display: block;
    font-size: 0.7rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 0.9rem 2.5rem 0.9rem 1rem;
    border: 1px solid var(--border);
    background: var(--bg-main);
    font-size: 0.9rem;
    color: var(--text-main);
}

.booking-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8279' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.booking-form .cta-button.full-width,
.cta-button.full-width {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.booking-widget .cta-button {
    width: 100%;
    justify-content: center;
}


/* ===================
   CALENDAR
   =================== */

.availability-calendar {
    margin-top: var(--space-md);
}

.calendar {
    background: var(--bg-alt);
    padding: var(--space-sm);
    border: 1px solid var(--border);
}

.current-month {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
}

.calendar-day {
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.8rem;
}

.calendar-day.available {
    background: rgba(100, 140, 100, 0.15);
    color: #4a6a4a;
}

.calendar-day.unavailable {
    background: rgba(140, 100, 100, 0.15);
    color: #6a4a4a;
    text-decoration: line-through;
}


/* ===================
   CONCIERGE - AMAN STYLE
   =================== */

/* Ensure full width for all concierge sections */
.concierge-aman-hero,
.concierge-intro,
.concierge-services-aman,
.concierge-custom,
.concierge-inquiry-aman {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* Hero Section */
.concierge-aman-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.concierge-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.concierge-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.concierge-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.4) 0%, 
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.6) 100%);
}

.concierge-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 2rem;
}

.concierge-hero-content .hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.concierge-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5), 0 6px 40px rgba(0,0,0,0.3);
}

.concierge-hero-content .hero-tagline {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* Introduction Section */
.concierge-intro {
    padding: 8rem 2rem;
    background: var(--bg-main);
    width: 100%;
}

.concierge-intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concierge-intro-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text-main);
    font-weight: 400;
    margin-bottom: 2.5rem;
    text-align: center;
}

.concierge-highlight-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    font-weight: 500;
    text-align: center;
}

/* Services Section */
.concierge-services-aman {
    padding: 6rem 0 8rem;
    background: var(--bg-alt);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 2rem;
}

.services-header h2 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

.services-header .header-line {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto;
}

.services-aman-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-aman-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #d4cec4 0%, #c4beb4 100%);
}

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

.service-aman-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%, 
        rgba(0,0,0,0) 40%,
        rgba(0,0,0,0.7) 100%);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    color: white;
    z-index: 2;
}

.service-number {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.8);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.service-content h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.1;
}

.service-content p {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.service-aman-card:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Experiences Section */
.concierge-custom {
    padding: 8rem 2rem;
    background: var(--bg-dark);
    width: 100%;
}

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

.custom-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.custom-line {
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto 2rem;
}

.custom-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

/* Inquiry Section */
.concierge-inquiry-aman {
    padding: 8rem 2rem;
    background: var(--bg-main);
    width: 100%;
}

.inquiry-container {
    max-width: 700px;
    margin: 0 auto;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 4rem;
}

.inquiry-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.inquiry-header p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.inquiry-aman-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inquiry-aman-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.inquiry-aman-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.inquiry-aman-form .form-group.full-width {
    grid-column: 1 / -1;
}

.inquiry-aman-form label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.inquiry-aman-form input,
.inquiry-aman-form select,
.inquiry-aman-form textarea {
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.inquiry-aman-form select {
    padding-right: 2.5rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8279' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 10px 10px;
    cursor: pointer;
}

.inquiry-aman-form input:focus,
.inquiry-aman-form select:focus,
.inquiry-aman-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-card);
}

.inquiry-aman-form textarea {
    resize: vertical;
    min-height: 140px;
}

.inquiry-submit-btn {
    align-self: center;
    margin-top: 1rem;
    background: var(--bg-dark);
    color: var(--text-light);
    border: none;
    padding: 1.2rem 3.5rem;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.inquiry-submit-btn:hover {
    background: var(--accent);
    letter-spacing: 0.25em;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-aman-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .concierge-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .concierge-intro-text {
        font-size: 1.3rem;
    }
    
    .services-aman-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 350px;
    }
    
    .service-content h3 {
        font-size: 1.8rem;
    }
    
    .inquiry-aman-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .custom-content h2,
    .inquiry-header h2 {
        font-size: 2rem;
    }
}


/* ===================
   ABOUT PAGE - AMAN STYLE
   =================== */

/* Ensure full width for all about sections */
.about-aman-hero,
.about-story,
.about-feature-section,
.about-values,
.about-cta-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* Hero Section */
.about-aman-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.4) 0%, 
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.6) 100%);
}

.about-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.about-hero-content .hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.about-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.about-hero-content .hero-tagline {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: white;
    opacity: 0.9;
}

/* Story Section */
.about-story {
    padding: 10rem 2rem;
    background: var(--bg-main);
}

.about-story-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-story .story-intro {
    margin-bottom: 3rem;
}

.about-story .story-intro h2 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.about-story .story-line {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto;
}

.about-story .story-lead {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.about-story .story-secondary {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic;
}

/* Feature Sections */
.about-feature-section {
    background: var(--bg-main);
    min-height: 820px;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 820px;
}

.about-feature-image {
    position: relative;
    overflow: hidden;
    min-height: 820px;
}

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

.about-feature-section:hover .about-feature-image img {
    transform: scale(1.03);
}

.about-feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: var(--bg-alt);
}

.about-feature-text .feature-number {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.about-feature-text h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.about-feature-text p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.about-feature-text p:last-child {
    margin-bottom: 0;
}

/* Reverse layout */
.about-feature-section.reverse .about-feature-grid {
    direction: rtl;
}

.about-feature-section.reverse .about-feature-grid > * {
    direction: ltr;
}

.about-feature-section.reverse .about-feature-text {
    background: var(--bg-main);
}

/* Values Section */
.about-values {
    padding: 8rem 2rem;
    background: var(--bg-alt);
}

.values-header {
    text-align: center;
    margin-bottom: 5rem;
}

.values-header h2 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.values-header .header-line {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    text-align: center;
}

.value-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.value-item h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.value-item p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-muted);
}

/* CTA Section */
.about-cta-section {
    padding: 8rem 2rem;
    background: #262320;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.about-cta-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-container h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: white;
    margin-bottom: 1rem;
}

.about-cta-container p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.5rem;
}

.cta-button-light {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.cta-button-light:hover {
    background: white;
    color: var(--bg-dark);
    border-color: white;
}

/* Responsive */
@media (max-width: 900px) {
    .about-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .about-feature-image {
        min-height: 400px;
    }
    
    .about-feature-text {
        padding: 3rem 2rem;
    }
    
    .about-feature-section.reverse .about-feature-grid {
        direction: ltr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}


/* ===================
   CONTACT PAGE - AMAN STYLE
   =================== */

/* Ensure full width for all contact sections */
.contact-aman-hero,
.contact-intro,
.contact-content-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

/* Hero Section */
.contact-aman-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.4) 0%, 
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.6) 100%);
}

.contact-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.contact-hero-content .hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
}

.contact-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.contact-hero-content .hero-tagline {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: white;
    opacity: 0.9;
}

/* Introduction Section */
.contact-intro {
    padding: 8rem 2rem;
    background: var(--bg-main);
}

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

.contact-intro .intro-header {
    margin-bottom: 3rem;
}

.contact-intro .intro-header h2 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-intro .header-line {
    width: 50px;
    height: 1px;
    background: var(--accent);
    margin: 0 auto;
}

.contact-intro-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-main);
}

/* Contact Content Section */
.contact-content-section {
    padding: 0 0 8rem;
    background: var(--bg-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 600px;
}

/* Info Side */
.contact-info-side {
    background: var(--bg-alt);
    padding: 5rem;
    display: flex;
    align-items: center;
}

.contact-info-inner {
    width: 100%;
}

.contact-detail {
    margin-bottom: 3rem;
}

.contact-detail .detail-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.contact-detail .detail-value {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-main);
    text-decoration: none;
}

.contact-detail a.detail-value {
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s ease;
}

.contact-detail a.detail-value:hover {
    border-color: var(--text-main);
}

.contact-social {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.contact-social .detail-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-main);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent);
}

/* Form Side */
.contact-form-side {
    background: var(--bg-main);
    padding: 5rem;
    display: flex;
    align-items: center;
}

.contact-aman-form {
    width: 100%;
}

.contact-aman-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-aman-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.contact-aman-form .form-row .form-group {
    margin-bottom: 0;
}

.contact-aman-form label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.contact-aman-form input,
.contact-aman-form select,
.contact-aman-form textarea {
    padding: 1rem;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: border-color 0.3s ease;
}

.contact-aman-form input:focus,
.contact-aman-form select:focus,
.contact-aman-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.contact-aman-form select {
    padding-right: 2.5rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8279' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.contact-aman-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-aman-form .cta-button {
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-side,
    .contact-form-side {
        padding: 3rem 2rem;
    }
    
    .contact-aman-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Confirmation page */
.confirmation-hero {
    position: relative;
    margin-top: 62px;
    padding: var(--space-2xl) 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-alt);
}

.confirmation-hero h1 {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: #1a1715;
}

.confirmation-hero p {
    color: #3d3530;
}

.confirmation-content {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-main);
}

.confirmation-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.confirmation-box p {
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}


/* ===================
   RESERVE PAGE
   =================== */

.reserve-hero {
    position: relative;
    margin-top: 62px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: 
        linear-gradient(180deg, rgba(245, 242, 237, 0.85) 0%, rgba(235, 230, 222, 0.9) 100%),
        url("/static/images/reserve-hero.jpg") center / cover no-repeat;
    background-color: var(--bg-alt);
}

.reserve-hero h1 {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
    font-weight: 400;
    color: #1a1715;
}

.reserve-hero p {
    color: #3d3530;
    letter-spacing: 0.05em;
}

.reserve-content {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-main);
}

.reserve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

/* Villa Selection */
.reserve-villa-selection h2 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    font-weight: 400;
}

.villa-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.villa-option {
    cursor: pointer;
}

.villa-option input {
    display: none;
}

.villa-option-card {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    align-items: stretch;
}

.villa-option:hover .villa-option-card {
    border-color: var(--accent);
}

.villa-option.selected .villa-option-card {
    border-color: var(--bg-dark);
}

.villa-option-image {
    width: 180px;
    height: 140px;
    min-height: 140px;
    max-height: 140px;
    overflow: hidden;
}

.villa-option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.villa-option-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.villa-option-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 400;
}

.villa-option-location {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.villa-option-details {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.villa-option-price {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 0.3rem;
}

.villa-option-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    color: transparent;
    transition: color 0.3s ease;
}

.villa-option.selected .villa-option-check {
    color: var(--bg-dark);
}

/* Reserve Form */
.reserve-form-wrapper {
    background: var(--bg-alt);
    padding: var(--space-lg);
}

.reserve-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-section {
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.reserve-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

.reserve-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: var(--space-sm);
}

.reserve-form label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.reserve-form input,
.reserve-form select,
.reserve-form textarea {
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    background: var(--bg-card);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: border-color 0.3s ease;
}

.reserve-form input:focus,
.reserve-form select:focus,
.reserve-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.reserve-form select {
    padding-right: 2.5rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8279' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.reserve-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkboxes */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-main);
}

.checkbox-label input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 0;
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

/* Price Summary */
.price-summary {
    background: var(--bg-card);
    padding: var(--space-md);
    border: 1px solid var(--border);
}

.price-summary h3 {
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-row.total {
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 400;
}

.price-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    font-style: italic;
}

.reserve-form .cta-button {
    width: 100%;
    margin-top: var(--space-sm);
}

.reserve-form .cta-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.select-villa-prompt {
    color: var(--text-muted);
    font-style: italic;
    padding: var(--space-md) 0;
}

.date-unavailable-warning {
    color: #a85454;
    font-size: 0.85rem;
    padding: 0.8rem;
    background: rgba(168, 84, 84, 0.1);
    margin-top: var(--space-sm);
}

.tax-row {
    font-size: 0.85rem;
}

.deposit-notice {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.deposit-notice p {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}

.deposit-notice .deposit-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Payment Options */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.payment-option {
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-option-box {
    display: block;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all 0.3s ease;
}

.payment-option:hover .payment-option-box {
    border-color: var(--accent);
}

.payment-option input:checked + .payment-option-box {
    border-color: var(--bg-dark);
    background: var(--bg-alt);
}

.payment-option-title {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.payment-option-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Payment Schedule */
.payment-schedule {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
}

.payment-schedule h4 {
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-main);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
}

.schedule-row:last-child {
    border-bottom: none;
}

/* Policies Section */
.policies-section {
    background: var(--bg-card);
    padding: var(--space-md);
    border: 1px solid var(--border);
    margin-top: var(--space-md);
}

.policies-section h3 {
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    font-weight: 400;
}

.policy-item {
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--border);
}

.policy-item:last-of-type {
    border-bottom: none;
    margin-bottom: var(--space-md);
}

.policy-item h4 {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.policy-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.policy-agree {
    margin-top: var(--space-sm);
    font-size: 0.85rem;
}

.submit-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    font-style: italic;
}

/* Confirmation page additions */
.important-notice {
    background: var(--bg-alt);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.important-notice h4 {
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.important-notice ul {
    list-style: none;
    padding: 0;
}

.important-notice li {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.important-notice li:last-child {
    margin-bottom: 0;
}

/* Reservation Confirmation */
.confirmation-icon {
    color: var(--accent);
    margin-bottom: var(--space-md);
}

.confirmation-box h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.confirmation-details-box {
    background: var(--bg-alt);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.confirmation-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
}

.confirmation-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.booking-reference {
    background: var(--bg-alt);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    text-align: center;
}

.reference-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.reference-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

.total-row {
    border-top: 1px solid var(--border);
    padding-top: 0.8rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.deposit-row {
    color: var(--accent);
}

.confirmation-next-steps {
    text-align: left;
    max-width: 400px;
    margin: var(--space-lg) auto;
    padding: var(--space-md);
    background: var(--bg-alt);
}

.confirmation-next-steps h3 {
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.confirmation-next-steps ol {
    padding-left: 1.2rem;
    color: var(--text-main);
}

.confirmation-next-steps li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.confirmation-note a {
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.confirmation-note a:hover {
    border-color: var(--text-main);
}

.cta-button.outline {
    background: transparent;
    border: 1px solid var(--bg-dark);
    color: var(--bg-dark);
}

.cta-button.outline:hover {
    background: var(--bg-dark);
    color: var(--text-light);
}

@media (max-width: 900px) {
    .reserve-grid {
        grid-template-columns: 1fr;
    }
    
    .villa-option-card {
        grid-template-columns: 100px 1fr auto;
    }
    
    .villa-option-image {
        width: 100px;
        height: 75px;
    }
}

@media (max-width: 600px) {
    .reserve-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
}


/* ===================
   CONFIRMATION
   =================== */

.confirmation-details {
    padding: var(--space-xl) 0 var(--space-2xl);
    background: var(--bg-main);
}

.confirmation-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    overflow: hidden;
}

.confirmation-header {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.confirmation-number {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.booking-info {
    padding: var(--space-md);
}

.info-section {
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    color: var(--text-muted);
}

.info-grid {
    display: grid;
    gap: 0.6rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.info-item strong {
    color: var(--text-muted);
    font-weight: 400;
}

.confirmation-actions {
    padding: var(--space-md);
    background: var(--bg-alt);
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}


/* ===================
   FORMS
   =================== */

input,
textarea,
select {
    font-family: 'Inter', sans-serif;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 0.9rem 2.5rem 0.9rem 1rem;
    color: var(--text-main);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a09686' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    cursor: pointer;
}

/* Date input specific styles */
input[type="date"] {
    position: relative;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23a09686' stroke-width='1.5'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px 18px;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Text inputs don't need dropdown arrow */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea {
    background-image: none;
    cursor: text;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
}

label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}


/* ===================
   FOOTER - AMAN STYLE
   =================== */

.footer-aman {
    background: var(--bg-dark);
    color: white;
}

/* Main Footer */
.footer-main {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-column h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

/* Newsletter Column */
.footer-newsletter-col .footer-newsletter-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
}

.footer-newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    max-width: 280px;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.footer-newsletter-form input:focus {
    outline: none;
}

.footer-newsletter-form button {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    padding: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.footer-newsletter-form button svg {
    pointer-events: none;
}

.footer-newsletter-form button:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.footer-newsletter-form button:active {
    transform: scale(0.95);
}

/* Brand Column */
.footer-brand-column {
    text-align: right;
}

.footer-brand-mark {
    margin-bottom: 1.5rem;
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: white;
}

.footer-brand-philosophy {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
    max-width: 280px;
    margin-left: auto;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem 2rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-social-row {
    display: flex;
    gap: 1.5rem;
}

.footer-social-row a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer-social-row a:hover {
    color: white;
}

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal span {
    color: rgba(255,255,255,0.25);
    font-size: 0.7rem;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-newsletter-col {
        grid-column: 1 / -1;
        order: -1;
    }
    
    .footer-newsletter-form {
        max-width: 100%;
    }
    
    .footer-brand-column {
        text-align: left;
        grid-column: 1 / -1;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 3rem;
        margin-top: 1rem;
    }
    
    .footer-brand-philosophy {
        margin-left: 0;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-column h4 {
        margin-bottom: 1rem;
    }
    
    .footer-newsletter-form {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-brand-column {
        text-align: center;
    }
    
    .footer-brand-philosophy {
        margin: 0 auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}


/* ===================
   RESERVE PAGE - AMAN LUXURY STYLE
   =================== */

/* Reserve Hero - Full Immersive */
.reserve-aman-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reserve-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.reserve-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    animation: subtleZoom 30s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
    0% { transform: scale(1.02); }
    100% { transform: scale(1.08); }
}

.reserve-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(28, 26, 23, 0.25) 0%, 
        rgba(28, 26, 23, 0.35) 50%,
        rgba(28, 26, 23, 0.5) 100%
    );
}

.reserve-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 3rem;
    max-width: 800px;
}

.reserve-hero-content .hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

.reserve-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin: 0 0 1.5rem 0;
    color: #fff;
    line-height: 1.1;
}

.reserve-hero-content .hero-tagline {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 300;
    font-style: italic;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

/* Villa Selection Section - Generous Spacing */
.reserve-selection {
    padding: 10rem 3rem;
    background: linear-gradient(180deg, #fdfcfa 0%, #f8f6f3 100%);
}

.reserve-selection-container {
    max-width: 1500px;
    margin: 0 auto;
}

.reserve-selection .section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.reserve-selection .section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-main);
    margin: 0 0 2rem 0;
    letter-spacing: 0.06em;
}

.reserve-selection .section-header .header-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0 auto 2rem auto;
}

.reserve-selection .section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* Villa Selection Grid - Elegant Cards */
.villa-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.villa-selection-card {
    position: relative;
    cursor: pointer;
}

.villa-selection-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.villa-selection-label {
    display: block;
    position: relative;
    background: #fff;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.villa-selection-card:hover .villa-selection-label {
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.villa-selection-card.selected .villa-selection-label {
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.villa-selection-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.villa-selection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.villa-selection-card:hover .villa-selection-image img {
    transform: scale(1.06);
}

.villa-selection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top, 
        rgba(28, 26, 23, 0.5) 0%, 
        rgba(28, 26, 23, 0.1) 40%,
        transparent 100%
    );
    transition: opacity 0.6s ease;
}

.villa-selection-card:hover .villa-selection-overlay {
    opacity: 0.8;
}

.villa-selection-content {
    padding: 2.5rem 2.5rem 3rem;
}

.villa-selection-location {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 0.75rem 0;
}

.villa-selection-name {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--text-main);
    margin: 0 0 1.25rem 0;
    letter-spacing: 0.02em;
}

.villa-selection-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.villa-selection-details span {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.villa-selection-price {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-main);
    margin: 0;
    letter-spacing: 0.02em;
}

.villa-selection-check {
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.villa-selection-card.selected .villa-selection-check {
    opacity: 1;
    transform: scale(1);
    background: var(--accent);
    color: #fff;
}

/* Reserve Form Section - Sanctuary */
.reserve-form-section {
    padding: 8rem 3rem 10rem;
    background: #fff;
}

.reserve-form-container {
    max-width: 720px;
    margin: 0 auto;
}

/* Select Prompt - Elegant */
.select-prompt {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
    margin-bottom: 3rem;
    border: 1px solid rgba(0,0,0,0.03);
}

.select-prompt p {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Selected Villa Display - Refined */
.selected-villa-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.5rem;
    background: linear-gradient(180deg, #faf9f7 0%, #f5f3f0 100%);
    margin-bottom: 4rem;
    border: 1px solid rgba(0,0,0,0.03);
}

.selected-villa-info .selected-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.selected-villa-info h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-main);
    margin: 0;
    letter-spacing: 0.02em;
}

.change-villa-btn {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(0,0,0,0.15);
    padding: 0.9rem 1.8rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.change-villa-btn:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}

/* Form Blocks - Spacious */
.form-block {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.form-block:last-of-type {
    border-bottom: none;
}

.form-block-header {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.form-block-number {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--accent);
    font-style: italic;
}

.form-block-header h3 {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--text-main);
    margin: 0;
    letter-spacing: 0.02em;
}

.min-nights-notice {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
}

.services-note {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
}

/* Reserve Form Elements - Refined Inputs */
.reserve-aman-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.reserve-aman-form .form-group {
    margin-bottom: 2rem;
}

.reserve-aman-form .form-group:last-child {
    margin-bottom: 0;
}

.reserve-aman-form .form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.reserve-aman-form .form-group input,
.reserve-aman-form .form-group select,
.reserve-aman-form .form-group textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--text-main);
    background: #faf9f7;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    letter-spacing: 0.01em;
}

.reserve-aman-form .form-group input:focus,
.reserve-aman-form .form-group select:focus,
.reserve-aman-form .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.reserve-aman-form .form-group input::placeholder,
.reserve-aman-form .form-group textarea::placeholder {
    color: #b5b0a8;
    font-style: italic;
}

.reserve-aman-form .form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

/* Payment Options - Luxury Selection */
.payment-options-aman {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.payment-option-aman {
    display: flex;
    align-items: center;
    padding: 2rem 2rem;
    background: #faf9f7;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.payment-option-aman:hover {
    background: #f5f3f0;
    border-color: rgba(0,0,0,0.04);
}

.payment-option-aman input {
    position: absolute;
    opacity: 0;
}

.payment-option-content {
    flex: 1;
}

.payment-option-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
}

.payment-option-desc {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.payment-check {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 50%;
    position: relative;
    transition: all 0.4s ease;
}

.payment-option-aman input:checked ~ .payment-check {
    border-color: var(--accent);
    background: var(--accent);
}

.payment-option-aman input:checked ~ .payment-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
}

/* Requests Grid - Elegant Icons */
.requests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.request-option {
    cursor: pointer;
}

.request-option input {
    position: absolute;
    opacity: 0;
}

.request-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.25rem 1.5rem;
    background: #faf9f7;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.request-option:hover .request-box {
    background: #f5f3f0;
}

.request-option input:checked ~ .request-box {
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.request-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--text-muted);
    transition: color 0.4s ease;
}

.request-icon svg {
    width: 26px;
    height: 26px;
}

.request-option input:checked ~ .request-box .request-icon {
    color: var(--accent);
}

.request-label {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Price Summary - Dark Elegance */
.price-summary-aman {
    background: var(--bg-dark);
    color: #fff;
    padding: 3.5rem;
    margin: 4rem 0;
}

.price-summary-header h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 300;
    margin: 0 0 2.5rem 0;
    color: #fff;
    letter-spacing: 0.04em;
}

.price-breakdown-aman .price-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.price-breakdown-aman .price-row.total {
    border-bottom: none;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 1.15rem;
    font-weight: 500;
}

.payment-schedule-aman {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.payment-schedule-aman h4 {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0 0 1.25rem 0;
}

.payment-schedule-aman .schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
}

/* Policies - Clean Grid */
.policies-aman {
    margin: 4rem 0;
    padding-top: 4rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.policies-aman .policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.policies-aman .policy-item {
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.policies-aman .policy-item h4 {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-main);
    margin: 0 0 1.25rem 0;
}

.policies-aman .policy-item p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

.policy-agree-aman {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    cursor: pointer;
    padding: 2rem 2rem;
    background: #faf9f7;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.policy-agree-aman:hover {
    border-color: rgba(0,0,0,0.06);
}

.policy-agree-aman input {
    position: absolute;
    opacity: 0;
}

.checkbox-elegant {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 1px solid rgba(0,0,0,0.2);
    position: relative;
    transition: all 0.4s ease;
}

.policy-agree-aman input:checked ~ .checkbox-elegant {
    background: var(--accent);
    border-color: var(--accent);
}

.policy-agree-aman input:checked ~ .checkbox-elegant::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.7rem;
}

.policy-agree-aman span:last-child {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Reserve Submit Section - Commanding CTA */
.reserve-submit-section {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
}

.reserve-submit-btn {
    display: inline-block;
    padding: 1.5rem 5rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    background: var(--bg-dark);
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.reserve-submit-btn:hover:not(:disabled) {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.reserve-submit-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.reserve-submit-section .submit-note {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2rem;
    letter-spacing: 0.02em;
}

/* Reserve Page Responsive */
@media (max-width: 1100px) {
    .villa-selection-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .reserve-selection {
        padding: 6rem 2rem;
    }
    
    .reserve-form-section {
        padding: 5rem 2rem 6rem;
    }
    
    .reserve-aman-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .requests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .policies-aman .policy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reserve-submit-btn {
        width: 100%;
        padding: 1.5rem 2rem;
    }
    
    .price-summary-aman {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .requests-grid {
        grid-template-columns: 1fr;
    }
    
    .selected-villa-display {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .reserve-hero-content h1 {
        font-size: 2.5rem;
    }
}


/* ===================
   SCROLLBAR
   =================== */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-light);
}

::-webkit-scrollbar-track {
    background: var(--bg-alt);
}


/* ===================
   RESPONSIVE
   =================== */

@media (max-width: 1200px) {
    .villas-grid,
    .properties-grid {
        gap: var(--space-md);
    }
}

@media (max-width: 900px) {
    .property-layout {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .booking-widget {
        position: static;
    }

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

    .nav {
        grid-template-columns: 1fr auto 1fr;
        padding: 0.6rem var(--space-md);
    }

    .nav-left,
    .nav-right {
        gap: 1.5rem;
    }

    .nav-left a,
    .nav-right a {
        font-size: 0.65rem;
    }

    .logo-image {
        height: 35px;
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 2rem;
        --space-xl: 4rem;
        --space-2xl: 6rem;
    }

    .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
        padding: var(--space-sm) var(--space-md);
    }

    .nav-left,
    .nav-right {
        justify-content: center;
    }

    .nav-left {
        order: 2;
    }

    .logo {
        order: 1;
    }

    .nav-right {
        order: 3;
    }

    .reserve-btn {
        padding: 0.6rem 1.2rem;
    }

    .hero {
        min-height: 70vh;
    }

    .villas-grid,
    .properties-grid {
        grid-template-columns: 1fr;
    }

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


/* ===================
   FLOATING RESERVE - DISCREET LUXURY
   =================== */

.floating-reserve {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-reserve.visible {
    opacity: 1;
    pointer-events: auto;
}

.floating-reserve-text {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    background: var(--bg-dark);
    padding: 2rem 0.65rem;
    transition: all 0.4s ease;
}

.floating-reserve:hover .floating-reserve-text {
    background: var(--accent);
    padding: 2rem 0.8rem;
}

@media (max-width: 768px) {
    .floating-reserve {
        display: none;
    }
}

/* =============================================
   LUXURY CONFIRMATION PAGES - Dark Hero Design
   ============================================= */

/* Dark Hero Section */
.confirmation-hero-dark {
    background: var(--bg-dark, #1c1a17);
    padding: 12rem 2rem 6rem;
    text-align: center;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Success Mark - Elegant Gold Check */
.confirmation-success-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 2.5rem;
    color: var(--accent-gold, #c9a959);
    opacity: 0.9;
}

.confirmation-success-mark svg {
    width: 36px;
    height: 36px;
}

.confirmation-hero-dark h1 {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.confirmation-hero-eyebrow {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--accent-gold, #c9a959);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.confirmation-hero-subtitle {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Main Content Section */
.confirmation-main {
    background: var(--bg-main, #f7f5f2);
    padding: 5rem 2rem 8rem;
}

.confirmation-container {
    max-width: 580px;
    margin: 0 auto;
}

/* Personal Message */
.confirmation-message {
    text-align: center;
    margin-bottom: 3rem;
}

.confirmation-message p {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--text-main, #1c1a17);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.confirmation-message strong {
    font-weight: 400;
}

/* Reference Number */
.confirmation-reference {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.confirmation-reference .reference-label {
    display: block;
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted, #6b665e);
    margin-bottom: 0.75rem;
}

.confirmation-reference .reference-number {
    display: block;
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--text-main, #1c1a17);
}

/* Booking Summary */
.confirmation-summary {
    background: #fff;
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row--total {
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
}

.summary-label {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted, #6b665e);
}

.summary-value {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-main, #1c1a17);
}

.summary-row--total .summary-value {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Timeline */
.confirmation-timeline {
    margin-bottom: 3rem;
}

.confirmation-timeline h3 {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted, #6b665e);
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: #4a3c2e;
    border: 1.5px solid #4a3c2e;
    border-radius: 50%;
}

.step-text {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-main, #1c1a17);
    padding-top: 0.5rem;
}

/* Notice */
.confirmation-notice {
    background: rgba(201, 169, 89, 0.04);
    padding: 2rem 2.5rem;
    margin-bottom: 3rem;
    border-left: 2px solid var(--accent-gold, #c9a959);
}

.notice-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.notice-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notice-item:first-child {
    padding-top: 0;
}

.notice-item strong {
    display: block;
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-main, #1c1a17);
    margin-bottom: 0.35rem;
}

.notice-item span {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted, #6b665e);
    line-height: 1.6;
}

/* Contact */
.confirmation-contact {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.confirmation-contact p {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted, #6b665e);
    margin-bottom: 0.5rem;
}

.confirmation-contact a {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-main, #1c1a17);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.confirmation-contact a:hover {
    border-color: var(--text-main, #1c1a17);
}

/* Action Buttons */
.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-confirmation-primary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--bg-dark, #1c1a17);
    color: #fff;
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-confirmation-primary:hover {
    background: var(--accent-gold, #c9a959);
    color: var(--bg-dark, #1c1a17);
}

.btn-confirmation-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: var(--text-main, #1c1a17);
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.btn-confirmation-secondary:hover {
    border-color: var(--text-main, #1c1a17);
    background: var(--bg-dark, #1c1a17);
    color: #fff;
}

/* Responsive */
@media (max-width: 640px) {
    .confirmation-hero-dark {
        padding: 10rem 1.5rem 4rem;
        min-height: 40vh;
    }
    
    .confirmation-main {
        padding: 3rem 1.5rem 5rem;
    }
    
    .confirmation-summary {
        padding: 1.5rem;
    }
    
    .confirmation-notice {
        padding: 1.5rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .btn-confirmation-primary,
    .btn-confirmation-secondary {
        text-align: center;
    }
}


/* =============================================
   AVAILABILITY RESULTS - Luxury Design
   ============================================= */

.results-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Status Card */
.results-status-card {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.results-status-card h2 {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-main, #1c1a17);
    margin-bottom: 0.75rem;
}

.results-status-card p {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted, #6b665e);
    line-height: 1.7;
}

.results-status-card .status-detail {
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.results-status-card .status-detail a {
    color: var(--text-main, #1c1a17);
}

/* Status Icons */
.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.5rem;
    color: var(--text-muted, #6b665e);
}

.status-icon--success {
    color: var(--accent-gold, #c9a959);
}

.status-icon--warning {
    color: #b8a060;
}

.status-icon--unavailable {
    color: #a07070;
}

/* Results Actions */
.results-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

/* Results Summary */
.results-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.results-summary p {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-muted, #6b665e);
}

/* Results Notice */
.results-notice {
    background: rgba(201, 169, 89, 0.06);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-left: 2px solid var(--accent-gold, #c9a959);
}

.results-notice strong {
    display: block;
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-main, #1c1a17);
    margin-bottom: 0.5rem;
}

.results-notice p {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 0.95rem;
    color: var(--text-muted, #6b665e);
    margin-bottom: 0.75rem;
}

.results-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-notice li {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 0.95rem;
    color: var(--text-muted, #6b665e);
    padding: 0.25rem 0;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Villa Card */
.result-villa-card {
    background: #fff;
    overflow: hidden;
    margin-bottom: 2rem;
}

.result-villa-card--grid {
    margin-bottom: 0;
}

.villa-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.villa-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.result-villa-card:hover .villa-card-image img {
    transform: scale(1.03);
}

.villa-card-content {
    padding: 1.75rem 2rem;
}

.villa-card-content h3 {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-main, #1c1a17);
    margin-bottom: 0.35rem;
}

.villa-card-location {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted, #6b665e);
    margin-bottom: 1rem;
}

.villa-card-features {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.villa-card-features span {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.7rem;
    color: var(--text-muted, #6b665e);
}

.villa-card-pricing {
    margin-bottom: 1.5rem;
}

.villa-price {
    display: block;
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-main, #1c1a17);
    margin-bottom: 0.25rem;
}

.villa-price-detail {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.7rem;
    color: var(--text-muted, #6b665e);
}

.villa-card-actions {
    display: flex;
    gap: 0.75rem;
}

.villa-card-actions .btn-confirmation-primary,
.villa-card-actions .btn-confirmation-secondary {
    flex: 1;
    text-align: center;
    padding: 0.9rem 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .results-actions {
        flex-direction: column;
    }
    
    .villa-card-content {
        padding: 1.5rem;
    }
    
    .villa-card-actions {
        flex-direction: column;
    }
}
/* Coming Soon Banner */
.coming-soon-banner {
    background: #1a1715;
    color: white;
    text-align: center;
    padding: 1rem 2rem;
}

.coming-soon-text {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ===================
   MOBILE FIXES
   =================== */

/* Property Navigation - Hide labels on mobile */
@media (max-width: 768px) {
    .property-nav {
        padding: 0 0.5rem;
    }
    
    .nav-arrow .nav-label {
        display: none !important;
    }
    
    .nav-arrow .arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Review Form - Stack on mobile */
@media (max-width: 768px) {
    .review-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .review-form-section {
        padding: var(--space-md);
        margin-left: -1rem;
        margin-right: -1rem;
    }
    
    .review-form {
        max-width: 100%;
    }
}

/* ===================
   AVAILABILITY RESULTS - AMAN STYLE
   =================== */

.results-aman-hero {
    background: var(--bg-dark);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.results-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.results-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent, #c9a96e);
    margin-bottom: 1rem;
}

.results-aman-hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.results-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.date-display {
    font-size: 1rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.date-separator {
    color: rgba(255,255,255,0.4);
}

.nights-count {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    padding-left: 1rem;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.results-aman-content {
    padding: 4rem 2rem;
    background: var(--bg-alt);
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Status Cards */
.results-status-card {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.status-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(139, 64, 73, 0.1);
    color: #8b4049;
}

.status-icon-wrapper.success {
    background: rgba(74, 124, 89, 0.1);
    color: #4a7c59;
}

.results-status-card h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.status-message {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.status-detail {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.status-detail a {
    color: var(--accent, #c9a96e);
}

.status-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Results Summary */
.results-summary {
    text-align: center;
    margin-bottom: 3rem;
}

.results-count {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-main);
}

.results-notice {
    background: rgba(201, 169, 110, 0.1);
    border-left: 3px solid var(--accent, #c9a96e);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.results-notice p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.results-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.results-notice li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
}

/* Results Grid */
.results-aman-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .results-aman-grid {
        grid-template-columns: 1fr;
    }
}

/* Result Cards */
.result-aman-card {
    background: var(--bg-main);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.result-aman-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.result-aman-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .result-aman-card.featured {
        grid-template-columns: 1fr;
    }
}

.result-card-link {
    display: block;
}

.result-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.result-aman-card.featured .result-card-image {
    height: 100%;
    min-height: 350px;
}

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

.result-aman-card:hover .result-card-image img {
    transform: scale(1.03);
}

.result-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    pointer-events: none;
}

.result-card-content {
    padding: 2rem;
}

.result-location-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.result-villa-name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.result-specs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.spec-divider {
    width: 3px;
    height: 3px;
    background: var(--text-muted);
    border-radius: 50%;
}

.result-pricing {
    margin-bottom: 1.5rem;
}

.result-total {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.result-per-night {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.result-card-actions {
    display: flex;
    gap: 1rem;
}

.result-card-actions .cta-button,
.result-card-actions .cta-button-outline {
    flex: 1;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.75rem;
}

/* Excluded List - Clean Style */
.excluded-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.excluded-list p {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}

.excluded-list ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.excluded-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
    .results-aman-hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .results-aman-hero h1 {
        font-size: 2rem;
    }
    
    .results-aman-content {
        padding: 2rem 1rem;
    }
    
    .results-status-card {
        padding: 2rem 1rem;
    }
    
    .result-card-content {
        padding: 1.5rem;
    }
    
    .result-villa-name {
        font-size: 1.4rem;
    }
    
    .result-card-actions {
        flex-direction: column;
    }
}

/* ===================
   RESERVE PAGE - AMAN STYLE
   =================== */

.reserve-aman-hero {
    background: var(--bg-dark);
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.reserve-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.reserve-eyebrow {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent, #c9a96e);
    margin-bottom: 1rem;
}

.reserve-aman-hero h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-light);
}

.reserve-aman-content {
    padding: 4rem 2rem;
    background: var(--bg-alt);
}

.reserve-container {
    max-width: 1000px;
    margin: 0 auto;
}

.reserve-aman-form {
    display: grid;
    gap: 3rem;
}

/* Sections */
.reserve-section {
    background: var(--bg-main);
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.section-number {
    font-size: 0.8rem;
    color: var(--accent, #c9a96e);
    font-weight: 500;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
}

/* Villa Selection */
.villa-selection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.villa-select-card {
    cursor: pointer;
    display: block;
}

.villa-select-card input[type="radio"] {
    display: none;
}

.villa-card-inner {
    position: relative;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    overflow: hidden;
}

.villa-select-card:hover .villa-card-inner {
    border-color: var(--text-muted);
}

.villa-select-card.selected .villa-card-inner {
    border-color: var(--accent, #c9a96e);
}

.villa-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.villa-select-card:hover .villa-card-image img {
    transform: scale(1.05);
}

.villa-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
}

.villa-card-info {
    padding: 1.25rem;
}

.villa-card-info h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.villa-card-location {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.villa-card-specs {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.villa-card-price {
    font-size: 0.9rem;
    color: var(--accent, #c9a96e);
}

.villa-card-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: var(--accent, #c9a96e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.villa-select-card.selected .villa-card-check {
    opacity: 1;
    transform: scale(1);
}

/* Form Elements */
.min-nights-notice {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.date-warning {
    color: #8b4049;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    background: rgba(139, 64, 73, 0.1);
    margin: 1rem 0;
}

.reserve-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .reserve-section .form-row {
        grid-template-columns: 1fr;
    }
}

.reserve-section .form-group {
    margin-bottom: 1.5rem;
}

.reserve-section .form-group:last-child {
    margin-bottom: 0;
}

.reserve-section label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.reserve-section input,
.reserve-section select,
.reserve-section textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    background: var(--bg-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.reserve-section input:focus,
.reserve-section select:focus,
.reserve-section textarea:focus {
    outline: none;
    border-color: var(--accent, #c9a96e);
}

.reserve-section textarea {
    resize: vertical;
    min-height: 100px;
}

/* Payment Options */
.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .payment-options {
        grid-template-columns: 1fr;
    }
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-box {
    display: block;
    padding: 1.25rem;
    border: 2px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.payment-option:hover .payment-box {
    border-color: var(--text-muted);
}

.payment-option input:checked + .payment-box {
    border-color: var(--accent, #c9a96e);
    background: rgba(201, 169, 110, 0.05);
}

.payment-title {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.payment-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.payment-schedule {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

/* Request Options */
.request-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .request-options {
        grid-template-columns: 1fr;
    }
}

.request-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.request-option:hover {
    border-color: var(--text-muted);
}

.request-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent, #c9a96e);
}

.request-option span {
    font-size: 0.9rem;
}

/* Price Summary */
.price-summary-card {
    background: var(--bg-main);
    padding: 2.5rem;
    border: 1px solid var(--border);
    position: sticky;
    top: 100px;
}

.price-summary-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.summary-villa {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.summary-dates {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.summary-line.total {
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.reserve-submit {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
}

.reserve-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.reserve-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .reserve-aman-hero {
        padding: 6rem 1.5rem 3rem;
    }
    
    .reserve-aman-hero h1 {
        font-size: 2rem;
    }
    
    .reserve-aman-content {
        padding: 2rem 1rem;
    }
    
    .reserve-section {
        padding: 1.5rem;
    }
    
    .price-summary-card {
        position: static;
        padding: 1.5rem;
    }
}

/* ===================
   AVAILABILITY RESULTS PAGE - AMAN STYLE
   =================== */

.avail-hero {
    background: var(--bg-dark, #1c1a17);
    padding: 12rem 2rem 5rem;
    text-align: center;
}

.avail-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.avail-hero .hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.5rem;
}

.avail-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.06em;
    margin-bottom: 1.5rem;
}

.avail-dates-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: var(--accent, #c9a96e);
}

.avail-page {
    background: var(--bg-alt, #f8f7f5);
    padding-top: 5rem;
    padding-bottom: 6rem;
}

.avail-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.avail-count {
    text-align: center;
    margin-bottom: 4rem;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.avail-count p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-main, #2c2c2c);
    letter-spacing: 0.05em;
}

/* Property Cards Grid */
.avail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

@media (max-width: 900px) {
    .avail-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Property Card - Elegant Card Style */
.prop-card {
    background: #fff;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.prop-card:hover {
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

.prop-card-img {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

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

.prop-card:hover .prop-card-img img {
    transform: scale(1.02);
}

.prop-card-body {
    padding: 1.75rem;
    position: relative;
}

.prop-location {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted, #888);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.prop-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-main, #2c2c2c);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.prop-name a {
    color: inherit;
    text-decoration: none;
}

.prop-name a:hover {
    color: var(--accent, #c9a96e);
}

.prop-specs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted, #666);
    margin-bottom: 1.25rem;
}

.prop-specs span:not(:last-child)::after {
    content: '·';
    margin-left: 0.5rem;
    color: #ccc;
}

.prop-pricing {
    margin-bottom: 2rem;
    padding: 1.75rem;
    background: var(--bg-alt, #f8f7f5);
    border-left: 2px solid var(--accent, #c9a96e);
}

.prop-total {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--text-main, #2c2c2c);
    margin-bottom: 0.35rem;
    font-weight: 400;
}

.prop-total span {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted, #666);
    font-family: var(--font-sans);
}

.prop-per-night {
    font-size: 0.8rem;
    color: var(--text-muted, #888);
    letter-spacing: 0.03em;
}

.prop-actions {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--text-main, #2c2c2c);
    background: transparent;
    color: var(--text-main, #2c2c2c);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 500;
    font-family: var(--font-sans);
}

.btn-outline:hover {
    background: var(--text-main, #2c2c2c);
    color: #fff;
}

.btn-solid {
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: var(--bg-dark, #1c1a17);
    color: #fff;
    border: 1px solid var(--bg-dark, #1c1a17);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 500;
    font-family: var(--font-sans);
}

.btn-solid:hover {
    background: var(--accent, #c9a96e);
    border-color: var(--accent, #c9a96e);
}

/* Status Cards */
.status-card {
    background: #fff;
    padding: 5rem 3rem;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}

.status-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon.success {
    background: rgba(74,124,89,0.08);
    color: #4a7c59;
}

.status-icon.error {
    background: rgba(160,82,82,0.08);
    color: #a05252;
}

.status-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.status-card h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-main, #2c2c2c);
    letter-spacing: 0.02em;
}

.status-card p {
    color: var(--text-muted, #666);
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.status-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.status-actions .btn-outline,
.status-actions .btn-solid {
    flex: none;
    padding: 1rem 2rem;
}

/* Excluded Notice - Clean Style */
.excluded-notice {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.excluded-notice p {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted, #888);
    margin-bottom: 1.25rem;
}

.excluded-notice ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.excluded-notice li {
    font-size: 0.85rem;
    color: var(--text-muted, #888);
}

/* Availability Mobile */
@media (max-width: 768px) {
    .avail-hero {
        padding: 10rem 1.5rem 4rem;
    }
    
    .avail-page {
        padding-top: 3rem;
    }
    
    .avail-main {
        padding: 0 1rem;
    }
    
    .prop-card-img {
        height: 300px;
    }
    
    .prop-card-body {
        padding: 2rem;
    }
    
    .prop-card-body::before {
        left: 2rem;
        right: 2rem;
    }
    
    .prop-name {
        font-size: 1.5rem;
    }
    
    .prop-pricing {
        padding: 1.25rem;
    }
    
    .prop-actions {
        flex-direction: column;
    }
    
    .status-card {
        padding: 3rem 2rem;
    }
    
    .status-card h2 {
        font-size: 1.5rem;
    }
    
    .status-actions {
        flex-direction: column;
    }
}

/* ===================
   RESERVE PAGE - AMAN STYLE (NEW)
   =================== */

.reserve-page {
    background: var(--bg-alt, #f8f7f5);
    padding-top: 5rem;
    padding-bottom: 6rem;
}

.reserve-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Villa Selection Section */
.villa-select-section {
    background: #fff;
    padding: 3.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}

.section-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent, #c9a96e);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-main, #2c2c2c);
    margin-bottom: 2.5rem;
    letter-spacing: 0.02em;
}

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

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

/* Villa Card - Premium Style */
.villa-card {
    cursor: pointer;
    position: relative;
    background: #fff;
    border: 1px solid #e8e6e3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.villa-card:hover {
    border-color: var(--accent, #c9a96e);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.villa-card.selected {
    border-color: var(--accent, #c9a96e);
    box-shadow: 0 15px 40px rgba(201,169,110,0.2);
}

.villa-card input {
    display: none;
}

.villa-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.villa-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.villa-card:hover .villa-card-img img {
    transform: scale(1.08);
}

.villa-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
    pointer-events: none;
}

.villa-card-body {
    padding: 1.75rem;
    text-align: center;
    border-top: 1px solid #f0eeeb;
}

.villa-card-name {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--text-main, #2c2c2c);
    letter-spacing: 0.02em;
}

.villa-card-location {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted, #888);
    margin-bottom: 1rem;
}

.villa-card-specs {
    font-size: 0.8rem;
    color: var(--text-muted, #666);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.villa-card-price {
    font-size: 0.85rem;
    color: var(--accent, #c9a96e);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.villa-card-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--accent, #c9a96e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.villa-card-check svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    stroke-width: 3;
}

.villa-card.selected .villa-card-check {
    opacity: 1;
    transform: scale(1);
}

/* Reserve Form Sections */
.reserve-page .form-section {
    background: #fff;
    padding: 3.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
    display: none;
}

.reserve-page .form-section.active {
    display: block;
}

.reserve-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .reserve-page .form-row {
        grid-template-columns: 1fr;
    }
}

.reserve-page .form-group {
    margin-bottom: 1.5rem;
}

.reserve-page .form-group:last-child {
    margin-bottom: 0;
}

.reserve-page .form-group label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted, #888);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.reserve-page .form-group input:not([type="checkbox"]):not([type="radio"]),
.reserve-page .form-group select,
.reserve-page .form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e8e6e3;
    background: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-main, #2c2c2c);
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

.reserve-page .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
    cursor: pointer;
}

.reserve-page .form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.reserve-page .form-group select:focus,
.reserve-page .form-group textarea:focus {
    outline: none;
    border-color: var(--accent, #c9a96e);
}

.reserve-page .form-group input::placeholder,
.reserve-page .form-group textarea::placeholder {
    color: #bbb;
}

.reserve-page .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Min nights notice */
.min-notice {
    font-size: 0.8rem;
    color: var(--text-muted, #666);
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--bg-alt, #f8f7f5);
    border-left: 2px solid var(--accent, #c9a96e);
}

/* Date warning */
.reserve-page .date-warning {
    color: #a05252;
    font-size: 0.85rem;
    padding: 1rem 1.25rem;
    background: rgba(160,82,82,0.08);
    margin-bottom: 1.5rem;
    display: none;
}

/* Payment Options */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.payment-opt {
    cursor: pointer;
}

.payment-opt input {
    display: none;
}

.payment-opt-box {
    display: block;
    padding: 1.5rem 1rem;
    border: 1px solid #e8e6e3;
    text-align: center;
    transition: all 0.3s ease;
    background: #fff;
}

.payment-opt:hover .payment-opt-box {
    border-color: var(--accent, #c9a96e);
}

.payment-opt input:checked + .payment-opt-box {
    border-color: var(--accent, #c9a96e);
    background: rgba(201,169,110,0.05);
}

.payment-opt-title {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: var(--text-main, #2c2c2c);
    font-size: 0.9rem;
}

.payment-opt-desc {
    font-size: 0.75rem;
    color: var(--text-muted, #888);
}

.payment-schedule {
    padding-top: 1.5rem;
    border-top: 1px solid #e8e6e3;
}

.reserve-page .schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    color: var(--text-muted, #666);
}

/* Checkbox options */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.checkbox-opt {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid #e8e6e3;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.checkbox-opt:hover {
    border-color: var(--accent, #c9a96e);
}

.checkbox-opt input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    border: 2px solid #d0d0d0 !important;
    border-radius: 50% !important;
    background: #fff !important;
    background-image: none !important;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    padding: 0 !important;
    margin: 0 !important;
    flex: 0 0 24px !important;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
}

.checkbox-opt input[type="checkbox"]:checked {
    background: var(--accent, #c9a96e) !important;
    border-color: var(--accent, #c9a96e) !important;
}

.checkbox-opt input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.checkbox-opt span {
    font-size: 0.8rem;
    color: var(--text-main, #2c2c2c);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Summary Card - Light Version */
.summary-card {
    background: #fff;
    border: 1px solid #e8e6e3;
    padding: 3rem;
    margin-bottom: 2rem;
    display: none;
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}

.summary-card.active {
    display: block;
}

.summary-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e8e6e3;
    color: var(--text-main, #2c2c2c);
    letter-spacing: 0.05em;
}

.summary-villa-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--text-main, #2c2c2c);
}

.summary-dates {
    font-size: 0.85rem;
    color: var(--text-muted, #888);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0eeeb;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--text-muted, #666);
}

.summary-row.total {
    border-top: 1px solid #e8e6e3;
    margin-top: 0.75rem;
    padding-top: 1.25rem;
    font-size: 1.35rem;
    color: var(--text-main, #2c2c2c);
    font-family: var(--font-serif);
}

.submit-btn {
    width: 100%;
    padding: 1.35rem;
    background: var(--bg-dark, #2c2c2c);
    color: #fff;
    border: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.4s ease;
    margin-top: 2rem;
    font-weight: 500;
}

.submit-btn:hover:not(:disabled) {
    background: var(--accent, #c9a96e);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.submit-note {
    font-size: 0.75rem;
    color: var(--text-muted, #888);
    text-align: center;
    margin-top: 1.25rem;
    font-style: italic;
}

/* Policy Section */
.policy-box {
    background: var(--bg-alt, #f8f7f5);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-box h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-main, #2c2c2c);
    font-weight: 500;
}

.policy-box p {
    font-size: 0.8rem;
    color: var(--text-muted, #666);
    line-height: 1.7;
}

.policy-agree {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-main, #2c2c2c);
    cursor: pointer;
}

.policy-agree input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    border: 2px solid #d0d0d0 !important;
    border-radius: 50% !important;
    background: #fff !important;
    background-image: none !important;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    padding: 0 !important;
    margin: 0 !important;
    flex: 0 0 24px !important;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
}

.policy-agree input[type="checkbox"]:checked {
    background: var(--accent, #c9a96e) !important;
    border-color: var(--accent, #c9a96e) !important;
}

.policy-agree input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

/* Reserve Mobile */
@media (max-width: 768px) {
    .reserve-page {
        padding-top: 3rem;
    }
    
    .reserve-main {
        padding: 0 1rem;
    }
    
    .villa-select-section,
    .reserve-page .form-section {
        padding: 2.5rem 1.5rem;
    }
    
    .villa-card-img {
        height: 180px;
    }
    
    .summary-card {
        padding: 2rem 1.5rem;
    }
}

/* ===================
   CHECKBOX RESET - STRONG OVERRIDE
   =================== */
input[type="checkbox"].custom-check,
.checkbox-opt input[type="checkbox"],
.policy-agree input[type="checkbox"],
.reserve-page input[type="checkbox"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    border: 2px solid #c5c5c5 !important;
    border-radius: 50% !important;
    background: #fff !important;
    background-image: none !important;
    background-color: #fff !important;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.25s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    flex: 0 0 22px !important;
    box-sizing: border-box !important;
    aspect-ratio: 1 / 1 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

.checkbox-opt input[type="checkbox"]:hover,
.policy-agree input[type="checkbox"]:hover,
.reserve-page input[type="checkbox"]:hover {
    border-color: var(--accent, #c9a96e) !important;
}

.checkbox-opt input[type="checkbox"]:checked,
.policy-agree input[type="checkbox"]:checked,
.reserve-page input[type="checkbox"]:checked {
    background: var(--accent, #c9a96e) !important;
    background-color: var(--accent, #c9a96e) !important;
    border-color: var(--accent, #c9a96e) !important;
}

.checkbox-opt input[type="checkbox"]:checked::after,
.policy-agree input[type="checkbox"]:checked::after,
.reserve-page input[type="checkbox"]:checked::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 6px !important;
    height: 6px !important;
    background: #fff !important;
    border-radius: 50% !important;
}
/* ================================
   AVAILABILITY RESULTS PAGE
   ================================ */

/* Hero */
.avail-hero {
    background: var(--bg-dark);
    padding: 8rem 2rem 4rem;
    text-align: center;
}
.avail-hero .hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}
.avail-hero h1 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 1rem;
}
.avail-dates-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* Page Layout */
.avail-page {
    background: var(--bg-main);
    padding: 4rem 2rem 6rem;
}
.avail-main {
    max-width: 1100px;
    margin: 0 auto;
}
.avail-count {
    text-align: center;
    margin-bottom: 3rem;
}
.avail-count p {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Aman-style Grid */
.avail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
@media (max-width: 900px) {
    .avail-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Property Card in Availability Grid */
.avail-grid .prop-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.avail-grid .prop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.4s ease;
}
.avail-grid .prop-card:hover .prop-card-img img {
    transform: scale(1.02);
}

.prop-card-body {
    padding: 0;
}
.prop-location {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.prop-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
}
.prop-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.prop-name a:hover {
    color: var(--accent);
}

/* Elegant specs row */
.prop-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.prop-specs span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Understated footer */
.prop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-bottom: 1.25rem;
}
.prop-price {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

/* Reserve Button on Card */
.prop-reserve-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--bg-dark, #1c1a17);
    color: #fff;
    padding: 1rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.prop-reserve-btn:hover {
    background: var(--accent, #c9a96e);
}

/* Elegant CTA */
.prop-cta {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-main);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
.prop-cta::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
}
.prop-cta:hover {
    color: var(--accent);
}

/* Status Cards */
.status-card {
    background: #fff;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}
.status-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.status-icon svg {
    width: 50px;
    height: 50px;
    stroke-width: 1;
}
.status-icon.success {
    color: var(--accent);
}
.status-icon.error {
    color: var(--text-muted);
}
.status-card h2 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}
.status-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.status-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Elegant minimum stay notice - FINAL OVERRIDE */
.excluded-notice {
    text-align: center !important;
    margin-bottom: 3rem !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-left: none !important;
    max-width: none !important;
}
.excluded-notice p {
    font-size: 0.65rem !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: var(--text-muted) !important;
    margin-bottom: 1.25rem !important;
}
.excluded-list {
    display: flex !important;
    justify-content: center !important;
    gap: 2.5rem !important;
    flex-wrap: wrap !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
}
.excluded-item {
    font-size: 0.9rem !important;
    color: var(--text-muted) !important;
    font-family: var(--font-serif);
}
.excluded-item strong {
    color: var(--text-main) !important;
    font-weight: 400 !important;
}

/* Property card - availability results page */
.avail-grid .prop-card {
    background: #fff !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06) !important;
}
.avail-grid .prop-card-body {
    padding: 1.75rem !important;
    background: #fff !important;
}
.avail-grid .prop-card-body::before,
.avail-grid .prop-card-body::after {
    display: none !important;
}
.avail-grid .prop-footer {
    border: none !important;
    padding-top: 0.75rem !important;
    margin-bottom: 1rem !important;
}
.avail-grid .prop-specs {
    border: none !important;
    margin-bottom: 1rem !important;
}

/* =======================================
   MOBILE FIXES - Property Page
   ======================================= */

/* Side nav arrow styling */
.side-nav-arrow {
    display: none;
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 768px) {
    /* Mobile side navigation - show arrows only */
    .property-side-nav {
        padding: 1rem 0.5rem !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .side-nav-name {
        display: none !important;
    }
    
    .side-nav-arrow {
        display: block !important;
        writing-mode: horizontal-tb !important;
        font-size: 1.5rem;
    }
    
    /* Share form - stack inputs on mobile */
    .share-row {
        grid-template-columns: 1fr !important;
    }
    
    .share-form input,
    .share-form textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
    
    /* Ensure reserve button is always visible */
    .aman-reserve-btn {
        display: block !important;
        width: 100% !important;
        padding: 1rem 1.5rem !important;
        font-size: 0.7rem !important;
    }
    
    /* Reserve section better spacing on mobile */
    .reserve-container {
        padding: 2rem 1.5rem !important;
    }
    
    .aman-reserve-form .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .aman-reserve-form .form-group {
        width: 100%;
    }
    
    /* Date unavailable notice */
    .date-unavailable-notice {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .reserve-container {
        padding: 1.5rem 1rem !important;
    }
    
    .aman-reserve-title {
        font-size: 1.8rem !important;
    }
    
    .aman-reserve-subtitle {
        font-size: 0.8rem !important;
    }
    
    .share-container {
        padding: 3rem 1.5rem;
    }
    
    .share-container h3 {
        font-size: 1.25rem;
    }
}

/* Flatpickr placeholder text visibility */
.flatpickr-input::placeholder,
.aman-reserve-form input::placeholder,
.reserve-container input::placeholder {
    color: rgba(255,255,255,0.4) !important;
    opacity: 1 !important;
}

/* Alt input placeholder */
.flatpickr-alt-input::placeholder,
input.flatpickr-input::placeholder {
    color: rgba(255,255,255,0.4) !important;
    opacity: 1 !important;
}

/* For reserve page light theme */
.reserve-section input::placeholder {
    color: rgba(0,0,0,0.4) !important;
    opacity: 1 !important;
}

/* =======================================
   Availability Date Change Section
   ======================================= */
.avail-date-change {
    background: var(--bg-alt, #f8f7f5);
    padding: 1.5rem 2rem;
    text-align: center;
}

.date-change-form {
    max-width: 600px;
    margin: 0 auto;
}

.date-change-row {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    justify-content: center;
}

.date-change-group {
    flex: 1;
    max-width: 180px;
    text-align: left;
}

.date-change-group label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.date-change-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    background: #fff;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    cursor: pointer;
}

.date-change-btn {
    background: var(--bg-dark, #1c1a17);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.date-change-btn:hover {
    background: var(--accent, #c9a96e);
}

@media (max-width: 600px) {
    .date-change-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .date-change-group {
        max-width: none;
    }
    
    .date-change-btn {
        width: 100%;
        padding: 1rem;
    }
}

/* Status Card - Centered */
.avail-main .status-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

/* =======================================
   POLISHED Property Card Styles
   ======================================= */
.avail-grid .prop-card {
    background: #fff !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
    transition: all 0.4s ease;
}

.avail-grid .prop-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
    transform: translateY(-4px);
}

.avail-grid .prop-card-body {
    padding: 1.5rem 1.75rem 1.75rem !important;
    background: #fff !important;
}

.avail-grid .prop-location {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted, #888);
    margin-bottom: 0.5rem;
}

.avail-grid .prop-name {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.avail-grid .prop-name a {
    color: var(--text-main, #1c1a17);
    text-decoration: none;
    transition: color 0.3s ease;
}

.avail-grid .prop-name a:hover {
    color: var(--accent, #c9a96e);
}

.avail-grid .prop-specs {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.75rem;
    color: var(--text-muted, #666);
    margin-bottom: 1rem;
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.avail-grid .prop-specs span:not(:last-child)::after {
    content: '·';
    margin-left: 0.4rem;
    color: #ccc;
}

.avail-grid .prop-footer {
    border: none !important;
    padding-top: 0.5rem !important;
    margin-bottom: 0.75rem !important;
}

.avail-grid .prop-price {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.8rem;
    color: var(--text-muted, #888);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.avail-grid .prop-reserve-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--bg-dark, #1c1a17);
    color: #fff;
    padding: 0.85rem 1.5rem;
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.avail-grid .prop-reserve-btn:hover {
    background: var(--accent, #c9a96e);
}

/* Polished Status Card */
.status-card {
    background: #fff;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}

.status-card h2 {
    font-family: var(--font-serif, 'Cormorant Garamond', serif);
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-main, #1c1a17);
    letter-spacing: 0.02em;
}

.status-card p {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    color: var(--text-muted, #666);
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-size: 0.9rem;
}

.status-card p strong {
    color: var(--text-main, #1c1a17);
    font-weight: 500;
}

.status-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.status-actions .btn-solid,
.status-actions .btn-outline {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.status-actions .btn-solid {
    background: var(--bg-dark, #1c1a17);
    color: #fff;
    border: 1px solid var(--bg-dark, #1c1a17);
}

.status-actions .btn-solid:hover {
    background: var(--accent, #c9a96e);
    border-color: var(--accent, #c9a96e);
}

.status-actions .btn-outline {
    background: transparent;
    color: var(--text-main, #1c1a17);
    border: 1px solid var(--border, #e0e0e0);
}

.status-actions .btn-outline:hover {
    border-color: var(--text-main, #1c1a17);
}