/* ===================================
   CSS Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Luxury Palette - Deep Midnight & Champagne Gold */
    --primary: #0F1419;
    /* Deep Midnight */
    --accent: #C5A028;
    /* Champagne Gold */
    --accent-light: #DFC27D;
    /* Soft Gold */
    --neutral-rich: #1A1A1A;
    --neutral-soft: #FDFCFB;
    /* Pearl White */
    --sand: #EEEAE5;
    --white: #ffffff;

    --text-dark: #2A2A2A;
    --text-muted: #666666;
    --text-gold: #A68B3C;

    --overlay: rgba(15, 20, 25, 0.8);
    --overlay-light: rgba(255, 255, 255, 0.1);

    /* Legacy Mappings */
    --primary-brown: var(--primary);
    --secondary-brown: var(--accent);
    --light-brown: var(--accent-light);
    --accent-brown: var(--neutral-rich);
    --beige: var(--neutral-soft);
    --light-beige: var(--white);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing - Increased for Luxury Feel */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.2rem;
    --spacing-md: 2.5rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-premium: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.3s ease;

    /* Shadows - Soft & Premium */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    background-color: var(--neutral-soft);
    letter-spacing: 0.02em;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-premium);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-normal);
}

.section-header {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    text-transform: capitalize;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 300;
}

/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-premium);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
    text-transform: lowercase;
}

.navbar.scrolled .logo a {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu a {
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    position: relative;
    padding: 0.5rem 0;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--accent) !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, rgba(15, 20, 25, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: var(--spacing-md);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.2s var(--transition-premium);
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    opacity: 0.9;
    animation: fadeInUp 1.2s var(--transition-premium) 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    font-weight: 300;
    opacity: 0.8;
    animation: fadeInUp 1.2s var(--transition-premium) 0.4s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    color: var(--white);
    padding: 1.2rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--transition-premium);
    backdrop-filter: blur(5px);
    animation: fadeInUp 1.2s var(--transition-premium) 0.6s both;
}

.cta-button:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-button i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateY(3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* ===================================
   Properties Section
   =================================== */

.properties {
    padding: var(--spacing-xl) 0;
    background: var(--neutral-soft);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
}

.property-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition-premium);
    box-shadow: var(--shadow-soft);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.property-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s var(--transition-premium);
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--accent);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.property-content {
    padding: 3rem;
}

.property-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--sand);
    padding-bottom: 2rem;
}

.property-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.property-description {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 2;
}

.property-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 400;
}

.feature i {
    color: var(--accent);
    font-size: 1.1rem;
}

.property-footer {
    display: flex;
    gap: var(--spacing-sm);
    align-items: stretch;
}

/* New Main Book Button */
.book-button-main {
    flex: 1;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: var(--transition-normal);
    border-radius: 4px;
    position: relative;
}

.book-button-main i {
    font-size: 1.3rem;
}

.book-button-main span {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.book-button-main small {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
    opacity: 0.8;
    white-space: nowrap;
}

.book-button-main:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

/* Gallery Icon Button */
.gallery-button-icon {
    width: 55px;
    min-width: 55px;
    border: 2px solid var(--sand);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
}

.gallery-button-icon:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Old button styles kept for compatibility */
.book-button {
    flex: 2;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition-normal);
    text-align: center;
    min-height: 80px;
}

.book-button i {
    font-size: 1.2rem;
}

.book-button:hover {
    background: var(--accent);
}

.gallery-button {
    flex: 1;
    border: 1px solid var(--sand);
    color: var(--primary);
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    min-height: 80px;
}

.gallery-button i {
    font-size: 1.2rem;
}

.gallery-button:hover {
    background: var(--neutral-soft);
    border-color: var(--accent);
}

/* ===================================
   Gallery Section
   =================================== */

.gallery-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--sand);
}

.gallery-tab {
    padding: 1.5rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    position: relative;
    font-weight: 400;
    background: transparent;
    border-radius: 0;
}

.gallery-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-premium);
}

.gallery-tab.active {
    color: var(--primary);
    font-weight: 500;
}

