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

:root {
    --gold: #B8986C;
    --gold-light: #C4A97D;
    --gold-dark: #A68B5B;
    --black: #2C2824;
    --white: #FDFCFA;
    --gray-light: #FAF8F5;
    --gray: #E8E4DE;
    --gray-dark: #9A9590;
    --text-primary: #3D3D3D;
    --text-secondary: #9A9590;
    --sand: #C4B5A0;
    --soil: #8B7355;
    --clay: #A67B5B;
    --stone: #E8E4DE;
    --cream: #FAF8F5;
    --deep-earth: #2C2824;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--text-primary);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--deep-earth);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

img {
    max-width: 100%;
    height: auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: hsla(40 50% 99% / 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray);
    transition: all 0.3s ease;
}

header.scrolled {
    background: hsla(40 50% 99% / 0.98);
    border-bottom-color: var(--sand);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 25px;
    width: auto;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--black);
}

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

nav a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    padding: 10px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-reserve {
    background: var(--deep-earth);
    color: var(--white);
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reserve:hover {
    background: var(--gold);
}

.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 700px;
    min-height: -webkit-fill-available;
    overflow: hidden;
    background-color: #1a2a3a;
    contain: layout style;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #1a2a3a;
}

.hero-slide {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 90px);
    opacity: 0;
    transition: opacity 1s ease;
    text-decoration: none;
    cursor: pointer;
    pointer-events: none;
    background-color: #1a2a3a;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: calc(100vh - 90px);
    height: calc(100svh - 90px);
    min-height: 610px;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.hero-slide-content {
    position: absolute;
    bottom: 80px;
    left: 60px;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-slide-content p {
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    margin: 0;
}

.hero-slide-content .hero-slide-location {
    font-size: 12px;
    letter-spacing: 1.5px;
    opacity: 0.8;
    margin-top: 6px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-nav:hover {
    background: var(--gold);
    color: var(--white);
}

.hero-nav.prev {
    left: 0;
}

.hero-nav.next {
    right: 0;
}

.hero-counter {
    position: absolute;
    bottom: 120px;
    right: 40px;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 2px;
}

.booking-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 0;
    z-index: 200;
    overflow: visible;
}

.booking-bar-inner {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-bar-section {
    padding: 25px 30px;
    border-right: 1px solid var(--gray);
}

.booking-bar-section:last-child {
    border-right: none;
}

.booking-bar-title {
    background: var(--black);
    color: var(--white);
    padding: 25px 40px;
    display: flex;
    align-items: center;
    position: relative;
}

.booking-bar-title::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    width: 100vw;
    background: var(--black);
}

.booking-bar-title h3 {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3;
}

.booking-bar-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.booking-bar-input {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
}

.booking-bar-input::placeholder {
    color: var(--text-secondary);
    font-style: italic;
}

.booking-bar-dates {
    display: flex;
    gap: 20px;
}

.booking-bar-date {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-bar-date span {
    color: var(--text-secondary);
}

.booking-bar-submit {
    background: var(--deep-earth);
    border: none;
    padding: 25px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    touch-action: manipulation;
}

.booking-bar-submit:hover {
    background: var(--gold);
}

.booking-bar-submit span {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section {
    padding: 100px 0;
    background-color: var(--white);
    overflow-x: hidden;
    contain: layout style;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.villa-card {
    background: var(--cream);
    overflow: hidden;
    border: 1px solid var(--gray);
    transition: all 0.4s ease;
}

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

.villa-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: #e5e5e5;
}

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

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

.villa-card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Unavailable villa styling */
.villa-unavailable {
    opacity: 0.7;
}

.villa-unavailable .villa-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(44, 40, 36, 0.3), rgba(44, 40, 36, 0.5));
    pointer-events: none;
}

.unavailable-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(44, 40, 36, 0.9);
    color: var(--cream);
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
}

.villa-card-content {
    padding: 30px;
}

.villa-card-location {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.villa-card-title {
    font-size: 26px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.villa-card-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--text-secondary);
}

