/*
 * ============================================
 * ENTROTERRA - Consolidated Stylesheet
 * Costa Rica Vacation Rentals
 * ============================================
 *
 * TABLE OF CONTENTS:
 * 1. VARIABLES
 * 2. RESET
 * 3. TYPOGRAPHY
 * 4. LAYOUT & CONTAINERS
 * 5. NAVIGATION
 * 6. BUTTONS
 * 7. HERO SECTION
 * 8. PROPERTY CARDS & GALLERY
 * 9. BOOKING CALENDAR
 * 10. FORMS & CONTACT
 * 11. TESTIMONIALS
 * 12. EXPERIENCES
 * 13. TRUST BADGES
 * 14. FOOTER
 * 15. LOADING STATES & ANIMATIONS
 * 16. UTILITIES
 * 17. RESPONSIVE - TABLET
 * 18. RESPONSIVE - MOBILE
 * 19. SAFARI/iOS FIXES
 */

/* ============================================
   1. VARIABLES
   ============================================ */
:root {
    /* Warm Tropical Palette */
    --palm-green: #6B9F5C;
    --jungle-green: #4A7C42;
    --moss-green: #7FA86E;
    --dark-green: #5a8a4c;
    --tropical-gold: #D4A855;
    --gold: #D4AF37;
    --sunset-amber: #E8B86D;
    --terracotta: #C87855;
    --warm-coral: #E89B7E;
    --sand-beige: #E8DCC4;

    /* Neutrals */
    --cream: #FAF8F3;
    --light-gray: #F5F3F0;
    --medium-gray: #8B8680;
    --dark-gray: #4A4A4A;
    --text-dark: #2C2C2C;

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-script: 'Allura', cursive;
    --font-body: 'Montserrat', sans-serif;

    /* Skeleton Loading */
    --skeleton-base: #f0f0f0;
    --skeleton-shimmer: #e0e0e0;
}

/* ============================================
   2. RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    top: 0 !important;
    position: relative !important;
}

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

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

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--palm-green);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

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

/* ============================================
   4. LAYOUT & CONTAINERS
   ============================================ */
.container-standard {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

/* Section Backgrounds */
section:nth-of-type(odd) {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBF9 100%);
}

section:nth-of-type(even) {
    background: linear-gradient(180deg, #F5F7F3 0%, #EDF2EA 100%);
}

/* ============================================
   5. NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 159, 92, 0.1);
    padding: 0.6rem 4rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo-image {
    height: 100px;
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.logo:hover .logo-image {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(107, 159, 92, 0.2));
}

.logo-text {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--text-dark);
    line-height: 1;
    transition: color 0.3s ease;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--medium-gray);
    margin-left: 0.3rem;
}

.logo:hover .logo-text {
    color: var(--palm-green);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.3rem;
}

.nav-menu a:hover {
    color: var(--palm-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--palm-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--palm-green), var(--moss-green));
    color: white !important;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(107, 159, 92, 0.25);
    white-space: nowrap;
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--jungle-green), var(--palm-green));
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 159, 92, 0.35);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--palm-green);
    transition: all 0.3s ease;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: white;
    border: 1.5px solid #E0E0E0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.language-toggle:hover {
    border-color: var(--palm-green);
    background: #F9F8F6;
    transform: translateY(-2px);
}

.language-toggle i {
    color: var(--palm-green);
    font-size: 1rem;
}

/* Hide Google Translate Elements */
.skiptranslate,
#google_translate_element,
.goog-te-banner-frame,
.goog-te-gadget,
.goog-te-menu-value,
.goog-te-combo,
iframe.skiptranslate,
body > .skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(107, 159, 92, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    width: 100%;
}

.mobile-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
}

.mobile-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    z-index: 1001;
    margin-left: auto;
    flex-shrink: 0;
}

.mobile-hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--palm-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
    display: none !important;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: block !important;
}

/* ============================================
   6. BUTTONS
   ============================================ */
