/* Quote Page Specific Styles */

/* Quote Hero Section */
.quote-hero {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 120px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.quote-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
}

.quote-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.quote-hero .cta-btn.primary {
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.quote-hero .cta-btn.primary:hover {
    background-color: transparent;
    color: #fff;
}

.quote-hero .cta-btn.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.quote-hero .cta-btn.secondary:hover {
    background-color: #fff;
    color: #000;
}

/* Quote Hero CTA Alignment */
.quote-hero .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2rem;
}

/* Before/After Showcase */
.before-after-showcase {
    position: relative;
}

.before-after-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-weight: 600;
    color: #ccc;
}

.before-label,
.after-label {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

/* Quote Form Section */
.quote-form-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.quote-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.quote-form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
}

.quote-form-container > p {
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.quote-form .form-group {
    display: flex;
    flex-direction: column;
}

.quote-form .form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.quote-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-form .full-width {
    width: 100%;
    margin-top: 1rem;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Quick Summary */
.quick-summary {
    padding: 60px 0;
    background-color: #fff;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.summary-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.summary-item:hover {
    transform: translateY(-5px);
}

.summary-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.summary-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.summary-item p {
    color: #666;
    line-height: 1.6;
}

/* Service Overview */
.service-overview {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.service-overview .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-item .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Before & After Gallery */
.before-after-gallery {
    padding: 60px 0;
    background-color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.gallery-item .before-after-container {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.gallery-caption {
    font-weight: 600;
    color: #333;
    margin-top: 0.5rem;
}

/* Social Proof */
.social-proof {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: #333;
    font-style: italic;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #000;
    font-weight: 600;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-item {
    padding: 1rem 2rem;
    background-color: #fff;
    border-radius: 8px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Companies Slider Section */
.companies-slider-container {
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 40px 0;
    margin-top: 2rem;
}

.companies-slider {
    display: flex;
    width: calc(250px * 15); /* 15 slides * 250px width */
    animation: slide 30s linear infinite;
}

.company-slide {
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.company-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: translateY(-2px);
}

.logo-placeholder {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
    letter-spacing: 0.5px;
    padding: 0 10px;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 10)); /* Move by 10 slides */
    }
}

/* Pause animation on hover */
.companies-slider-container:hover .companies-slider {
    animation-play-state: paused;
}

/* Professional Assessment */
.professional-assessment {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.assessment-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.assessment-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.assessment-features {
    margin: 3rem 0;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    line-height: 1.5;
}

.assessment-cta {
    margin-top: 3rem;
}

.cta-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.cta-btn.large {
    padding: 20px 40px;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Pricing Overview */
.pricing-overview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-item:hover {
    transform: translateY(-5px);
}

.pricing-item.popular {
    border: 3px solid #000;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    color: #666;
}

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

.pricing-features li {
    margin-bottom: 0.75rem;
    color: #333;
}

.pricing-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.faq-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #000;
}

.faq-item h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Additional Testimonials */
.additional-testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonial-rating {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background-color: #fff;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.area-group {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.area-group h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    margin-bottom: 0.5rem;
    color: #666;
}

.coverage-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.coverage-note a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.coverage-note a:hover {
    text-decoration: underline;
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.guarantee-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-item h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.guarantee-item p {
    color: #666;
    line-height: 1.6;
}

.guarantee-text {
    background-color: #000;
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Process Explained */
.process-explained {
    padding: 60px 0;
    background-color: #fff;
}

.process-explained .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-explained .process-step {
    text-align: center;
    padding: 2rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.process-explained .process-step:hover {
    border-color: #000;
}

/* Trust Badges */
.trust-badges {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.badge-item {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.badge-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.badge-item p {
    color: #666;
    line-height: 1.6;
}

/* Bottom CTA */
.bottom-cta {
    padding: 60px 0;
    background-color: #000;
    color: #fff;
}

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

.bottom-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.bottom-cta p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.cta-form-container {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.bottom-quote-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.bottom-quote-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.bottom-quote-form .form-group input,
.bottom-quote-form .form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.bottom-quote-form .form-group input:focus,
.bottom-quote-form .form-group textarea:focus {
    outline: none;
    border-color: #000;
}

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

.contact-options p {
    margin-bottom: 1rem;
    color: #ccc;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: 2px solid #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.phone-cta:hover {
    background-color: #fff;
    color: #000;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .quote-hero .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .quote-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .quote-hero {
        padding: 120px 0 60px;
        min-height: 80vh;
    }

    .hero-cta {
        flex-direction: row;
        gap: 1rem;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-cta .cta-btn {
        width: auto;
        max-width: 200px;
        padding: 14px 20px;
        font-size: 1rem;
        min-height: 48px;
    }
    
    .quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quote-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .quote-form-container h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .quote-form .form-group input,
    .quote-form .form-group select,
    .quote-form .form-group textarea {
        min-height: 48px;
        font-size: 16px;
        padding: 14px 16px;
        border-radius: 8px;
    }

    .quote-form .full-width {
        min-height: 48px;
        padding: 14px 20px;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .summary-item {
        padding: 1.5rem;
    }

    .service-overview .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial {
        padding: 1.5rem;
    }
    
    .client-logos {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .professional-assessment {
        padding: 3rem 1rem;
    }

    .assessment-content {
        padding: 1rem;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .feature-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .companies-slider {
        width: calc(200px * 15);
        animation: slide 25s linear infinite;
    }

    .company-slide {
        min-width: 200px;
        padding: 0 10px;
    }

    .company-logo {
        height: 60px;
    }

    .logo-placeholder {
        font-size: 12px;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-200px * 10));
        }
    }
    
    .bottom-quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .bottom-quote-form .form-group input,
    .bottom-quote-form .form-group select,
    .bottom-quote-form .form-group textarea {
        min-height: 48px;
        font-size: 16px;
        padding: 14px 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-item {
        padding: 2rem;
    }

    .pricing-item.popular {
        transform: none;
        margin: 0;
    }

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

    .faq-item {
        padding: 1.5rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .area-group {
        padding: 1.5rem;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guarantee-item {
        padding: 1.5rem;
    }

    .phone-cta {
        padding: 18px 24px;
        font-size: 1.2rem;
        min-height: 56px;
    }

    .cta-btn.large {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* Touch-friendly interactions */
    .cta-btn,
    .phone-cta,
    .service-item,
    .testimonial {
        -webkit-tap-highlight-color: transparent;
    }

    /* Better mobile spacing */
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Prevent iOS zoom on form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    /* Better touch targets */
    .gallery-item,
    .testimonial,
    .pricing-item,
    .service-item,
    .faq-item {
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
    }

    /* Mobile-specific animations */
    .before-after-container {
        touch-action: pan-x;
    }

    .slider-handle {
        touch-action: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

    /* Better mobile scrolling */
    .companies-slider-container {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Ensure all CTAs are centered on mobile */
    .hero-cta,
    .cta-buttons,
    .bottom-cta .cta-form-container,
    .assessment-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Make navigation Get Quote button smaller on mobile */
    .nav-cta .cta-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        min-height: auto;
    }
    
    /* Ensure buttons have consistent sizing and alignment on mobile */
    .cta-btn,
    .hero-cta .cta-btn,
    .quote-hero .cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
        min-height: 48px;
    }

    /* Mobile-friendly lightbox */
    .lightbox-content {
        padding: 1rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 926px) and (orientation: landscape) and (max-height: 430px) {
    .quote-hero {
        padding: 80px 0 40px;
        min-height: 60vh;
    }

    .quote-hero .hero-title {
        font-size: 2rem;
    }

    .quote-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-cta {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }

    .hero-cta .cta-btn {
        width: auto;
        min-width: 160px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .quote-hero .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .quote-hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .quote-hero {
        padding: 100px 0 50px;
        min-height: 70vh;
    }

    .hero-cta .cta-btn {
        width: auto;
        max-width: 200px;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    /* Hide navigation Get Quote button on very small screens to avoid blocking menu */
    .nav-cta .cta-btn {
        display: none;
    }
    
    .quote-form-container {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .quote-form-container h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .quote-form .form-group input,
    .quote-form .form-group select,
    .quote-form .form-group textarea {
        font-size: 16px;
        padding: 16px;
        min-height: 52px;
    }

    .quote-form .full-width {
        padding: 14px 20px;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .bottom-cta h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .summary-item {
        padding: 1.25rem;
    }

    .summary-icon {
        font-size: 2.5rem;
    }

    .service-item {
        padding: 1.25rem;
    }

    .testimonial {
        padding: 1.25rem;
    }

    .pricing-item {
        padding: 1.5rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .guarantee-item {
        padding: 1.25rem;
    }
    
    .phone-cta {
        font-size: 1.2rem;
        padding: 20px 24px;
        min-height: 60px;
    }

    .bottom-quote-form .form-group input,
    .bottom-quote-form .form-group select,
    .bottom-quote-form .form-group textarea {
        font-size: 16px;
        padding: 16px;
        min-height: 52px;
    }

    .container {
        padding: 0 0.75rem;
    }

    .companies-slider {
        width: calc(180px * 15);
        animation: slide 20s linear infinite;
    }

    .company-slide {
        min-width: 180px;
        padding: 0 8px;
    }

    .company-logo {
        height: 50px;
    }

    .logo-placeholder {
        font-size: 10px;
        letter-spacing: 0.2px;
    }

    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-180px * 10));
        }
    }

    .assessment-intro p {
        font-size: 1rem;
    }

    .cta-note {
        font-size: 0.8rem;
    }

    .cta-btn.large {
        padding: 20px 32px;
        font-size: 1.1rem;
        min-height: 60px;
    }

    .price {
        font-size: 2rem;
    }

    .lightbox-close {
        top: -30px;
        right: -30px;
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
    }
}

/* Form Validation Styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

/* Loading Animation for Forms */
.quote-form .loading::after,
.bottom-quote-form .loading::after {
    border-top-color: #fff;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.lightbox-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* MOBILE BUTTON ALIGNMENT OVERRIDE - MUST BE LAST */
@media screen and (max-width: 768px) {
    .quote-hero .hero-container .hero-content .hero-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Make navigation button smaller on mobile */
    .header .nav .nav-container .nav-cta .cta-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-height: auto;
    }
}

@media screen and (max-width: 480px) {
    .quote-hero .hero-container .hero-content .hero-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    /* Hide navigation button on very small screens */
    .header .nav .nav-container .nav-cta .cta-btn {
        display: none;
    }
} 