.villa-card-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.villa-card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.villa-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray);
}

.villa-card-price {
    font-size: 18px;
    color: var(--text-primary);
}

.villa-card-price span {
    font-size: 14px;
    color: var(--text-secondary);
}

.villa-card-price .price-on-request {
    font-size: 14px;
    font-style: italic;
    color: var(--gold);
}

.btn-view {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 3px;
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-view:hover {
    color: var(--gold-dark);
    border-color: var(--gold-dark);
}

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

.feature-image {
    position: relative;
    overflow: hidden;
}

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

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    background: var(--gray-light);
}

.feature-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 38px;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-learn {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    padding-bottom: 5px;
    border-bottom: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-learn:hover {
    color: var(--gold);
}

footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

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

.footer-brand .logo-text {
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--gold);
}

.page-header {
    padding-top: 120px;
    padding-bottom: 60px;
    background: var(--gray-light);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.villa-gallery {
    margin-top: 80px;
    position: relative;
}

.gallery-main {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
}

.gallery-overlay svg {
    width: 18px;
    height: 18px;
}

.gallery-manage-link {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(139, 115, 85, 0.9);
    color: white;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 2px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.gallery-manage-link:hover {
    background: rgba(107, 83, 68, 1);
    color: white;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
}

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

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

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    padding: 20px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 14px;
    letter-spacing: 2px;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    max-width: 80vw;
    overflow-x: auto;
    padding: 10px;
}

.lightbox-thumbnails .gallery-thumb {
    width: 80px;
    height: 50px;
    border: 2px solid transparent;
}

.lightbox-thumbnails .gallery-thumb.active {
    border-color: var(--gold);
}

.villa-detail-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    margin-top: 80px;
}

.villa-detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.villa-detail-content {
    padding: 80px 0;
}

.villa-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.villa-info h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.villa-location {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.villa-specs {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-secondary);
}

.villa-specs .spec-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.villa-specs .spec-item strong {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
}

.villa-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.villa-amenities h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    list-style: none;
}

.amenities-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 25px;
    position: relative;
}

.amenities-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.booking-sidebar {
    background: var(--gray-light);
    padding: 40px;
    position: sticky;
    top: 120px;
}

.booking-sidebar h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.booking-sidebar .price {
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 30px;
}

.booking-sidebar .price span {
    font-size: 14px;
    color: var(--text-secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    border: 1px solid var(--gray);
    border-radius: 0;
    background: var(--white);
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.btn-book {
    width: 100%;
    background: var(--deep-earth);
    color: var(--white);
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--gold);
}

.btn-book:disabled {
    background: var(--gray-dark);
    cursor: not-allowed;
}

.villa-cta-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray);
}

.btn-book-now {
    display: block;
    width: 100%;
    background: var(--gold);
    color: var(--white);
    padding: 18px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-now:hover {
    background: var(--deep-earth);
}

.total-price {
    text-align: center;
    padding: 20px;
    background: var(--white);
    margin-top: 20px;
}

.total-price .label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.total-price .amount {
    font-size: 28px;
    color: var(--gold);
}

.price-breakdown {
    background: var(--white);
    padding: 20px;
    margin-top: 15px;
    border: 1px solid var(--gray);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.price-row.breakdown-item {
    border-bottom: 1px solid var(--gray-light);
}

.price-row.subtotal {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--gray);
    font-weight: 500;
    color: var(--text-primary);
}

.price-row.tax {
    font-size: 13px;
}

.reviews-section {
    padding: 60px 0;
    border-top: 1px solid var(--gray);
}

.reviews-section h3 {
    font-size: 28px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--gray-light);
    padding: 30px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-rating {
    color: var(--gold);
    font-size: 18px;
}

.review-date {
    font-size: 13px;
    color: var(--text-secondary);
}

.review-content {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.review-form {
    background: var(--gray-light);
    padding: 40px;
    margin-top: 40px;
}

.review-form h4 {
    font-size: 22px;
    margin-bottom: 25px;
}

.alert {
    padding: 20px;
    margin-bottom: 30px;
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: var(--gray-light);
}

.auth-container {
    background: var(--white);
    padding: 60px;
    max-width: 450px;
    width: 100%;
    border: 1px solid var(--gray);
}

.auth-container h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.auth-container .form-group {
    margin-bottom: 25px;
}

.auth-link {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-secondary);
}

.auth-link a {
    color: var(--gold);
    font-weight: 500;
}

.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    text-align: center;
}