.btn-primary {
    padding: 1.1rem 2.8rem;
    background: linear-gradient(135deg, var(--palm-green), var(--moss-green));
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(107, 159, 92, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--jungle-green), var(--palm-green));
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(107, 159, 92, 0.35);
}

.btn-secondary {
    padding: 1.1rem 2.8rem;
    background: white;
    border: 2px solid var(--palm-green);
    color: var(--palm-green);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: var(--palm-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(107, 159, 92, 0.25);
}

.btn-outline {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 2px solid var(--palm-green);
    color: var(--palm-green);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #1ebd56;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-full-width {
    width: 100%;
    text-align: center;
    padding: 0.95rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero-clean {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    overflow: hidden;
    margin-top: 88px;
}

.hero-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.45) 0%, rgba(26, 26, 26, 0.5) 50%, rgba(26, 26, 26, 0.3) 100%);
    z-index: 1;
}

.hero-clean::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(250, 250, 248, 0.3));
    z-index: 2;
    pointer-events: none;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.6);
    z-index: 0;
    transition: opacity 0.3s ease-in-out;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.hero-label {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #F5D876;
    margin-bottom: 2.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(245, 216, 118, 0.6);
    text-shadow: 0 3px 15px rgba(0, 0, 0, 1), 0 2px 8px rgba(0, 0, 0, 1);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9), 0 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.35rem;
    line-height: 1.7;
    color: #FFFFFF;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    font-weight: 500;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Hero Glassmorphism Enhancement */
.hero-content {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 100%);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 3.5rem 3rem;
    max-width: 720px;
}

/* ============================================
   8. PROPERTY CARDS & GALLERY
   ============================================ */
.properties-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.properties-grid,
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.property-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(107, 159, 92, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.property-card:hover::before {
    left: 100%;
}

.property-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(107, 159, 92, 0.2), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(107, 159, 92, 0.3);
}

.property-image,
.property-gallery {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.property-card:hover .property-image img,
.property-card:hover .property-gallery img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--tropical-gold), var(--sunset-amber));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(212, 168, 85, 0.4);
    z-index: 2;
}

.property-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-name {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.property-name-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.property-name-link:hover .property-name {
    color: var(--palm-green);
}

.property-specs {
    font-size: 0.9rem;
    color: var(--palm-green);
    margin-bottom: 1rem;
    font-weight: 500;
}

.property-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.property-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.property-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

.airbnb-link {
    color: var(--palm-green);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
}

.airbnb-link:hover {
    color: var(--jungle-green);
    gap: 0.5rem;
}

/* Airbnb Small Link - Property Cards */
.airbnb-link-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1.5px solid var(--palm-green);
    border-radius: 8px;
    color: var(--palm-green);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.airbnb-link-small:hover {
    background: var(--palm-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 159, 92, 0.25);
}

.airbnb-link-small i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.airbnb-link-small:hover i {
    transform: translateX(2px);
}

/* Gallery Dots */
.gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 12px;
    border-radius: 20px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dot.active {
    background: white;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
}

/* Gallery Navigation */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.property-card:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 0.75rem;
}

.gallery-next {
    right: 0.75rem;
}

/* Extended Stays Card */
.extended-stays-card-horizontal {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    overflow: hidden;
    border: 2px solid var(--tropical-gold);
    background: linear-gradient(135deg, rgba(212, 168, 85, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
    transition: all 0.3s ease;
    min-height: 280px;
    border-radius: 16px;
}

.extended-stays-card-horizontal:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 168, 85, 0.25);
    border-color: var(--palm-green);
}

.extended-stays-image-horizontal {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.extended-stays-image-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.extended-stays-card-horizontal:hover .extended-stays-image-horizontal img {
    transform: scale(1.05);
}

.extended-badge-horizontal {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--palm-green);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.extended-stays-card-horizontal:hover .extended-badge-horizontal {
    background: var(--palm-green);
    color: white;
    transform: scale(1.05);
}

.extended-stays-content {
    padding: 2.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.extended-stays-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--palm-green);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.extended-stays-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: var(--tropical-gold);
    margin: 0;
    letter-spacing: 0.02em;
}

