/* ============================================================
   Real Estate Landing Page & Funnel - Main Stylesheet
   Author: zmails.org
   ============================================================ */

/* ─── CSS Custom Properties ───────────────────────────────── */
:root {
    --primary:       #1a1a2e;
    --primary-dark:  #0f0f1a;
    --secondary:     #e2b646;
    --secondary-dark:#c9a032;
    --accent:        #16213e;
    --accent-light:  #1f3056;
    --light:         #f8f9fa;
    --lighter:       #ffffff;
    --dark:          #0f0f1a;
    --text:          #2d3436;
    --text-light:    #636e72;
    --text-muted:    #b2bec3;
    --gold:          #e2b646;
    --gold-dark:     #c9a032;
    --gold-light:    #f0d78c;
    --success:       #00b894;
    --error:         #e17055;
    --shadow-sm:     0 2px 8px rgba(0,0,0,0.08);
    --shadow-md:     0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg:     0 20px 60px rgba(0,0,0,0.15);
    --shadow-gold:   0 8px 30px rgba(226,182,70,0.3);
    --radius-sm:     6px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-xl:     30px;
    --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display:  'Inter', serif;
    --max-width:     1200px;
    --header-height: 80px;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--lighter);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* ─── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.text-gold { color: var(--gold); }
.text-light { color: var(--text-light); }
.text-center { text-align: center; }
.section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(226,182,70,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--lighter);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--primary);
    color: var(--lighter);
}

.btn-dark:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg { padding: 18px 48px; font-size: 1.1rem; }

/* ─── Navigation ──────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26,26,46,0.98);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--lighter);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
}

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

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

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

.nav-links .btn-nav {
    background: var(--gold);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-links .btn-nav:hover {
    background: var(--gold-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--lighter);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ─── Hero Section ────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            rgba(26,26,46,0.97) 0%, 
            rgba(22,33,62,0.88) 40%,
            rgba(26,26,46,0.92) 100%);
}

@keyframes heroZoom {
    from { transform: scale(1.1); }
    to   { transform: scale(1.2); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    color: var(--lighter);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.hero-stat h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.hero-stat p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── Lead Form ───────────────────────────────────────────── */
.lead-form-wrapper {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.lead-form-wrapper h3 {
    color: var(--lighter);
    margin-bottom: 8px;
}

.lead-form-wrapper p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.form-steps {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
}

.form-steps .step {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.form-steps .step.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.form-steps .step.completed {
    color: var(--success);
    border-bottom-color: var(--success);
}

.form-step-content { display: none; }
.form-step-content.active { display: block; }

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group .label-icon {
    margin-right: 6px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--lighter);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-control::placeholder { color: rgba(255,255,255,0.3); }

.form-control:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 4px rgba(226,182,70,0.1);
}

.form-control.error {
    border-color: var(--error);
}

.form-control option { 
    background: var(--primary); 
    color: var(--lighter);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e2b646' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

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

.form-error {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 6px;
    display: none;
}

.form-error.show { display: block; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-prev {
    background: rgba(255,255,255,0.1);
    color: var(--lighter);
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-prev:hover {
    background: rgba(255,255,255,0.2);
}

.btn-next, .btn-submit {
    flex: 1;
}

.form-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.form-checkbox:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(226,182,70,0.3);
}

.form-checkbox input { display: none; }

.form-checkbox.active {
    background: rgba(226,182,70,0.15);
    border-color: var(--gold);
    color: var(--gold);
}

.form-checkbox .check-icon {
    display: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.form-checkbox.active .check-icon { display: flex; }

/* Hidden honeypot field */
.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* ─── Section Styles ──────────────────────────────────────── */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--primary);
    color: var(--lighter);
}

.section-light {
    background: var(--light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.6);
}

/* ─── Featured Properties ─────────────────────────────────── */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background: var(--lighter);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

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

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

.property-card .card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: var(--gold);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-card .card-badge.featured {
    background: var(--success);
    color: var(--lighter);
}

.property-card .card-body {
    padding: 24px;
}

.property-card .card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.property-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.property-card .card-location {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.property-card .card-features {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.property-card .card-features span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ─── Why Choose Us ───────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(226,182,70,0.3);
    transform: translateY(-4px);
}

.feature-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(226,182,70,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--lighter);
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ─── Services ────────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    padding: 36px 24px;
    background: var(--lighter);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.service-card .service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(226,182,70,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ─── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--lighter);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 24px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-card .author-info h4 {
    font-size: 0.95rem;
    color: var(--primary);
}

.testimonial-card .author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ─── CTA Section ─────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::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='%23e2b646' 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");
    opacity: 0.5;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--lighter);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
}

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

.footer-brand h3 {
    color: var(--lighter);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-brand .social-links {
    display: flex;
    gap: 12px;
}

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

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

.footer h4 {
    color: var(--lighter);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 12px;
}

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

.footer ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
}

/* ─── Animations ──────────────────────────────────────────── */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-up.delay-1  { transition-delay: 0.1s; }
.animate-fade-up.delay-2  { transition-delay: 0.2s; }
.animate-fade-up.delay-3  { transition-delay: 0.3s; }
.animate-fade-up.delay-4  { transition-delay: 0.4s; }
.animate-fade-up.delay-5  { transition-delay: 0.5s; }

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ─── Spinner ─────────────────────────────────────────────── */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: var(--lighter);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
}

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

/* ─── Alert Messages ──────────────────────────────────────── */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: none;
}

.alert.show { display: block; }
.alert-success { background: rgba(0,184,148,0.1); color: var(--success); border: 1px solid rgba(0,184,148,0.2); }
.alert-error   { background: rgba(225,112,85,0.1); color: var(--error); border: 1px solid rgba(225,112,85,0.2); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { gap: 40px; }
    .properties-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --header-height: 70px; }

    .navbar { padding: 16px 0; }
    .navbar .logo { font-size: 1.3rem; }
    .navbar .logo .logo-icon { width: 32px; height: 32px; font-size: 1rem; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }

    .nav-links.open { right: 0; }
    .hamburger { display: flex; }

    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { padding: 40px 0; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .hero-stat h3 { font-size: 1.5rem; }

    .lead-form-wrapper { padding: 28px; }

    .section { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }

    .properties-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }
    .form-checkboxes { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .btn-lg { padding: 14px 32px; font-size: 1rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .lead-form-wrapper { padding: 20px; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .property-card .card-image { height: 200px; }
}
