/* ============================================
   Chattahoochee Rentals - Styles
   A nature-inspired, mobile-first design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-primary: #2d6a4f;
    --color-primary-dark: #1b4332;
    --color-primary-light: #40916c;
    --color-accent: #d4a373;
    --color-accent-light: #e9c46a;
    --color-bg: #fefae0;
    --color-bg-alt: #f0ede3;
    --color-text: #2b2b2b;
    --color-text-light: #555;
    --color-text-muted: #777;
    --color-white: #ffffff;
    --color-border: #ddd;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    z-index: 1000;
    font-size: 0.9rem;
}
.skip-link:focus {
    top: 0;
}

/* --- Header & Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary-dark);
}

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

.logo-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links li a {
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    transition: background var(--transition), color var(--transition);
}

.nav-links li a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

.btn-nav {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600 !important;
}

.btn-nav:hover {
    background: var(--color-primary-dark) !important;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        padding: 0.75rem 1rem;
        width: 100%;
        display: block;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary-dark);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 1.25rem 60px;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 40%, #40916c 70%, #52b788 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--color-white);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero h1 .highlight {
    color: var(--color-accent-light);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-tag {
    background: rgba(255,255,255,0.12);
    color: var(--color-white);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-cta-hero {
    background: var(--color-white);
    color: var(--color-primary-dark);
    border-color: var(--color-white);
    font-size: 1.3rem;
    padding: 1.25rem 3.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.3px;
}

.btn-cta-hero:hover {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25); }
    50% { box-shadow: 0 6px 36px rgba(255, 255, 255, 0.35); }
}

.hero-scroll-hint {
    display: none;
}

/* --- Highlights Strip --- */
.highlights-strip {
    background: var(--color-white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight-icon {
    font-size: 1.75rem;
}

.highlight-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text);
}

.highlight-item span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Sections --- */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--color-bg-alt);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Property Cards --- */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 2rem;
}

.property-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

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

.property-image {
    position: relative;
}

.property-image-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #2d6a4f 0%, #40916c 50%, #52b788 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.1rem;
}

.property-image-placeholder .placeholder-icon {
    font-size: 3rem;
}

/* --- Slideshow --- */
.slideshow {
    position: relative;
    aspect-ratio: 16/9;
    background: #1a1a1a;
    overflow: hidden;
    cursor: pointer;
}

.slideshow-track {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    color: var(--color-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition), opacity var(--transition);
    opacity: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow:hover .slide-btn {
    opacity: 1;
}

.slide-btn:hover {
    background: rgba(0,0,0,0.7);
}

.slide-prev { left: 0.75rem; }
.slide-next { right: 0.75rem; }

.slide-counter {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.5);
    color: var(--color-white);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 5;
}

.slide-expand {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.55);
    color: var(--color-white);
    border: none;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 5;
    opacity: 0;
    transition: background var(--transition), opacity var(--transition);
}

.slideshow:hover .slide-expand {
    opacity: 1;
}

.slide-expand:hover {
    background: rgba(0,0,0,0.8);
}

/* --- Lightbox / Album Viewer --- */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 1100;
    flex-direction: column;
    backdrop-filter: blur(6px);
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.lightbox-title {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.lightbox-close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-album {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.lightbox-item {
    max-width: 900px;
    width: 100%;
}

.lightbox-item img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.lightbox-caption {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

@media (max-width: 540px) {
    .slide-btn { width: 34px; height: 34px; font-size: 1.2rem; }
    .slide-prev { left: 0.4rem; }
    .slide-next { right: 0.4rem; }
    .slideshow:hover .slide-btn,
    .slideshow:hover .slide-expand { opacity: 1; }
    .slide-btn { opacity: 0.8; }
    .slide-expand { opacity: 0.8; }
    .lightbox-album { padding: 1rem; gap: 1rem; }
}

.coming-soon-placeholder {
    background: linear-gradient(135deg, #555 0%, #888 100%);
    opacity: 0.7;
}

.property-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.badge-furnished {
    background: var(--color-accent);
    color: var(--color-white);
}

.badge-pet {
    background: var(--color-primary);
    color: var(--color-white);
}

.property-details {
    padding: 1.75rem;
}

.property-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

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

.property-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.spec {
    background: var(--color-bg);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
}

.property-features {
    margin-bottom: 1.25rem;
}

.property-features p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.lease-options {
    margin-bottom: 1.25rem;
}

.lease-options h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.lease-types {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.lease-badge {
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.lease-monthly {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.lease-annual {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
}

.property-amenities-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.property-amenities-preview span {
    font-size: 0.82rem;
    color: var(--color-text-light);
    background: var(--color-bg-alt);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
}

.btn-contact {
    width: 100%;
    padding: 0.9rem;
    font-size: 1.05rem;
}

.coming-soon-details {
    text-align: center;
}

.coming-soon-details p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.coming-soon-details .btn-contact {
    width: auto;
}

@media (max-width: 540px) {
    .properties-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Location --- */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.location-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-primary);
    transition: box-shadow var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow-md);
}

.location-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary-dark);
}

.location-card p {
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.location-card ul {
    list-style: none;
}

.location-card li {
    padding: 0.3rem 0;
    font-size: 0.93rem;
    color: var(--color-text-light);
}

.map-container {
    text-align: center;
}

.map-container h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.map-embed {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-embed iframe {
    display: block;
}

/* --- Persona / Why Chattahoochee --- */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.persona-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.persona-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.persona-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary-dark);
}

.persona-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    color: var(--color-primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition);
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item summary:hover {
    background: var(--color-bg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.faq-answer li {
    padding: 0.2rem 0;
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
    background: var(--color-bg);
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    color: var(--color-primary-dark);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* --- Contact Modal --- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--color-text-muted);
    line-height: 1;
    padding: 0.25rem;
    transition: color var(--transition);
}

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

.modal h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.25rem;
}

.modal-subtitle {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

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

.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    color: var(--color-text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.form-success {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* --- Properties Section Accent --- */
.properties-section {
    background: var(--color-white);
    border-top: 4px solid var(--color-accent);
}

/* --- Spam Check & Form Error --- */
.spam-check {
    background: var(--color-bg);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--color-border);
}

.verify-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 0.35rem;
}

.form-error {
    background: #fff3f3;
    border: 1px solid #e57373;
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.25rem;
    margin-bottom: 1rem;
}

.form-error p {
    color: #c62828;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* --- Footer --- */
.site-footer {
    background: var(--color-primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-col ul li {
    padding: 0.25rem 0;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--color-white);
}

.footer-col .btn-primary {
    margin-top: 0.75rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-bottom p {
    margin-bottom: 0.25rem;
}

/* --- Utility / Print --- */
@media print {
    .site-header, .hero-cta, .btn-nav, .mobile-menu-toggle, .modal-overlay {
        display: none !important;
    }
    .hero {
        min-height: auto;
        padding: 2rem;
    }
    .section {
        padding: 2rem 0;
    }
}
