/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow: hidden;
}

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

/* Split-Screen Layout */
.split-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.content-side {
    width: 50%;
    height: 100vh;
    overflow-y: auto;
    background: white;
}

.app-side {
    width: 50%;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: #FF6B35;
    color: white;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

#app-frame {
    flex: 1;
    width: 100%;
    border: none;
    background: white;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
}

.logo-img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #FF6B35;
    border-radius: 3px;
    transition: all 0.3s;
}

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

.cta-btn {
    background: #FF6B35;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Hero Section - Full Color (No Overlay) */
.hero {
    background: url('assets/hero-woman-phone.png') left center / cover no-repeat;
    color: white;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 30px 40px;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6), 0 0 20px rgba(0,0,0,0.4);
    line-height: 1.2;
}

/* Hero Headline - Across top of image */
.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.6);
    margin: 0;
    letter-spacing: -0.5px;
}

/* Button Styles */
.btn-primary {
    background: #FF6B35;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid white;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #FF6B35;
}

/* Homeowners / How It Works Section */
.homeowners {
    padding: 80px 0 40px;
    background: #f8f9fa;
    position: relative;
}

.homeowners .container {
    position: relative;
    z-index: 2;
}

.homeowners .icon-logo {
    display: block;
    width: 200px;
    height: auto;
    margin: 0 auto 30px auto;
}

.homeowners h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #333;
    white-space: nowrap;
}

.homeowners .section-subtitle {
    color: #666;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.steps-overlay {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.step-card {
    background: transparent;
    text-align: center;
    padding: 35px 25px;
    border-radius: 15px;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
}

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

/* App Download CTA */
.app-download-headline {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

.app-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.badge-apple {
    height: 44px;
    width: auto;
    max-width: 160px;
}

.badge-google {
    height: 64px;
    width: auto;
    max-width: 216px;
    margin: -10px -4px;
}

/* Gift a Mow Section */
.gift-a-mow {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.gift-a-mow h2 {
    text-align: center;
    font-size: 2rem;
    color: #FF6B35;
    margin-bottom: 10px;
}

.gift-intro {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.gift-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* Property Pro Section */
.property-pro {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.property-pro h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #FF6B35;
}

.section-subtitle-main {
    text-align: center;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}

.property-pro .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.property-pro-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pro-feature {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, background 0.3s;
}

.pro-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.pro-feature-icon {
    color: #FF6B35;
    margin-bottom: 20px;
}

.pro-feature h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: white;
}

.pro-feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.property-pro-cta {
    text-align: center;
}

.property-pro-cta .btn-primary {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.price-tag {
    margin-top: 15px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-hero-banner {
    position: relative;
    height: 280px;
    background-image: url('assets/contractors-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.1) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    padding-bottom: 32px;
}

.about-hero-content h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.about-heading-wrap {
    text-align: center;
    padding: 24px 0 0;
}

.about-subheading {
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 700;
    color: #555;
    margin: 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.value {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.value h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #FF6B35;
}

.value p {
    font-size: 0.9rem;
    color: #666;
}

/* Built for Homeowners & Property Managers Section */
.app-illustration-section {
    padding: 32px 0 10px;
    background: white;
    text-align: center;
}

.illustration-heading {
    font-size: 2rem;
    color: #333;
    margin-bottom: 32px;
}

.take-back-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.platform-headline {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 28px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.platform-body {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 auto 18px;
    text-align: center;
}

/* Contractor Pitch Section */
.contractor-pitch-section {
    padding: 60px 0;
    background: #1a1a1a;
    text-align: center;
}

.contractor-pitch-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.contractor-pitch-body {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto 32px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 2px solid #FF6333;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background: #FF6333;
    color: #ffffff;
}

.app-illustration-img {
    max-width: 480px;
    width: 100%;
    height: auto;
    display: block;
    margin: 48px auto 0;
}

/* App Download Standalone Section */
.app-download-section {
    padding: 40px 0;
    background: #f8f9fa;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 32px;
}

.contact-heading {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 16px;
}

.contact-email {
    margin-bottom: 24px;
    font-size: 1rem;
}

.contact-email a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
}

.contact-email a:hover {
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
}

.contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-cta p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-cta .btn-primary {
    background: white;
    color: #FF6B35;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 25px;
}

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

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

.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #bdc3c7;
    font-size: 0.9rem;
}

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

.footer-column h4 {
    margin-bottom: 15px;
    color: #FF6B35;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

/* Footer Service Areas - SEO Section */
.footer-service-areas {
    padding: 30px 0;
    border-top: 1px solid #34495e;
    text-align: center;
    margin-top: 30px;
}

.footer-service-areas h3 {
    color: #FF6B35;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-service-areas .service-areas-list {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.85rem;
}

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

/* Responsive: Mobile/Tablet - Single Column Layout */
@media (max-width: 1024px) {
    body {
        overflow: auto;
    }

    .split-container {
        display: block;
        height: auto;
    }

    .content-side {
        width: 100%;
        height: auto;
        overflow: visible;
    }

    .app-side {
        display: none;
    }

    .header .container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        position: relative;
    }

    .header .logo {
        position: absolute;
        left: 50%;
        top: calc(50% + 4px);
        transform: translate(-50%, -50%);
        flex-shrink: 0;
    }

    .header .book-btn {
        font-size: 0.75rem;
        padding: 8px 12px;
        white-space: nowrap;
        order: 3;
        margin-left: auto;
    }

    .hamburger {
        display: flex;
        order: 1;
        flex-shrink: 0;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 15px;
    }

    .nav.nav-open {
        display: flex;
    }

    .nav a {
        font-size: 1rem;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .logo-img {
        height: 35px;
    }

    .hero {
        min-height: 350px;
        padding-bottom: 40px;
    }

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
        text-align: left;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-headline {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 20px;
    }

    .steps-overlay {
        grid-template-columns: 1fr;
    }

    .use-cases {
        grid-template-columns: 1fr;
    }

    .property-pro-features {
        grid-template-columns: 1fr;
    }

    .about-hero-banner {
        height: 200px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    .hero h1 {
        font-size: 1.75rem;
    }

    .btn-primary, .btn-secondary {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .gift-description {
        padding: 20px;
    }

    .step-card {
        padding: 25px 15px;
    }

    .pro-feature {
        padding: 30px 20px;
    }

    .app-download-headline {
        font-size: 1.3rem;
        font-weight: 700;
    }

    .app-badges {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }

    .badge-apple {
        height: 38px;
        width: auto;
    }

    .badge-google {
        height: 56px;
        width: auto;
        margin: -9px -3px;
    }
}
