/* =====================================================
   Basic Moves LLC - Landing Page Styles
   Color Scheme: Green (Friendly & Approachable)
   ===================================================== */

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

:root {
    /* Green Color Palette */
    --primary-green: #2E7D32;
    --primary-green-dark: #1B5E20;
    --primary-green-light: #81C784;
    --accent-green: #4CAF50;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F9FBF9;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --text-gray: #555555;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.2rem;
}

.btn-cta {
    background-color: var(--white);
    color: var(--primary-green);
    font-size: 1.3rem;
    padding: 18px 40px;
}

.btn-cta:hover {
    background-color: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-green-dark);
}

/* =====================================================
   Header
   ===================================================== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
}

.logo-llc {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green-light);
}

.header-contact .phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.header-contact .phone-link:hover {
    background-color: var(--primary-green-dark);
    color: var(--white);
}

.phone-icon {
    font-size: 1.2rem;
}

.tagline {
    background-color: var(--primary-green);
    color: var(--white);
    text-align: center;
    padding: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
    padding: 60px 0 80px;
}

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

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.hero-subheadline {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.hero-benefits {
    list-style: none;
    margin-top: 20px;
}

.hero-benefits li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.hero-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Lead Form */
.hero-form {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.form-header {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.form-header h2 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.form-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.lead-form {
    padding: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--dark-gray);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group input::placeholder {
    color: #999;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 15px;
    margin-bottom: 0;
}

/* =====================================================
   Section Styles
   ===================================================== */
.section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* =====================================================
   Meet the Owner
   ===================================================== */
.meet-owner {
    padding: var(--section-padding) 0;
    background-color: var(--off-white);
    border-bottom: 3px solid var(--primary-green);
}

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

.owner-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-lg);
}

.owner-text h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.owner-name {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 4px;
}

.owner-title {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.owner-text p {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .owner-content {
        grid-template-columns: 260px 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .owner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .owner-image {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* =====================================================
   Why Choose Us
   ===================================================== */
.why-us {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

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

.benefit-card {
    text-align: center;
    padding: 30px 25px;
    background-color: var(--off-white);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.benefit-card h3 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* =====================================================
   Photo Gallery
   ===================================================== */
.photo-gallery {
    padding: var(--section-padding) 0;
    background-color: var(--dark-gray);
}

.gallery-title {
    color: var(--white) !important;
}

.gallery-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        min-height: 260px;
    }
}

/* =====================================================
   How It Works
   ===================================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background-color: var(--primary-green);
    color: var(--white);
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
    color: var(--white);
}

.how-it-works .section-subtitle {
    opacity: 0.9;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-top: 50px;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.step p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.step-arrow {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.5;
    margin-top: 60px;
}

/* =====================================================
   Situations We Help With
   ===================================================== */
.situations {
    padding: var(--section-padding) 0;
    background-color: var(--light-gray);
}

.situations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.situation-card {
    background-color: var(--white);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.situation-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.situation-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.situation-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =====================================================
   Testimonials
   ===================================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--off-white);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--primary-green);
    font-size: 0.9rem;
}

/* =====================================================
   FAQ Section
   ===================================================== */
.faq {
    padding: var(--section-padding) 0;
    background-color: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background-color: var(--white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-question:hover {
    background-color: var(--off-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* =====================================================
   Call to Action
   ===================================================== */
.cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta > .container > p {
    color: var(--white);
    opacity: 0.9;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-subtext {
    margin-top: 20px;
    color: var(--white);
    opacity: 0.8;
}

.cta-subtext a {
    color: var(--white);
    text-decoration: underline;
}

.cta-subtext a:hover {
    opacity: 0.8;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 30px;
}

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

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-llc {
    color: var(--primary-green-light);
}

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

.footer-info p {
    margin-bottom: 5px;
    opacity: 0.9;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact p {
    margin-bottom: 5px;
}

.footer-contact a {
    color: var(--primary-green-light);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

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

.disclaimer {
    font-size: 0.85rem;
    opacity: 0.6;
    max-width: 600px;
    margin: 0 auto;
}

.footer-eho {
    margin-top: 20px;
}

.eho-logo {
    width: 60px;
    opacity: 0.7;
    filter: invert(1);
}

/* =====================================================
   Responsive Design
   ===================================================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-benefits {
        display: inline-block;
        text-align: left;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step {
        max-width: 100%;
        width: 100%;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .situations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .header-contact .phone-link {
        padding: 12px 25px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

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

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

    .situations-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .btn-cta {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
}

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

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .lead-form {
        padding: 20px;
    }

    .form-header {
        padding: 20px;
    }

    .step {
        padding: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
}
