/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d6e3e;
    --secondary-green: #4a8c5c;
    --light-green: #e8f5e9;
    --dark-gray: #1a1a1a;
    --medium-gray: #666;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --max-width: 1200px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 1rem;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--secondary-green);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
}

.navbar.transparent {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.navbar.transparent .logo {
    color: var(--primary-green);
}

.navbar.transparent .logo-img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(800%) hue-rotate(100deg) brightness(95%) contrast(95%);
}

.navbar.transparent .nav-links a {
    color: var(--primary-green);
    font-weight: 600;
}

.navbar.transparent .nav-links a:hover {
    color: var(--secondary-green);
}

.navbar.transparent .nav-links a::after {
    background: var(--secondary-green);
}

.navbar.transparent .nav-cta {
    background: transparent;
    color: var(--primary-green) !important;
    border: 2px solid var(--primary-green);
}

.navbar.transparent .nav-cta:hover {
    background: var(--primary-green);
    color: var(--white) !important;
}

.navbar.transparent .mobile-menu-toggle span {
    background: var(--primary-green);
}



.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

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

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--primary-green);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary-green);
}

.nav-cta:hover {
    background: var(--secondary-green);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

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


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

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    margin: 0.5rem auto 0;
    border: 2px solid var(--white);
    border-radius: 50%;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: translateX(-50%) rotate(45deg);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

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

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

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-top: 1rem;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border-radius: 50px;
    color: var(--primary-green);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.feature-tag svg {
    fill: var(--secondary-green);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: var(--transition);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
    background: var(--white);
    border-radius: 12px;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-green);
}

.benefit-icon svg {
    stroke: var(--primary-green);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon svg {
    stroke: var(--white);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.benefit-card p {
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Location Section */
.location {
    background: var(--light-gray);
}

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

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.location-features {
    list-style: none;
    margin-top: 2rem;
}

.location-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.location-features svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    fill: var(--secondary-green);
}

.map-container {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.leaflet-map {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
}

.map-placeholder svg {
    stroke: var(--secondary-green);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
}

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

.contact .section-line {
    background: rgba(255, 255, 255, 0.5);
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 300;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--white);
    background: var(--white);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff6b6b;
}

.error-message {
    display: none;
}

.form-error-message {
    background: rgba(255, 255, 255, 0.95);
    color: #d32f2f;
    font-size: 0.875rem;
    text-align: center;
    margin: 0.5rem auto;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    align-self: center;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--white);
    width: 100%;
    justify-content: flex-start;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-footer .btn {
    width: auto;
    align-self: flex-end;
    white-space: nowrap;
}

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

.form-success svg {
    stroke: #4caf50;
    margin-bottom: 1.5rem;
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

/* Acres Gallery Section */
.acres-gallery {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
}

.section-subtitle {
    text-align: center;
    color: var(--medium-gray);
    font-size: 1.125rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.acres-container {
    display: grid;
    grid-template-columns: 12fr 20fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hillside-navigation {
    position: relative;
}

.lot-map-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
}

.lot-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.acre-markers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.acre-marker {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #fff, #f8fffe);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    text-align: center;
    padding: 0;
}

.acre-marker:hover .marker-dot {
    transform: scale(1.3);
    background: linear-gradient(135deg, #f0f7f0, #e8f5e8);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    border-width: 3px;
}

.acre-marker.active .marker-dot {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    transform: scale(1.4);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.5);
    border-color: var(--white);
    border-width: 3px;
}

.hill-instructions {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--medium-gray);
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 175, 80, 0.1);
    font-weight: 500;
}

.acre-viewer {
    position: relative;
}

.acre-display {
    background: linear-gradient(135deg, var(--white), #f8fffe);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    aspect-ratio: 4/3;
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

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

.acre-display:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: rgba(76, 175, 80, 0.2);
}

.acre-display:hover img {
    transform: scale(1.05);
}

.acre-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--medium-gray);
    padding: 2rem;
}

.acre-placeholder svg {
    margin-bottom: 1rem;
}

.acre-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 1.5rem;
}

.acre-info h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.acre-info p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.acre-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.acre-features .feature-tag {
    background: var(--light-green);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Loading and error states */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--medium-gray);
    font-size: 1.125rem;
}

