:root {
    --forest-green: #2D5016;
    --lime-green: #8CC63F;
    --caribbean-blue: #0099CC;
    --sand-beige: #F5E6D3;
    --sunset-orange: #FF6B35;
    --deep-blue: #003049;
    --mint-green: #77C9A5;
    --warm-gray: #4A4A4A;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #E5E5E5;
    --medium-gray: #999999;
    --dark-gray: #333333;
    --black: #000000;
    
    --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s var(--ease);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    gap: 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin: 0;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--warm-gray);
    margin: 0;
    line-height: 1;
}

.desktop-nav {
    display: none;
    gap: 2rem;
}

.nav-item {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s var(--ease);
    white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
    color: var(--caribbean-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon {
    background: none;
    border: none;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    color: var(--caribbean-blue);
}

.search-btn {
    display: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 0.5rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-cta {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--caribbean-blue);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #007AA3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--caribbean-blue);
    border: 2px solid var(--caribbean-blue);
}

.btn-secondary:hover {
    background: var(--caribbean-blue);
    color: var(--white);
}

.btn-cta {
    background: var(--sunset-orange);
    color: var(--white);
    display: none;
}

.btn-cta:hover {
    background: #E55A2B;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 200;
    transition: right 0.3s var(--ease);
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav-content {
    padding: 0 1.5rem 2rem;
}

.mobile-nav-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.chapter-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    text-decoration: none;
    color: var(--dark-gray);
    transition: background 0.3s var(--ease);
}

.chapter-link:hover {
    background: var(--off-white);
}

.chapter-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.chapter-info {
    flex: 1;
}

.chapter-number {
    font-size: 0.75rem;
    color: var(--medium-gray);
    margin-bottom: 0.25rem;
}

.chapter-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
}

.mobile-nav-cta {
    margin-top: 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 4rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://laselvaroatan.org/assets/images/La_Selva_Eco_Resort_Roatan_Eco_Friendly_Living_green_sustainable_vacation_Caribbean_land_for_sale_tour_Roatan_real_estate_scuba_diving_snorkeling_Caribbean_sunset_fresh_open_air_market_vibrant_villages2.16194433.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-prompt {
    background: none;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s var(--ease);
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
}

.scroll-prompt:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-4px);
    animation-play-state: paused;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Intro Section */
.intro-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--warm-gray);
}

/* Section Title */
.section-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-gray);
}

/* Chapters Section */
.chapters-section {
    padding: 5rem 0;
}

.chapters-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray);
}

.chapters-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.chapter-card {
    position: relative;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s var(--ease);
}

.chapter-card:hover {
    transform: translateY(-4px);
}

.chapter-card:hover .chapter-bg {
    transform: scale(1.05);
}

.chapter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s var(--ease);
}

.chapter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
}

.chapter-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    color: var(--white);
    width: 100%;
}

.chapter-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chapter-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.chapter-description {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.chapter-link-text {
    color: var(--caribbean-blue);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: gap 0.3s var(--ease);
}

.chapter-card:hover .chapter-link-text {
    gap: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--forest-green);
    color: var(--white);
}

.stats-section .section-title {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lime-green);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Properties Section */
.properties-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.properties-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.property-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--ease);
    opacity: 0;
    animation: fadeInUp 0.6s var(--ease) forwards;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

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

.property-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-content {
    padding: 1.5rem;
}

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

.property-details {
    color: var(--warm-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.property-price {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--caribbean-blue);
    margin-bottom: 1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.carousel-btn {
    background: var(--white);
    border: 2px solid var(--caribbean-blue);
    color: var(--caribbean-blue);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.carousel-btn:hover {
    background: var(--caribbean-blue);
    color: var(--white);
}

.properties-section > .container > .btn-secondary {
    display: block;
    max-width: 300px;
    margin: 0 auto;
}

/* Updates Section */
.updates-section {
    padding: 5rem 0;
}

.updates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.update-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--ease);
    opacity: 0;
    animation: fadeInUp 0.6s var(--ease) forwards;
}

.update-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.update-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.update-content {
    padding: 1.5rem;
}

.update-date {
    font-size: 0.875rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.update-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.update-excerpt {
    color: var(--warm-gray);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.update-link {
    color: var(--caribbean-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s var(--ease);
}

.update-link:hover {
    gap: 1rem;
}

.updates-section > .container > .btn-secondary {
    display: block;
    max-width: 300px;
    margin: 0 auto;
}

/* Chapter Hero */
.chapter-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.chapter-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.chapter-hero .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.chapter-number {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.chapter-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.chapter-hero-subtitle {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-style: italic;
    opacity: 0.95;
}

/* Chapter Content */
.chapter-content-section {
    padding: 4rem 0;
}

.chapter-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.content-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content-block h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.content-block p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-block ul,
.content-block ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.content-block li {
    margin-bottom: 0.5rem;
}

.chapter-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.chapter-navigation .btn-primary,
.chapter-navigation .btn-secondary {
    flex: 1;
    min-width: 200px;
}

/* Your Journey Specific Styles */
.featured-properties-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--off-white);
}

.featured-properties-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.property-card-full {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--ease);
}

.property-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--sand-beige);
    border-radius: 8px;
    margin: 4rem 0;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--warm-gray);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .chapter-hero-title {
        font-size: 3.5rem;
    }
    
    .chapter-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 5rem 0;
    background-image: url('cta-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column {
}