.gallery-tab.active::after {
    width: 100%;
}

.gallery-tab:hover {
    color: var(--accent);
    background: transparent;
}

.gallery-grid {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-grid.active {
    display: grid;
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 20, 25, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--neutral-soft);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-premium);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: var(--spacing-xs);
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 1rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.9;
    flex-grow: 1;
    margin: 0;
    padding: 0;
    border: none;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--sand);
}

.author-avatar i {
    font-size: 2.5rem;
    color: var(--accent);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--primary);
    font-style: normal;
    font-size: 1rem;
}

.author-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===================================
   About Section
   =================================== */

.about {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text h2 {
    margin-bottom: var(--spacing-md);
}

.about-description {
    margin-bottom: var(--spacing-lg);
}

.about-description p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-muted);
    line-height: 2;
    font-weight: 300;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--neutral-soft);
    transition: var(--transition-normal);
}

.trust-badge:hover {
    transform: translateX(10px);
}

.trust-badge i {
    font-size: 2rem;
    color: var(--accent);
}

.trust-badge h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.trust-badge p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.social-section {
    margin-top: var(--spacing-lg);
}

.social-section h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.social-section>p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-link.facebook {
    background: #1877f2;
    color: var(--white);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 20, 25, 0.9), transparent);
    padding: var(--spacing-lg);
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat {
    color: var(--white);
}

.stat h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
    color: var(--accent);
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===================================
   Meet Your Host Section
   =================================== */

.host-section {
    padding: var(--spacing-xl) 0;
    background: var(--neutral-soft);
}

.host-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.host-image {
    position: relative;
}

.host-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
}

.host-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.host-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
    box-shadow: var(--shadow-soft);
}

.host-badge i {
    color: var(--accent);
}

.host-badge.superhost {
    background: var(--accent);
    color: var(--white);
}

.host-badge.superhost i {
    color: var(--white);
}

.host-info {
    padding-top: 1rem;
}

.host-name {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.host-bio {
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.host-stats {
    display: flex;
    gap: 3rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}

.host-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.host-stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    font-weight: 500;
}

.host-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

.airbnb-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #FF5A5F 0%, #FF385C 100%);
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    color: var(--white);
}

.airbnb-badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.airbnb-badge-content i {
    font-size: 2.5rem;
}

.airbnb-badge-text {
    display: flex;
    flex-direction: column;
}

.airbnb-badge-title {
    font-size: 0.85rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.airbnb-badge-rating {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
}

.airbnb-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.airbnb-link:hover {
    background: var(--white);
    color: #FF385C;
}

/* ===================================
   FAQ Section
   =================================== */

.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--sand);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 0;
    text-align: left;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.active {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.9;
    font-weight: 300;
}

/* ===================================
   Contact Section
   ===================================== */

.contact {
    padding: var(--spacing-xl) 0;
    background: var(--neutral-soft);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--white);
    transition: var(--transition-normal);
}

.contact-method:hover {
    transform: translateX(10px);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent);
    width: 40px;
    text-align: center;
}

.contact-method h4 {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.contact-method a,
.contact-method p {
    color: var(--text-muted);
    margin: 0;
}

.contact-method a:hover {
    color: var(--accent);
}

.contact-cta {
    background: var(--white);
    padding: var(--spacing-md);
    border-left: 4px solid var(--accent);
}

.contact-cta p {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.contact-form-container {
    position: relative;
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--sand);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--neutral-soft);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 1.2rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.submit-button:hover {
    background: var(--accent);
}

.form-success {
    display: none;
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
}

.form-success.active {
    display: block;
}

.form-success i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
}

.form-success h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.form-success p {
    color: var(--text-muted);
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--primary);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.footer-logo {
    font-size: 1.8rem;
    text-transform: lowercase;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
    opacity: 0.8;
}

