﻿/* ============================================
   Sam Villa - Luxury Villa Booking Website
   Modern, Elegant Design
   
   Features:
   ✓ Bootstrap 5 Integration
   ✓ WOW.js Scroll Animations
   ✓ Touch-Friendly & Mobile Optimized
   ✓ W3C Valid HTML
   ✓ Google Fonts (Fraunces, Manrope)
   ✓ Multiple Icon Libraries (FontAwesome, Elegant, ET-Line, IcoFont)
   ✓ Easy Color Scheme (CSS Variables)
   ============================================ */

/* ============ CSS Variables - Easy Color Scheme ============ */
/* Change these values to customize the entire color scheme */
:root {
    /* Primary Brand Colors */
    --primary-color: #115e59;        /* Main teal color - Change for different theme */
    --primary-dark: #0b3f3b;         /* Darker shade for hover states */
    --primary-light: #1f7f77;        /* Lighter shade for backgrounds */
    
    /* Secondary & Accent Colors */
    --secondary-color: #e1b566;      /* Gold/Yellow accent */
    --secondary-dark: #b07b2c;       /* Darker gold for contrast */
    --accent-color: #f2d08a;         /* Light gold for highlights */
    
    /* Text Colors */
    --text-dark: #0d1b1a;           /* Primary text color */
    --text-medium: #3f4c49;         /* Secondary text */
    --text-light: #6f7b77;          /* Tertiary text/labels */
    
    /* Background Colors */
    --white: #ffffff;
    --off-white: #fbf7f0;           /* Page background */
    --cream: #f6efe6;               /* Card backgrounds */
    --gray-light: #e6ded4;          /* Light borders */
    --gray: #cfc6bb;                /* Medium borders */
    
    /* Effects & Shadows */
    --shadow: 0 12px 30px rgba(11, 25, 24, 0.12);
    --shadow-lg: 0 24px 60px rgba(11, 25, 24, 0.2);
    --transition: all 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
    --border-radius: 14px;
    --border-radius-lg: 28px;
    --surface-glass: rgba(255, 255, 255, 0.75);
    --surface-dark: rgba(11, 25, 24, 0.55);
    --ring: rgba(17, 94, 89, 0.35);
}

/* ============ Reset & Base Styles ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
}

body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased; /* Better font rendering */
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation; /* Touch-friendly interactions */
    background-image:
        radial-gradient(circle at 12% 8%, rgba(242, 208, 138, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 88% 12%, rgba(17, 94, 89, 0.15) 0%, transparent 45%),
        linear-gradient(180deg, #fbf7f0 0%, #f6efe6 50%, #ffffff 100%);
    overflow-x: hidden;
}

/* ============ Preloader ============ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-logo {
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-logo .logo-icon {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ============ Scroll Progress Bar ============ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(225, 181, 102, 0.5);
}

::selection {
    background: rgba(225, 181, 102, 0.4);
    color: var(--text-dark);
}

:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

picture {
    display: contents;
}

img:not([src]) {
    opacity: 0;
}

img[src] {
    animation: fadeInImage 0.8s ease-in-out;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ Buttons ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(17, 94, 89, 0.32);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(17, 94, 89, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-booking-com {
    background: #003580 !important;
    color: white !important;
    border: 1px solid #003580 !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-booking-com:hover {
    background: #00224d !important;
    color: white !important;
    transform: translateY(-2px);
}

.btn-booking-com i {
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ============ Section Styling ============ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    padding: 6px 16px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    box-shadow: 0 6px 18px rgba(11, 25, 24, 0.08);
}

.section-title {
    font-size: 46px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

/* ============ Navigation ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: rgba(10, 21, 20, 0.35);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 30px rgba(11, 25, 24, 0.15);
    padding: 12px 0;
    border-bottom: 1px solid rgba(15, 36, 34, 0.08);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 10px 25px rgba(224, 181, 102, 0.35);
}

.logo-text {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.3px;
}

.navbar.scrolled .nav-links a {
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    width: 100%;
}

.btn-book-nav {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%) !important;
    color: var(--text-dark) !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 22px rgba(224, 181, 102, 0.35);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-book-nav:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%) !important;
    transform: translateY(-2px) scale(1.01);
}

.btn-book-nav::after {
    display: none;
}

.booking-com-nav {
    background: #003580 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 18px rgba(0, 53, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.booking-com-nav:hover {
    background: #00224d !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 53, 128, 0.5);
}

.booking-com-nav::after {
    display: none;
}

.booking-com-nav i {
    font-size: 16px;
    margin: 0;
}

.booking-com-nav .booking-text {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.whatsapp-nav {
    background: #25D366 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-nav:hover {
    background: #128C7E !important;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-nav::after {
    display: none;
}

.whatsapp-nav i {
    font-size: 18px;
    margin: 0;
}

.whatsapp-nav .whatsapp-text {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--primary-dark);
}

/* ============ Hero Section ============ */
.hero {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    background-size: cover;
    background-position: center 18%;
    background-attachment: fixed;
    padding-top: 110px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(242, 208, 138, 0.28) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(17, 94, 89, 0.35) 0%, transparent 50%);
    mix-blend-mode: screen;
    opacity: 0.8;
    animation: glowPulse 12s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.55;
        transform: translateY(0);
    }
    50% {
        opacity: 0.85;
        transform: translateY(-12px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(7, 18, 17, 0.78) 0%, rgba(7, 18, 17, 0.4) 55%, rgba(7, 18, 17, 0.7) 100%);
    backdrop-filter: blur(3px);
}

