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

:root {
    --color-primary: #1a365d;      /* Deep navy */
    --color-secondary: #2c5282;    /* Medium blue */
    --color-accent: #c9a227;       /* Gold accent */
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-bg: #ffffff;
    --color-bg-alt: #f7fafc;
    --color-border: #e2e8f0;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* === Header === */
.header {
    background: var(--color-primary);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    flex-direction: column;
}

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

.logo-title {
    font-size: 0.75rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-phone {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.header-phone:hover {
    background: rgba(255,255,255,0.1);
}

/* === Hero Section === */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 60px 0 80px;
    min-height: 70vh;
}

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

.hero-content {
    color: white;
    padding-top: 40px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.badge {
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* === Form Card === */
.form-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 24px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-text);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.15);
}

.form-group input::placeholder {
    color: var(--color-text-light);
}

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

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.btn-submit:hover {
    background: #b8911f;
    transform: translateY(-1px);
}

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

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

/* === Success Message === */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #48bb78;
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-message h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.success-message p {
    color: var(--color-text);
    margin-bottom: 8px;
}

.success-signature {
    font-style: italic;
    color: var(--color-text-light);
    margin-top: 16px;
}

/* === Why Section === */
.why-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.why-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 48px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 12px;
}

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

/* === About Section === */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.motto {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-accent);
    font-style: italic;
    margin: 24px 0;
}

.service-areas {
    background: var(--color-bg-alt);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 24px;
}

.service-areas h4 {
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.service-areas p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

.headshot-placeholder {
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #e2e8f0 100%);
    aspect-ratio: 3/4;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-light);
}

.headshot-placeholder span:first-child {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
}

.placeholder-text {
    font-size: 0.9rem;
    margin-top: 8px;
}

/* === Social Proof === */
.social-section {
    padding: 80px 0;
    background: var(--color-bg-alt);
    text-align: center;
}

.social-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.social-note {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.reviews-placeholder {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.reviews-placeholder p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.zillow-link {
    color: var(--color-secondary);
    font-weight: 500;
    text-decoration: none;
}

.zillow-link:hover {
    text-decoration: underline;
}

/* === CTA Section === */
.cta-section {
    padding: 80px 0;
    background: var(--color-primary);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 32px;
    background: var(--color-accent);
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s;
}

.btn-cta:hover {
    background: #b8911f;
    transform: translateY(-2px);
}

/* === Footer === */
.footer {
    padding: 40px 0;
    background: #0f2744;
    color: white;
}

.footer-content {
    text-align: center;
}

.footer-info {
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 4px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-social {
    margin-bottom: 20px;
}

.footer-social a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: white;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* === Responsive === */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        padding-top: 0;
        text-align: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image {
        order: -1;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .form-card {
        padding: 24px 20px;
    }
    
    .why-section h2,
    .about-text h2,
    .social-section h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .service-areas p {
        font-size: 0.85rem;
    }
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border-left: 4px solid #006aff;
}
.review-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 0.75rem; }
.review-text { font-size: 0.95rem; color: #444; line-height: 1.6; font-style: italic; margin-bottom: 0.75rem; }
.review-author { font-size: 0.82rem; color: #888; font-weight: 600; }
.zillow-link { color: #006aff; font-weight: 600; text-decoration: none; font-size: 0.95rem; }
.zillow-link:hover { text-decoration: underline; }

/* Headshot */
.headshot-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    display: block;
    margin: 0 auto;
}

/* Stats Bar */
.stats-bar {
    background: #1a2e4a;
    padding: 40px 0;
    border-top: 3px solid #c9a84c;
}
.stats-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
.stat-item {
    flex: 1;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.80);
    text-transform: uppercase;
    letter-spacing: 1px;
}