.loading-spinner::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    border: 2px solid var(--light-gray);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.error-message {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #e74c3c;
    padding: 2rem;
    text-align: center;
}

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

/* Privacy Policy Styles */
.privacy-policy {
    padding: 6rem 0 4rem;
    background: var(--white);
}

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

.privacy-last-updated {
    text-align: center;
    margin-bottom: 3rem;
    padding: 1rem;
    background: var(--light-green);
    border-radius: 8px;
}

.privacy-last-updated p {
    margin: 0;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.privacy-section {
    background: var(--white);
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-green);
}

.privacy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.privacy-icon svg {
    stroke: var(--primary-green);
}

.privacy-section h2 {
    color: var(--primary-green);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.privacy-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.privacy-section ul {
    list-style: none;
    padding: 0;
}

.privacy-section li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

.privacy-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-contact {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-contact .privacy-icon {
    background: rgba(255, 255, 255, 0.2);
}

.privacy-contact .privacy-icon svg {
    stroke: var(--white);
}

.privacy-contact h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.privacy-contact p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-details p {
    margin-bottom: 0.75rem;
}

.contact-details a {
    color: var(--white);
    text-decoration: underline;
}

.contact-details a:hover {
    text-decoration: none;
}

.privacy-return {
    text-align: center;
    margin-top: 3rem;
}

/* Privacy Policy Mobile Responsive */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 4rem 0 3rem;
    }
    
    .privacy-section {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .privacy-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-contact {
        padding: 2rem 1.5rem;
    }
}

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

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

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

.footer-brand .logo-img {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer ul {
    list-style: none;
}

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

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .acres-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .lot-map-container {
        aspect-ratio: 12/16;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 60px;
    }

    .nav-content {
        padding: 0.5rem 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }

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

    .mobile-menu-toggle {
        display: flex;
    }

    /* Acres Gallery Mobile */
    .acres-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lot-map-container {
        aspect-ratio: 2/3;
        margin-bottom: 1rem;
    }
    
    .acre-marker {
        width: 20px;
        height: 20px;
    }
    
    .marker-dot {
        width: 18px;
        height: 18px;
        border-width: 2px;
        font-size: 0.5rem;
    }
    
    .acre-display {
        aspect-ratio: 4/3;
    }

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

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

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 3rem 0;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

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

    .hero {
        min-height: 500px;
    }

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

    .section-title {
        font-size: 2rem;
    }
    
    .contact {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .logo-img {
        height: 50px;
    }

    .nav-content {
        padding: 0.4rem 0;
    }

    .form-footer {
        align-items: center;
    }
    
    .form-footer .btn {
        width: auto !important;
        max-width: max-content !important;
        min-width: auto !important;
        align-self: center;
        flex-shrink: 0;
        flex-grow: 0;
        display: inline-flex !important;
    }
    
    .form-error-message {
        width: 100%;
        align-self: auto;
        margin: 0.5rem 0;
    }
}

/* Extra small screens and mobile devices */
@media (max-width: 390px) {
    .form-footer .btn,
    .form-footer .btn-large,
    .form-footer button[type="submit"] {
        width: auto !important;
        max-width: max-content !important;
        min-width: auto !important;
        flex: none !important;
        display: inline-flex !important;
        align-self: center !important;
        box-sizing: content-box !important;
    }
    
    /* Acres Gallery on small screens */
    .lot-map-container {
        aspect-ratio: 4/3;
    }
    
    .acre-marker {
        width: 18px;
        height: 18px;
    }
    
    .marker-dot {
        width: 16px;
        height: 16px;
        font-size: 0.5rem;
    }
    
    .hill-instructions {
        font-size: 0.875rem;
    }
}

/* Carousel Styles */
.acre-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.acre-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.acre-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-btn svg {
    stroke: var(--primary-green);
    stroke-width: 2;
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    z-index: 2;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-indicator.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Mobile adjustments for carousel */
@media (max-width: 768px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 0.5rem;
    }
    
    .carousel-next {
        right: 0.5rem;
    }
    
    .carousel-indicators {
        bottom: 0.5rem;
        padding: 0.4rem;
    }
    
    .carousel-indicator {
        width: 8px;
        height: 8px;
    }
}