/* Hero Particles Effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 181, 102, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-particles::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 15%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.6; }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.6fr);
    gap: 46px;
    align-items: start;
    width: min(1240px, 100%);
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(640px, 100%);
    padding: 46px 52px;
    background: rgba(9, 19, 18, 0.58);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    overflow: hidden;
    isolation: isolate;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -140px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 181, 102, 0.22) 0%, rgba(225, 181, 102, 0) 70%);
    opacity: 0.9;
    z-index: 0;
}

.hero-content > * {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(17, 94, 89, 0.4), rgba(242, 208, 138, 0.12));
    color: var(--white);
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(225, 181, 102, 0.5);
    box-shadow: 0 12px 28px rgba(15, 35, 34, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    animation: fadeInDown 1s ease, glow 3s ease-in-out infinite;
}

.hero-badge i {
    color: var(--secondary-color);
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 181, 102, 0.2);
    border: 1px solid rgba(225, 181, 102, 0.5);
    animation: none;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(225, 181, 102, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 10px 40px rgba(225, 181, 102, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
}

.hero-title {
    font-size: 68px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 4px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
    letter-spacing: 0.5px;
    line-height: 1.05;
    max-width: 620px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(242, 208, 138, 0.95);
    font-weight: 600;
    letter-spacing: 0.6px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto 40px;
    max-width: 520px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons .btn {
    min-width: 180px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-dark);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.hero-highlight i {
    color: var(--accent-color);
    font-size: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 208, 138, 0.2);
    border: 1px solid rgba(242, 208, 138, 0.4);
}

.hero-card {
    background: rgba(255, 255, 255, 0.96);
    color: var(--text-dark);
    padding: 28px 30px;
    border-radius: 26px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(17, 94, 89, 0.12);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: fadeInUp 1s ease 0.7s both;
    position: relative;
    overflow: hidden;
    max-width: 440px;
    justify-self: end;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.9;
}

.hero-card::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 94, 89, 0.14) 0%, rgba(17, 94, 89, 0) 70%);
    bottom: -150px;
    right: -130px;
    pointer-events: none;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.hero-card-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
}

.hero-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 6px;
    font-family: 'Fraunces', serif;
    color: var(--text-dark);
}

.hero-card-rate {
    text-align: right;
    background: rgba(17, 94, 89, 0.08);
    border: 1px solid rgba(17, 94, 89, 0.15);
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 12px;
    color: var(--text-medium);
}

.hero-card-rate strong {
    display: block;
    font-size: 24px;
    color: var(--primary-dark);
    font-family: 'Fraunces', serif;
}

.hero-card-rate small {
    color: var(--text-light);
}

.hero-card-divider {
    height: 1px;
    background: var(--gray-light);
    opacity: 0.7;
}

.hero-card-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-medium);
}

.hero-card-list i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(17, 94, 89, 0.1);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-card-cta {
    margin-top: 6px;
    box-shadow: 0 14px 26px rgba(17, 94, 89, 0.25);
}

.hero-card-note {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-card-note i {
    color: var(--primary-color);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drift {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(2%, -2%) scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============ Quick Booking Bar ============ */
.quick-booking {
    background: transparent;
    padding: 0 0 80px;
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.international-notice {
    background: linear-gradient(135deg, rgba(17, 94, 89, 0.95) 0%, rgba(11, 63, 59, 0.95) 100%);
    color: var(--white);
    padding: 14px 22px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(11, 25, 24, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.international-notice i {
    font-size: 20px;
    color: var(--accent-color);
}

.booking-bar {
    background: var(--surface-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(11, 25, 24, 0.2);
    padding: 35px 45px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
}

.booking-field {
    flex: 1;
    min-width: 160px;
    position: relative;
}

.booking-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-field label i {
    color: var(--primary-color);
    margin-right: 5px;
}

.booking-field input,
.booking-field select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-family: 'Manrope', sans-serif;
    transition: var(--transition);
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--ring), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.booking-field input:hover,
.booking-field select:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.field-hint {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 4px;
    font-style: italic;
}

.nights-info {
    position: absolute;
    bottom: -28px;
    left: 0;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: fadeIn 0.3s ease;
}

.nights-info i {
    color: var(--secondary-color);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.select-styled {
    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='%23115e59' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.booking-bar .btn {
    min-width: 180px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

/* ============ About Section ============ */
.about {
    padding: 120px 0;
    background: linear-gradient(145deg, var(--cream) 0%, var(--off-white) 55%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(242, 208, 138, 0.35), transparent 70%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -140px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(17, 94, 89, 0.2), transparent 70%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
    padding-bottom: 40px;
}

.about-img-main {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.about-img-main img,
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.3s ease;
    filter: brightness(0.95);
}

.about-img-main:hover img,
.about-img-secondary:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.05);
}

.about-img-main::after,
.about-img-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 17, 0) 0%, rgba(8, 18, 17, 0.45) 100%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 280px;
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
    position: absolute;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--text-dark);
    padding: 25px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.35);
    animation: float 3s ease-in-out infinite;
}

.experience-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 700;
    font-family: 'Fraunces', serif;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding-left: 10px;
    display: grid;
    gap: 24px;
}

.about-description {
    display: grid;
    gap: 18px;
}

.description-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 94, 89, 0.12);
    box-shadow: 0 16px 32px rgba(11, 25, 24, 0.12);
    transition: var(--transition);
}

.description-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(11, 25, 24, 0.18);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 94, 89, 0.12);
    border: 1px solid rgba(17, 94, 89, 0.2);
    box-shadow: 0 12px 22px rgba(11, 25, 24, 0.12);
}

.icon-wrapper i {
    color: var(--primary-color);
    font-size: 18px;
}

.text-content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Fraunces', serif;
}

.text-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.image-overlay {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(8, 18, 17, 0.65);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    z-index: 2;
}

.image-overlay i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 208, 138, 0.22);
    color: var(--accent-color);
    font-size: 12px;
    border: 1px solid rgba(242, 208, 138, 0.45);
}

.about-text {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 30px 0 10px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(11, 25, 24, 0.12);
    border: 1px solid rgba(17, 94, 89, 0.12);
    backdrop-filter: blur(8px);
}

.stat {
    text-align: left;
    display: grid;
    gap: 8px;
}

.stat-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 94, 89, 0.12);
    color: var(--primary-color);
    border: 1px solid rgba(17, 94, 89, 0.2);
}

.stat-icon i {
    font-size: 14px;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Fraunces', serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* ============ Features Section ============ */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #0b3f3b 0%, #0f5a55 45%, #0b3f3b 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.features::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 55%);
    animation: drift 16s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at 70% 70%, rgba(17, 94, 89, 0.35) 0%, transparent 60%);
    opacity: 0.6;
    animation: drift 18s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(7, 20, 19, 0.25);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(7, 20, 19, 0.35);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(225, 181, 102, 0.35);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 34px;
    color: var(--text-dark);
}

