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

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

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

/* Button Styles - Consistent Green Theme */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 56px;
}

.btn-primary {
    background: #059669;
    color: white;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.btn-large {
    font-size: 20px;
    padding: 20px 32px;
}

.btn-form {
    background: #059669;
    color: white;
    width: 100%;
    font-size: 18px;
    font-weight: 700;
}

.btn-form:hover {
    background: #047857;
}

.btn-disabled {
    background: #94a3b8 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-disabled:hover {
    background: #94a3b8 !important;
}

.btn-sticky {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px;
    border-radius: 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.btn-icon {
    font-size: 18px;
}

/* Phone Link Styles */
.phone-link, .phone-link-large {
    color: #059669;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.phone-link:hover, .phone-link-large:hover {
    color: #047857;
}

.phone-link-large {
    font-size: 24px;
    font-weight: 700;
}

.phone-icon {
    font-size: 1.2em;
}

/* Hero Section */
.hero-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    width: 150px;
    height: auto;
}

.hero-logo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-bottom-image {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    width: 180px;
    height: auto;
}

.hero-bottom-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-logo {
        width: 80px;
        top: 10px;
        left: 10px;
    }
    
    .hero-bottom-image {
        width: 80px;
        bottom: 10px;
        left: 10px;
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    background-image: url('https://kwnhngnzilsjguiaveil.supabase.co/storage/v1/object/public/ej%20pictures/Screenshot%202025-09-16%20142216.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 40px;
    align-items: center;
    min-height: 80vh;
    grid-template-columns: 1fr 1fr;
}

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

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.5;
    font-style: italic;
}

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

.hero-phone {
    margin-top: 20px;
}

.hero-phone .phone-link {
    color: white;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.hero-phone .phone-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    color: #333;
    transform: scale(1.05);
    margin-left: 60px;
    width: 450px;
    max-width: 450px;
}

.hero-form h3 {
    color: #1f2937;
    margin-bottom: 24px;
    font-size: 32px;
    text-align: center;
    font-weight: 700;
}

/* Form Styles */
.inspection-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inspection-form input,
.inspection-form select,
.inspection-form textarea {
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: white !important;
    color: #333 !important;
}

.inspection-form input:focus,
.inspection-form select:focus,
.inspection-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background-color: white !important;
    color: #333 !important;
}

.inspection-form input:invalid,
.inspection-form textarea:invalid {
    border-color: #dc2626;
}

.inspection-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-microcopy {
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    margin-top: 10px;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: #f9fafb;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 15px 25px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-weight: 600;
    color: #6b7280;
}

/* Mini Form Section */
.mini-form-section {
    padding: 60px 0;
    background: #f0f9ff;
}

.mini-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.mini-form-wrapper h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1f2937;
}

.mini-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mini-form input {
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.mini-form input:focus {
    outline: none;
    border-color: #059669;
}

/* Testimonials Carousel */
.testimonials-section {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1f2937;
}

.testimonials-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto 30px;
}