.extended-stays-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.extended-stays-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.extended-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.extended-feature i {
    color: var(--palm-green);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.btn-extended-stays {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--palm-green) 0%, #4A7C42 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 159, 92, 0.3);
    align-self: flex-start;
}

.btn-extended-stays:hover {
    background: linear-gradient(135deg, #4A7C42 0%, var(--palm-green) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(107, 159, 92, 0.4);
}

/* ============================================
   9. BOOKING CALENDAR
   ============================================ */
.booking-calendar {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    max-width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.calendar-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.calendar-nav button {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.calendar-nav button:hover {
    border-color: var(--palm-green);
    color: var(--palm-green);
    background: rgba(107, 159, 92, 0.05);
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.weekday {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--medium-gray);
    padding: 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: white;
    color: var(--text-dark);
}

.day:hover:not(.disabled):not(.booked) {
    background: rgba(107, 159, 92, 0.1);
    color: var(--palm-green);
}

.day.today {
    font-weight: 700;
    border: 2px solid var(--palm-green);
}

.day.selected {
    background: var(--palm-green);
    color: white;
}

.day.in-range {
    background: rgba(107, 159, 92, 0.15);
    color: var(--palm-green);
}

.day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.day.booked {
    background: #ffebee;
    color: #c62828;
    cursor: not-allowed;
    text-decoration: line-through;
}

.day.empty {
    background: transparent;
    cursor: default;
}

/* Date Selection */
.date-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.date-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.date-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.date-input-group input {
    padding: 0.75rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

.date-input-group input:focus {
    outline: none;
    border-color: var(--palm-green);
    box-shadow: 0 0 0 3px rgba(107, 159, 92, 0.1);
}

/* Guest Selector */
.guest-selector {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.guest-selector label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.guest-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guest-controls button {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.guest-controls button:hover {
    border-color: var(--palm-green);
    color: var(--palm-green);
}

.guest-count {
    font-size: 1.25rem;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

/* Booking Summary */
.booking-summary {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    border-radius: 12px;
}

.booking-summary h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--dark-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

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

.total-row {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--palm-green);
}

.btn-book-now {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--palm-green), var(--moss-green));
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 159, 92, 0.3);
}

.btn-book-now:hover {
    background: linear-gradient(135deg, var(--jungle-green), var(--palm-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 159, 92, 0.4);
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
}

.legend-dot.available {
    background: white;
    border: 1px solid #ddd;
}

.legend-dot.booked {
    background: #ffebee;
}

.legend-dot.selected {
    background: var(--palm-green);
}

/* ============================================
   10. FORMS & CONTACT
   ============================================ */
.contact-form-section {
    padding: 6rem 0;
    background: #F9F8F6;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

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

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1rem;
    border: 1.5px solid #E0E0E0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--palm-green);
    box-shadow: 0 0 0 3px rgba(107, 159, 92, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--palm-green), var(--moss-green));
    color: white;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--jungle-green), var(--palm-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 159, 92, 0.3);
}

/* Contact Modal */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-modal-overlay.active .contact-modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--medium-gray);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--palm-green);
    color: white;
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--palm-green), var(--moss-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(107, 159, 92, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.floating-contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(107, 159, 92, 0.5);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ============================================
   11. TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--palm-green), var(--jungle-green));
    transition: height 0.3s ease;
}

.testimonial-card:hover::before {
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 8px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: #D4A855;
    font-size: 1.1rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-stars i {
    filter: drop-shadow(0 1px 2px rgba(212, 168, 85, 0.5));
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-stars i {
    filter: drop-shadow(0 2px 6px rgba(212, 168, 85, 0.8));
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--palm-green);
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 4px;
    align-self: flex-start;
}

/* ============================================
   12. EXPERIENCES
   ============================================ */
.experiences-preview {
    padding: 6rem 0;
    background: #F5F3EF;
}

.experience-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 64px rgba(107, 159, 92, 0.15), 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(107, 159, 92, 0.3);
}