.success-content {
    max-width: 500px;
}

.success-icon {
    font-size: 80px;
    color: var(--gold);
    margin-bottom: 30px;
}

.success-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.success-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background: var(--deep-earth);
    color: var(--white);
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--gold);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--deep-earth);
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--sand);
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--stone);
    border-color: var(--soil);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 0 20px 20px;
    border-top: 1px solid var(--gray);
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 9999;
    max-height: calc(100vh - 60px);
    max-height: calc(100svh - 60px);
    overflow-y: auto;
    touch-action: manipulation;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 15px 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    border-bottom: 1px solid var(--gray-light);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

@media (max-width: 992px) {
    .header-container {
        padding: 15px 20px;
    }
    
    nav {
        display: none;
    }
    
    .header-actions {
        gap: 0;
    }
    
    .header-actions a,
    .header-actions .btn-reserve {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        position: relative;
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        background-color: #1a2a3a;
    }
    
    .hero-slider {
        position: relative;
        height: 65vh;
        height: 65svh;
        min-height: 400px;
        background-color: #1a2a3a;
    }
    
    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        opacity: 1;
        transition: none;
        background-color: #1a2a3a;
    }
    
    .hero-slide.active {
        display: block;
        opacity: 1;
    }
    
    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        min-height: auto;
    }
    
    .booking-bar {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        background: var(--white);
    }
    
    .booking-bar-inner {
        flex-direction: column;
    }
    
    .booking-bar-section {
        border-right: none;
        border-bottom: 1px solid var(--gray);
    }
    
    .villas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .destination-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .destination-showcase-card {
        height: 280px;
    }
    
    .destination-showcase-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }
    
    .destination-showcase-card:nth-child(4) {
        grid-column: span 1;
    }
    
    .feature-section {
        grid-template-columns: 1fr;
    }
    
    .villa-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        position: static;
    }
    
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .hero {
        position: relative;
        height: auto;
        min-height: auto;
        display: flex;
        flex-direction: column;
        background-color: #1a2a3a;
    }
    
    .hero-slider {
        position: relative;
        height: 55vh;
        height: 55svh;
        min-height: 350px;
        background-color: #1a2a3a;
    }
    
    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        opacity: 1;
        transition: none;
        background-color: #1a2a3a;
    }
    
    .hero-slide.active {
        display: block;
        opacity: 1;
    }
    
    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        min-height: auto;
    }
    
    .booking-bar {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
    }
    
    .booking-bar-inner {
        flex-direction: column;
    }
    
    .booking-bar-title {
        padding: 15px 20px;
    }
    
    .booking-bar-title h3 {
        font-size: 16px;
    }
    
    .booking-bar-title h3 br {
        display: none;
    }
    
    .explore-text {
        display: inline;
    }
    
    .booking-bar-section {
        border-right: none;
        border-bottom: 1px solid var(--gray);
        padding: 15px 20px;
    }
    
    .booking-bar-section:last-child {
        border-bottom: none;
    }
    
    .date-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .date-section .booking-bar-label {
        margin-bottom: 0;
    }
    
    .date-display {
        font-size: 14px;
    }
    
    .booking-bar-submit {
        width: 100%;
        padding: 18px;
    }
    
    .hero-slide-content {
        bottom: 30px;
        left: 20px;
        right: 20px;
    }
    
    .hero-slide-content h2 {
        font-size: 28px;
    }
    
    .hero-counter {
        display: none;
    }
    
    .hero-nav {
        width: 40px;
        height: 40px;
        top: 50%;
    }
    
    .villas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-content {
        padding: 30px 20px;
    }
    
    .feature-title {
        font-size: 24px;
    }
    
    .auth-container {
        padding: 40px 30px;
    }
    
    .destination-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .destination-showcase-card {
        height: 200px;
    }
    
    .destination-showcase-card:first-child {
        grid-column: span 1;
        grid-row: span 1;
        height: 220px;
    }
    
    .destination-showcase-card:nth-child(4) {
        grid-column: span 1;
    }
    
    .destination-card {
        height: 200px;
    }
    
    .villa-detail-hero {
        height: 50vh;
        min-height: 300px;
        margin-top: 60px;
    }
    
    .villa-detail-content {
        padding: 40px 0;
    }
    
    .villa-detail-grid {
        gap: 30px;
    }
    
    .villa-info h1 {
        font-size: 28px;
    }
    
    .villa-specs {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .villa-description {
        font-size: 15px;
    }
    
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        padding: 25px;
    }
    
    .booking-sidebar h3 {
        font-size: 22px;
    }
    
    .lightbox-image {
        max-height: 70vh;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-thumbnails {
        bottom: 40px;
    }
    
    .lightbox-thumbnails .gallery-thumb {
        width: 60px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    .hero-slider {
        height: 45vh;
        min-height: 280px;
    }
    
    .hero-slide-content {
        left: 15px;
        right: 15px;
        bottom: 20px;
    }
    
    .hero-slide-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }
    
    .hero-slide-content p {
        font-size: 15px;
    }
    
    .hero-nav {
        width: 35px;
        height: 35px;
    }
    
    .booking-bar-title {
        padding: 12px 15px;
    }
    
    .booking-bar-title h3 {
        font-size: 13px;
    }
    
    .booking-bar-section {
        padding: 12px 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .villa-card-content {
        padding: 20px 15px;
    }
    
    .villa-card-title {
        font-size: 18px;
    }
    
    .destination-card {
        height: 160px;
    }
    
    .feature-content {
        padding: 25px 15px;
    }
    
    .feature-title {
        font-size: 20px;
    }
}

/* ===== DESTINATIONS STYLES ===== */

.page-hero {
    position: relative;
    height: 35vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
}

.page-hero-small {
    height: 35vh;
    min-height: 300px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 800px;
}

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: #ffffff;
}

