* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0052CC;
    --accent-orange: #FF6600;
    --dark-gray: #1f2937;
    --light-gray: #f9fafb;
    --text-gray: #4b5563;
    --border-gray: #e5e7eb;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-gray);
    background-color: var(--white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-gray);
    font-weight: 700;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark-gray);
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

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

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background-color: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 82, 204, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: white;
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

/* Header/Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 1;
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--accent-orange);
}

.header-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.phone-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #FF5500;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003d99 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background-color: var(--accent-orange);
}

.hero-buttons .btn-primary:hover {
    background-color: #FF5500;
}

.hero-buttons .btn-secondary {
    border-color: white;
    color: white;
    background-color: transparent;
}

.hero-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary-blue);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    color: white;
}

/* Quick CTA Section */
.quick-cta {
    background-color: var(--light-gray);
    padding: 3rem 0;
}

.cta-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-orange);
}

.cta-box h3 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.service-item {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-orange);
}

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

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-header i {
    font-size: 2rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.service-item h3 {
    color: var(--primary-blue);
    margin: 0;
}

.service-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: #FF5500;
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.feature {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    padding-left: 4rem;
}

.feature-number {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003d99 100%);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 0.5rem 0 0.5rem 0;
}

.feature h3 {
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

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

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003d99 100%);
    padding: 4rem 0;
    color: white;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: white;
    margin: 0;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.testimonial {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--accent-orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stars {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
}

.testimonial p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.author {
    border-top: 1px solid var(--border-gray);
    padding-top: 1rem;
}

.author strong {
    color: var(--primary-blue);
    display: block;
    font-size: 0.95rem;
}

.author span {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-style: normal;
}

/* Locations Section */
.locations {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.area-column h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.area-column li {
    padding: 0.5rem 0;
    color: var(--text-gray);
}

.area-column li:before {
    content: "✓ ";
    color: var(--accent-orange);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.info-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-gray);
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.info-block p {
    color: var(--text-gray);
    margin: 0;
}

.info-block a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-gray);
    border-radius: 0.375rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

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

/* Footer */
.footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-col h4 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-banner {
        padding: 3rem 0;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        justify-content: flex-start;
    }

    .header-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .header-cta .btn {
        width: 100%;
    }

    .trust-badges {
        gap: 1rem;
    }

    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .testimonials-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .area-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .feature {
        padding-left: 3rem;
    }

    .feature-number {
        width: 3rem;
        height: 3rem;
        font-size: 1.3rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

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

/* Requested updates: light organization lines and stock imagery while preserving the original layout */
.hero-banner {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.9) 0%, rgba(0, 61, 153, 0.82) 100%), url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
    border-bottom: 4px solid var(--accent-orange);
}

.header,
.quick-cta,
.services,
.why-us,
.locations,
.contact {
    border-bottom: 1px solid var(--border-gray);
}

.cta-box,
.service-item,
.reason-card,
.location-card,
.contact-form,
.contact-info,
.info-item,
.badge {
    border: 1px solid #cbd5e1;
}

.service-item,
.reason-card,
.location-card,
.info-item {
    box-shadow: 0 6px 18px rgba(31, 41, 55, 0.07);
}

.service-header {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.image-highlights {
    padding: 4rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.image-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    box-shadow: 0 8px 22px rgba(31, 41, 55, 0.08);
}

.image-card img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #cbd5e1;
}

.image-card figcaption {
    padding: 1rem 1.25rem;
    color: var(--dark-gray);
    font-weight: 700;
}

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
}


/* Logo and lighter-copy design pass */
.logo img {
    display: block;
    width: 245px;
    height: auto;
}

.logo h1 {
    display: none;
}

.hero-logo {
    display: block;
    width: min(320px, 78vw);
    height: auto;
    margin: 0 auto 1.25rem;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.hero-content h1 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
}

.services-grid {
    align-items: stretch;
}

.service-item p,
.feature p,
.testimonial p,
.footer-col p {
    line-height: 1.55;
}

.service-item p {
    font-size: 0.98rem;
}

.service-link {
    display: inline-flex;
    margin-top: 0.5rem;
}

