/*
 * EntroTerra Final - Clean Modern Design
 * Warm Tropical Colors from Branding
 * Professional Layout, Excellent Readability
 */

/* ===================================
   RESET & VARIABLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Warm Tropical Palette - From Your Branding */
    --palm-green: #6B9F5C;
    --jungle-green: #4A7C42;
    --moss-green: #7FA86E;
    --tropical-gold: #D4A855;
    --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;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--cream);
}

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

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

/* ===================================
   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);
    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);
}

.logo-img {
    height: 60px;
    width: auto;
}

.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;
}

/* ===================================
   LANGUAGE SELECTOR
   =================================== */
/* Hide Google Translate Default Elements */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-spinner-pos {
    display: none !important;
}

body {
    top: 0 !important;
    position: relative !important;
}

/* Hide ALL Google Translate elements - COMPLETE OVERRIDE */
.skiptranslate,
#google_translate_element,
.goog-te-banner-frame,
.goog-te-gadget,
.goog-te-menu-value,
.goog-te-combo,
iframe.skiptranslate,
body > .skiptranslate,
#goog-gt-,
[id^="goog-gt-"],
.goog-te-spinner-pos,
.goog-te-balloon-frame,
#goog-gt-tt,
iframe[src*="translate.google"],
iframe[src*="translate.googleapis"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    z-index: -9999 !important;
    pointer-events: none !important;
}

/* Nuclear option - hide the top bar widget */
body > div:first-child:not(#root):not([class]) {
    display: none !important;
}

/* Prevent Google Translate from adding top padding */
body {
    top: 0 !important;
}

/* Force hide the Google Translate bar that appears at top */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body.translated-ltr {
    top: 0 !important;
}

.translated-ltr body {
    top: 0 !important;
}

.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;
}

/* Legacy language selector classes (for compatibility) */
.language-option .flag {
    font-size: 1.3rem;
}

.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;
}

/* ===================================
   HERO - CLEAN & READABLE
   =================================== */
.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;
}

/* Subtle bottom fade for smooth transition */
.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);
}

/* Video Background */
.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-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.4) 0%,
        rgba(26, 26, 26, 0.5) 50%,
        rgba(26, 26, 26, 0.4) 100%
    );
    z-index: 1;
}

.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),
                 0 1px 4px rgba(0, 0, 0, 1),
                 1px 1px 3px 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),
                 0 1px 3px rgba(0, 0, 0, 1);
}

.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),
                 0 1px 3px rgba(0, 0, 0, 1);
}

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

/* ===================================
   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);
}

.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-outline-small {
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--medium-gray);
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-small:hover {
    border-color: var(--palm-green);
    color: var(--palm-green);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: #25D366;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

/* ===================================
   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;
}

/* ===================================
   WELCOME SECTION
   =================================== */
.welcome-section {
    padding: 6rem 0;
    background: var(--cream);
    position: relative;
}

.welcome-content {
    text-align: center;
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-text + .welcome-text {
    margin-top: -2rem;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--palm-green), var(--moss-green));
    border-radius: 50%;
    color: white;
    font-size: 1.6rem;
}

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

/* ===================================
   PROPERTIES SECTION
   =================================== */
.properties-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

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

@media (max-width: 768px) {
    .properties-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

.amenities-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .amenities-grid-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        padding: 0 0.5rem !important;
    }
}

.property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

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

.property-card:hover .property-image 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);
}

.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-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;
}

.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;
}

@media (max-width: 768px) {
    .property-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .property-price {
        font-size: 1.2rem;
    }
    
    .airbnb-link {
        font-size: 0.85rem;
    }
}

/* Extended Stays Card - Special Styling */
.extended-stays-card {
    border: 2px solid var(--tropical-gold);
}

.extended-stays-image {
    position: relative;
}

.extended-stays-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 159, 92, 0.65), rgba(74, 124, 66, 0.65));
    display: flex;
    align-items: center;
    justify-content: center;
}

.extended-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--palm-green);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.extended-stays-card:hover .extended-badge {
    background: var(--palm-green);
    color: white;
    box-shadow: 0 6px 20px rgba(107, 159, 92, 0.5);
}

.extended-stays-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.extended-stays-highlights span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.extended-stays-highlights i {
    color: var(--palm-green);
    font-size: 0.9rem;
}

/* Extended Stays - Horizontal Full Width Card */
.extended-stays-card-horizontal {
    grid-column: 1 / -1; /* Span full width */
    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;
}