.page-hero-content p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.breadcrumb a {
    color: #ffffff;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 10px;
    opacity: 0.5;
}

.hero-stats {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.destination-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    display: block;
    border: 1px solid var(--gray);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-3px);
    border-color: var(--sand);
}

.destination-card-large {
    min-height: 400px;
}

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

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

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

.destination-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}

.destination-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.destination-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: #ffffff;
    z-index: 2;
}

.destination-card-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 400;
    color: #ffffff;
}

.destination-card-content p {
    font-size: 14px;
    opacity: 0.85;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
}

.destination-stats {
    display: flex;
    gap: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.destination-stats span {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 2px;
}

/* Regions Grid */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.region-card {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    display: block;
    height: 300px;
    border: 1px solid var(--gray);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.region-card:hover {
    transform: translateY(-3px);
    border-color: var(--sand);
}

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

.region-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.region-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.region-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.region-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--white);
    z-index: 2;
}

.region-card-content h3 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.region-card-content p {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 12px;
    line-height: 1.5;
}

.region-card-content .villa-count {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gold);
    padding: 5px 10px;
    border-radius: 2px;
    display: inline-block;
}

/* Homepage Destinations Section */
.destinations-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destination-showcase-card {
    position: relative;
    height: 350px;
    border-radius: 2px;
    background-color: #1a2a3a;
    overflow: hidden;
    display: block;
    transition: transform 0.4s ease;
}

.destination-showcase-card:hover {
    transform: translateY(-5px);
}

.destination-showcase-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

.destination-showcase-card:nth-child(4) {
    grid-column: span 2;
}

.destination-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.destination-showcase-card:hover img {
    transform: scale(1.05);
}

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

.destination-showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: var(--white);
}

.destination-showcase-content h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.destination-showcase-content span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 15px 40px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.btn-gold:hover {
    background: var(--gold-dark);
}