.image-highlights {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.image-card figcaption {
    font-size: 1rem;
}

.visual-strip {
    background: var(--light-gray);
}

@media (max-width: 900px) {
    .logo img {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .logo img {
        width: 210px;
    }

    .hero-logo {
        width: min(280px, 82vw);
    }
}


/* Real logo placement */
.logo img {
    width: 190px;
    max-height: 82px;
    object-fit: contain;
    background: #ffffff;
}

.hero-logo {
    width: min(260px, 70vw);
    background: #ffffff;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-banner {
    min-height: 620px;
}

.hero-content h1 {
    font-size: clamp(2.35rem, 5vw, 4.35rem);
}

.service-item,
.feature,
.testimonial,
.area-column,
.contact-info,
.contact-form {
    position: relative;
}

.service-item p,
.feature p,
.testimonial p {
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .logo img {
        width: 160px;
        max-height: 72px;
    }

    .hero-banner {
        min-height: 560px;
    }
}


/* Navigation links: uppercase and one line */
.nav-menu {
    white-space: nowrap;
    flex-wrap: nowrap;
}

.nav-menu a {
    text-transform: uppercase;
    letter-spacing: 0;
    white-space: nowrap;
}

@media (max-width: 980px) {
    .nav-menu {
        gap: 0.9rem;
        font-size: 0.9rem;
    }
}


/* Header spacing fix */
.navbar .container {
    gap: 1.5rem;
}

.nav-menu {
    gap: 1.6rem;
    margin-left: auto;
    margin-right: 1.5rem;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.phone-link {
    white-space: nowrap;
}

@media (max-width: 1120px) {
    .navbar .container {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 1rem;
    }

    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-menu {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 720px) {
    .nav-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
        row-gap: 0.65rem;
    }

    .header-cta {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}


/* Orange trust badge */
.trust-badges .badge:last-child {
    background: var(--accent-orange);
    color: #ffffff;
    border-color: #ffffff;
    font-size: 1.05rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(255, 102, 0, 0.28);
}


/* Hero trust line under company name */
.hero-trust-line {
    display: inline-block;
    margin: 0.25rem auto 1.75rem;
    padding: 0.75rem 1.4rem;
    color: #ffffff;
    background: var(--accent-orange);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 0.5rem;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(255, 102, 0, 0.28);
}

.trust-badges .badge:last-child {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-trust-line {
        font-size: 1rem;
        padding: 0.65rem 1rem;
    }
}


/* Clean up hero trust line and reset scheduling badge */
.hero-trust-line {
    display: block;
    margin: 0.35rem auto 1.75rem;
    padding: 0;
    color: #ffffff;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.25;
    text-transform: none;
    box-shadow: none;
}

.trust-badges .badge:last-child {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .hero-trust-line {
        font-size: 1.1rem;
        padding: 0;
    }
}


/* Hero estimate button polish */
.hero-buttons .btn-primary {
    border: 1px solid rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0;
}


/* Match hero button sizing and borders */
.hero-buttons .btn {
    min-width: 230px;
    border-width: 2px;
    border-style: solid;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-buttons .btn-primary {
    border-color: rgba(255, 255, 255, 0.95);
}

.hero-buttons .btn-secondary {
    border-color: var(--primary-blue);
}


/* Final hero cleanup: matched buttons and identical trust badges */
.hero-buttons .btn,
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    min-width: 230px;
    border-width: 2px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-buttons .btn-secondary {
    color: #ffffff;
    background-color: transparent;
}

.hero-buttons .btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-blue);
}

.trust-badges .badge,
.trust-badges .badge:last-child {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    box-shadow: none;
}


/* Cleaner quick CTA section */
.quick-cta {
    background: #ffffff;
}

.cta-box.cta-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
    border-left: 5px solid var(--accent-orange);
}

.cta-box.cta-split h3 {
    margin-bottom: 0.4rem;
}

.cta-box.cta-split p {
    margin-bottom: 0;
    max-width: 620px;
}

.cta-label {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.cta-box.cta-split .btn {
    flex-shrink: 0;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .cta-box.cta-split {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* Photo highlight polish */
.image-card {
    position: relative;
}

.image-card img {
    height: 240px;
}

.image-card figcaption {
    display: flex;
    align-items: center;
    min-height: 64px;
    background: #ffffff;
    color: var(--dark-gray);
    font-size: 1.08rem;
    font-weight: 800;
}


/* Intro above photo cards */
.worship-intro {
    max-width: 820px;
    margin: 0 auto 2.25rem;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.worship-intro h2 {
    margin-bottom: 0.75rem;
}

.worship-intro p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 1.08rem;
}


/* Bright orange service highlights banner */
.trust-strip {
    background: var(--accent-orange);
    padding: 1.25rem 0;
    border-top: 1px solid #ff8a3d;
    border-bottom: 1px solid #d84f00;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 0.5rem;
}

.trust-strip-grid div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0.85rem 0.75rem;
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.55);
}

.trust-strip-grid div:last-child {
    border-right: 0;
}

@media (max-width: 980px) {
    .trust-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-strip-grid div:nth-child(3n) {
        border-right: 0;
    }

    .trust-strip-grid div:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    }
}

@media (max-width: 560px) {
    .trust-strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-strip-grid div,
    .trust-strip-grid div:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.55);
    }

    .trust-strip-grid div:nth-child(even) {
        border-right: 0;
    }

    .trust-strip-grid div:nth-child(-n + 4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    }
}