.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-header {
    margin-bottom: 0.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-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--tropical-gold);
    margin: 0;
    letter-spacing: 0.02em;
}

.extended-stays-description {
    font-family: 'Montserrat', sans-serif;
    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-family: 'Montserrat', sans-serif;
    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-family: 'Montserrat', sans-serif;
    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);
}

.btn-extended-stays i {
    font-size: 1.2rem;
}

/* Mobile Responsive for Extended Stays Horizontal Card */
@media (max-width: 768px) {
    .extended-stays-card-horizontal {
        /* Keep horizontal layout but scaled down - spans width of 2 property cards */
        grid-template-columns: 140px 1fr; /* Smaller image, rest is content */
        grid-template-rows: auto;
        min-height: 200px;
        gap: 0;
    }
    
    .extended-stays-image-horizontal {
        height: 100%;
        min-height: 200px;
    }
    
    .extended-stays-content {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .extended-stays-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .extended-stays-subtitle {
        font-size: 0.8rem;
    }
    
    .extended-stays-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .extended-stays-features {
        gap: 0.75rem;
        flex-direction: column;
    }
    
    .extended-feature {
        font-size: 0.8rem;
    }
    
    .extended-feature i {
        font-size: 1rem;
        width: 20px;
    }
    
    .btn-extended-stays {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-extended-stays i {
        font-size: 1rem;
    }
    
    .extended-badge-horizontal {
        top: 0.75rem;
        left: 0.75rem;
        font-size: 0.6rem;
        padding: 0.4rem 1rem;
    }
}



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

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.experiences-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.experiences-list li {
    padding: 0.8rem 0;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.experiences-list i {
    color: var(--palm-green);
    font-size: 1.2rem;
}

.split-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

/* ===================================
   LONG-TERM STAYS SECTION
   =================================== */
.long-term-section {
    padding: 6rem 0;
    background: var(--cream);
}

.long-term-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.long-term-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
}

.long-term-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.long-term-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.long-term-feature i {
    color: var(--palm-green);
    font-size: 1.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.long-term-feature h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.long-term-feature p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.long-term-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
    .long-term-content {
        grid-template-columns: 1fr;
    }
    
    .long-term-image {
        height: 400px;
        order: -1;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.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: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.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;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: 6rem 0;
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.about-content {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.about-badge {
    position: absolute;
    top: 2rem;
    left: -1rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--terracotta), var(--warm-coral));
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(200, 120, 85, 0.4);
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-signature {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.about-signature strong {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.about-signature em {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.about-contact {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
}

/* ===================================
   CONTACT FORM SECTION
   =================================== */
.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: 'Montserrat', sans-serif;
    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;
}

.form-submit {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    cursor: pointer;
}

.contact-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #E0E0E0;
}

.contact-divider::before {
    left: 0;
}

.contact-divider::after {
    right: 0;
}

.contact-divider span {
    background: white;
    padding: 0 1rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.contact-direct {
    text-align: center;
    padding: 1.5rem;
    background: #F9F8F6;
    border-radius: 6px;
}

.contact-direct p {
    font-size: 1.05rem;
    color: var(--dark-gray);
    margin: 0;
}

.whatsapp-link {
    color: #25D366;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    color: #128C7E;
    gap: 0.6rem;
}

.whatsapp-link i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: 6rem 0;
    background: white;
}

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

.contact-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--palm-green);
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.contact-item a {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.contact-item a:hover {
    color: var(--palm-green);
}

.contact-form-container {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 8px;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

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

.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);
}

/* ===================================
   BOOKING SECTION
   =================================== */
.booking-section {
    padding: 6rem 0;
    background: #F5F3EF;
}

.booking-intro {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.booking-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.booking-card-featured {
    border: 2px solid var(--palm-green);
    position: relative;
}

.booking-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--tropical-gold), var(--sunset-amber));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 168, 85, 0.3);
}

.booking-icon i {
    color: white;
    font-size: 2rem;
}

.booking-icon-airbnb {
    background: #FF5A5F;
    box-shadow: 0 4px 15px rgba(255, 90, 95, 0.3);
}

.booking-card-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.booking-card-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.booking-card-featured .booking-card-text {
    flex-grow: 1;
}

.booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
    justify-content: center;
}

/* Special styling for single button in Airbnb card */
.booking-card:not(.booking-card-featured) .booking-buttons {
    justify-content: flex-start;
}

