/* Sections */

.call-to-action {
    align-items: center;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), var(--index-hero-background-image-url);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
}

.certified .container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.certified .content {
    background: var(--color-white);
    border: 1px solid var(--color-border-light-gray);
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(20, 40, 61, 0.06);
    padding: 22px 28px;
}

.certified .content img {
    max-height: 148px;
}

.experience .content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px 24px;
    margin-top: 48px;
}

.experience .experience-intro {
    justify-items: center;
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.experience .experience-intro p {
    color: #5a6975;
    margin-top: 0;
    max-width: 84ch;
    text-align: center;
}

.experience .experience-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.experience .experience-highlights span {
    background: #fff7e9;
    border: 1px solid #f0ddbb;
    border-radius: 999px;
    color: var(--color-text-orange-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 10px 14px;
    text-transform: uppercase;
}

.experience .service-link {
    color: var(--color-text-orange-dark);
    display: inline-flex;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-top: 16px;
    text-transform: uppercase;
}

.hero {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1)), var(--index-hero-background-image-url);
    background-position: center;
    background-size: cover;
    color: var(--color-text-white);
}

.hero .hero-kicker {
    align-self: flex-start;
    background: rgba(255, 173, 16, 0.14);
    border: 1px solid rgba(255, 173, 16, 0.32);
    border-radius: 999px;
    color: #ffe0a4;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 10px 16px;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--color-text-white);
}

.hero li::marker {
    color: var(--color-text-orange);
}

.hero sub {
    font-size: 32px;
    font-style: italic;
    font-weight: 200;
    line-height: 110%;
    text-align: left;
}

.hero ul {
    list-style-type: "✓ ";
}

.hero .container {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding: 32px;
}

.hero .footer {
    display: flex;
    gap: 32px;
}

.hero .hero-primary-actions {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero .hero-estimate-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-text-orange);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding-bottom: 4px;
    text-align: center;
    text-transform: uppercase;
}

.hero .hero-estimate-link:hover {
    color: var(--color-text-orange-light);
}