.testimonial-slide {
    display: none;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #059669;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #4b5563;
    font-size: 18px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

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

.testimonial-author span {
    color: #6b7280;
    font-size: 14px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #059669;
}

/* Services Section */
.services-section {
    padding: 30px 0;
    background: #f9fafb;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.services-section h2 + p {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #e74c3c;
    font-weight: 500;
    font-style: italic;
}

/* Two-column layout for services section */
.services-section .services-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.services-section .services-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show more of the photo (less crop) */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.services-section .services-content h2,
.services-section .services-content p {
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-card {
    background: white;
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

.service-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Urgency Section */
.urgency-section {
    background: #f8f9fa;
    color: #333;
    padding: 60px 0;
    text-align: center;
}

.urgency-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.urgency-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    font-weight: 600;
    color: #2c3e50;
}

/* Icon Sequence */
.icon-sequence {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.icon-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

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

.icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.icon-wrapper:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: scale(1.05);
}

.icon {
    width: 50px;
    height: 50px;
}

.icon-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    text-align: center;
    max-width: 100px;
}

.arrow-right {
    width: 24px;
    height: 24px;
    opacity: 0.6;
    flex-shrink: 0;
}

.arrow-right svg {
    width: 100%;
    height: 100%;
}

/* Certifications Section */
.certifications {
    padding: 30px 0;
    background: #bda372;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.cert-item {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

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

.cert-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.cert-icon.licensed {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.cert-icon.bonded {
    background: linear-gradient(135deg, #10b981, #059669);
}

.cert-icon.accredited {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.cert-icon.certified {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.cert-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* Portfolio Section */
.portfolio-section {
    padding: 30px 0;
    background: #f8fafc;
}

.portfolio-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-placeholder {
    width: 100%;
    height: 250px;
    background: #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.portfolio-placeholder span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.portfolio-item:hover .portfolio-placeholder {
    transform: scale(1.05);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .portfolio-item img {
        height: 200px;
    }
    
    .portfolio-placeholder {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

/* Service Area Section */
.service-area-section {
    padding: 80px 0;
    background: #f9fafb;
}

.service-area-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.service-area-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 50px;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-area-map {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.interactive-map {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.interactive-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    pointer-events: none;
}

.service-radius-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.radius-badge {
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    display: flex;
    align-items: center;
    gap: 5px;
}

.radius-badge::before {
    content: "📍";
    font-size: 14px;
}

.service-areas-list h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #1f2937;
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    border-left: 3px solid #059669;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.area-icon {
    font-size: 16px;
}

.area-item strong {
    color: #1f2937;
    font-weight: 600;
}

.service-note {
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.service-note p {
    margin: 0;
    color: #374151;
    line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .service-area-section h2 {
        font-size: 2rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1f2937;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.phone-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    text-decoration: none;
    margin-bottom: 10px;
}

.phone-number:hover {
    color: #b91c1c;
}

.contact-info p {
    color: #6b7280;
}

/* Map Placeholder */
.map-placeholder {
    background: white;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    border-color: #059669;
    background: #f0fdf4;
}

.map-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.map-placeholder-icon {
    font-size: 3rem;
    color: #059669;
    margin-bottom: 10px;
}

.map-placeholder-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.map-placeholder-address {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Mobile Responsive for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }
    
    .map-placeholder {
        padding: 40px 30px;
    }
    
    .map-placeholder-icon {
        font-size: 2.5rem;
    }
    
    .map-placeholder-title {
        font-size: 1.25rem;
    }
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    padding: 12px 16px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.sticky-cta.show {
    display: block;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0 20px;
}

.footer-minimal {
    padding: 15px 0 10px;
}

.footer-simple {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo h3 {
    font-size: 20px;
    color: #059669;
    margin: 0;
}

.footer-phone .phone-link {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.footer-phone .phone-link:hover {
    color: #059669;
}

.footer-privacy .privacy-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
}

.footer-privacy .privacy-link:hover {
    color: white;
}

.footer-copyright {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-copyright p {
    color: #9ca3af;
    font-size: 14px;
    margin-top: 10px;
}

.footer-logo {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
        padding: 80px 20px 40px;
        min-height: auto;
        margin-top: 0;
    }
    
    .hero-text {
        order: -1;
        margin-bottom: 30px;
        max-width: 100%;
        text-align: center;
    }
    
    .hero-form {
        order: 1;
        transform: none;
        padding: 30px 20px;
        margin-left: 0;
        max-width: 450px;
        width: 100%;
    }
    
    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .hero-form h3 {
        font-size: 22px;
    }
    
    .trust-badges {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    /* Stack image above content on mobile */
    .services-section .services-layout {
        grid-template-columns: 1fr;
    }
    .services-section .services-image img {
        height: auto;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 400px;
    }
    
    .cert-item {
        padding: 12px;
    }
    
    .cert-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .testimonials-carousel {
        margin: 0 20px 30px;
    }
    
    .testimonial-slide {
        padding: 30px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-simple {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .mini-form-wrapper {
        margin: 0 20px;
    }
    
    /* Sticky CTA removed; no bottom padding needed */
    body {
        padding-bottom: 0;
    }
    
    /* Icon Sequence Mobile */
    .icon-sequence {
        flex-direction: column;
        gap: 20px;
    }

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

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    .icon-label {
        font-size: 0.8rem;
    }

    .urgency-section p {
        font-size: 1.1rem;
        margin-top: 30px;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 400px;
        gap: 60px;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-ctas {
        flex-direction: row;
        gap: 20px;
    }
    

    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-text h1 {
        font-size: 4rem;
    }
    
    .container {
        padding: 0 40px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
input:focus,
select:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

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

.hero-content,
.testimonials-grid,
.services-grid {
    animation: fadeInUp 0.8s ease-out;
}

/* Print Styles */
@media print {
    .hero-section {
        background: white;
        color: black;
    }
    
    .btn {
        border: 2px solid black;
        background: white;
        color: black;
    }
}

/* Lightbox Styles (Roofing Page) */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
}