.footer-section ul li a {
    transition: var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-section ul li i {
    margin-right: var(--spacing-xs);
    color: var(--accent);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
}

.footer-bottom i.fa-heart {
    color: var(--accent);
}

/* ===================================
   WhatsApp Float Button
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
}

/* ===================================
   Image Modal
   =================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-normal);
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-counter {
    color: var(--white);
    margin-top: var(--spacing-sm);
    font-size: 1rem;
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(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);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================
   Responsive Design - Mobile First
   Enhanced for all screen sizes
   =================================== */

/* --- Extra Small Devices (Phones, 320px - 480px) --- */
@media (max-width: 480px) {
    :root {
        --spacing-xs: 0.4rem;
        --spacing-sm: 0.8rem;
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
    }

    /* Navigation - Mobile */
    .navbar {
        padding: 1rem 0;
    }

    .logo a {
        font-size: 1.3rem;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 0.5rem;
        z-index: 1001;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition-normal);
    }

    .navbar.scrolled .mobile-menu-toggle span {
        background: var(--primary);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--white);
        padding: 5rem 2rem 2rem;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        color: var(--text-dark) !important;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--sand);
    }

    /* Hero - Mobile */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    /* Properties - Mobile */
    .properties {
        padding: 3rem 0;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .property-image {
        height: 250px;
    }

    .property-content {
        padding: 1.5rem;
    }

    .property-header {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .property-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .property-location {
        font-size: 0.8rem;
    }

    .property-description {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .property-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .feature {
        font-size: 0.85rem;
        padding: 0.5rem;
        background: var(--neutral-soft);
    }

    .property-footer {
        flex-direction: column;
        gap: 0.8rem;
    }

    .book-button,
    .gallery-button {
        width: 100%;
        padding: 1rem;
        min-height: 48px;
        /* Touch-friendly */
    }

    .property-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
    }

    /* Gallery - Mobile */
    .gallery-section {
        padding: 3rem 0;
    }

    .gallery-tabs {
        flex-direction: column;
        gap: 0;
        border-bottom: none;
    }

    .gallery-tab {
        padding: 1rem;
        border-bottom: 1px solid var(--sand);
        text-align: center;
        font-size: 0.8rem;
    }

    .gallery-tab::after {
        display: none;
    }

    .gallery-tab.active {
        background: var(--neutral-soft);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        height: 250px;
    }

    /* Testimonials - Mobile */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .testimonial-author {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .author-avatar i {
        font-size: 2rem;
    }

    /* About - Mobile */
    .about {
        padding: 3rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text h2 {
        margin-bottom: 1.5rem;
    }

    .about-description p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .about-image {
        order: -1;
        min-height: 300px;
    }

    .trust-badges {
        gap: 1rem;
    }

    .trust-badge {
        padding: 1rem;
        flex-direction: row;
        align-items: center;
    }

    .trust-badge i {
        font-size: 1.5rem;
    }

    .trust-badge h4 {
        font-size: 1rem;
    }

    /* Host Section - Mobile */
    .host-section {
        padding: 3rem 0;
    }

    .host-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .host-image img {
        height: 350px;
    }

    .host-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .host-badge {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    .host-name {
        font-size: 1.8rem;
        text-align: center;
    }

    .host-bio {
        font-size: 0.95rem;
        text-align: center;
    }

    .host-stats {
        justify-content: center;
        gap: 2rem;
    }

    .host-stat-number {
        font-size: 2rem;
    }

    .host-stat-label {
        font-size: 0.75rem;
    }

    .airbnb-badge {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.2rem;
    }

    .airbnb-badge-content {
        flex-direction: column;
    }

    .airbnb-link {
        width: 100%;
        justify-content: center;
    }

    /* FAQ - Mobile */
    .faq-section {
        padding: 3rem 0;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem 0;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat h3 {
        font-size: 1.8rem;
    }

    .stat p {
        font-size: 0.7rem;
    }

    .social-links {
        flex-direction: column;
    }

    .social-link {
        width: 100%;
        justify-content: center;
    }

    /* Contact - Mobile */
    .contact {
        padding: 3rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    .contact-info h3 {
        font-size: 1.4rem;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
    }

    .contact-method i {
        font-size: 1.2rem;
        width: 30px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 16px;
        /* Prevents iOS zoom */
    }

    .submit-button {
        padding: 1rem;
        min-height: 48px;
    }

    /* Footer - Mobile */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }

    /* Modal - Mobile */
    .modal-content img {
        max-height: 70vh;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .modal-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .modal-prev {
        left: 5px;
    }

    .modal-next {
        right: 5px;
    }

    .modal-counter {
        font-size: 0.85rem;
    }

    /* WhatsApp Float - Mobile */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        font-size: 1.4rem;
    }

    /* Privacy Modal - Mobile */
    .privacy-modal-content {
        padding: 1.5rem;
        margin: 1rem;
        border-radius: 10px;
    }

    .privacy-modal-content h2 {
        font-size: 1.4rem;
    }

    .privacy-body h3 {
        font-size: 1rem;
    }

    .privacy-body p {
        font-size: 0.9rem;
    }
}

/* --- Small Devices (Large Phones / Small Tablets, 481px - 768px) --- */
@media (min-width: 481px) and (max-width: 768px) {
    :root {
        --spacing-md: 2rem;
        --spacing-lg: 4rem;
        --spacing-xl: 5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 0.5rem;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition-normal);
    }

    .navbar.scrolled .mobile-menu-toggle span {
        background: var(--primary);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--white);
        padding: 5rem 2rem 2rem;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        color: var(--text-dark) !important;
        padding: 1.2rem 0;
        font-size: 1.2rem;
        border-bottom: 1px solid var(--sand);
    }

    /* Hero */
    .hero {
        min-height: 100svh;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1.1rem 2.5rem;
        font-size: 0.8rem;
    }

    /* Properties */
    .properties-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .property-image {
        height: 320px;
    }

    .property-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-footer {
        flex-direction: column;
        gap: 1rem;
    }

    /* Gallery */
    .gallery-tabs {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .gallery-tab {
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        height: 200px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        order: -1;
        min-height: 400px;
    }

    .stats {
        flex-direction: row;
    }

    .social-links {
        flex-direction: row;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-section:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    /* WhatsApp */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.6rem;
    }
}

/* --- Medium Devices (Tablets / Small Laptops, 769px - 1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --spacing-lg: 4rem;
        --spacing-xl: 6rem;
    }

    .container {
        padding: 0 2rem;
    }

    /* Navigation */
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-menu a {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }

    /* Hero */
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    /* Properties */
    .properties-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .property-image {
        height: 400px;
    }

    .property-features {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-item {
        height: 280px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    /* About */
    .about-content {
        gap: 3rem;
    }

    .about-image {
        min-height: 550px;
    }

    /* Contact */
    .contact-content {
        gap: 3rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

/* --- Large Devices (Desktops, 1025px - 1440px) --- */
@media (min-width: 1025px) and (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 5rem;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item {
        height: 350px;
    }
}

/* --- Extra Large Devices (Large Desktops, 1441px+) --- */
@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 6rem;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-item {
        height: 400px;
    }
}

/* --- Height-based adjustments for landscape phones --- */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        display: none;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.7rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* --- Reduced Motion for accessibility --- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-video {
        animation: none;
    }
}

/* --- Dark Mode Support --- */
@media (prefers-color-scheme: dark) {
    /* Optional: Add dark mode styles here if needed */
}

/* --- High Contrast Mode --- */
@media (prefers-contrast: high) {

    .property-card,
    .testimonial-card,
    .contact-form {
        border: 2px solid var(--primary);
    }

    .cta-button,
    .book-button,
    .submit-button {
        border: 2px solid currentColor;
    }
}

/* --- Print Styles --- */
@media print {

    .navbar,
    .whatsapp-float,
    .scroll-indicator,
    .modal,
    .privacy-modal {
        display: none !important;
    }

    .hero {
        min-height: auto;
        background: none;
    }

    .hero-video {
        display: none;
    }

    .hero-content {
        color: var(--primary);
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .property-card,
    section {
        break-inside: avoid;
    }
}

/* ===================================
   Utility Classes
   =================================== */

.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ===================================
   Accessibility
   =================================== */

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-brown);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    z-index: 10000;
    font-weight: 600;
    transition: top 0.3s ease;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    top: 0;
}

/* Focus Visible Styles for Keyboard Navigation */
*:focus-visible {
    outline: 3px solid var(--secondary-brown);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--secondary-brown);
    outline-offset: 2px;
}

/* Remove default outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Visually Hidden (for screen readers) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   Privacy Modal
   =================================== */

.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    overflow-y: auto;
}

.privacy-modal.active {
    display: flex;
}

.privacy-modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--spacing-lg);
    position: relative;
}