.hero-trust-strip {
    background: linear-gradient(180deg, #fff8ec, #ffffff);
    border-bottom: 1px solid #eedfca;
}

.hero-trust-strip .container {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 26px 32px;
}

.hero-trust-strip .trust-stat {
    background: var(--color-white);
    border: 1px solid #f1e2cb;
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(20, 40, 61, 0.05);
    display: grid;
    gap: 6px;
    padding: 20px 22px;
}

.hero-trust-strip .trust-stat strong {
    color: var(--color-text-orange-dark);
    font-size: 22px;
    font-weight: 800;
}

.hero-trust-strip .trust-stat span {
    color: var(--color-text-gray);
    line-height: 1.5;
}

.call-to-action .hero-estimate-link.bottom {
    margin-top: -12px;
}

.call-to-action .bottom-cta-primary {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero .google-reviews-component {
    align-self: flex-start;
    display: flex;
}

.hero .google-reviews-component a {
    justify-content: center;
    min-height: 86px;
    padding: 18px 20px;
}

.hero .quick-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero .quick-contact-link {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--color-text-white);
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 8px;
    letter-spacing: 0.02em;
    padding: 12px 18px;
    text-transform: uppercase;
    transition:
        background-color 0.2s,
        border-color 0.2s,
        transform 0.2s;
}

.hero .quick-contact-link:hover {
    background: rgba(255, 173, 16, 0.18);
    border-color: rgba(255, 173, 16, 0.55);
    color: var(--color-text-white);
    transform: translateY(-1px);
}

.hero .quick-contact-link.whatsapp {
    background: rgba(37, 211, 102, 0.16);
    border-color: rgba(37, 211, 102, 0.48);
}

.hero .standout {
    color: var(--color-text-orange);
}

.insurance .container {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.insurance .insurance-intro {
    margin-top: -24px;
}

.insurance .insurance-intro p {
    color: #566776;
    margin: 0 auto;
    max-width: 72ch;
    text-align: center;
}

.insurance .content {
    align-items: center;
    justify-content: center;
    justify-items: center;
    display: grid;
    grid-template-columns: minmax(auto, 256px) minmax(auto, 256px) minmax(auto, 256px) minmax(auto, 256px);
    gap: 24px 48px;
}

.insurance img {
    max-height: 128px;
}

.response-process .container {
    display: grid;
    gap: 56px;
}

.response-process .content {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.response-process .process-step {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    color: var(--color-text-black);
    display: grid;
    gap: 12px;
    padding: 28px 24px;
}

.response-process .step-number {
    align-items: center;
    background: linear-gradient(180deg, #ffb52d, #ea8d00);
    border-radius: 999px;
    color: var(--color-text-white);
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.response-process h3 {
    color: #13293d;
    font-size: 20px;
    margin: 0;
    text-align: left;
}

.response-process p {
    color: #4c6070;
    line-height: 1.65;
    margin-top: 0;
}

.service-areas .container {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

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

.service-areas .city {
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-border-light-gray);
    border-radius: var(--border-radius);
    cursor: default;
    display: flex;
    flex: 0 0 calc((100% - 5 * 24px) / 6);
    font-size: 18px;
    font-weight: 500;
    gap: 8px;
    justify-content: center;
    min-width: 200px;
    padding: 16px 24px;
    text-align: center;
    transition:
        background-color 0.2s,
        color 0.2s;
}

.service-areas .city:hover {
    background-color: var(--color-orange);
    border-color: var(--color-orange-dark);
    color: var(--color-text-white);
}

.service-areas .city-icon {
    display: inline-block;
    fill: var(--color-orange);
    flex-shrink: 0;
    opacity: 0.3;
    transition:
        opacity 0.2s,
        fill 0.2s;
    width: 16px;
    height: 16px;
}

.service-areas .city:hover .city-icon {
    fill: var(--color-text-white);
    opacity: 1;
}

.service-areas .service-areas-details {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
}

.service-areas .details-left h3 {
    color: var(--color-text-black);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-areas .details-left p {
    color: var(--color-text-black);
    line-height: 160%;
}

.service-areas .checklist {
    list-style-type: "✓ ";
    margin-top: 24px;
}

.service-areas .checklist li {
    padding: 4px 0;
}

.service-areas .checklist li::marker {
    color: var(--color-text-orange);
    font-weight: 700;
}

.service-areas .estimate-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light-gray);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 32px;
}

.service-areas .estimate-card h3 {
    color: var(--color-text-black);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-areas .estimate-card p {
    color: var(--color-text-black);
    line-height: 160%;
    margin-top: 0;
}

.service-areas .estimate-button,
.contact-hub .estimate-button,
.site-chat-form .estimate-button {
    background: var(--color-orange);
    border: 1px solid var(--color-orange-dark);
    border-radius: var(--border-radius);
    color: var(--color-text-white);
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 16px;
    text-align: center;
    transition: background-color 0.2s;
    width: 100%;
}

.service-areas .estimate-button:hover,
.contact-hub .estimate-button:hover,
.site-chat-form .estimate-button:hover {
    background: var(--color-orange-dark);
    color: var(--color-text-white);
}

.service-areas .estimate-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
}

.service-areas .estimate-footer span {
    color: var(--color-text-gray);
    font-size: 14px;
}

.service-areas .estimate-phone {
    color: var(--color-text-orange);
    font-size: 20px;
    font-weight: 700;
}

.reviews .container {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.reviews .content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px 24px;
}

.call-to-action-box-component {
    border-radius: 24px;
    overflow: hidden;
}

.reviews a {
    color: var(--color-text-orange);
}

.site-chat-widget {
    bottom: 24px;
    position: fixed;
    right: 24px;
    width: min(236px, calc(100% - 24px));
    z-index: 30;
}

.site-chat-toggle {
    align-items: center;
    background: linear-gradient(135deg, #17354e, #245f89 70%, #317760);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    box-shadow: 0 14px 28px #0000002b;
    color: var(--color-text-white);
    cursor: pointer;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    padding: 10px 14px;
    text-align: left;
    width: 100%;
}

.site-chat-toggle:hover {
    background: linear-gradient(135deg, #1b3d59, #296b99 70%, #37856a);
}

.site-chat-toggle-icon {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 34px;
    font-size: 16px;
    height: 34px;
    justify-content: center;
    line-height: 1;
    width: 34px;
}

.site-chat-toggle-copy {
    display: grid;
    gap: 1px;
}

.site-chat-toggle-copy span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-chat-toggle-copy strong {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.site-chat-panel {
    background: var(--color-white);
    border: 1px solid rgba(19, 41, 61, 0.14);
    border-radius: 24px;
    box-shadow: 0 28px 54px #0000002b;
    display: none;
    bottom: calc(100% + 12px);
    overflow: hidden;
    position: absolute;
    right: 0;
    width: min(404px, calc(100vw - 24px));
}

.site-chat-panel.open {
    display: grid;
}

.site-chat-head {
    align-items: center;
    background: linear-gradient(135deg, #13293d, #1d4f73);
    color: var(--color-text-white);
    display: flex;
    justify-content: space-between;
    padding: 18px 20px 16px;
}

.site-chat-head p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 4px;
    max-width: 26ch;
}

.site-chat-close {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: var(--color-text-white);
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    height: 38px;
    justify-content: center;
    line-height: 1;
    width: 38px;
}

.site-chat-body {
    display: grid;
    gap: 10px;
    padding: 14px 16px 16px;
}

.site-chat-assistant-state {
    display: grid;
    gap: 6px;
}

.site-chat-assistant-badge {
    align-self: flex-start;
    background: #eef7ff;
    border: 1px solid #cfe4f6;
    border-radius: 999px;
    color: #1b5f8a;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 8px 10px;
    text-transform: uppercase;
}

.site-chat-assistant-meta {
    color: #617180;
    font-size: 12px;
    line-height: 1.5;
}

.site-chat-messages {
    display: grid;
    gap: 10px;
    max-height: 276px;
    overflow-y: auto;
    padding-right: 4px;
}

.site-chat-message {
    border-radius: 14px;
    max-width: 92%;
    padding: 10px 12px;
    line-height: 1.5;
}

.site-chat-message.assistant {
    background: linear-gradient(180deg, #f6f9fc, #eef4f8);
    border: 1px solid #d6e2eb;
    color: #173248;
}

.site-chat-message.user {
    background: linear-gradient(180deg, #fff5e5, #fee7bd);
    border: 1px solid #f0c986;
    justify-self: end;
}

.site-chat-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-chat-chip {
    background: #f8fafc;
    border: 1px solid #d8e0e8;
    border-radius: 999px;
    color: #173248;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    padding: 10px 12px;
}

.site-chat-chip:hover {
    background: #fff7e9;
    border-color: #f0c986;
}

.site-chat-form {
    display: grid;
    gap: 10px;
}

.site-chat-form label {
    display: block;
}

.site-chat-form textarea {
    background: #f8fafc;
    border: 1px solid #d8e0e8;
    border-radius: 16px;
    color: var(--color-text-black);
    min-height: 58px;
    padding: 10px 12px;
    resize: vertical;
    width: 100%;
}

.site-chat-actions {
    align-items: center;
    display: flex;
    gap: 0;
    justify-content: flex-end;
}

.site-chat-channel-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 4px;
}

.site-chat-channel {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #d8e0e8;
    border-radius: 999px;
    color: #173248;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.site-chat-channel.whatsapp {
    background: linear-gradient(180deg, #effcf3, #f7fff9);
    border-color: rgba(37, 211, 102, 0.35);
}

.site-chat-channel.email {
    background: linear-gradient(180deg, #fff6e8, #fffaf2);
    border-color: rgba(255, 166, 0, 0.28);
}

.site-chat-channel.messenger {
    background: linear-gradient(180deg, #eef3ff, #f7f9ff);
    border-color: rgba(24, 119, 242, 0.24);
}

.site-chat-channel:hover {
    border-color: var(--color-orange);
    color: #173248;
}

.site-chat-channel svg {
    display: block;
    fill: currentColor;
    height: 18px;
    width: 18px;
}

.site-chat-channel.whatsapp svg {
    fill: #25d366;
}

.site-chat-channel.email svg {
    fill: var(--color-text-orange-dark);
}

.site-chat-channel.messenger svg {
    fill: #1877f2;
}

.request-help-open {
    overflow: hidden;
}

.request-help-modal[hidden] {
    display: none;
}

.request-help-modal {
    inset: 0;
    position: fixed;
    z-index: 40;
}

.request-help-backdrop {
    background: rgba(7, 18, 30, 0.52);
    inset: 0;
    position: absolute;
}

.request-help-dialog {
    background: var(--color-white);
    border: 1px solid rgba(19, 41, 61, 0.14);
    border-radius: 24px;
    box-shadow: 0 28px 54px #0000002b;
    left: 50%;
    max-height: calc(100vh - 48px);
    max-width: 760px;
    overflow: auto;
    padding: 28px;
    position: absolute;
    top: 24px;
    transform: translateX(-50%);
    width: calc(100vw - 32px);
}

.request-help-close {
    align-items: center;
    background: rgba(19, 41, 61, 0.06);
    border: 1px solid rgba(19, 41, 61, 0.08);
    border-radius: 999px;
    color: var(--color-text-black);
    cursor: pointer;
    display: inline-flex;
    font-size: 22px;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
}

.request-help-header {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 44ch;
}

.request-help-header .eyebrow {
    color: var(--color-text-orange-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.request-help-header h2 {
    text-align: left;
}

.request-help-header p {
    margin-top: 0;
}

.request-help-form {
    display: grid;
    gap: 14px;
}

.request-help-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
}

.request-help-form label {
    color: var(--color-text-black);
    display: grid;
    font-size: 14px;
    font-weight: 600;
    gap: 8px;
}

.request-help-form input,
.request-help-form select,
.request-help-form textarea {
    background: var(--color-background-light-gray);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    color: var(--color-text-black);
    padding: 14px 16px;
}

.request-help-form textarea {
    min-height: 140px;
    resize: vertical;
}

.request-help-actions {
    display: grid;
    gap: 10px;
}

.request-help-status {
    color: var(--color-text-gray);
    font-size: 14px;
}

footer .links .whatsapp-link {
    color: #25d366;
    font-weight: 700;
}

/* Responsive */

@media screen and (max-width: 1024px) {
    .experience .content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-trust-strip .container,
    .response-process .content {
        grid-template-columns: 1fr 1fr;
    }

    .hero .container {
        padding: 0 16px;
    }

    .insurance .content {
        grid-template-columns: minmax(auto, 256px) minmax(auto, 256px) minmax(auto, 256px);
    }

    .reviews .content {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hero .footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-trust-strip .container {
        padding: 20px 16px;
    }

    .hero .hero-primary-actions {
        width: 100%;
    }

    .hero .quick-contact-links {
        width: 100%;
    }

    .hero .quick-contact-link {
        justify-content: center;
        width: 100%;
    }

    .hero .hero-estimate-link {
        text-align: center;
    }

    .insurance .content {
        grid-template-columns: minmax(auto, 256px) minmax(auto, 256px);
    }

    .reviews .content {
        gap: 24px;
        grid-template-columns: 1fr;
    }

    .service-areas .service-areas-details {
        grid-template-columns: 1fr;
    }

    .response-process .content {
        grid-template-columns: 1fr;
    }

    .request-help-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 540px) {
    .certified .container {
        gap: 32px;
    }

    .experience .experience-highlights span {
        width: 100%;
    }

    .experience .content {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .hero-trust-strip .container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .insurance .container {
        gap: 32px;
    }

    .insurance .content {
        grid-template-columns: minmax(auto, 256px);
    }

    .reviews .container {
        gap: 32px;
    }

    .site-chat-widget {
        bottom: 16px;
        right: 12px;
        width: min(236px, calc(100% - 24px));
    }

    .site-chat-panel {
        width: min(352px, calc(100vw - 24px));
    }

    .service-areas .container {
        gap: 32px;
    }

    .service-areas .city {
        flex-basis: calc((100% - 24px) / 2);
        font-size: 16px;
        min-width: 0;
        padding: 12px 16px;
    }

    .service-areas .details-left h3 {
        font-size: 18px;
    }

    .service-areas .service-areas-details {
        gap: 32px;
    }

    .service-areas .estimate-card {
        padding: 24px;
    }
}