.btn-whatsapp-booking,
.btn-email-booking,
.btn-airbnb-booking {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-whatsapp-booking {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp-booking:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-email-booking {
    background: white;
    color: var(--palm-green);
    border: 2px solid var(--palm-green);
}

.btn-email-booking:hover {
    background: var(--palm-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 159, 92, 0.3);
}

.btn-airbnb-booking {
    background: white;
    color: #FF5A5F;
    border: 2px solid #FF5A5F;
}

.btn-airbnb-booking:hover {
    background: #FF5A5F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 90, 95, 0.3);
}

.booking-help {
    text-align: center;
    margin-top: 3rem;
}

.booking-help p {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

.booking-help a {
    color: var(--palm-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.booking-help a:hover {
    color: var(--jungle-green);
}

@media (max-width: 768px) {
    .booking-options {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   TRUST BADGES SECTION
   =================================== */
.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, #6B9F5C 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-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.badge-link {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

/* Tablet */
@media (max-width: 1024px) {
    .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;
    }
    
    .badge-text {
        font-size: 0.85rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .trust-badges-section {
        padding: 2.5rem 1.5rem 3rem;
    }
    
    .trust-badges-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
    }
    
    .trust-badge {
        padding: 1.25rem 1rem;
    }
    
    .badge-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .badge-text {
        font-size: 0.9rem;
    }
}

/* ===================================
   ACTIVITIES & EXPERIENCES SECTION
   =================================== */

/* Activity Card Hover Effects */
.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15) !important;
}

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

.activity-card:hover div[style*="linear-gradient"] {
    opacity: 1 !important;
}

.activity-card a:hover {
    color: #4A7C42 !important;
}

.activity-card a:hover i {
    transform: translateX(4px);
    transition: transform 0.3s ease;
}

/* Mobile Responsiveness for Activities Grid */
@media (max-width: 1024px) {
    .activity-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .activity-card div[style*="height: 240px"] {
        height: 220px !important;
    }
    
    section[style*="padding: 5rem 2rem"] {
        padding: 3rem 1.5rem !important;
    }
    
    h2[style*="font-size: 3em"] {
        font-size: 2.2em !important;
    }
    
    p[style*="font-size: 1.1em"] {
        font-size: 1em !important;
    }
}

/* ===================================
   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 p i {
    margin-right: 0.5rem;
    width: 18px;
    display: inline-block;
    text-align: center;
}

.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;
}

/* 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);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .welcome-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .split-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .split-image,
    .about-image img {
        height: 400px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 0.75rem 1.5rem;
    }
    
    .logo-image {
        height: 70px;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .logo-tagline {
        font-size: 0.55rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .language-selector {
        position: fixed;
        top: 1rem;
        right: 4.5rem;
        z-index: 1100;
    }
    
    .language-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .language-dropdown {
        right: 0;
        min-width: 180px;
    }
    
    .hero-clean {
        min-height: 60vh;
        margin-top: 70px;
    }
    
    .hero-text-box {
        max-width: 95%;
    }
    
    .hero-label {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-label {
        font-size: 0.75rem;
    }
    
    .container-standard {
        padding: 0 1.5rem;
    }
    
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item h3 {
        font-size: 1.3rem;
    }
    
    .feature-item p {
        font-size: 0.95rem;
    }
    
    /* Properties grid mobile styling moved to mobile-fixes.css for 2-column layout */
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo-img {
        height: 150px !important;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .logo-image {
        height: 90px;
    }
    
    .footer-logo-img {
        height: 120px !important;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .logo-image {
        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;
    }
    
    .footer-logo-img {
        height: 120px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ===================================
   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: 0.75rem 1rem;
    border-bottom: 1px solid rgba(107, 159, 92, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
    .mobile-nav {
        display: block !important;
    }
}

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

.mobile-nav-container a {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.mobile-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
}

.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;
}

@media (max-width: 767px) {
    .mobile-menu {
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 999;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .mobile-menu.active {
        max-height: 500px;
        padding: 1rem;
    }
    
    .mobile-menu a {
        display: flex;
        align-items: center;
        padding: 1rem;
        font-size: 1.05rem;
        gap: 1rem;
        border-radius: 8px;
        transition: background 0.2s;
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 500;
    }
    
    .mobile-menu a:hover {
        background: rgba(107, 159, 92, 0.1);
    }
    
    .mobile-menu a i {
        color: var(--palm-green);
        width: 20px;
        text-align: center;
    }
}
