.services-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: #0f172a url('/slider/rug-repair-two.webp') center/cover no-repeat;
    overflow: hidden;
    padding: 50px;
}

.services-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background:
        linear-gradient(90deg, rgba(5, 16, 29, 0.64) 0%, rgba(5, 16, 29, 0.28) 55%, rgba(5, 16, 29, 0.16) 100%),
        linear-gradient(180deg, rgba(5, 16, 29, 0.12), rgba(5, 16, 29, 0.34)); */
}

.hero-background {
    width: 100%;
}

.hero-overlay {
    position: relative;
    width: 100%;
    z-index: 1;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.05;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    color: #ffffff;
}

.hero-title-accent {
    color: #19b1ef;
    text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
}

.hero-subtitle {
    margin: 0 0 30px;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 2px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #129ed9 0%, #19b9ef 100%);
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 18px 32px rgba(18, 158, 217, 0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-call-now:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(18, 158, 217, 0.3);
}

.our-services-section {
    padding: 56px 20px 72px;
    background:
        radial-gradient(circle at top center, rgba(25, 177, 239, 0.06), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.services-header {
    margin-bottom: 28px;
}

.section-title-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 16px;
}

.section-title-small .line {
    width: 44px;
    height: 2px;
    background: #1fa7e1;
}

.section-title-small .text {
    color: #1fa7e1;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    margin: 0 0 10px;
    color: #000000;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    text-align: center;
}

.black-text {
    color: #000000;
}

.blue-text {
    color: #1fa7e1;
}

.section-subtitle {
    margin: 0;
    color: #000000;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
}

.services-grid-plain {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.svc-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(15, 23, 42, 0.12);
}

.svc-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 0.82;
    background: #d7e8ef;
}

.svc-frame a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.svc-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.svc-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    background: rgba(31, 167, 225, 0.44);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.svc-overlay__panel {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.svc-overlay__eyebrow {
    display: block;
    width: 100%;
    color: #111827;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.svc-overlay__title {
    display: block;
    flex: 1 1 auto;
    color: #111827;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}

.svc-overlay__cta {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1fa7e1 0%, #19b9ef 100%);
    color: #ffffff;
    font-size: 1.7rem;
    line-height: 1;
}

.svc-card:hover .svc-frame img {
    transform: scale(1.05);
    filter: saturate(0.9);
}

.svc-card:hover .svc-overlay {
    opacity: 1;
}

.cta-section {
    position: relative;
    overflow: hidden;
    margin: 0 0 34px;
    padding: 46px 0;
    background: #0f172a;
}

.cta-bg,
.cta-overlay {
    position: absolute;
    inset: 0;
}

.cta-bg {
    background: url('/images/services-hero/carpet cleaners nassau CTA img.webp') center/cover no-repeat;
}

.cta-overlay {
    background: linear-gradient(90deg, rgba(5, 16, 29, 0.82) 0%, rgba(5, 16, 29, 0.4) 100%);
}

.cta-accent {
    display: none;
}

.cta-box {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #ffffff;
}

.cta-eyebrow {
    margin: 0 0 12px;
    color: #8edfff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cta-title {
    margin: 0 0 16px;
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
}

.cta-description {
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.75;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 2px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #129ed9 0%, #19b9ef 100%);
    color: #ffffff;
}

.btn-cta-outline {
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.btn-cta-primary:hover,
.btn-cta-outline:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.services-stats-strip {
    background: linear-gradient(135deg, #1aa6df 0%, #2a9fd0 100%);
}

.services-stats-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-stats-strip__item {
    padding: 22px 16px 20px;
    text-align: center;
    color: #ffffff;
}

.services-stats-strip__item strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
    line-height: 1;
}

.services-stats-strip__item span {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.trust-section {
    padding: 44px 0;
    background: #eaf9ff;
}

.trust-title {
    margin: 0 0 20px;
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
}

.trust-text {
    max-width: 900px;
    margin: 0 auto;
    color: #000000;
    font-size: 1rem;
    line-height: 1.9;
    text-align: center;
}

.trust-text p {
    margin: 0 0 18px;
}

.footer-cta-section {
    padding: 0 0 56px;
}

.footer-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.footer-cta-item {
    min-height: 180px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-section {
    align-items: center;
    background: linear-gradient(135deg, #74bbd5 0%, #4eaacf 100%);
}

.logo-section img {
    max-width: 180px;
    height: auto;
}

.phone-section {
    background: linear-gradient(135deg, #48b4dd 0%, #2d9dcb 100%);
    color: #ffffff;
}

.address-section {
    background: linear-gradient(135deg, #1fa7e1 0%, #1187ba 100%);
    color: #ffffff;
}

.phone-label,
.address-label {
    margin: 0 0 10px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.phone-number,
.address-text {
    margin: 0;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
}

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

.services-contact-form-section {
    padding: 0 0 70px;
    background: #ffffff;
}

.services-contact-form {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.services-contact-form__info {
    display: grid;
    gap: 18px;
}

.services-contact-form__info-card {
    min-height: 68px;
    display: flex;
    align-items: center;
    padding: 18px 16px;
    border: 1px solid #d5dee6;
    border-radius: 16px;
    background: #ffffff;
    color: #000000;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.6;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.04);
}

.services-contact-form__info-card a {
    color: #0ea5d8;
    text-decoration: none;
}

.services-contact-form__info-card--hours {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.services-contact-form__info-title {
    color: #0ea5d8;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.services-contact-form__form-wrap h2 {
    margin: 0 0 18px;
    color: #0ea5d8;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
}

.services-contact-form__fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.services-contact-form__fields label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-contact-form__fields label span {
    color: #000000;
    font-size: 0.88rem;
    font-weight: 600;
}

.services-contact-form__fields input,
.services-contact-form__fields textarea {
    /* width: 100%; */
    border: 1px solid #16a7db;
    border-radius: 10px;
    background: #ffffff;
    color: #0f172a;
    font-size: 0.95rem;
    padding: 12px 14px;
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.services-contact-form__fields input:focus,
.services-contact-form__fields textarea:focus {
    border-color: #0d8fc0;
    box-shadow: 0 0 0 4px rgba(22, 167, 219, 0.12);
}

.services-contact-form__message textarea {
    min-height: 138px;
    resize: vertical;
}

.services-contact-form__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.services-contact-form__submit,
.services-contact-form__call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0px 16px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-contact-form__submit {
    border: 1px solid #16a7db;
    background: #ffffff;
    color: #16a7db;
}

.services-contact-form__call {
    border: 1px solid #16a7db;
    background: linear-gradient(135deg, #16a7db 0%, #1695ca 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(22, 167, 219, 0.16);
}

.services-contact-form__submit:hover,
.services-contact-form__call:hover {
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .services-grid-plain {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-stats-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-cta-grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

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

@media (max-width: 768px) {
    .services-hero {
        min-height: 460px;
    }

    .trust-section {
        padding: 36px 0;
    }
}

@media (max-width: 600px) {
    .services-grid-plain {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .services-contact-form-section {
        padding-bottom: 44px;
    }

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

    .services-contact-form__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .services-stats-strip__grid {
        grid-template-columns: 1fr;
    }

    .services-stats-strip__item {
        padding: 18px 14px;
    }

    .services-hero {
        min-height: 400px;
    }

    .hero-subtitle {
        font-size: 0.96rem;
    }

    .section-title-small {
        gap: 8px;
    }

    .section-title-small .line {
        width: 24px;
    }

    .cta-actions {
        flex-direction: column;
    }

}