.feature-card h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.feature-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ============ Amenities Section ============ */
.amenities {
    padding: 120px 0;
    background: linear-gradient(150deg, #fbf7f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.amenities::before,
.amenities::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.55;
}

.amenities::before {
    top: -230px;
    left: -160px;
    background: radial-gradient(circle, rgba(17, 94, 89, 0.18) 0%, rgba(17, 94, 89, 0) 70%);
}

.amenities::after {
    bottom: -240px;
    right: -170px;
    background: radial-gradient(circle, rgba(225, 181, 102, 0.22) 0%, rgba(225, 181, 102, 0) 70%);
}

.amenities-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 auto 40px;
    padding: 12px 14px;
    max-width: 760px;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 999px;
    border: 1px solid rgba(17, 94, 89, 0.12);
    box-shadow: 0 16px 35px rgba(11, 25, 24, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
    box-shadow: 0 10px 20px rgba(11, 25, 24, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

.category-tab i {
    color: var(--primary-color);
}

.category-tab:hover {
    transform: translateY(-2px);
    border-color: rgba(17, 94, 89, 0.2);
}

.category-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: 0 16px 30px rgba(17, 94, 89, 0.25);
}

.category-tab.active i {
    color: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    position: relative;
    z-index: 1;
}

.amenity-item {
    --amenity-accent: var(--primary-color);
    text-align: left;
    padding: 28px 24px 26px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f0 100%);
    border-radius: 18px;
    transition: var(--transition);
    cursor: default;
    border: 1px solid rgba(17, 94, 89, 0.12);
    box-shadow: 0 16px 32px rgba(11, 25, 24, 0.12);
    display: grid;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.amenity-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--amenity-accent), rgba(255, 255, 255, 0));
    opacity: 0.85;
}

.amenity-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(11, 25, 24, 0.2);
    border-color: rgba(17, 94, 89, 0.2);
}

.amenity-item.featured {
    --amenity-accent: var(--secondary-color);
    border-color: rgba(225, 181, 102, 0.35);
    background: linear-gradient(180deg, #ffffff 0%, #fff6e6 100%);
}

.amenity-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 94, 89, 0.1);
    border: 1px solid rgba(17, 94, 89, 0.16);
    box-shadow: 0 10px 22px rgba(11, 25, 24, 0.12);
    transition: var(--transition);
}

.amenity-icon i {
    font-size: 22px;
    color: var(--primary-color);
}

.amenity-item.featured .amenity-icon {
    background: rgba(225, 181, 102, 0.18);
    border-color: rgba(225, 181, 102, 0.35);
}

.amenity-item.featured .amenity-icon i {
    color: var(--secondary-dark);
}

.amenity-item:hover .amenity-icon {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(11, 25, 24, 0.18);
}

.amenity-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 6px;
    font-family: 'Fraunces', serif;
}

.amenity-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.amenity-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(225, 181, 102, 0.2);
    color: #7a5314;
    border: 1px solid rgba(225, 181, 102, 0.45);
}

.amenities-footer {
    margin-top: 40px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 94, 89, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    box-shadow: 0 16px 35px rgba(11, 25, 24, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.amenity-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-weight: 500;
}

.amenity-note i {
    color: var(--primary-color);
}

/* ============ Gallery Section ============ */
.gallery {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before,
.gallery::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

.gallery::before {
    top: -220px;
    right: -180px;
    background: radial-gradient(circle, rgba(17, 94, 89, 0.18) 0%, rgba(17, 94, 89, 0) 70%);
}

.gallery::after {
    bottom: -240px;
    left: -160px;
    background: radial-gradient(circle, rgba(225, 181, 102, 0.25) 0%, rgba(225, 181, 102, 0) 70%);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 auto 40px;
    padding: 10px 12px;
    max-width: 920px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    border: 1px solid rgba(17, 94, 89, 0.12);
    box-shadow: 0 16px 35px rgba(11, 25, 24, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.filter-btn {
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(11, 25, 24, 0.08);
}

.filter-btn i {
    font-size: 14px;
    color: var(--primary-color);
}

.filter-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(17, 94, 89, 0.2);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-dark);
    box-shadow: 0 16px 30px rgba(17, 94, 89, 0.25);
}

.filter-btn.active i {
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    grid-auto-flow: dense;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    border: 1px solid rgba(17, 94, 89, 0.12);
    box-shadow: 0 16px 35px rgba(11, 25, 24, 0.12);
    transition: var(--transition);
    background: #ffffff;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.6s ease;
    filter: brightness(0.98) saturate(1.03);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(9, 18, 18, 0.05) 0%, rgba(9, 18, 18, 0.68) 55%, rgba(9, 18, 18, 0.92) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    backdrop-filter: blur(5px);
    transform: translateY(12px);
}

.gallery-overlay .overlay-content {
    display: grid;
    gap: 6px;
}

.gallery-overlay i {
    font-size: 18px;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    transform: translateY(12px) scale(0.9);
    transition: transform 0.35s ease;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    transform: translateY(12px);
    transition: transform 0.35s ease;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
    transform: translateY(12px);
    transition: transform 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(11, 25, 24, 0.2);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.08) saturate(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0) scale(1);
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

.gallery-footer {
    margin-top: 36px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(17, 94, 89, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    box-shadow: 0 16px 35px rgba(11, 25, 24, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.gallery-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.gallery-count i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 94, 89, 0.12);
    color: var(--primary-color);
}

.gallery-count span {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .gallery-filters {
        border-radius: 22px;
        padding: 12px;
    }

    .filter-btn {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }

    .gallery-footer {
        flex-direction: column;
        text-align: center;
    }
}

/* ============ The House Section ============ */
.the-house {
    padding: 120px 0;
    background: linear-gradient(150deg, #fbf7f0 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.the-house::before,
.the-house::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.55;
}

.the-house::before {
    top: -230px;
    right: -170px;
    background: radial-gradient(circle, rgba(17, 94, 89, 0.18) 0%, rgba(17, 94, 89, 0) 70%);
}

.the-house::after {
    bottom: -240px;
    left: -160px;
    background: radial-gradient(circle, rgba(225, 181, 102, 0.22) 0%, rgba(225, 181, 102, 0) 70%);
}

.house-showcase {
    margin-top: 40px;
    display: grid;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.house-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 32px;
    align-items: stretch;
}

.house-main-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 20px 60px rgba(11, 25, 24, 0.2);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    border: 1px solid rgba(17, 94, 89, 0.12);
    min-height: 520px;
}

.house-main-image:hover {
    box-shadow: 0 30px 70px rgba(11, 25, 24, 0.35);
    transform: translateY(-5px);
}

.house-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.house-main-image:hover img {
    transform: scale(1.03);
}

.house-main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 17, 0) 40%, rgba(8, 18, 17, 0.55) 100%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 1;
}

.house-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(8, 18, 17, 0.75);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.house-badge i {
    font-size: 14px;
    color: var(--accent-color);
}

.house-quick-facts {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(8, 18, 17, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    z-index: 2;
}

.quick-fact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.quick-fact i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(242, 208, 138, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(242, 208, 138, 0.35);
    font-size: 12px;
}

.house-intro-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    border: 1px solid rgba(17, 94, 89, 0.12);
    padding: 34px 32px;
    box-shadow: 0 24px 50px rgba(11, 25, 24, 0.14);
    display: grid;
    gap: 18px;
    align-content: start;
    position: relative;
    overflow: hidden;
}

.house-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.9;
}