.footer-logo .logo-text {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.footer-logo .logo-tagline {
    color: var(--light-gray);
}

.footer-tagline {
    color: var(--light-gray);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s var(--ease);
}

.footer-links a:hover {
    color: var(--caribbean-blue);
}

.newsletter-label {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    padding: 0.75rem;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.875rem;
}

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

.social-links a {
    color: var(--light-gray);
    transition: color 0.3s var(--ease);
}

.social-links a:hover {
    color: var(--caribbean-blue);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--light-gray);
    font-size: 0.875rem;
}

.contact-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.875rem;
}

/* Book Visit Page */
.book-visit-section {
    padding: 4rem 0;
}

.book-visit-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* Booking Calendar */
.booking-calendar {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.booking-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.booking-calendar-month {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--forest-green);
}

.calendar-nav-btn {
    border: none;
    background: var(--off-white);
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--dark-gray);
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.calendar-nav-btn:hover {
    background: var(--caribbean-blue);
    color: var(--white);
}

.booking-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    text-align: center;
    color: var(--medium-gray);
}

.booking-calendar-weekdays > div {
    padding: 0.15rem 0;
}

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

.calendar-day {
    border: none;
    background: var(--off-white);
    border-radius: 6px;
    padding: 0.45rem 0;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.1s var(--ease);
}

.calendar-day:hover:not(:disabled) {
    background: var(--caribbean-blue);
    color: var(--white);
    transform: translateY(-1px);
}

.calendar-day-blank {
    cursor: default;
    background: transparent;
}

.calendar-day-disabled {
    background: var(--light-gray);
    color: var(--medium-gray);
    cursor: not-allowed;
}

.calendar-day-selected {
    background: var(--sunset-orange);
    color: var(--white);
    font-weight: 600;
}

.selected-date-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.book-visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.book-visit-form-container h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--forest-green);
}

.book-visit-form {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--caribbean-blue);
}

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

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.book-visit-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: var(--sand-beige);
    padding: 2rem;
    border-radius: 8px;
}

.info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--lime-green);
    font-weight: 700;
}

.info-box p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-box a {
    color: var(--caribbean-blue);
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

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

@media (min-width: 1024px) {
    .book-visit-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.footer-legal {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.footer-legal a:hover {
    color: var(--caribbean-blue);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .chapters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .properties-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .updates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-contact {
        flex-direction: row;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .btn-cta {
        display: inline-block;
    }
    
    .search-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
    
    .chapters-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .properties-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .updates-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Properties Listing Page */
.page-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    background: linear-gradient(135deg, var(--forest-green), var(--caribbean-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-hero-subtitle {
    font-size: 1.125rem;
    color: var(--white);
    opacity: 0.95;
}

.properties-listing-section {
    padding: 4rem 0;
}

.properties-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.properties-full-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.property-listing-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--ease);
}

.property-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.property-listing-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.property-listing-content {
    padding: 2rem;
}

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

.property-listing-details {
    color: var(--warm-gray);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.property-listing-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--caribbean-blue);
    margin-bottom: 1rem;
}

.property-listing-excerpt {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--warm-gray);
}

.contact-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--sand-beige);
    border-radius: 8px;
}

.contact-cta h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.contact-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--warm-gray);
}

/* Property Detail Pages */
.property-detail-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
}

.property-detail-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.property-detail-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--lime-green);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.property-detail-section {
    padding: 4rem 0;
}

.property-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.property-overview {
    margin-bottom: 2rem;
}

.property-overview h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--forest-green);
}

.property-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 8px;
}

.spec-item {
    font-size: 0.9375rem;
}

.spec-item strong {
    color: var(--forest-green);
}

.property-description h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.property-description h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.property-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.property-description ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.property-description li {
    margin-bottom: 0.75rem;
}

.property-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.inquiry-box {
    background: var(--sand-beige);
    padding: 2rem;
    border-radius: 8px;
}

.inquiry-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.inquiry-box p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.inquiry-box .btn-block {
    margin-bottom: 0.75rem;
}

.property-location {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 8px;
}

.property-location h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.property-location ul {
    list-style: none;
    padding: 0;
}

.property-location li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.property-location li:last-child {
    border-bottom: none;
}

.property-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page-section {
    padding: 6rem 0 4rem;
    margin-top: 4rem;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
}

.legal-date {
    font-size: 0.9375rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--warm-gray);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.75rem;
}

/* Sitemap */
.sitemap-content {
    max-width: 900px;
    margin: 2rem auto;
}

.sitemap-section {
    margin-bottom: 3rem;
}

.sitemap-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.sitemap-list li:last-child {
    border-bottom: none;
}

.sitemap-list a {
    color: var(--caribbean-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s var(--ease);
}

.sitemap-list a:hover {
    color: var(--dark-gray);
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.6s var(--ease) forwards;
}

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

/* Booking Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    transition: transform 0.3s var(--ease);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-overlay.open .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-green);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--medium-gray);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--sunset-orange);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.modal-step {
    display: none;
    animation: fadeIn 0.3s var(--ease);
}

.modal-step.active {
    display: block;
}

.step-indicator {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-gray);
    transition: background 0.3s;
}

.step-dot.active {
    background: var(--caribbean-blue);
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-success-icon {
    font-size: 4rem;
    color: var(--lime-green);
    text-align: center;
    margin-bottom: 1rem;
    display: block;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-top: 1rem;
}

.calendar-header-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav button {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--forest-green);
}

/* Tablet and Desktop Responsive */
@media (min-width: 768px) {
    .properties-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .property-detail-grid {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 1024px) {
    .properties-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}