.privacy-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.privacy-close:hover {
    background: var(--sand);
    transform: rotate(90deg);
}

.privacy-modal-content h2 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
    padding-right: 40px;
}

.privacy-body h3 {
    font-family: var(--font-heading);
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.privacy-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.privacy-body ul {
    color: var(--text-light);
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
}

.privacy-body ul li {
    margin-bottom: var(--spacing-xs);
}

/* ===================================
   Footer Legal
   =================================== */

.footer-legal {
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-legal a {
    color: var(--white);
    text-decoration: underline;
}

.footer-legal a:hover {
    color: var(--light-brown);
}

/* ===================================
   Performance Optimizations
   =================================== */

/* GPU acceleration for smooth animations */
.property-card,
.gallery-item,
.testimonial-card,
.trust-badge {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Content visibility for off-screen elements */
.gallery-section,
.testimonials,
.about,
.contact,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* Image optimization */
img {
    image-rendering: auto;
    image-rendering: crisp-edges;
    -webkit-image-rendering: auto;
}

/* Lazy loaded images placeholder */
img[loading="lazy"] {
    min-height: 200px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    background: none;
    animation: none;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Reduce repaints on hover */
.property-card:hover,
.testimonial-card:hover,
.gallery-item:hover {
    transform: translateY(-10px) translateZ(0);
}

/* Optimize video loading */
.hero-video {
    background-color: var(--primary);
    contain: strict;
}

/* Touch improvements for mobile */
@media (hover: none) and (pointer: coarse) {

    /* Remove hover effects on touch devices */
    .property-card:hover,
    .testimonial-card:hover,
    .trust-badge:hover,
    .gallery-item:hover {
        transform: none;
    }

    /* Larger touch targets */
    .nav-menu a,
    .book-button,
    .gallery-button,
    .submit-button,
    .social-link,
    .footer-social a {
        min-height: 44px;
        min-width: 44px;
    }

    /* Faster tap response */
    * {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

/* Safe area support for notched devices */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .navbar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .whatsapp-float {
        right: max(15px, calc(15px + env(safe-area-inset-right)));
        bottom: max(15px, calc(15px + env(safe-area-inset-bottom)));
    }
}

/* ===================================
   Video Tour Button
   =================================== */

.video-tour-button {
    flex: 1;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    text-align: center;
    min-height: 80px;
}

.video-tour-button:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.video-tour-button i {
    font-size: 1.2rem;
}

/* ===================================
   Host Guarantee Badge
   =================================== */

.host-guarantee-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #1A2933 100%);
    border-radius: 0;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: var(--spacing-md);
}

.host-guarantee-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.host-guarantee-content i {
    font-size: 2.5rem;
    color: var(--accent);
}

.host-guarantee-text {
    display: flex;
    flex-direction: column;
}

.host-guarantee-title {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.host-guarantee-subtitle {
    color: var(--accent);
    font-size: 0.9rem;
}

.host-guarantee-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-normal);
    white-space: nowrap;
}

.host-guarantee-link:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateX(5px);
}

/* ===================================
   Booking Section
   =================================== */

.booking-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1A2933 100%);
}

