/* ========================================
   CONTRACTOR HOMEPAGE  - 2026
   ======================================== */

/* Hero Section with Embedded Form */
.hero-v2 {
    min-height: 650px;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #1a1a1a;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.hero-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.85) 100%);
    z-index: -1;
}

.hero-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 4rem;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-v2-content {
    color: white;
}

.hero-v2-badge {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-v2 h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.hero-v2 .keyword-highlight {
    color: var(--green);
}

.hero-v2-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-v2-urgency {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.urgency-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.urgency-item svg {
    width: 24px;
    height: 24px;
    color: var(--green);
}

/* Hero Form */
.hero-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.hero-form-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.hero-form-card .form-group {
    margin-bottom: 1rem;
}

.hero-form-card input,
.hero-form-card select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.hero-form-card input:focus,
.hero-form-card select:focus {
    border-color: var(--green);
    outline: none;
}

.hero-form-card .btn-submit {
    width: 100%;
    background: var(--green);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 0.5rem;
}

.hero-form-card .btn-submit:hover {
    background: var(--green-dark);
}

.hero-form-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray);
    margin-top: 1rem;
}

/* Promo Banner (match promo test layout + prevent clipping) */
.promo-section-v2 {
    background: #f8f9f6;
    padding: 2.5rem 0 1.5rem;
    margin-top: -2.5rem; /* visually connects the promo to the hero */
    position: relative;
    z-index: 5;
}

.promo-banner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.promo-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.promo-badge {
    background: #c0262d; /* High-contrast red for accessibility */
    color: #ffffff;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.promo-heading {
    margin: 0;
    font-size: 2rem;
    line-height: 1.15;
    color: var(--black);
}

.promo-description {
    margin: 0.4rem 0 0;
    color: var(--gray-dark);
    font-size: 1rem;
}

