:root {
    /* Colors - Beach Palette */
    --color-primary-dark: #0c4a6e;
    /* Deep Ocean */
    --color-primary: #0ea5e9;
    /* Ocean Blue */
    --color-primary-light: #38bdf8;
    /* Sky Blue */
    --color-secondary: #f97316;
    /* Sunset Coral */
    --color-secondary-dark: #ea580c;
    /* Burnt Orange */
    --color-accent: #fef3c7;
    /* Sandy Beige */
    --color-accent-light: #fffbeb;
    /* Light Sand */
    --color-text: #1c1917;
    /* Dark Charcoal */
    --color-text-muted: #4b5563;
    /* Gray */
    --color-bg-white: #ffffff;
    /* Pure White */
    --color-bg-light: #f8fafc;
    /* Cool Gray */
    --color-bg-warm: #fff7ed;
    /* Warm off-white */
    --color-success: #22c55e;
    /* Green WhatsApp */
    --color-success-dark: #16a34a;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* BorderRadius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-base: 250ms ease;

    /* Container */
    --container-max: 1280px;
    --container-padding: 1.5rem;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
    /* Double safety */
    width: 100%;
    position: relative;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Color Classes */
.alt-bg {
    background-color: var(--color-bg-warm);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-property {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    color: white;
    padding: var(--space-md) var(--space-lg);
}

.btn-property:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-success) 0%, var(--color-success-dark) 100%);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(34, 197, 94, 0);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-weight: 500;
    color: var(--color-text);
    transition: color var(--transition-base);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: white !important;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-xl);
        padding: 2rem;
    }

    .nav-menu.active {
        right: 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg,
            rgba(12, 74, 110, 0.85) 0%,
            rgba(14, 165, 233, 0.7) 50%,
            rgba(56, 189, 248, 0.6) 100%),
        url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: var(--space-xl);
    max-width: 900px;
}

.pet-friendly-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
    font-size: clamp(1rem, 3vw, 1.5rem);
    opacity: 0.9;
}

.title-main {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    opacity: 0.9;
    margin-bottom: var(--space-2xl);
}

/* Complex Sections */
.complex-section {
    padding: var(--space-4xl) 0;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.property-card {
    background: var(--color-bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.property-image {
    height: 250px;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* Background Images */
.duplex-bg {
    background-image: url('images/duplex/duplex.jpg');
}

.coral-bg {
    background-image: url('images/coral/coral.jpg');
}

.terracota-bg {
    background-image: url('images/terracota/terracota.jpg');
}

.home-bg {
    background-image: url('images/home/main.jpeg');
}

.brasil-bg {
    background-image: url('images/brasil/brasil_pool.jpg');
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.property-badge.romantic {
    background: linear-gradient(to right, #ec4899, #db2777);
}

.property-capacity {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
}

.property-content {
    padding: var(--space-lg);
}

.property-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.property-description {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.property-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.property-features li {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.property-features li::before {
    content: "•";
    color: var(--color-primary);
}

/* Featured Complex Layout */
.featured-complex {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    margin-top: var(--space-xl);
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-complex.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.featured-complex.reverse .complex-image {
    order: 2;
}

.complex-image {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.complex-details {
    padding: var(--space-2xl);
}

.complex-details h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.complex-details p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: var(--space-xl);
}

.complex-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: var(--space-xl);
}

.complex-amenities li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.complex-amenities .icon {
    font-size: 1.5rem;
}

@media (max-width: 900px) {

    .featured-complex,
    .featured-complex.reverse {
        grid-template-columns: 1fr;
    }

    .featured-complex.reverse .complex-image {
        order: 0;
    }

    .complex-image {
        min-height: 300px;
    }

    .complex-details {
        padding: var(--space-lg);
    }
}

/* Contact Section */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-light);
    text-align: center;
}

.contact-methods-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-method-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform var(--transition-base);
}

.contact-method-card:hover {
    transform: translateY(-5px);
}

.contact-method-card.whatsapp {
    color: var(--color-success-dark);
    text-decoration: none;
    border: 2px solid transparent;
}

.contact-method-card.whatsapp:hover {
    border-color: var(--color-success);
    background: #f0fdf4;
}

.contact-method-card h3 {
    color: var(--color-text);
    font-weight: 600;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-text-muted);
}

.social-links-footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

/* Slider Styles */
.complex-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 1rem;
}

.slider-btn.next {
    right: 1rem;
}

@media (max-width: 900px) {
    .complex-slider {
        min-height: 300px;
        border-radius: var(--radius-lg);
    }
}

/* Property Card Slider Override */
.property-slider {
    min-height: 250px !important;
    height: 250px !important;
    border-radius: 0 !important;
}

.property-slider .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

/* =========================================
   Professional Contact Form Styles
   ========================================= */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
    }
}

/* Form Container Card */
.contact-form-container {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    /* overflow: hidden; Removed to prevent input clipping */
}

@media (max-width: 600px) {
    .contact-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1rem;
        /* Maximize space on small phones */
    }

    .form-group input,
    .form-group select {
        padding: 0.8rem 0.5rem !important;
        /* Reduce internal padding */
    }

    .form-row.date-row {
        gap: 0.5rem !important;
        /* Tighter gap for dates */
    }
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--deep-ocean), var(--ocean-blue));
    border-radius: 24px 24px 0 0;
}

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

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

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-group label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-charcoal);
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: #f9fafb;
    color: var(--dark-charcoal);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 107, 182, 0.1);
    transform: translateY(-1px);
}

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