/* Responsive */
@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destination-showcase-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
        height: 350px;
    }
    
    .page-hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .destinations-showcase {
        grid-template-columns: 1fr;
    }
    
    .destination-showcase-card {
        height: 220px;
    }
    
    .destination-showcase-card:first-child {
        grid-column: span 1;
        height: 280px;
    }
    
    .destination-showcase-card:nth-child(4) {
        grid-column: span 1;
    }
    
    .destination-showcase-content {
        padding: 20px;
    }
    
    .destination-showcase-content h3 {
        font-size: 20px;
    }
    
    .regions-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .page-hero-content h1 {
        font-size: 32px;
    }
    
    .destination-card-content h2 {
        font-size: 28px;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-card {
        height: 250px;
    }
    
    .experience-card:first-child {
        grid-column: span 1;
        height: 280px;
    }
}

/* ===== EXPERIENCES STYLES ===== */

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.experience-card {
    position: relative;
    height: 400px;
    border-radius: 2px;
    overflow: hidden;
    display: block;
    border: 1px solid var(--gray);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.experience-card:first-child {
    grid-column: span 2;
    height: 450px;
}

.experience-card:hover {
    transform: translateY(-3px);
    border-color: var(--sand);
}

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

.experience-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.experience-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.experience-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: var(--white);
    z-index: 2;
}

.experience-tagline {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.experience-card-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 400;
}

.experience-card-content p {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 15px;
    line-height: 1.6;
}

.experience-count {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gold);
    padding: 6px 12px;
    border-radius: 2px;
    display: inline-block;
}

.experience-tagline-hero {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 15px;
}

.experience-features {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.experience-features h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: left;
}

.features-list li {
    padding: 15px 20px;
    background: var(--white);
    border-radius: 2px;
    font-size: 14px;
    color: var(--text-secondary);
    position: relative;
    padding-left: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.features-list li::before {
    content: "\2713";
    position: absolute;
    left: 15px;
    color: var(--gold);
    font-weight: bold;
}

:root {
    --cream: #FAF9F6;
}

@media (max-width: 768px) {
    .experiences-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-card:first-child {
        grid-column: span 1;
        height: 400px;
    }
    
    .experience-card-content h2 {
        font-size: 26px;
    }
}

/* Clickable villa images and titles */
a.villa-card-image {
    display: block;
    cursor: pointer;
}

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

.villa-card-title-link {
    text-decoration: none;
    color: inherit;
}

.villa-card-title-link:hover .villa-card-title {
    color: var(--gold);
}

/* Villa detail sections */
.villa-section {
    margin-bottom: 35px;
}

.villa-section h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.villa-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Search autocomplete dropdown */
.search-dropdown {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-bottom: none;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
    z-index: 9999;
    max-height: 350px;
    overflow-y: auto;
}

.search-dropdown[style*="block"] {
    display: block !important;
}

.search-item {
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-light);
    transition: background 0.2s;
}

.search-item:last-child {
    border-bottom: none;
}

.search-item:hover {
    background: var(--gray-light);
}

.search-item-type {
    display: inline-block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    background: var(--gold);
    padding: 3px 8px;
    border-radius: 2px;
    margin-right: 10px;
}

.search-item-name {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.search-item-location {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
    margin-left: 45px;
}

/* Search section label */
.search-section-label {
    padding: 10px 20px 5px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Date section - full area clickable */
.date-section {
    position: relative;
    cursor: pointer;
}

.date-section:hover {
    background: var(--gray-light);
}

.date-input-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.date-display {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-secondary);
}

.date-display.date-selected {
    color: var(--text-primary);
    font-weight: 500;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Quick Facts section */
.villa-quick-facts {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gray);
}

.villa-quick-facts h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.quick-facts-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.quick-fact-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
}

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