/* Service card photos */
.service-item {
    overflow: hidden;
    padding-top: 0;
}

.service-photo {
    height: 165px;
    margin: 0 -1.5rem 1.25rem;
    overflow: hidden;
    border-bottom: 1px solid #cbd5e1;
    background: #eef2f7;
}

.service-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-header {
    align-items: center;
}

@media (max-width: 768px) {
    .service-photo {
        height: 190px;
    }
}


/* Expanded commercial services */
.services-grid-expanded {
    grid-template-columns: repeat(3, 1fr);
}

.services-grid-expanded .service-item:last-child {
    grid-column: 2 / 3;
}

.services-grid-expanded .service-link {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

@media (max-width: 980px) {
    .services-grid-expanded {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid-expanded .service-item:last-child {
        grid-column: auto;
    }
}

@media (max-width: 680px) {
    .services-grid-expanded {
        grid-template-columns: 1fr;
    }
}


/* Remove duplicate photo-card feel from facility intro */
.facility-intro-section {
    padding: 3.5rem 0;
}

.facility-intro-section .worship-intro {
    margin-bottom: 0;
}


/* Orange custom plan service card */
.custom-plan-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    color: #ffffff;
    background: var(--accent-orange);
    border-color: #d84f00;
    text-align: left;
}

.custom-plan-card h3,
.custom-plan-card p,
.custom-plan-card .service-link,
.custom-plan-card i {
    color: #ffffff;
}

.custom-plan-card h3 {
    font-size: 1.65rem;
    margin-bottom: 0.85rem;
}

.custom-plan-card p {
    font-size: 1.05rem;
    line-height: 1.6;
}

.custom-plan-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 1.1rem;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 0.5rem;
    font-size: 1.35rem;
}

.custom-plan-link {
    margin-top: 0.6rem;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.75);
}

.services-grid-expanded .service-item:last-child {
    grid-column: auto;
}


/* How it works section */
.how-it-works {
    padding: 5rem 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-gray);
}