.promo-expires {
    margin: 0.35rem 0 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.btn-promo {
    background: var(--green);
    color: #ffffff;
    padding: 1rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

.btn-promo:hover {
    background: var(--green-dark);
}

@media (max-width: 900px) {
    .promo-section-v2 {
        margin-top: -1.5rem;
        padding: 2rem 0 1rem;
    }

    .promo-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .promo-action {
        width: 100%;
    }

    .btn-promo {
        width: 100%;
        text-align: center;
    }
}


/* Trust Bar - Cite-Ready Format */
.trust-bar-v2 {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.trust-bar-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

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

.trust-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    display: block;
    margin-bottom: 0.25rem;
}

.trust-stat-label {
    font-size: 0.875rem;
    color: var(--gray-dark);
    font-weight: 500;
}

/* Why Choose Section */
.why-choose-v2 {
    padding: 6rem 0;
    background: #f8f9f6;
}

.why-choose-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header-v2 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-v2 h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-header-v2 p {
    font-size: 1.125rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-item-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.why-item-content p {
    color: var(--gray-dark);
    line-height: 1.6;
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--green);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-badge-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge-text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    opacity: 0.95;
}

/* Video Section */
.video-section-v2 {
    padding: 6rem 0;
    background: white;
}

.video-section-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-wrapper {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: #f8f9f6;
    border-radius: 12px;
    transition: all 0.3s;
}

.video-feature:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.video-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--green);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.video-feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.video-feature-text p {
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin: 0;
}

/* Services Grid */
.services-grid-v2 {
    padding: 6rem 0;
    background: white;
}

.services-grid-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-v2 {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s;
}

.service-card-v2:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 154, 91, 0.15);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    background: rgba(139, 154, 91, 0.1);
    color: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card-v2 h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card-v2 p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card-link {
    color: var(--green);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-link:hover {
    gap: 0.75rem;
}

/* Process Timeline */
.process-timeline-v2 {
    padding: 6rem 0;
    background: var(--black);
    color: white;
}

.process-timeline-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-timeline-v2 .section-header-v2 h2,
.process-timeline-v2 .section-header-v2 p {
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.process-step:last-child::after {
    display: none;
}

.process-step-number {
    width: 64px;
    height: 64px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Service Areas Map */
.service-areas-v2 {
    padding: 6rem 0;
    background: var(--green);
    color: white;
}

.service-areas-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-areas-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.service-areas-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.city-link {
    color: white;
    text-decoration: none;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.service-areas-map {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.service-areas-map h4 {
    color: var(--black);
    margin-bottom: 1.5rem;
}

.map-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.map-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Testimonials */
.testimonials-v2 {
    padding: 6rem 0;
    background: white;
}

.testimonials-v2-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.testimonial-card {
    background: #f8f9f6;
    padding: 2rem;
    border-radius: 12px;
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.testimonial-rating {
    color: #fbbf24;
}

.testimonial-text {
    color: var(--gray-dark);
    line-height: 1.7;
    font-style: italic;
}

/* FAQ Section */
.faq-v2 {
    padding: 6rem 0;
    background: #f8f9f6;
}

.faq-v2-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-v2 {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question-v2 {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question-v2:hover {
    background: #f8f9f6;
}

.faq-icon-v2 {
    color: var(--green);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item-v2.active .faq-icon-v2 {
    transform: rotate(180deg);
}

.faq-answer-v2 {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    color: var(--gray-dark);
    line-height: 1.7;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-v2.active .faq-answer-v2 {
    max-height: 500px;
    padding: 0 2rem 1.5rem;
}

/* Emergency CTA */
.emergency-cta-v2 {
    padding: 6rem 0;
    background: var(--black);
    color: white;
    text-align: center;
}

.emergency-cta-v2-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.emergency-cta-v2 h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.emergency-cta-v2 p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

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

.emergency-cta-buttons .btn-primary {
    background: var(--green);
    color: white;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border: 2px solid var(--green);
}

.emergency-cta-buttons .btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 154, 91, 0.3);
}

.emergency-cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border: 2px solid white;
}

.emergency-cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--black);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-v2-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-form-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .trust-bar-v2-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-image {
        order: -1; /* Image above content on mobile */
    }
    
    .video-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-areas-v2-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hero Mobile Optimizations */
    .hero-v2 {
        min-height: auto;
        padding: 6rem 0 3rem;
        background: #1a1a1a;
    }

    .hero-bg-image {
        display: none !important;
    }

    .hero-v2-overlay {
        display: none !important;
    }
    
    .hero-v2 h1 {
        font-size: 2.5rem;
        line-height: 1.15;
    }
    
    .hero-v2-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-v2-urgency {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-form-card {
        padding: 2rem 1.5rem;
    }
    
    /* Section Headers Mobile */
    .section-header-v2 h2 {
        font-size: 2rem;
    }
    
    .section-header-v2 p {
        font-size: 1rem;
    }
    
    /* Trust Bar Mobile - 2 Columns */
    .trust-bar-v2-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    
    .trust-stat-value {
        font-size: 1.75rem;
    }
    
    /* Why Choose Mobile */
    .why-choose-grid {
        gap: 3rem;
    }
    
    .why-item {
        flex-direction: row;
        gap: 1rem;
    }
    
    .why-item-icon {
        width: 40px;
        height: 40px;
    }
    
    .experience-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }
    
    .experience-badge-number {
        font-size: 2.5rem;
    }
    
    /* Services Mobile - Single Column */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card-v2 {
        padding: 2rem 1.5rem;
    }
    
    /* Process Mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step::after {
        display: none;
    }
    
    /* Service Areas Mobile */
    .service-areas-content h2 {
        font-size: 2rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Emergency CTA Mobile */
    .emergency-cta-v2 h2 {
        font-size: 2rem;
    }
    
    .emergency-cta-buttons {
        flex-direction: column;
    }
    
    .emergency-cta-buttons .btn-primary {
        width: 100%;
    }
}

@media (max-width: 640px) {
    /* Hero Mobile Small Screens - PREVENT HORIZONTAL SCROLL */
    .hero-v2 {
        padding: 5rem 0 2rem;
        overflow: hidden;
        background: #1a1a1a;
    }

    .hero-bg-image {
        display: none !important;
    }

    .hero-v2-overlay {
        display: none !important;
    }
    
    .hero-v2-container {
        padding: 0 1rem !important;
        overflow: hidden;
    }
    
    .hero-v2 h1 {
        font-size: 1.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-v2-subtitle {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
    
    .hero-v2-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }
    
    .hero-form-card {
        padding: 1.25rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-form-card h3 {
        font-size: 1.25rem;
    }
    
    /* Mobile Typography Adjustments */
    .section-header-v2 h2 {
        font-size: 1.75rem;
    }
    
    .service-areas-content h2,
    .emergency-cta-v2 h2 {
        font-size: 1.75rem;
    }
    
    /* Trust Bar - Compact Mobile */
    .trust-bar-v2 {
        padding: 1.5rem 0;
        overflow: hidden;
    }
    
    .trust-bar-v2-container {
        padding: 0 1rem;
        gap: 1rem 0.5rem;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-stat-value {
        font-size: 1.375rem;
    }
    
    .trust-stat-label {
        font-size: 0.75rem;
    }
    
    /* Section Padding Mobile */
    .why-choose-v2,
    .services-grid-v2,
    .testimonials-v2,
    .faq-v2 {
        padding: 4rem 0;
        overflow: hidden;
    }
    
    .process-timeline-v2,
    .service-areas-v2,
    .emergency-cta-v2 {
        padding: 4rem 0;
        overflow: hidden;
    }
    
    /* Container Padding Mobile */
    .hero-v2-container,
    .why-choose-v2-container,
    .services-grid-v2-container,
    .testimonials-v2-container,
    .faq-v2-container,
    .service-areas-v2-container,
    .emergency-cta-v2-container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Process Timeline Mobile */
    .process-timeline-v2-container {
        padding: 0 1rem;
    }
    
    .process-step-number {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .process-step h4 {
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 0.875rem;
    }
    
    /* Form Inputs Mobile - Prevent iOS zoom */
    .hero-form-card input,
    .hero-form-card select {
        padding: 0.75rem;
        font-size: 16px;
    }
    
    .hero-form-card .btn-submit {
        padding: 0.875rem;
        font-size: 1rem;
    }
    
    /* FAQ Mobile */
    .faq-question-v2 {
        padding: 1.25rem 1rem;
        font-size: 1rem;
    }
    
    .faq-answer-v2 {
        font-size: 0.9375rem;
    }
    
    .faq-item-v2.active .faq-answer-v2 {
        padding: 0 1rem 1.25rem;
    }
    
    /* Service Card Mobile */
    .service-card-v2 h3 {
        font-size: 1.125rem;
    }
    
    .service-card-v2 p {
        font-size: 0.9375rem;
    }
    
    /* Testimonial Mobile */
    .testimonial-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }
    
    .testimonial-info h5 {
        font-size: 0.9375rem;
    }
    
    .testimonial-text {
        font-size: 0.9375rem;
    }
}

/* Mobile Landscape Optimizations */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-v2 {
        min-height: auto;
        padding: 3rem 0 2rem;
    }
    
    .hero-v2 h1 {
        font-size: 2rem;
    }
    
    .hero-v2-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Larger tap targets for mobile */
    .hero-form-card input,
    .hero-form-card select,
    .hero-form-card .btn-submit {
        min-height: 48px;
    }
    
    .faq-question-v2 {
        min-height: 60px;
    }
    
    .city-link {
        min-height: 48px;
    }
    
    .service-card-link {
        padding: 0.5rem;
        min-height: 44px;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Sharper borders on retina */
    .service-card-v2,
    .testimonial-card,
    .faq-item-v2 {
        border-width: 1px;
    }
}

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .process-step::after,
    .faq-icon-v2 {
        transition: none;
    }
}

/* Print Styles */
@media print {
    .hero-form-card,
    .emergency-cta-v2,
    .faq-icon-v2 {
        display: none;
    }
    
    .hero-v2-container {
        grid-template-columns: 1fr;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}