/* ========================================
   The Real Johnson - Main Styles
   Primary Brand Color: #FFA500 (Orange)
   ======================================== */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #222;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-white {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.section-subtitle-white {
    font-size: 1.2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== BUTTONS ========== */
.button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.button.primary {
    background: #FFA500;
    color: #fff;
}

.button.primary:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.button.secondary {
    background: #fff;
    color: #FFA500;
    border: 2px solid #FFA500;
}

.button.secondary:hover {
    background: #FFA500;
    color: #fff;
}

.button.white-button {
    background: #fff;
    color: #FFA500;
    font-weight: 700;
    padding: 16px 40px;
}

.button.white-button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 120px 0 100px;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== HOW IT WORKS ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    background: #f9f9f9;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FFA500;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #222;
}

.step-card p {
    color: #666;
    line-height: 1.8;
}

/* ========== HANDYMAN EMPOWERMENT SECTION ========== */
.handyman-section {
    background: #FFA500;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.empowerment-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

/* ========== CONTRACTOR SECTION ========== */
.contractor-section {
    background: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.contractor-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #333;
}

.benefit-icon {
    font-size: 1.5rem;
    color: #FFA500;
    font-weight: bold;
}

/* ========== JOB REQUEST SECTION ========== */
.job-request-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
}

.job-request-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-input {
    flex: 1;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #FFA500;
}

.job-request-form .button {
    width: 100%;
    margin-top: 10px;
}

/* ========== FEATURES SECTION ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #FFA500;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* ========== PHILOSOPHY SECTION ========== */
.philosophy-section {
    background: #fff;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #444;
}

.philosophy-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #FFA500;
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
}

/* ========== APP DOWNLOAD SECTION ========== */
.app-download-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    text-align: center;
}

.app-download-section .section-title {
    color: #fff;
}

.app-download-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.app-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 30px;
    background: #fff;
    color: #000;
    border-radius: 10px;
    min-width: 200px;
}

.app-button .button-label {
    font-size: 0.75rem;
    font-weight: 400;
}

.app-button .button-title {
    font-size: 1.3rem;
    font-weight: 700;
}

.coming-soon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FFA500;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    background: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.stars {
    color: #FFA500;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #222;
}

/* ========== FOOTER ========== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
    color: #FFA500;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FFA500;
}

.footer-section a {
    color: #FFA500;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title, .section-title-white {
        font-size: 2rem;
    }

    .section {
        padding: 50px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .button {
        width: 100%;
        max-width: 300px;
    }

    .empowerment-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .form-input[style*="width"] {
        width: 100% !important;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-button {
        width: 100%;
        max-width: 250px;
    }

    .testimonials-grid,
    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title, .section-title-white {
        font-size: 1.75rem;
    }

    .button {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}