.experience-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.experience-card span[style*="background: #6B9F5C"] {
    background: linear-gradient(135deg, rgba(107, 159, 92, 0.95), rgba(90, 138, 77, 0.95)) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(107, 159, 92, 0.4);
}

/* ============================================
   13. TRUST BADGES
   ============================================ */
.trust-badges-section {
    padding: 3rem 2rem 4rem;
    background: #FFFFFF;
}

.trust-badges-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #FAF8F3;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--palm-green);
}

.badge-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
}

.badge-icon.airbnb-badge {
    background: linear-gradient(135deg, #FF5A5F 0%, #FF385C 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

.badge-icon.google-badge {
    background: linear-gradient(135deg, var(--palm-green) 0%, #4A7C59 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(107, 159, 92, 0.35);
}

.badge-icon.location-badge {
    background: linear-gradient(135deg, var(--palm-green) 0%, var(--jungle-green) 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(107, 159, 92, 0.3);
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.badge-rating {
    display: flex;
    gap: 0.2rem;
    color: #D4A855;
    font-size: 1rem;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================
   14. FOOTER
   ============================================ */
.main-footer {
    background: var(--text-dark);
    color: #ddd;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: #999;
    margin-bottom: 0.8rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #999;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #999;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--palm-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #555;
    border-radius: 50%;
    color: #999;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--palm-green);
    color: var(--palm-green);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   15. LOADING STATES & ANIMATIONS
   ============================================ */

/* Skeleton Loaders */
.skeleton-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    animation: pulse 2s ease-in-out infinite;
}

.skeleton-image,
.skeleton-text {
    background: linear-gradient(90deg, var(--skeleton-base) 25%, var(--skeleton-shimmer) 50%, var(--skeleton-base) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-image {
    width: 100%;
    height: 250px;
}

.skeleton-text {
    height: 1rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.skeleton-text.title {
    height: 1.5rem;
    width: 70%;
}

.skeleton-text.description {
    width: 90%;
}

.skeleton-text.price {
    height: 1.25rem;
    width: 40%;
}

/* Button Loading */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn-loading::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(107, 159, 92, 0.2);
    border-top-color: var(--palm-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-large {
    width: 40px;
    height: 40px;
    border-width: 4px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(107, 159, 92, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--palm-green), var(--dark-green));
    border-radius: 2px;
    transition: width 0.3s ease;
    position: relative;
}

/* Keyframe Animations */
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.fade-in { animation: fadeIn 0.5s ease-in; }
.slide-up { animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.scale-in { animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1); }

.hover-lift {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(107, 159, 92, 0.2);
}

/* Staggered Animations */
.stagger-item { animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards; }
.stagger-item:nth-child(1) { animation-delay: 0.05s; }
.stagger-item:nth-child(2) { animation-delay: 0.1s; }
.stagger-item:nth-child(3) { animation-delay: 0.15s; }
.stagger-item:nth-child(4) { animation-delay: 0.2s; }
.stagger-item:nth-child(5) { animation-delay: 0.25s; }
.stagger-item:nth-child(6) { animation-delay: 0.3s; }

/* ============================================
   16. UTILITIES
   ============================================ */

/* Focus States */
a:focus,
button:focus {
    outline: 3px solid rgba(107, 159, 92, 0.5);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--palm-green);
    outline-offset: 4px;
}

/* Glow Focus */
.glow-focus:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(107, 159, 92, 0.2), 0 4px 16px rgba(107, 159, 92, 0.3);
    border-color: var(--palm-green);
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Scroll Anchor Offset */
#reviews,
#properties,
#experiences,
#contact,
section[id] {
    scroll-margin-top: 100px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--palm-green), var(--dark-green));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

/* Print Styles */
@media print {
    nav,
    .mobile-menu,
    .mobile-nav,
    .whatsapp-float,
    .floating-contact-btn {
        display: none !important;
    }
}

/* ============================================
   17. RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .properties-grid,
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-badges-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .trust-badge {
        padding: 1.25rem;
    }

    .badge-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .split-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .extended-stays-card-horizontal {
        grid-template-columns: 300px 1fr;
    }
}

/* ============================================
   18. RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 767px) {
    /* Navigation */
    .main-nav {
        display: none;
    }

    .mobile-nav {
        display: block !important;
        height: 65px;
        padding: 0.625rem 1rem;
    }

    .mobile-logo {
        height: 45px !important;
    }

    .mobile-menu {
        top: 65px !important;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        color: var(--text-dark);
        font-weight: 500;
        border-bottom: 1px solid #E5E5E5;
    }

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

    .mobile-menu a:hover {
        color: var(--palm-green);
        background: rgba(107, 159, 92, 0.05);
    }

    /* Hero */
    .hero-clean,
    .hero-section {
        min-height: 65svh;
        margin-top: 65px;
        min-height: 420px;
        max-height: 520px;
    }

    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 1rem;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-label {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Typography */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    /* Layout */
    .container-standard {
        padding: 0 1.5rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    /* Grids */
    .properties-grid,
    .property-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

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

    .trust-badges-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
    }

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

    /* Cards */
    .property-gallery {
        height: 240px;
    }

    .property-details {
        padding: 1.5rem;
    }

    .property-name {
        font-size: 1.6rem;
    }

    .property-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Extended Stays */
    .extended-stays-card-horizontal {
        grid-template-columns: 1fr;
    }

    .extended-stays-image-horizontal {
        height: 200px;
    }

    .extended-stays-content {
        padding: 1.5rem;
        text-align: center;
    }

    .btn-extended-stays {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        margin: 0 auto;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }

    /* Calendar */
    .date-selection {
        grid-template-columns: 1fr;
    }

    .day {
        font-size: 0.9rem;
        min-height: 48px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    /* Floating Elements */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    /* Contact Form */
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    /* Scroll Offset */
    #reviews,
    #properties,
    #experiences,
    #contact,
    section[id] {
        scroll-margin-top: 90px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .mobile-logo {
        height: 60px;
    }

    .main-nav {
        padding: 0.5rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   19. SAFARI/iOS FIXES
   ============================================ */

/* Safe area insets for iPhone X+ */
@supports (padding: env(safe-area-inset-bottom)) {
    .mobile-nav {
        padding-top: env(safe-area-inset-top);
    }

    .mobile-menu {
        padding-bottom: env(safe-area-inset-bottom);
    }

    #contact,
    footer {
        padding-bottom: calc(2rem + env(safe-area-inset-bottom));
    }
}

@media (max-width: 767px) {
    /* Fix 100vh issue on Safari */
    .hero-section {
        height: 65svh;
        min-height: 420px;
    }

    /* Smooth scrolling for iOS */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* Prevent rubber-band scrolling */
    body {
        overscroll-behavior-y: none;
    }

    /* Fix tap highlight */
    a, button {
        -webkit-tap-highlight-color: transparent;
    }

    /* Prevent input zoom (font-size < 16px triggers zoom) */
    input, select, textarea {
        font-size: 16px !important;
    }

    /* Fix horizontal scroll */
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Add padding for mobile bottom CTA */
    body {
        padding-bottom: 80px;
    }
}

/* ==========================================
   Mobile Bottom CTA Bar
   ========================================== */
.mobile-bottom-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-top: 1px solid rgba(107, 159, 92, 0.2);
}

@media (max-width: 767px) {
    .mobile-bottom-cta {
        display: flex;
        gap: 10px;
        align-items: center;
    }
}

.mobile-bottom-cta .cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.mobile-bottom-cta .cta-whatsapp {
    background: #25D366;
    color: white;
}

.mobile-bottom-cta .cta-whatsapp:hover,
.mobile-bottom-cta .cta-whatsapp:active {
    background: #1fb855;
    transform: scale(0.98);
}

.mobile-bottom-cta .cta-book {
    background: var(--palm-green);
    color: white;
}

.mobile-bottom-cta .cta-book:hover,
.mobile-bottom-cta .cta-book:active {
    background: var(--jungle-green);
    transform: scale(0.98);
}

.mobile-bottom-cta .cta-btn i {
    font-size: 1.1rem;
}