/* Submit Button */
.btn-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1.25rem;
    padding: 1.25rem;
    background-color: var(--color-primary);
    /* Fallback to Ocean Blue */
    background-image: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white !important;
    /* Force white text always */
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(11, 61, 145, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(11, 61, 145, 0.3);
}

.btn-submit:active {
    transform: translateY(1px);
}

.btn-submit:disabled {
    background: #9ca3af !important;
    /* Solid Grey override */
    color: white !important;
    /* Ensure text is visible on grey */
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 1;
    /* Keep solid to prevent "ghosting" effects */
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.contact-method-card svg {
    color: var(--ocean-blue);
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.contact-method-card:hover svg {
    transform: scale(1.1);
}

.contact-method-card.whatsapp svg {
    color: #25D366;
}

.contact-method-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0;
    color: var(--deep-ocean);
}

.contact-method-card p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--warm-gray);
}

.contact-method-card p.small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* International Phone Input */
.phone-input-group {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.phone-input-group input {
    flex: 1;
    min-width: 0;
    width: auto !important;
    /* Force flex width logic, override global 100% */
}

.country-select {
    width: 130px !important;
    /* Force fixed width, override global 100% */
    flex-shrink: 0;
    /* Prevent shrinking */
    padding: 0 0.5rem 0 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background-color: #f9fafb;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--dark-charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    /* Remove default arrow for cleaner look if custom */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
    padding-right: 1.5rem;
    /* Space for arrow */
}

@media (max-width: 480px) {
    .country-select {
        width: 100px !important;
        /* Save space on mobile */
    }

    .phone-input-group {
        gap: 0.5rem;
    }
}

/* Specific fix for Date Fields to remain side-by-side */
.form-row.date-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

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

.spinner {
    animation: spin 1s linear infinite;
}

/* --- New Sections (Testimonials, Location, FAQ) --- */

/* Testimonials */
.testimonials {
    background-color: var(--soft-sand);
    padding: var(--space-3xl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.testimonial-text {
    font-style: italic;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.author-name {
    font-weight: 700;
    color: var(--deep-ocean);
}

.author-location {
    font-size: 0.9rem;
    color: var(--ocean-blue);
}

/* Location */
.location {
    padding: var(--space-3xl) 0;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* FAQ */
.faq {
    background-color: white;
    padding: var(--space-3xl) 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f9fafb;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item[open] {
    background: #f0f9ff;
    /* Light blue bg when open */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
    font-weight: 600;
    color: var(--deep-ocean);
    list-style: none;
    /* Hide default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom indicator */
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--ocean-blue);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    margin-top: 1rem;
    color: var(--gray-text);
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   WINTER / AUTUMN SEASONAL THEME
   Applied via body[data-season="winter"]
   ========================================= */

body[data-season="winter"] {
    --color-primary-dark: #78350f;
    /* Deep Amber */
    --color-primary: #b45309;
    /* Warm Amber */
    --color-primary-light: #d97706;
    /* Golden Amber */
    --color-secondary: #9f1239;
    /* Burgundy */
    --color-secondary-dark: #881337;
    /* Deep Burgundy */
    --color-accent: #fef3c7;
    /* Warm Cream */
    --color-accent-light: #fffbeb;
    /* Light Cream */
    --color-bg-warm: #fdf2f8;
    /* Warm Rose White */

    /* Override CSS custom props used elsewhere */
    --deep-ocean: #78350f;
    --ocean-blue: #b45309;
}

/* Hero - Winter warm gradient */
body[data-season="winter"] .hero {
    background:
        linear-gradient(135deg,
            rgba(120, 53, 15, 0.88) 0%,
            rgba(180, 83, 9, 0.75) 50%,
            rgba(217, 119, 6, 0.65) 100%),
        url('images/winter/winter 1.jpeg');
    background-size: cover;
    background-position: center;
}

/* Nav CTA button */
body[data-season="winter"] .nav-cta {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

/* Nav logo color */
body[data-season="winter"] .nav-logo {
    color: var(--color-primary);
}

/* Nav link hover */
body[data-season="winter"] .nav-link:hover {
    color: var(--color-primary);
}

/* Section badges */
body[data-season="winter"] .section-badge {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: var(--color-primary);
}

/* Property features bullet color */
body[data-season="winter"] .property-features li::before {
    color: var(--color-primary);
}

/* Complex details heading */
body[data-season="winter"] .complex-details h3 {
    color: var(--color-primary-dark);
}

/* Primary buttons */
body[data-season="winter"] .btn-primary {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

/* Property / CTA buttons */
body[data-season="winter"] .btn-property {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
}

/* Submit button */
body[data-season="winter"] .btn-submit {
    background-color: var(--color-primary);
    background-image: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    box-shadow: 0 10px 20px rgba(120, 53, 15, 0.2);
}

body[data-season="winter"] .btn-submit:hover {
    box-shadow: 0 15px 30px rgba(120, 53, 15, 0.3);
}

/* Form top bar color */
body[data-season="winter"] .contact-form-container::before {
    background: linear-gradient(90deg, var(--color-primary-dark), var(--color-primary));
}

/* Form input focus */
body[data-season="winter"] .form-group input:focus,
body[data-season="winter"] .form-group select:focus,
body[data-season="winter"] .form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(180, 83, 9, 0.1);
}

/* FAQ open state */
body[data-season="winter"] .faq-item[open] {
    background: #fef3c7;
}

body[data-season="winter"] .faq-item summary {
    color: var(--color-primary-dark);
}

body[data-season="winter"] .faq-item summary::after {
    color: var(--color-primary);
}

/* WhatsApp float - keep green but adjust pulse */
body[data-season="winter"] .whatsapp-float {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Location buttons */
body[data-season="winter"] .btn-secondary {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

body[data-season="winter"] .btn-secondary:hover {
    background: var(--color-primary);
    color: white;
}

/* Romantic badge keeps its pink */

/* Winter-only visible elements */
.winter-only {
    display: none !important;
}

body[data-season="winter"] .winter-only {
    display: flex !important;
}

body[data-season="winter"] .summer-only {
    display: none !important;
}

/* Block-level winter-only elements (h3, p, etc.) */
body[data-season="winter"] h3.winter-only,
body[data-season="winter"] p.winter-only {
    display: block !important;
}

/* Summer-only elements hidden in winter */
body[data-season="winter"] .summer-only {
    display: none !important;
}

/* Winter feature highlight badge */
.winter-badge {
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.875rem;
    backdrop-filter: blur(6px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

body[data-season="winter"] .winter-badge {
    display: inline-flex;
}

body[data-season="winter"] .pet-friendly-badge {
    display: none;
}