.how-it-works .section-kicker {
    display: block;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.step-card {
    position: relative;
    padding: 2rem 1.4rem 1.6rem;
    background: var(--white);
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    box-shadow: 0 8px 22px rgba(31, 41, 55, 0.07);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
    color: #ffffff;
    background: var(--accent-orange);
    border-radius: 999px;
    font-weight: 900;
}

.step-card h3 {
    margin-bottom: 0.65rem;
}

.step-card p {
    margin-bottom: 0;
    color: var(--text-gray);
    line-height: 1.55;
}

@media (max-width: 980px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}


/* Elegant trust banner refresh */
.trust-strip {
    background: linear-gradient(135deg, #ff7a1a 0%, #ff6600 42%, #e95d00 100%);
    padding: 1.6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(31, 41, 55, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.trust-strip-grid {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 0.85rem;
    box-shadow: 0 14px 34px rgba(128, 45, 0, 0.18);
    backdrop-filter: blur(8px);
}

.trust-strip-grid div {
    gap: 0.55rem;
    min-height: 70px;
    padding: 1rem 0.85rem;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border-right-color: rgba(255, 255, 255, 0.28);
}

.trust-strip-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: var(--accent-orange);
    background: #ffffff;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

@media (max-width: 560px) {
    .trust-strip-grid div {
        justify-content: flex-start;
        text-align: left;
    }
}


/* How it works closing CTA */
.steps-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem 1.6rem;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #cbd5e1;
    border-left: 5px solid var(--primary-blue);
    border-radius: 0.75rem;
    box-shadow: 0 10px 26px rgba(31, 41, 55, 0.07);
}

.steps-cta span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--accent-orange);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.steps-cta h3 {
    margin-bottom: 0;
    font-size: 1.35rem;
}

.steps-cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.steps-phone {
    color: var(--primary-blue);
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .steps-cta,
    .steps-cta-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* Elegant Why Choose Dutch section */
.why-elegant {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-gray);
}

.why-elegant .section-kicker {
    display: block;
    text-align: center;
}

.why-elegant h2 {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
}

.why-elegant .section-intro {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.elegant-features .feature {
    padding: 2rem 1.5rem;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 0.85rem;
    box-shadow: 0 12px 28px rgba(31, 41, 55, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.elegant-features .feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(31, 41, 55, 0.11);
}

.elegant-features .feature-number {
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    color: #ffffff;
    background: var(--primary-blue);
    border-radius: 0.75rem;
    font-size: 1.2rem;
    box-shadow: 0 10px 22px rgba(0, 82, 204, 0.18);
}

.elegant-features .feature:nth-child(2n) .feature-number {
    background: var(--accent-orange);
    box-shadow: 0 10px 22px rgba(255, 102, 0, 0.2);
}

.elegant-features .feature h3 {
    margin-bottom: 0.6rem;
}

.elegant-features .feature p {
    margin-bottom: 0;
    color: var(--text-gray);
    line-height: 1.55;
}


/* Fix Why Choose card icon/text overlap */
.elegant-features .feature {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 240px;
    padding-top: 2rem;
}

.elegant-features .feature-number {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    margin: 0 0 1.1rem 0;
}

.elegant-features .feature h3,
.elegant-features .feature p {
    position: relative;
    z-index: 1;
}

.elegant-features .feature h3 {
    width: 100%;
    padding: 0;
}


/* Polished service areas section */
.service-areas-polished {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-bottom: 1px solid var(--border-gray);
}

.service-areas-polished .section-kicker {
    display: block;
    text-align: center;
}

.service-areas-polished h2 {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
}

.polished-area-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 1.25rem;
    align-items: stretch;
}

.polished-area-list .area-column {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 0.85rem;
    box-shadow: 0 10px 24px rgba(31, 41, 55, 0.07);
}

.polished-area-list .area-column h4 {
    color: var(--primary-blue);
    font-size: 1.05rem;
    text-transform: uppercase;
}

.polished-area-list .area-column li {
    padding: 0.45rem 0;
    border-bottom: 1px solid #eef2f7;
}

.polished-area-list .area-column li:last-child {
    border-bottom: 0;
}

.area-callout {
    border-left: 5px solid var(--accent-orange) !important;
}

.area-callout p {
    color: var(--text-gray);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .polished-area-list {
        grid-template-columns: 1fr;
    }
}


/* Service area spacing refinement */
.polished-area-list .area-column {
    padding: 2rem 2.1rem;
}

.polished-area-list .area-column h4 {
    margin-bottom: 1rem;
}

.polished-area-list .area-column ul {
    margin: 0;
    padding: 0;
}

.polished-area-list .area-column li {
    padding: 0.55rem 0;
}

.area-callout p {
    margin-bottom: 1.15rem;
}

@media (max-width: 560px) {
    .polished-area-list .area-column {
        padding: 1.5rem;
    }
}


/* Polished estimate/contact section */
.contact {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.contact .section-kicker {
    display: block;
    text-align: center;
}

.contact h2 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
}

.contact-grid {
    align-items: stretch;
}

.contact-info,
.contact-form {
    border-radius: 0.9rem;
    box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
}

.contact-info {
    border-left: 5px solid var(--accent-orange);
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 1.25rem;
}

.info-block {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.info-block:last-child {
    border-bottom: 0;
}

.info-block h4 {
    margin-bottom: 0.35rem;
}

.contact-form .btn {
    width: 100%;
    text-transform: uppercase;
}


/* Contact section breathing room */
.contact-info,
.contact-form {
    padding: 2.4rem;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 1.5rem;
}

.info-block {
    padding: 1.15rem 0;
}

.form-group {
    margin-bottom: 1.15rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem 1.05rem;
}

@media (max-width: 560px) {
    .contact-info,
    .contact-form {
        padding: 1.6rem;
    }
}


.contact-subtitle {
    margin: -0.6rem 0 1rem;
    color: var(--text-gray);
    line-height: 1.55;
}


/* Optional photo upload field */
.upload-group {
    padding: 1rem;
    background: #f8fbff;
    border: 1px dashed #cbd5e1;
    border-radius: 0.5rem;
}

.upload-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
    color: var(--dark-gray);
    font-weight: 800;
}

.upload-group label span {
    color: var(--primary-blue);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.upload-group input[type="file"] {
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
}


/* Polished footer */
.footer-polished {
    background: #111827;
    color: rgba(255, 255, 255, 0.78);
    border-top: 4px solid var(--accent-orange);
}

.footer-topline {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-topline img {
    width: 140px;
    height: auto;
    background: #ffffff;
    border-radius: 0.5rem;
}

.footer-topline h3 {
    margin-bottom: 0.35rem;
    color: #ffffff;
    font-size: 1.45rem;
}

.footer-topline p {
    margin-bottom: 0;
    max-width: 680px;
}

.footer-polished .footer-col h4 {
    color: #ffffff;
}

.footer-polished .footer-col a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-polished .footer-col a:hover {
    color: #ffffff;
}

.footer-polished .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.14);
}

@media (max-width: 820px) {
    .footer-topline {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-topline img {
        width: 125px;
    }
}


/* Footer long email wrapping */
.footer-polished .footer-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
}

.footer-polished .footer-col,
.footer-polished .footer-col li,
.footer-polished .footer-col a,
.footer-polished .footer-col p {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
}

@media (max-width: 900px) {
    .footer-polished .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-polished .footer-grid {
        grid-template-columns: 1fr;
    }
}


.and-more {
    color: var(--primary-blue);
    font-weight: 900;
}


.and-more {
    font-style: italic;
}


.photo-note {
    margin: 0 0 1.15rem;
    padding: 1rem;
    background: #f8fbff;
    border: 1px solid #cbd5e1;
    border-left: 4px solid var(--primary-blue);
    border-radius: 0.5rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.photo-note strong {
    color: var(--dark-gray);
}


.form-status {
    min-height: 1.4rem;
    margin: 0.9rem 0 0;
    font-weight: 800;
}

.form-status.success {
    color: #047857;
}

.form-status.error {
    color: #b91c1c;
}

.contact-form button:disabled {
    opacity: 0.72;
    cursor: wait;
}


/* Full-screen form success confirmation */
.success-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    background: rgba(17, 24, 39, 0.72);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.32s ease, transform 0.42s ease;
}

.success-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.success-panel {
    width: min(520px, 100%);
    padding: 2.4rem;
    text-align: center;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 1rem;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    color: #ffffff;
    background: var(--accent-orange);
    border-radius: 999px;
    font-size: 2rem;
    font-weight: 900;
}

.success-panel h2 {
    margin-bottom: 0.65rem;
    font-size: 2.2rem;
}

.success-panel p {
    margin: 0 auto 1.5rem;
    max-width: 380px;
    color: var(--text-gray);
}


/* Final mobile polish */
html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

@media (max-width: 920px) {
    .navbar .container {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 1rem;
    }

    .logo {
        width: auto;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        gap: 1rem;
        overflow-x: auto;
        padding: 0.25rem 0 0.5rem;
        scrollbar-width: none;
    }

    .nav-menu::-webkit-scrollbar {
        display: none;
    }

    .header-cta {
        justify-content: center;
    }
}

@media (max-width: 760px) {
    h1 {
        font-size: 2rem;
    }

    h2,
    .why-elegant h2,
    .service-areas-polished h2,
    .contact h2 {
        font-size: 2rem;
        line-height: 1.16;
    }

    .hero-banner {
        min-height: auto;
        padding: 4rem 0 3.25rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-logo {
        width: min(230px, 76vw);
    }

    .hero-content h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hero-trust-line {
        font-size: 1rem;
        max-width: 92vw;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.85rem;
        width: min(360px, 100%);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        min-width: 0;
    }

    .trust-badges {
        gap: 0.75rem;
    }

    .trust-badges .badge,
    .trust-badges .badge:last-child {
        width: min(320px, 100%);
        text-align: center;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .facility-intro-section,
    .quick-cta,
    .services,
    .how-it-works,
    .why-us,
    .stats,
    .locations,
    .contact {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .trust-strip-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip-grid div,
    .trust-strip-grid div:nth-child(3n),
    .trust-strip-grid div:nth-child(even) {
        justify-content: flex-start;
        min-height: 54px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.28);
        text-align: left;
    }

    .trust-strip-grid div:last-child {
        border-bottom: 0;
    }

    .services-grid-expanded,
    .features-grid,
    .elegant-features,
    .steps-grid,
    .polished-area-list,
    .contact-grid,
    .footer-polished .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .service-photo {
        height: 210px;
    }

    .custom-plan-card {
        min-height: 280px;
    }

    .steps-cta,
    .cta-box.cta-split,
    .footer-topline {
        align-items: stretch;
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: left;
    }

    .steps-cta-actions {
        width: 100%;
    }

    .steps-cta-actions .btn,
    .cta-box.cta-split .btn,
    .footer-topline .btn {
        width: 100%;
        text-align: center;
    }

    .contact-info,
    .contact-form,
    .polished-area-list .area-column {
        padding: 1.5rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }

    .footer-topline img {
        width: 120px;
    }

    .success-panel {
        padding: 2rem 1.35rem;
    }
}

@media (max-width: 420px) {
    .nav-menu {
        justify-content: flex-start;
    }

    .header-cta {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }

    .header-cta .btn,
    .phone-link {
        width: 100%;
        text-align: center;
    }

    .service-photo {
        height: 185px;
    }
}