.quick-fact-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.quick-fact-value {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .quick-fact-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

/* Enquiry & Contact Forms */
.enquiry-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.enquiry-form-container h2, .contact-form-container h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.enquiry-form, .contact-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.enquiry-form .form-group, .contact-form .form-group {
    margin-bottom: 20px;
}

.enquiry-form label, .contact-form label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.enquiry-form input, .enquiry-form textarea, .enquiry-form select,
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--gray);
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.enquiry-sidebar {
    position: sticky;
    top: 100px;
}

.villa-summary-card {
    background: var(--white);
    border: 1px solid var(--gray);
    overflow: hidden;
    margin-bottom: 30px;
}

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

.villa-summary-info {
    padding: 25px;
}

.villa-summary-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.villa-summary-info .villa-location {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 5px;
}

.villa-summary-info .villa-specs {
    font-size: 13px;
    color: var(--text-secondary);
}

.enquiry-benefits {
    background: var(--gray-light);
    padding: 30px;
}

.enquiry-benefits h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.enquiry-benefits ul {
    list-style: none;
    padding: 0;
}

.enquiry-benefits li {
    padding: 10px 0 10px 25px;
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid var(--gray);
}

.enquiry-benefits li:last-child {
    border-bottom: none;
}

.enquiry-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Contact Page */
.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-methods {
    margin-top: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--gray-light);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-method a {
    color: var(--gold);
}

.contact-hours {
    font-size: 13px;
    color: var(--text-secondary);
}

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

.section-about h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    margin-bottom: 30px;
}

.section-about p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Profile Page */
.profile-nav {
    display: flex;
    border-bottom: 1px solid var(--gray);
    margin-bottom: 40px;
}

.profile-nav-item {
    padding: 15px 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s;
}

.profile-nav-item:hover, .profile-nav-item.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.profile-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 30px;
}

.booking-card {
    display: flex;
    background: var(--white);
    border: 1px solid var(--gray);
    margin-bottom: 30px;
    overflow: hidden;
}

.booking-image {
    width: 300px;
    min-height: 220px;
    flex-shrink: 0;
}

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

.booking-details {
    flex: 1;
    padding: 30px;
}

.booking-status {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.booking-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    margin-bottom: 20px;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.booking-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.booking-value {
    font-size: 16px;
}

.booking-price {
    font-size: 18px;
    color: var(--gold);
}

.booking-actions {
    display: flex;
    gap: 15px;
}

.btn-review {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gold);
    padding: 10px 20px;
    text-decoration: none;
}

.enquiry-card {
    background: var(--white);
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.enquiry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.enquiry-header h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
}

.enquiry-status {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
}

.status-pending {
    background: #fef3cd;
    color: #856404;
}

.status-responded {
    background: #d4edda;
    color: #155724;
}

.enquiry-meta {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.enquiry-meta span {
    margin-right: 20px;
}

.enquiry-message {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Wishlist */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--text-secondary);
    z-index: 10;
}

.wishlist-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.wishlist-btn.active {
    color: #e53935;
}

.villa-image {
    position: relative;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--gray-light);
}

.empty-icon {
    color: var(--gray);
    margin-bottom: 20px;
}

