/*
Theme Name: RealEstateAgentsAI
Theme URI: https://realestateagentsai.com
Description: Minimal theme for RealEstateAgentsAI website with paste-content approach
Version: 1.0
Author: Complete SEO
Author URI: https://completeseo.com
*/

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

:root {
    --forest-green: #0d3d2f;
    --dark-green: #0a2f23;
    --darker-green: #071f18;
    --lime-accent: #d4ff00;
    --lime-hover: #c2ed00;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray-text: #9ca3af;
    --dark-text: #1f2937;
    --green-overlay: rgba(13, 61, 47, 0.95);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Questrial', sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

/* Navigation */
nav {
    background: var(--forest-green);
    padding: 1.2rem 2rem;
    border-bottom: 1px solid rgba(212, 255, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -0.02em;
    text-decoration: none;
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--lime-accent);
    color: var(--forest-green) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 255, 0, 0.3);
    color: var(--forest-green) !important;
}

/* Hero Section */
.hero {
    padding: 6rem 2rem 6rem;
    background: var(--forest-green);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 255, 0, 0.15);
    color: var(--lime-accent);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(212, 255, 0, 0.3);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    color: var(--lime-accent);
    font-weight: 400;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 400;
}

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

.cta-button {
    background: var(--lime-accent);
    color: var(--forest-green);
    padding: 1.1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--lime-accent);
}

.cta-button:hover {
    background: var(--lime-hover);
    border-color: var(--lime-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 255, 0, 0.35);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

/* Stats Section */
.stats-section {
    background: var(--dark-green);
    padding: 4rem 2rem;
    color: var(--white);
    border-top: 1px solid rgba(212, 255, 0, 0.1);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item .number {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--lime-accent);
}

.stat-item .label {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Styles */
section {
    padding: 6rem 2rem;
}

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

.section-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-label {
    display: inline-block;
    background: rgba(212, 255, 0, 0.1);
    color: var(--forest-green);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(13, 61, 47, 0.2);
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Icon styles */
.icon {
    width: 48px;
    height: 48px;
    stroke: var(--forest-green);
    stroke-width: 1.5;
    fill: none;
}

/* Problem Cards */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--lime-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 61, 47, 0.1);
}

.problem-icon {
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #1f2937;
}

.problem-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--lime-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    border-color: var(--forest-green);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(13, 61, 47, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 255, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 255, 0, 0.2);
}

.feature-icon .icon {
    width: 36px;
    height: 36px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: #6b7280;
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.use-case {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.use-case:hover {
    border-color: var(--forest-green);
    box-shadow: 0 10px 30px rgba(13, 61, 47, 0.1);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: var(--forest-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.use-case-icon .icon {
    width: 32px;
    height: 32px;
    stroke: var(--lime-accent);
}

.use-case h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #1f2937;
}

.use-case p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.use-case ul {
    list-style: none;
}

.use-case li {
    color: #6b7280;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.92rem;
}

.use-case li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--lime-accent);
    font-weight: bold;
    font-size: 1.3rem;
}

/* Integration Section */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.integration-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    border-color: var(--lime-accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(13, 61, 47, 0.1);
}

.integration-card h4 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #1f2937;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.testimonial {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 5rem;
    color: rgba(212, 255, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-metric {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.3rem;
}

.testimonial-company {
    color: #6b7280;
    font-size: 0.95rem;
}

/* How It Works */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--forest-green);
    color: var(--lime-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 400;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #1f2937;
}

.step p {
    color: #6b7280;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    background: var(--forest-green);
    padding: 6rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.final-cta .cta-button {
    background: var(--lime-accent);
    color: var(--forest-green);
    border-color: var(--lime-accent);
}

.final-cta .cta-button:hover {
    background: var(--lime-hover);
    border-color: var(--lime-hover);
}

/* Footer */
footer {
    background: var(--darker-green);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--lime-accent);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--lime-accent);
}

.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);
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.15rem;
    }

    .section-header h2 {
        font-size: 2.3rem;
    }

    .nav-links {
        display: none;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.will-animate {
    opacity: 0;
    transform: translateY(30px);
}

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

/* WordPress-specific overrides */
.entry-content {
    margin: 0;
}

.entry-content > *:first-child {
    margin-top: 0;
}