.intro-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--text-light);
}

.house-intro-card h3 {
    margin: 0;
    font-size: 22px;
    color: var(--text-dark);
    font-family: 'Fraunces', serif;
}

.house-intro-card p {
    margin: 0;
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.8;
}

.intro-list {
    display: grid;
    gap: 10px;
}

.intro-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-size: 14px;
    font-weight: 500;
}

.intro-item i {
    color: var(--primary-color);
}

.house-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 50px;
}

.house-detail-card {
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f0 100%);
    padding: 26px 24px;
    border-radius: 20px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid rgba(17, 94, 89, 0.12);
    box-shadow: 0 16px 32px rgba(11, 25, 24, 0.12);
    display: grid;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.house-detail-card:hover {
    border-color: rgba(17, 94, 89, 0.22);
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(11, 25, 24, 0.2);
}

.house-detail-card .detail-icon {
    width: 52px;
    height: 52px;
    background: rgba(17, 94, 89, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(17, 94, 89, 0.18);
    box-shadow: 0 10px 20px rgba(11, 25, 24, 0.12);
}

.house-detail-card .detail-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.house-detail-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--text-dark);
    font-family: 'Fraunces', serif;
}

.house-detail-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.house-pricing-banner {
    background: linear-gradient(120deg, #0b3f3b 0%, #0f5a55 45%, #0b3f3b 100%);
    padding: 40px 50px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 30px 60px rgba(7, 20, 19, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.house-pricing-banner > * {
    position: relative;
    z-index: 1;
}

.house-pricing-banner::before {
    content: '';
    position: absolute;
    top: -80%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(242, 208, 138, 0.25) 0%, rgba(242, 208, 138, 0) 70%);
    opacity: 0.7;
    pointer-events: none;
}

.house-pricing-banner .pricing-content h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.house-pricing-banner .pricing-content h3 i {
    color: var(--secondary-color);
}

.house-pricing-banner .pricing-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.house-pricing-banner .pricing-amount {
    text-align: center;
}

.house-pricing-banner .pricing-amount .price {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Fraunces', serif;
    display: block;
    line-height: 1;
}

.house-pricing-banner .pricing-amount .period {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.house-pricing-banner .btn {
    padding: 18px 45px;
    font-size: 18px;
    white-space: nowrap;
}

/* ============ Rooms Section (Legacy - Hidden) ============ */
.rooms {
    display: none;
}

/* ============ Booking Section ============ */
.booking {
    padding: 110px 0;
    background: linear-gradient(135deg, #0b3f3b 0%, #0f5a55 50%, #0b3f3b 100%);
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 70% 30%, rgba(242, 208, 138, 0.18) 0%, transparent 55%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.booking::after {
    content: '';
    position: absolute;
    bottom: -70%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at 30% 70%, rgba(17, 94, 89, 0.45) 0%, transparent 60%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.booking .section-tag,
.booking .section-title,
.booking p {
    color: var(--white);
}

.booking .section-header {
    position: relative;
    z-index: 1;
}

.booking .container {
    position: relative;
    z-index: 1;
}

.booking .section-tag {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.booking-info {
    padding-right: 30px;
}

.booking-platforms {
    margin: 30px 0;
}

.booking-platforms h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.platform-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.platform-btn {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.platform-btn.booking-com {
    background: #003580;
    color: white;
}

.platform-btn.booking-com:hover {
    background: #00224d;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 53, 128, 0.4);
}

.platform-btn.direct-booking {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.platform-btn.direct-booking:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(225, 181, 102, 0.4);
}

.platform-btn.tripadvisor {
    background: #34E0A1;
    color: white;
}

.platform-btn.tripadvisor:hover {
    background: #00af87;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(52, 224, 161, 0.4);
}

.platform-btn i {
    font-size: 20px;
}

.pricing-info {
    background: rgba(255, 255, 255, 0.12);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.pricing-info h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.price-value {
    font-weight: 600;
    color: var(--secondary-color);
}

.price-note {
    font-size: 13px;
    opacity: 0.8;
    margin-top: 15px;
}

.booking-features {
    margin-top: 30px;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--white);
}

.booking-feature i {
    color: var(--secondary-color);
    font-size: 18px;
}

.booking-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
}

.booking-form h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-family: 'Manrope', sans-serif;
    transition: var(--transition);
    background: var(--off-white);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--ring);
}

.form-group textarea {
    resize: vertical;
}

.booking-summary {
    background: var(--off-white);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    border: 1px solid var(--gray-light);
}

.booking-summary h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px;
}

.summary-row.total {
    border-bottom: none;
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
    padding-top: 15px;
}

/* ============ Testimonials Section ============ */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(150deg, #f6efe6 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before,
.testimonials::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

.testimonials::before {
    top: -180px;
    left: -140px;
    background: radial-gradient(circle, rgba(17, 94, 89, 0.18) 0%, rgba(17, 94, 89, 0) 70%);
}

.testimonials::after {
    bottom: -200px;
    right: -140px;
    background: radial-gradient(circle, rgba(225, 181, 102, 0.22) 0%, rgba(225, 181, 102, 0) 70%);
}

.rating-banner {
    margin: 10px auto 40px;
    position: relative;
    z-index: 1;
}

.rating-summary {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 94, 89, 0.12);
    border-radius: 20px;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 18px 40px rgba(11, 25, 24, 0.12);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.rating-summary::before,
.rating-summary::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.rating-summary::before {
    top: -140px;
    right: -90px;
    background: radial-gradient(circle, rgba(17, 94, 89, 0.18) 0%, rgba(17, 94, 89, 0) 70%);
}

.rating-summary::after {
    bottom: -140px;
    left: -90px;
    background: radial-gradient(circle, rgba(225, 181, 102, 0.22) 0%, rgba(225, 181, 102, 0) 70%);
}

.rating-summary > * {
    position: relative;
    z-index: 1;
}

.rating-score {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.score-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Fraunces', serif;
}

.score-stars {
    display: flex;
    gap: 4px;
    color: var(--secondary-color);
}

.score-stars i {
    font-size: 14px;
}

.score-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.rating-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(17, 94, 89, 0.08);
    border: 1px solid rgba(17, 94, 89, 0.12);
    color: var(--text-medium);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.stat-item i {
    color: var(--primary-color);
}

.stat-item strong {
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background:
        radial-gradient(circle at 100% 0%, rgba(225, 181, 102, 0.16) 0%, rgba(225, 181, 102, 0) 40%),
        linear-gradient(180deg, #ffffff 0%, #fbf7f0 100%);
    padding: 42px 36px;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(11, 25, 24, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 94, 89, 0.12);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 26px;
    font-size: 110px;
    font-family: 'Fraunces', serif;
    color: var(--secondary-color);
    opacity: 0.08;
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    opacity: 0.85;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(11, 25, 24, 0.2);
    border-color: rgba(17, 94, 89, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.testimonial-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(225, 181, 102, 0.15);
    border: 1px solid rgba(225, 181, 102, 0.35);
    width: fit-content;
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 14px;
}

.testimonial-title {
    font-size: 18px;
    font-weight: 600;
    margin: 6px 0 12px;
    color: var(--text-dark);
    font-family: 'Fraunces', serif;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 26px;
    font-style: normal;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-avatar {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(11, 25, 24, 0.18);
    border: 3px solid rgba(255, 255, 255, 0.9);
    outline: 1px solid rgba(17, 94, 89, 0.12);
    overflow: hidden;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.testimonial-card .verified-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00af87;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 12px;
    box-shadow: 0 6px 12px rgba(0, 175, 135, 0.35);
}

.testimonial-card:hover .author-avatar {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(11, 25, 24, 0.22);
}

.testimonial-card:hover .author-avatar img {
    transform: scale(1.04);
}

.author-info h4 {
    font-size: 17px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.author-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.author-meta span i {
    color: var(--secondary-color);
    font-size: 12px;
}

.testimonial-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(17, 94, 89, 0.12);
}

.stay-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(17, 94, 89, 0.08);
    border: 1px solid rgba(17, 94, 89, 0.12);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-medium);
}

.stay-type i {
    color: var(--primary-color);
}

.testimonials-footer {
    margin-top: 36px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 94, 89, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    box-shadow: 0 16px 35px rgba(11, 25, 24, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.testimonials-footer p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-medium);
    font-weight: 500;
    margin: 0;
}

.testimonials-footer i {
    color: var(--primary-color);
}

.review-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.review-actions .btn {
    min-width: 210px;
    justify-content: center;
}

/* ============ Location Section ============ */
.location {
    padding: 100px 0;
    background: var(--off-white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-details {
    margin: 30px 0;
}

.location-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.location-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.location-item h4 {
    font-size: 18px;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 5px;
}

.location-item p {
    font-size: 14px;
    color: var(--text-light);
}

.nearby-attractions h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.nearby-attractions ul li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nearby-attractions ul li i {
    color: var(--primary-color);
}

.location-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(11, 25, 24, 0.12);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.location-map:hover {
    box-shadow: 0 25px 55px rgba(11, 25, 24, 0.18);
    transform: translateY(-2px);
}

.location-map-frame {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

.location-directions-btn {
    width: 100%;
    border-radius: 0;
}

#customGoogleMap img {
    max-width: none !important;
}

/* Info window custom styling */
.gm-style .gm-style-iw-c {
    border-radius: 12px !important;
    padding: 0 !important;
}

.gm-style .gm-style-iw-d {
    overflow: auto !important;
}

.gm-style-iw button {
    top: 8px !important;
    right: 8px !important;
}

/* Responsive map adjustments */
@media (max-width: 768px) {
    #customGoogleMap {
        height: 400px;
    }
}

.map-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.map-placeholder i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.map-placeholder p {
    font-size: 24px;
    font-weight: 600;
}

.map-placeholder span {
    font-size: 16px;
    opacity: 0.8;
}

/* ============ Contact Section ============ */
.contact {
    padding: 110px 0;
    background: linear-gradient(150deg, #f6efe6 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.contact::before,
.contact::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

.contact::before {
    top: -190px;
    right: -140px;
    background: radial-gradient(circle, rgba(17, 94, 89, 0.18) 0%, rgba(17, 94, 89, 0) 70%);
}

.contact::after {
    bottom: -200px;
    left: -140px;
    background: radial-gradient(circle, rgba(225, 181, 102, 0.22) 0%, rgba(225, 181, 102, 0) 70%);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
    gap: 36px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info-panel {
    display: grid;
    gap: 24px;
    align-content: start;
}

.contact-info-header {
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f0 100%);
    padding: 30px 28px;
    border-radius: 22px;
    border: 1px solid rgba(17, 94, 89, 0.12);
    box-shadow: 0 20px 45px rgba(11, 25, 24, 0.12);
    position: relative;
    overflow: hidden;
}

.contact-info-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.9;
}

.contact-info-header::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 181, 102, 0.2) 0%, rgba(225, 181, 102, 0) 70%);
    bottom: -140px;
    right: -120px;
    pointer-events: none;
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-info-header h3 {
    margin: 8px 0 10px;
    font-size: 22px;
    color: var(--text-dark);
    font-family: 'Fraunces', serif;
}

.contact-info-header p {
    margin: 0;
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.7;
}

.contact-info-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.contact-info-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(17, 94, 89, 0.08);
    border: 1px solid rgba(17, 94, 89, 0.16);
}

.contact-info-badges i {
    color: var(--primary-color);
    font-size: 12px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-card {
    background: linear-gradient(160deg, #ffffff 0%, #f7f1e7 100%);
    padding: 28px 24px;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 18px 40px rgba(11, 25, 24, 0.12);
    transition: var(--transition);
    border: 1px solid rgba(17, 94, 89, 0.12);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-height: 170px;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.85;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(11, 25, 24, 0.2);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 14px;
    box-shadow: 0 12px 24px rgba(11, 25, 24, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.contact-icon i {
    font-size: 24px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 4px;
    font-family: 'Manrope', sans-serif;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-card p + p {
    margin-top: 4px;
}

.contact-card p a,
.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-card p a:hover,
.footer-contact a:hover {
    color: var(--primary-color);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 8px 18px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(18, 140, 126, 0.2);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.25);
    transition: var(--transition);
}

.contact-card .whatsapp-btn {
    margin-top: auto;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(18, 140, 126, 0.3);
}

.contact-form-container {
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f0 100%);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 24px 50px rgba(11, 25, 24, 0.14);
    border: 1px solid rgba(17, 94, 89, 0.12);
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 22px;
    align-content: start;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.contact-form-container::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 94, 89, 0.12) 0%, rgba(17, 94, 89, 0) 70%);
    top: -140px;
    right: -120px;
    pointer-events: none;
    z-index: 0;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(17, 94, 89, 0.18);
    position: relative;
    z-index: 1;
}

.contact-form-header > div {
    min-width: 220px;
}

.contact-form-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.contact-form-header h3 {
    margin: 0 0 8px;
    font-size: 24px;
    color: var(--text-dark);
    font-family: 'Fraunces', serif;
}

.contact-form-header p:not(.contact-form-eyebrow) {
    margin: 0;
    color: var(--text-medium);
    font-size: 14px;
    line-height: 1.7;
}

.contact-form-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: auto;
}

.contact-form-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    background: rgba(225, 181, 102, 0.2);
    border: 1px solid rgba(225, 181, 102, 0.35);
}

.contact-form-badges i {
    color: var(--secondary-dark);
    font-size: 12px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: #ffffff;
    border-color: rgba(17, 94, 89, 0.16);
}

.contact-form-note {
    margin: 0;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.contact-form-note i {
    color: var(--primary-color);
}

/* ============ Footer ============ */
.footer {
    background:
        radial-gradient(circle at 12% 10%, rgba(17, 94, 89, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 88% 0%, rgba(225, 181, 102, 0.25) 0%, transparent 55%),
        linear-gradient(135deg, #0b1b1a 0%, #0e2925 55%, #102c28 100%);
    padding: 90px 0 34px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -80%;
    right: -30%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 70% 30%, rgba(242, 208, 138, 0.12) 0%, transparent 60%);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgba(225, 181, 102, 0.9), rgba(17, 94, 89, 0.9));
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 42px;
}

.footer-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 26px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6px);
    display: grid;
    gap: 18px;
    align-content: start;
}

.footer-brand .logo {
    margin-bottom: 0;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .logo-icon {
    box-shadow: 0 12px 30px rgba(224, 181, 102, 0.45);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 24px rgba(225, 181, 102, 0.35);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 0;
    font-family: 'Manrope', sans-serif;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0;
}

.footer-links a,
.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(225, 181, 102, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    background: var(--secondary-color);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 94, 89, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--accent-color);
    font-size: 16px;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #1fbf62 55%, #169e50 100%);
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.footer-whatsapp-btn:hover {
    background: linear-gradient(135deg, #2ee06f 0%, #19b65d 55%, #128c4a 100%);
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    color: white;
}

.footer-whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.35) 0%, transparent 55%);
    opacity: 0.6;
    pointer-events: none;
}

.footer-whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.35) 50%, transparent 85%);
    transform: translateX(-120%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.footer-whatsapp-btn:hover::after {
    transform: translateX(120%);
}

.footer-whatsapp-btn > * {
    position: relative;
    z-index: 1;
}

.footer-whatsapp-btn i {
    font-size: 18px;
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-whatsapp-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.footer-bottom {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    position: relative;
}

.footer-bottom-links a + a {
    padding-left: 18px;
}

.footer-bottom-links a + a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* ============ Modal ============ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 20, 19, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    animation: modalFadeIn 0.3s ease;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    border: 1px solid var(--gray-light);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon.success {
    background: rgba(17, 94, 89, 0.12);
}

.modal-icon.success i {
    font-size: 40px;
    color: var(--primary-color);
}

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.modal-details {
    background: var(--cream);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    text-align: left;
}

.modal-details p {
    margin-bottom: 10px;
    font-size: 14px;
}

.modal-details p:last-child {
    margin-bottom: 0;
}

/* ============ Back to Top Button ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ============ Image Showcase Slider ============ */
.showcase-slider {
    padding: 120px 0;
    background: linear-gradient(150deg, #f6efe6 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.showcase-slider::before,
.showcase-slider::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

.showcase-slider::before {
    top: -220px;
    left: -180px;
    background: radial-gradient(circle, rgba(17, 94, 89, 0.18) 0%, rgba(17, 94, 89, 0) 70%);
}

.showcase-slider::after {
    bottom: -240px;
    right: -180px;
    background: radial-gradient(circle, rgba(225, 181, 102, 0.24) 0%, rgba(225, 181, 102, 0) 70%);
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(11, 25, 24, 0.22);
    border: 1px solid rgba(17, 94, 89, 0.12);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    isolation: isolate;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 17, 0) 45%, rgba(8, 18, 17, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.92) saturate(1.05);
    transition: transform 1.2s ease, filter 0.6s ease;
}

.slide.active img {
    transform: scale(1.03);
    filter: brightness(0.96) saturate(1.1);
}

.slide-caption {
    position: absolute;
    bottom: 34px;
    left: 34px;
    transform: none;
    background: rgba(8, 18, 17, 0.72);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 16px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Fraunces', serif;
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    max-width: calc(100% - 68px);
}

.slide-caption::before {
    content: '';
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--secondary-color);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary-dark);
    border: 1px solid rgba(17, 94, 89, 0.12);
    width: 56px;
    height: 56px;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
}

.prev-btn {
    left: 26px;
}

.next-btn {
    right: 26px;
}

.slider-btn i {
    font-size: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    right: 24px;
    left: auto;
    transform: none;
    display: flex;
    gap: 12px;
    z-index: 10;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(8, 18, 17, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white);
    width: 26px;
    border-radius: 999px;
}

/* ============ Responsive Styles ============ */
@media (min-width: 992px) {
    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-highlights {
        justify-content: flex-start;
    }

    .hero-description {
        margin: 0 0 40px;
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 40px;
    }

    .hero-title {
        font-size: 54px;
    }

    /* white-space:nowrap on .logo-text (set to avoid the desktop 2-line wrap) will
       overflow past the hamburger button on narrow screens without a cap — truncate
       instead so the hamburger always stays visible and clickable. */
    .logo-text {
        font-size: 18px;
        max-width: 55vw;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 80px 36px;
        gap: 25px;
        align-items: flex-start;
        text-align: left;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(10px);
        border-left: 1px solid var(--gray-light);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 18px;
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-links .btn-book-nav,
    .nav-links .booking-com-nav,
    .nav-links .whatsapp-nav {
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        height: auto;
        padding-bottom: 100px;
    }

    .quick-booking {
        margin-top: -40px;
        padding-top: 20px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .hero-content {
        padding: 38px 36px;
        width: 100%;
    }

    .hero-card {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
        justify-self: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
    }

    .house-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .house-layout {
        grid-template-columns: 1fr;
    }

    .house-main-image {
        min-height: 420px;
    }

    .house-pricing-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .booking-container,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-info {
        padding-right: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-wrapper {
        height: 500px;
    }

    .slide-caption {
        font-size: 18px;
        padding: 12px 18px;
        left: 24px;
        bottom: 24px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 80px 32px;
        gap: 25px;
        align-items: flex-start;
        text-align: left;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(10px);
        border-left: 1px solid var(--gray-light);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-dark);
        font-size: 18px;
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: flex-start;
    }

    .nav-links .btn-book-nav,
    .nav-links .booking-com-nav,
    .nav-links .whatsapp-nav {
        justify-content: center;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero {
        background-attachment: scroll;
        padding-top: 90px;
        text-align: center;
    }

    .hero-scroll {
        display: none;
    }

    .hero-content {
        padding: 28px 24px;
        border-radius: 24px;
        text-align: center;
    }

    .hero-grid {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .quick-booking {
        margin-top: 0;
        padding-top: 30px;
    }

    .booking-bar .btn {
        width: 100%;
        min-width: 0;
    }

    .hero-highlights {
        justify-content: center;
    }

    .hero-card {
        padding: 24px;
    }

    .hero-card-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .hero-card-rate {
        width: 100%;
        text-align: left;
    }

    .booking-bar {
        flex-direction: column;
        gap: 15px;
        padding: 25px 20px;
    }

    .booking-field {
        width: 100%;
    }

    .international-notice {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-images {
        padding-bottom: 0;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        height: 200px;
        margin-top: 20px;
    }

    .experience-badge {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 20px;
        display: inline-block;
    }

    .about-content {
        padding-left: 0;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .description-item {
        grid-template-columns: 1fr;
    }

    .about-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .rating-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .rating-stats {
        justify-content: flex-start;
    }

    .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-rating {
        align-self: flex-start;
    }

    .testimonials-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .amenities-categories {
        border-radius: 22px;
        padding: 12px;
    }

    .category-tab {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }

    .house-details-grid {
        grid-template-columns: 1fr;
    }

    .house-main-image img {
        height: 320px;
    }

    .house-main-image {
        min-height: 320px;
    }

    .house-quick-facts {
        left: 16px;
        right: 16px;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .slider-wrapper {
        height: 400px;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
    }

    .prev-btn {
        left: 16px;
    }

    .next-btn {
        right: 16px;
    }

    .slide-caption {
        font-size: 16px;
        padding: 10px 16px;
        left: 18px;
        bottom: 18px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        gap: 20px;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-form-badges {
        margin-left: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-card {
        padding: 24px 22px;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-whatsapp-btn {
        align-self: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .hero-badge {
        font-size: 11px;
    }

    .hero-badge i {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .hero-highlight {
        font-size: 11px;
    }

    .hero-card {
        padding: 20px;
    }

    .hero-card-rate strong {
        font-size: 22px;
    }

    .hero-card-list li {
        font-size: 13px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .house-intro-card {
        padding: 26px 22px;
    }

    .house-quick-facts {
        padding: 8px 10px;
        gap: 8px;
    }

    .quick-fact {
        font-size: 11px;
    }

    .quick-fact i {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .slider-wrapper {
        height: 300px;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
    }

    .slider-btn i {
        font-size: 16px;
    }

    .slide-caption {
        font-size: 16px;
        padding: 8px 14px;
        left: 14px;
        bottom: 14px;
    }

    .slider-dots {
        right: 14px;
        bottom: 14px;
        gap: 8px;
        padding: 6px 10px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-info-header {
        padding: 24px 22px;
    }

    .contact-card {
        min-height: auto;
    }

    .contact-form-header h3 {
        font-size: 22px;
    }

    .contact-form-badges span,
    .contact-info-badges span {
        width: 100%;
        justify-content: center;
    }

    .booking-form-container,
    .contact-form-container {
        padding: 25px;
    }

    .modal-content {
        padding: 30px 20px;
    }
}

/* ============ Live Chat Widget ============ */
.chat-bubble {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transition: var(--transition);
}

.chat-bubble:hover {
    transform: translateY(-4px) scale(1.05);
}

.chat-bubble-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e14b3a;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-panel {
    position: fixed;
    bottom: 170px;
    right: 30px;
    width: 340px;
    max-width: calc(100vw - 40px);
    height: 440px;
    max-height: calc(100vh - 220px);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1002;
    border: 1px solid var(--gray-light);
}

.chat-panel.open {
    display: flex;
}

.chat-panel-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 16px 18px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.chat-panel-header h4 {
    margin: 0 0 4px;
    font-size: 16px;
}

.chat-panel-status {
    font-size: 12px;
    opacity: 0.85;
}

.chat-panel-status i {
    color: #6fe08a;
    font-size: 8px;
    margin-right: 5px;
}

.chat-panel-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.chat-panel-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--off-white);
}

.chat-precall {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: var(--off-white);
}

.chat-precall p {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.chat-precall input {
    padding: 10px 14px;
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.chat-precall input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.chat-precall button {
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
}

.chat-bubble-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.chat-bubble-msg.admin {
    background: var(--white);
    border: 1px solid var(--gray-light);
    align-self: flex-start;
}

.chat-bubble-msg.visitor {
    background: var(--primary-color);
    color: var(--white);
    align-self: flex-end;
}

.chat-msg-time {
    font-size: 10px;
    opacity: 0.65;
    align-self: flex-end;
}

.chat-panel-form {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--gray-light);
}

.chat-panel-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.chat-panel-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.chat-panel-form button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .chat-panel {
        right: 20px;
        bottom: 160px;
        width: calc(100vw - 40px);
    }

    .chat-bubble {
        right: 20px;
        bottom: 90px;
    }
}

/* ============ Availability Status ============ */
.availability-status {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    margin: 4px 0 16px;
}

.availability-status.visible {
    display: flex;
}

.availability-status.checking {
    background: #f0ede4;
    color: #6f7b77;
}

.availability-status.available {
    background: #d9f2e6;
    color: #157a4d;
}

.availability-status.unavailable {
    background: #f8d7da;
    color: #9a2a3b;
}

.quick-booking .availability-status {
    max-width: 1200px;
    margin: 16px auto 0;
}

/* ============ Find Us / Verified Listings ============ */
.hidden {
    display: none !important;
}

.location-contact-row {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.location-map-note {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.listings {
    padding: 100px 0;
    background: linear-gradient(150deg, #fbf7f0 0%, #ffffff 100%);
}

.listings-group {
    margin-top: 40px;
}

.listings-group-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.listings-group-title i {
    color: var(--primary-color);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.listings-empty {
    color: var(--text-light);
    font-style: italic;
}

.listing-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.listing-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.listing-card-platform {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.listing-card-property {
    font-size: 13px;
    color: var(--text-light);
}

.listing-card-relationship {
    font-size: 12px;
    color: var(--text-light);
    background: var(--cream);
    border-radius: 999px;
    padding: 4px 10px;
    display: inline-block;
    width: fit-content;
}

.listing-card-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-top: auto;
}

.listing-card .btn {
    align-self: flex-start;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.status-badge.status-verified {
    background: #d9f2e6;
    color: #157a4d;
}

.status-badge.status-found {
    background: #eaf1fb;
    color: #2a5ba0;
}

.status-badge.status-syndicated {
    background: #fdf3d8;
    color: #8a6d1a;
}

.status-badge.status-unverified {
    background: var(--gray-light);
    color: var(--text-medium);
}

.listings-legend {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--border-radius);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--text-medium);
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .location-contact-row {
        flex-direction: column;
    }

    .location-contact-row .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============ Follow Us Online (premium social section) ============ */
.follow-us {
    padding: 100px 0;
    background: var(--off-white);
}

.follow-us-hero {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.follow-us-hero-media {
    position: absolute;
    inset: 0;
}

/* A global `picture { display: contents }` rule elsewhere makes `position` on
   .follow-us-hero-media itself inert (the box doesn't exist), promoting this
   <img> straight into the flex row as a static item. Position the img directly
   so the fill-the-hero layout holds regardless of that rule. */
.follow-us-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 6s ease;
}

.follow-us-hero:hover .follow-us-hero-media img {
    transform: scale(1.08);
}

.follow-us-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 18, 17, 0.55) 0%, rgba(7, 18, 17, 0.75) 100%);
}

.follow-us-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 60px 24px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.14);
    color: var(--accent-color);
}

.text-light {
    color: var(--white) !important;
}

.follow-us-quicklinks {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0 20px;
}

.follow-us-quicklinks a {
    width: 48px;
    height: 48px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.follow-us-quicklinks a:hover,
.follow-us-quicklinks a:focus-visible {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-dark);
    transform: translateY(-3px) scale(1.05);
}

.follow-us-tagline {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Villa glimpse strip */
.villa-glimpse-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 40px;
}

.villa-glimpse-item {
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.villa-glimpse-item:hover,
.villa-glimpse-item:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.villa-glimpse-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.villa-glimpse-item:hover img {
    transform: scale(1.08);
}

.villa-glimpse-caption {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin: 14px 0 0;
}

.villa-glimpse-caption a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Social cards */
.social-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.social-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: var(--cream);
    border-radius: var(--border-radius-lg);
}

.social-empty-state h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.social-empty-state p {
    color: var(--text-medium);
    max-width: 480px;
    margin: 0 auto;
}

.social-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.social-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.social-card-body {
    padding: 36px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: inherit;
    text-decoration: none;
}

.social-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--primary-color);
    font-size: 26px;
    transition: var(--transition);
}

.social-card:hover .social-card-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.social-card-platform {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-card-description {
    color: var(--text-medium);
    font-size: 14px;
    min-height: 40px;
}

.social-card-cta {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.social-card:hover .social-card-cta {
    gap: 10px;
}

.verified-chip {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #157a4d;
    background: #d9f2e6;
    border-radius: 999px;
    padding: 3px 10px;
    cursor: help;
}

.verified-chip .verified-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--white);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
    padding: 10px 12px;
    border-radius: 8px;
    width: 220px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 5;
}

.verified-chip:hover .verified-tooltip,
.verified-chip:focus-visible .verified-tooltip {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp CTA */
.whatsapp-cta {
    margin-top: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 28px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.whatsapp-cta-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.whatsapp-cta-content {
    flex: 1;
}

.whatsapp-cta-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    margin-bottom: 6px;
}

.whatsapp-cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
}

.whatsapp-cta .btn {
    white-space: nowrap;
}

/* Final CTA */
.follow-us-final-cta {
    text-align: center;
    margin-top: 60px;
}

.follow-us-final-cta h3 {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.follow-us-final-cta p {
    color: var(--text-medium);
    max-width: 500px;
    margin: 0 auto 24px;
}

.follow-us-final-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .social-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .villa-glimpse-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-cards-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 22px;
    }

    .follow-us-hero-content {
        padding: 40px 18px;
    }

    .follow-us-final-buttons {
        flex-direction: column;
    }

    .follow-us-final-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Replace the browser's default gray calendar glyph with a brand-teal one, and make
   the native picker indicator an invisible full-size hit target so click-to-open still works.
   Placed last so it reliably wins the cascade tie against .booking-field/.form-group input rules. */
input[type="date"] {
    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='%23115e59' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='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 16px center;
    padding-right: 44px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    color: transparent;
    cursor: pointer;
    position: absolute;
    inset: 0;
    width: auto;
    margin: 0;
}

/* ============ Reviews (dynamic testimonials + submission modal) ============ */
.author-avatar-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 700;
}

.testimonials-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 24px;
    background: var(--cream);
    border-radius: var(--border-radius-lg);
}

.testimonials-empty h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.testimonials-empty p {
    color: var(--text-medium);
    max-width: 460px;
    margin: 0 auto;
}

/* Review submission modal */
.review-modal-content {
    max-width: 640px;
    text-align: left;
    max-height: 90vh;
    overflow-y: auto;
}

.review-modal-content h2,
.review-modal-content p {
    text-align: center;
}

.honeypot-field {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.star-picker {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 22px;
}

.star-picker-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: var(--secondary-color);
    padding: 4px;
    transition: transform 0.15s ease;
}

.star-picker-btn:hover,
.star-picker-btn:focus-visible {
    transform: scale(1.15);
}

.review-submit-form .form-group {
    margin-bottom: 18px;
}

.review-submit-form .form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.review-submit-form .form-row .form-group {
    flex: 1;
}

.review-form-section {
    padding: 18px 0;
    border-top: 1px solid var(--gray-light);
}

.review-form-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.review-form-section-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* Photo upload */
.photo-upload {
    position: relative;
    border: 2px dashed var(--gray-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.photo-upload:hover {
    border-color: var(--primary-light);
}

.photo-upload-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.photo-upload-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 20px;
    color: var(--text-light);
    font-size: 14px;
    text-align: center;
    pointer-events: none;
}

.photo-upload-empty i {
    font-size: 26px;
    color: var(--primary-color);
}

.photo-upload-preview {
    position: relative;
    padding: 14px;
    display: flex;
    justify-content: center;
}

.photo-upload-preview img {
    max-height: 160px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    pointer-events: none;
}

.photo-upload-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(11, 25, 24, 0.75);
    color: white;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
}

.photo-upload-remove:hover {
    background: #9a2a3b;
    transform: scale(1.08);
}

.testimonial-featured {
    position: absolute;
    top: 18px;
    right: -34px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 40px;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    z-index: 2;
}

