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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 16px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #111827;
}

h3 {
    font-size: 1.5rem;
    color: #374151;
}

p {
    line-height: 1.5;
    margin-bottom: 16px;
    color: #4b5563;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.nav-logo h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
    object-fit: contain;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #111827;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f97316;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-secondary {
    text-decoration: none;
    color: #f97316;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-cta-secondary:hover {
    background: #eff6ff;
}

.nav-cta-primary {
    text-decoration: none;
    background: #f97316;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.nav-cta-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.btn-primary {
    background: #f97316;
    color: white;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.2);
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: #14b8a6;
    color: white;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.2);
}

.btn-secondary:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.btn.large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #f97316;
    font-weight: 600;
    margin-bottom: 24px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-description {
    font-size: 1.125rem;
    color: #f3f4f6;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: scale(1.02);
}

.dashboard-header {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.dashboard-user {
    font-size: 0.875rem;
    opacity: 0.9;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e5e7eb;
}

.stat-card {
    background: white;
    padding: 24px 16px;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-content {
    padding: 24px;
}

.recent-jobs h4 {
    font-size: 1rem;
    color: #111827;
    margin-bottom: 16px;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.job-item:last-child {
    border-bottom: none;
}

.job-customer {
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
}

.job-address {
    color: #6b7280;
    font-size: 0.75rem;
}

.job-status {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.job-status.scheduled {
    background: #dbeafe;
    color: #1e40af;
}

.job-status.in-progress {
    background: #d1fae5;
    color: #065f46;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

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

.about-text {
    max-width: 600px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-cta {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Problem Section (keeping for other sections) */
.problem-section {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-content > p {
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.problem-item {
    background: #fef2f2;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #fecaca;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.problem-item h3 {
    font-size: 1.125rem;
    color: #374151;
    margin: 0;
}

.problem-conclusion {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #dc2626;
    font-weight: 600;
}

/* Solution Section */
.solution-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-intro {
    font-size: 1.25rem;
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 24px;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #f97316;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    color: #111827;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6b7280;
    margin: 0;
}

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

/* Comparison Section */
.comparison-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.comparison-card {
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.comparison-card.diy {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.comparison-card.franchise {
    background: #fffbeb;
    border: 2px solid #fed7aa;
}

.comparison-card.us {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    transform: scale(1.05);
}

.comparison-card:hover {
    transform: translateY(-4px);
}

.comparison-card.us:hover {
    transform: translateY(-4px) scale(1.05);
}

.comparison-card h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.comparison-list {
    list-style: none;
    text-align: left;
}

.comparison-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.comparison-list.negative li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.comparison-list.positive li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

/* Promise Section */
.promise-section {
    background: linear-gradient(135deg, #fefcbf 0%, #fef3c7 100%);
}

.promise-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.promise-item {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.promise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.promise-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.promise-item h3 {
    color: #111827;
    margin-bottom: 8px;
}

.promise-item p {
    color: #6b7280;
    margin: 0;
}

/* Services Section */
.services-section {
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: #f97316;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.service-card h3 {
    color: #111827;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

/* Removal Grid Styles */
.removal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 48px;
}

.removal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.removal-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #10b981;
}

.checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #10b981;
    color: #10b981;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.removal-item span {
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
}

.removal-item a {
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.removal-item a:hover {
    color: #f97316;
    text-decoration: underline;
}

/* Process Section */
.process-section {
    background: white;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.step-card {
    background: #f8fafc;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    min-width: 250px;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: #f97316;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-card h3 {
    color: #111827;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.step-card p {
    color: #6b7280;
    margin: 0;
}

.step-arrow {
    font-size: 2rem;
    color: #f97316;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #fbbf24;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #111827;
    text-align: right;
}

/* Community Section */
.community-section {
    background: white;
}

.community-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.business-types {
    text-align: center;
    margin-top: 48px;
}

.business-types h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 24px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.type-item {
    background: #f3f4f6;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.type-item:hover {
    background: #f97316;
    color: white;
    transform: translateY(-2px);
}

/* Eco Section */
.eco-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.eco-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.eco-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.eco-item {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #d1fae5;
}

.eco-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.eco-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.eco-item h3 {
    color: #111827;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.faq-item {
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #111827;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.faq-item p {
    color: #4b5563;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.cta-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ea580c;
    font-style: italic;
}

/* Trust Section */
.trust-section {
    background: #f8fafc;
    text-align: center;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.trust-conclusion {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ea580c;
}

/* Footer */
.footer {
    background: #111827;
    color: #e5e7eb;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.5;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-section a:hover {
    color: #f97316;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Footer iframe styling */
.footer-section iframe {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 8px;
    max-width: 100%;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-section iframe {
        height: 150px;
        max-width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 48px 0 24px;
    }
    
    .footer-content {
        gap: 24px;
    }
    
    .footer-section iframe {
        height: 120px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 32px 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

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

    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .about-text .section-title {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .problem-grid,
    .solution-features,
    .promise-grid,
    .services-grid,
    .eco-features,
    .comparison-grid,
    .removal-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: 60vh;
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .hero-video-bg iframe {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
        line-height: 1.2;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .hero-cta {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.875rem;
    }

    .btn.large {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Ensure content is visible by default */
.feature-card, 
.service-card, 
.testimonial-card, 
.step-card, 
.problem-item, 
.promise-item, 
.eco-item, 
.faq-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.nav-cta-primary:focus,
.nav-cta-secondary:focus {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

/* Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.service-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.1;
}

.service-hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.service-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-choose-section {
    background: white;
    padding: 80px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.why-choose-item {
    background: #f9fafb;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #f97316;
}

.why-choose-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.why-choose-item h3 {
    color: #111827;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.why-choose-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.why-professional-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
}

.why-professional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.why-professional-item {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.why-professional-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.why-professional-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.why-professional-item h3 {
    color: #111827;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.why-professional-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.contact-section {
    background: white;
    padding: 80px 0;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item strong {
    color: #111827;
    font-weight: 600;
}

.contact-item a {
    color: #f97316;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #ea580c;
    text-decoration: underline;
}

.contact-form {
    background: #f9fafb;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.contact-form h3 {
    color: #111827;
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.contact-item {
    text-align: center;
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #f97316;
}

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

.contact-item h3 {
    color: #111827;
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

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

.contact-item a:hover {
    color: #ea580c;
}

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

.mattress-info-section {
    background: white;
    padding: 80px 0;
}

.mattress-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.mattress-info-item {
    background: #f9fafb;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.mattress-info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #f97316;
}

.mattress-info-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.mattress-info-item h3 {
    color: #111827;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.mattress-info-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.1;
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: #f97316;
    margin-bottom: 40px;
    font-weight: 600;
}

.about-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.meet-owner-section {
    background: white;
    padding: 80px 0;
}

.owner-content {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.owner-image {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.owner-photo {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.owner-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.owner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
    z-index: 1;
}

.owner-image:hover::before {
    opacity: 1;
}

.owner-text {
    flex: 1;
    text-align: left;
}

.owner-name {
    font-size: 4rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.owner-intro {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 500;
}

.our-story-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.story-text p {
    margin-bottom: 24px;
}

.story-tagline {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f97316;
    font-style: italic;
    text-align: center;
    margin-top: 32px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.why-choose-about-section {
    background: white;
    padding: 80px 0;
}

.service-areas-about-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.service-areas-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.service-areas-content p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 32px;
}

.service-areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.service-area-item {
    background: white;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-area-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    color: #f97316;
}

.contact-about-section {
    background: white;
    padding: 80px 0;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .about-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .owner-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .owner-image {
        flex: none;
        max-width: 250px;
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .owner-photo {
        width: 100%;
        height: 100%;
        min-height: 250px;
    }
    
    .owner-text {
        text-align: center;
    }
    
    .owner-name {
        font-size: 3rem;
    }
    
    .owner-intro {
        font-size: 1.25rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .service-areas-list {
        grid-template-columns: 1fr;
    }
}

/* Service Areas Page Styles */
.service-areas-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.service-areas-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.1;
}

.service-areas-hero-subtitle {
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas-hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.coverage-area-section {
    background: white;
    padding: 80px 0;
}

.coverage-info {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.coverage-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 600;
}

.coverage-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.counties-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 0;
}

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.county-item {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.county-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.county-item h3 {
    color: #111827;
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: 700;
}

.county-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
}

.major-cities-section {
    background: white;
    padding: 80px 0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.city-category {
    background: #f9fafb;
    padding: 32px 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.city-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #f97316;
}

.city-category h3 {
    color: #111827;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.city-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.city-item {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.city-item:hover {
    background: #f97316;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.map-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 80px 0;
}

.map-content {
    max-width: 900px;
    margin: 0 auto;
}

.map-description {
    text-align: center;
}

.map-description p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 48px;
    line-height: 1.6;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-item h4 {
    color: #111827;
    margin-bottom: 12px;
    font-size: 1.125rem;
    font-weight: 700;
}

.feature-item p {
    color: #6b7280;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-service-areas-section {
    background: white;
    padding: 80px 0;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive for Service Areas Page */
@media (max-width: 768px) {
    .service-areas-hero-title {
        font-size: 2.5rem;
    }
    
    .service-areas-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .service-areas-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .coverage-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .counties-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .city-list {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile Responsive for Service Pages */
@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .why-choose-grid,
    .why-professional-grid,
    .contact-info,
    .mattress-info-grid {
        grid-template-columns: 1fr;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .feature-card,
    .service-card,
    .testimonial-card,
    .step-card,
    .promise-item,
    .eco-item,
    .why-choose-item,
    .why-professional-item,
    .contact-item {
        border: 2px solid #374151;
    }
}

/* Featured Locations Section */
.featured-locations-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.featured-locations-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.featured-locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.location-category {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.location-category h3 {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.location-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-link {
    display: block;
    padding: 16px 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

.location-link:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    color: white;
    text-decoration: none;
}

.location-link:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Mobile Responsive for Location Links */
@media (max-width: 768px) {
    .featured-locations-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .location-category {
        padding: 24px;
    }
    
    .location-link {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
}

/* City Item Links */
.city-item a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
}

.city-item a:hover {
    color: #1d4ed8;
    background-color: #eff6ff;
    text-decoration: none;
    transform: translateY(-1px);
}

.city-item a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}