.empty-state h2, .empty-state h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Admin Dashboard */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-value {
    font-size: 42px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.admin-table {
    width: 100%;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.admin-table th {
    background: var(--text-primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 20px;
    text-align: left;
}

.admin-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px;
}

.admin-table tr:hover {
    background: var(--gray-light);
}

/* Lazy Load Images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded, img.loaded {
    opacity: 1;
}

/* Responsive Forms */
@media (max-width: 992px) {
    .enquiry-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .enquiry-sidebar {
        position: static;
    }
    
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        flex-direction: column;
    }
    
    .booking-image {
        width: 100%;
        height: 200px;
    }
    
    .booking-info-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-nav {
        flex-wrap: wrap;
    }
    
    .profile-nav-item {
        padding: 12px 20px;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
}

/* Villa Layout / Floor Plans Section */
.villa-layout-section {
    margin-top: 40px;
}

.floor-plan-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.floor-plan-item {
    position: relative;
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid var(--gray);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.floor-plan-item:hover {
    transform: translateY(-3px);
    border-color: var(--sand);
}

.floor-plan-image {
    width: 100%;
    height: auto;
    display: block;
}

.floor-plan-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    color: var(--white);
    padding: 15px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.floor-plan-zoom {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floor-plan-item:hover .floor-plan-zoom {
    opacity: 1;
}

.floor-plan-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.floor-plan-modal-content {
    position: relative;
    max-width: 95vw;
    max-height: 95vh;
    text-align: center;
}

.floor-plan-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 2px;
}

.floor-plan-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
}

.floor-plan-modal-caption {
    color: white;
    margin-top: 15px;
    font-size: 16px;
    letter-spacing: 1px;
}

/* Dining Experience Section */
.villa-dining-section {
    margin-top: 40px;
}

.dining-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.dining-image {
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.dining-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.meal-policy {
    background: var(--gray-light);
    padding: 25px;
    border-radius: 2px;
    margin-top: 20px;
}

.meal-policy h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.meal-policy p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Villa Map Section */
.villa-map-section {
    margin-top: 40px;
}

.villa-map {
    width: 100%;
    height: 400px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-actions {
    margin-top: 15px;
    text-align: center;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.btn-directions:hover {
    background: var(--gold-dark);
    color: var(--white);
}

.btn-directions svg {
    fill: currentColor;
}

/* Mapbox Popup Styling */
.mapboxgl-popup-content {
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.mapboxgl-popup-content strong {
    font-weight: 600;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .dining-gallery {
        grid-template-columns: 1fr;
    }
    
    .floor-plan-gallery {
        grid-template-columns: 1fr;
    }
    
    .villa-map {
        height: 300px;
    }
}

/* ===== FLATPICKR CUSTOM THEME - THE OCHO ===== */
.flatpickr-calendar {
    font-family: var(--font-body);
    background: var(--cream);
    border: 1px solid var(--sand);
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 320px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: var(--sand);
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
    border-top-color: var(--sand);
}

.flatpickr-months {
    background: var(--deep-earth);
    border-radius: 0;
}

.flatpickr-months .flatpickr-month {
    background: transparent;
    color: var(--white);
    fill: var(--white);
    height: 44px;
}

.flatpickr-current-month {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--white);
    padding-top: 10px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: transparent;
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 300;
    -webkit-appearance: none;
}

.flatpickr-current-month .flatpickr-monthDropdown-months option {
    background: var(--deep-earth);
    color: var(--white);
}

.flatpickr-current-month span.cur-month {
    color: var(--white) !important;
}

.flatpickr-current-month input.cur-year {
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 300;
    background: transparent;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    fill: var(--white) !important;
    color: var(--white) !important;
    padding: 10px 12px;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    fill: var(--white) !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--gold) !important;
}

.flatpickr-weekdays {
    background: var(--stone);
    height: 36px;
}

.flatpickr-weekday {
    background: transparent;
    color: var(--deep-earth);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.flatpickr-days {
    border: none;
}

.dayContainer {
    padding: 8px;
}

.flatpickr-day {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--deep-earth);
    border-radius: 0;
    border: 1px solid transparent;
    max-width: 40px;
    height: 40px;
    line-height: 38px;
    margin: 1px;
}

.flatpickr-day:hover {
    background: var(--stone);
    border-color: var(--sand);
}

.flatpickr-day.today {
    border-color: var(--gold);
    background: transparent;
}

.flatpickr-day.today:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: var(--deep-earth);
    border-color: var(--deep-earth);
    color: var(--white);
}

.flatpickr-day.inRange {
    background: var(--stone);
    border-color: var(--stone);
    box-shadow: none;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: var(--sand);
    background: transparent;
}

.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
    background: var(--stone);
    border-color: transparent;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .flatpickr-calendar {
        width: 100%;
        max-width: 320px;
    }
    
    .flatpickr-day {
        max-width: 38px;
        height: 38px;
        line-height: 36px;
    }
}

/* Date input styling to work with Flatpickr */
input[type="date"].flatpickr-input,
input.flatpickr-input {
    cursor: pointer;
}