.booking-section .section-title {
    color: var(--white);
}

.booking-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.booking-info {
    color: var(--white);
}

.booking-steps h3,
.payment-methods h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.booking-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.payment-methods {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    transition: var(--transition-normal);
}

.payment-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--accent);
}

.payment-method span {
    font-size: 0.9rem;
    color: var(--white);
}

.booking-guarantee {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    border-left: 3px solid var(--accent);
}

.booking-guarantee i {
    font-size: 2.5rem;
    color: var(--accent);
}

.booking-guarantee h4 {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.booking-guarantee p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Booking Form */
.booking-form-container {
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.booking-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--sand);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    transition: var(--transition-normal);
    background: var(--white);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(196, 168, 128, 0.2);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: var(--text-muted);
}

.booking-form select {
    cursor: pointer;
    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='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.booking-submit-button {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-normal);
    margin-top: var(--spacing-sm);
}

.booking-submit-button:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.booking-submit-button i {
    font-size: 1.3rem;
}

.booking-note {
    text-align: center;
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.booking-note i {
    color: var(--accent);
}

/* Booking Section Responsive */
@media (max-width: 992px) {
    .booking-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .booking-form-container {
        padding: 2rem;
    }

    .host-guarantee-badge {
        flex-direction: column;
        text-align: center;
    }

    .host-guarantee-content {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-form-container {
        padding: 1.5rem;
    }

    .booking-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .payment-icons {
        flex-direction: column;
    }

    .payment-method {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   COMPREHENSIVE RESPONSIVE STYLES
   =================================== */

/* Tablet and below (992px) */
@media (max-width: 992px) {

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        color: var(--primary) !important;
        font-size: 1.2rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .navbar.scrolled .mobile-menu-toggle span {
        background: var(--primary);
    }

    .mobile-menu-toggle span {
        background: var(--white);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        background: var(--primary);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
        background: var(--primary);
    }

    /* Properties Grid */
    .properties-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .property-image {
        height: 350px;
    }

    .property-content {
        padding: 2rem;
    }

    .property-title {
        font-size: 1.8rem;
    }

    .property-features {
        grid-template-columns: 1fr 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        height: 280px;
    }

    .gallery-tabs {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .gallery-tab {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
        padding: 1rem;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .testimonial-card {
        padding: 2rem;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-image {
        order: -1;
        min-height: 400px;
    }

    .trust-badges {
        flex-direction: column;
    }

    /* Host Section */
    .host-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .host-image {
        max-width: 350px;
        margin: 0 auto;
    }

    .host-image img {
        height: 400px;
    }

    .host-badges {
        justify-content: center;
    }

    /* FAQ */
    .faq-grid {
        gap: var(--spacing-sm);
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Mobile devices (768px) */
@media (max-width: 768px) {

    /* Base typography */
    .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.8rem;
    }

    /* Properties */
    .property-content {
        padding: 1.5rem;
    }

    .property-title {
        font-size: 1.5rem;
    }

    .property-description {
        font-size: 0.95rem;
    }

    .property-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .property-footer {
        flex-direction: column;
    }

    .book-button,
    .video-tour-button,
    .gallery-button {
        flex: 1;
        flex-direction: row;
        min-height: 60px;
        gap: 0.8rem;
    }

    .book-button i,
    .video-tour-button i,
    .gallery-button i {
        font-size: 1rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .gallery-item {
        height: 200px;
    }

    /* Testimonials */
    .testimonial-text {
        font-size: 1.1rem;
    }

    /* About */
    .about-image {
        min-height: 300px;
    }

    .stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .stat h3 {
        font-size: 2rem;
    }

    /* Host */
    .host-name {
        font-size: 1.5rem;
    }

    .host-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-md);
    }

    /* FAQ */
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    /* Contact */
    .contact-form-container {
        padding: 1.5rem;
    }

    .submit-button {
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    /* Modal */
    .modal-content img {
        max-height: 70vh;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }
}

/* Small mobile devices (480px) */
@media (max-width: 480px) {

    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    /* Sections padding */
    .properties,
    .gallery-section,
    .testimonials,
    .about,
    .host-section,
    .faq-section,
    .contact,
    .booking-section {
        padding: 3rem 0;
    }

    /* Hero */
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 0.75rem;
    }

    .scroll-indicator {
        display: none;
    }

    /* Properties */
    .property-image {
        height: 280px;
    }

    .property-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
    }

    .property-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .property-title {
        font-size: 1.3rem;
    }

    .property-location {
        font-size: 0.8rem;
    }

    .property-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .property-features {
        margin-bottom: 2rem;
    }

    .feature {
        font-size: 0.85rem;
    }

    /* Gallery */
    .gallery-tabs {
        gap: 0.5rem;
        padding-bottom: var(--spacing-sm);
    }

    .gallery-tab {
        font-size: 0.65rem;
        padding: 0.8rem;
        letter-spacing: 0.05em;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.3rem;
    }

    .gallery-item {
        height: 150px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .author-avatar i {
        font-size: 2rem;
    }

    /* About */
    .about-description p {
        font-size: 0.95rem;
    }

    .trust-badge {
        padding: var(--spacing-sm);
    }

    .trust-badge i {
        font-size: 1.5rem;
    }

    .trust-badge h4 {
        font-size: 1rem;
    }

    .social-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* Host */
    .host-image img {
        height: 350px;
    }

    .host-badge {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    .host-bio {
        font-size: 0.95rem;
    }

    .host-stat-number {
        font-size: 1.8rem;
    }

    /* Booking */
    .booking-section {
        padding: 3rem 0;
    }

    .booking-steps h3,
    .payment-methods h3 {
        font-size: 1.3rem;
    }

    .booking-form h3 {
        font-size: 1.5rem;
    }

    .booking-form label {
        font-size: 0.75rem;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .booking-submit-button {
        padding: 1.2rem;
        font-size: 0.85rem;
    }

    /* FAQ */
    .faq-question span {
        font-size: 0.9rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-method h4 {
        font-size: 0.9rem;
    }

    .contact-method a,
    .contact-method p {
        font-size: 0.85rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }

    /* Privacy Modal */
    .privacy-modal-content {
        max-width: 95%;
        max-height: 90vh;
        padding: 1.5rem;
    }

    .privacy-modal-content h2 {
        font-size: 1.5rem;
    }

    .privacy-body h3 {
        font-size: 1rem;
    }

    .privacy-body p {
        font-size: 0.9rem;
    }
}

/* Extra small devices (360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .property-title {
        font-size: 1.2rem;
    }

    .gallery-tab {
        font-size: 0.6rem;
        padding: 0.6rem;
    }

    .gallery-item {
        height: 120px;
    }
}

/* Landscape mode for phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        margin-bottom: 1rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ===================================
   SIMPLIFIED UX STYLES
   =================================== */

/* Simplified Booking Section */
.booking-content-simplified {
    max-width: 600px;
    margin: 0 auto;
}

.booking-form-container-main {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.booking-form-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-quick-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ===================================
   PREMIUM FORM ELEMENTS
   =================================== */

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Labels */
.booking-form-simple label,
.more-options-content label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

/* Input & Textarea Base Styles */
.booking-form-simple input,
.booking-form-simple textarea,
.more-options-content input,
.more-options-content textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    border: 2px solid var(--sand);
    border-radius: 8px;
    transition: all 0.3s ease;
    outline: none;
}

.booking-form-simple input:hover,
.booking-form-simple textarea:hover,
.more-options-content input:hover,
.more-options-content textarea:hover {
    border-color: var(--accent-light);
}

.booking-form-simple input:focus,
.booking-form-simple textarea:focus,
.more-options-content input:focus,
.more-options-content textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 160, 40, 0.15);
}

.booking-form-simple input::placeholder,
.booking-form-simple textarea::placeholder {
    color: #999;
    font-weight: 400;
}

/* Textarea */
.booking-form-simple textarea,
.more-options-content textarea {
    resize: vertical;
    min-height: 80px;
}

/* Premium Select/Dropdown Styling */
.booking-form-simple select,
.more-options-content select {
    width: 100%;
    padding: 1rem 3rem 1rem 1.2rem;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    border: 2px solid var(--sand);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;

    /* Custom dropdown arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C5A028' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
}

.booking-form-simple select:hover,
.more-options-content select:hover {
    border-color: var(--accent-light);
    background-color: #FDFCFB;
}

.booking-form-simple select:focus,
.more-options-content select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 160, 40, 0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C5A028' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

/* Style the dropdown options */
.booking-form-simple select option,
.more-options-content select option {
    padding: 1rem;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
}

.booking-form-simple select option:hover,
.more-options-content select option:hover {
    background: var(--accent-light);
}

/* Date input special styling */
.booking-form-simple input[type="date"],
.more-options-content input[type="date"] {
    cursor: pointer;
}

.booking-form-simple input[type="date"]::-webkit-calendar-picker-indicator,
.more-options-content input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    padding: 0.5rem;
    filter: invert(50%) sepia(50%) saturate(1000%) hue-rotate(10deg);
}

.booking-form-simple input[type="date"]:hover::-webkit-calendar-picker-indicator,
.more-options-content input[type="date"]:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}

/* Validation States */
.booking-form-simple input:invalid:not(:placeholder-shown),
.booking-form-simple select:invalid {
    border-color: #e74c3c;
}

.booking-form-simple input:valid:not(:placeholder-shown) {
    border-color: #27ae60;
}

/* More Options Collapsible */
.more-options {
    border: 1px solid var(--sand);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.more-options summary {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    background: var(--neutral-soft);
    list-style: none;
}

.more-options summary::-webkit-details-marker {
    display: none;
}

.more-options summary i {
    color: var(--accent);
    transition: transform 0.3s ease;
}

.more-options[open] summary i:first-child {
    transform: rotate(45deg);
}

.more-options-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Submit Button */
.booking-submit-button-main {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 1.2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    margin-top: 0.5rem;
}

.booking-submit-button-main i {
    font-size: 1.4rem;
}

.booking-submit-button-main:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Trust Indicators */
.booking-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.booking-trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.booking-trust-indicators i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* How It Works Accordion */
.how-it-works-accordion {
    background: var(--neutral-soft);
    border-radius: 12px;
    overflow: hidden;
}

.how-it-works-accordion summary {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 500;
    list-style: none;
}

.how-it-works-accordion summary::-webkit-details-marker {
    display: none;
}

.how-it-works-accordion summary i:first-child {
    color: var(--accent);
}

.how-it-works-accordion .accordion-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.how-it-works-accordion[open] .accordion-icon {
    transform: rotate(180deg);
}

.how-it-works-content {
    padding: 1.5rem;
    padding-top: 0;
    animation: slideDown 0.3s ease;
}

.simple-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.simple-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-num {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.simple-step p {
    margin: 0;
    color: var(--text);
    font-size: 0.9rem;
}

.simple-step strong {
    color: var(--primary);
}

.payment-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-light);
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.payment-badges i {
    color: var(--primary);
}

/* ===================================
   STICKY MOBILE BOOKING BAR
   =================================== */

.mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 900;
    padding: 0.8rem 1rem;
    padding-bottom: calc(0.8rem + env(safe-area-inset-bottom));
}

.mobile-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-bar-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mobile-bar-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.mobile-bar-response {
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mobile-bar-response i {
    color: var(--accent);
}

.mobile-bar-button {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition-normal);
}

.mobile-bar-button:hover {
    transform: scale(1.02);
}

.mobile-bar-button i {
    font-size: 1.1rem;
}

/* Show on mobile only */
@media (max-width: 768px) {
    .mobile-booking-bar {
        display: block;
    }

    /* Adjust WhatsApp float position when bar is visible */
    .whatsapp-float {
        bottom: 90px;
    }

    /* Property footer adjustments */
    .property-footer {
        margin-bottom: 2rem;
    }

    .book-button-main small {
        position: static;
        transform: none;
        display: block;
        margin-top: 0.3rem;
    }

    .book-button-main {
        flex-direction: column;
        padding: 1rem;
        gap: 0.3rem;
    }
}

/* Responsive adjustments for simplified booking */
@media (max-width: 576px) {
    .booking-form-container-main {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .booking-trust-indicators {
        gap: 0.8rem;
    }

    .booking-trust-indicators span {
        font-size: 0.75rem;
    }

    .how-it-works-accordion summary {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .simple-step p {
        font-size: 0.85rem;
    }

    .payment-badges {
        gap: 0.5rem;
    }

    .payment-badges span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}