/* =========================
   HOMEPAGE SERVICES
========================= */

.services-section {
    padding: 90px 0;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 18px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    color: #ff6b00;
    background: #fff5ef;
    border-radius: 16px;
    font-size: 2rem;
    line-height: 1;
}

.service-card h4 {
    margin-bottom: 1.25rem;
    color: #1d2433;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    margin-bottom: 25px;
    color: #666666;
    line-height: 1.7;
}

.service-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 16px;
}

.service-price {
    color: #ff6b00;
    font-weight: 700;
}

.service-footer a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #ff6b00;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.service-footer a:hover,
.service-footer a:focus-visible {
    color: #ea580c;
    text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
    .service-card:hover {
        transform: translateY(-8px);
        border-color: #ff6b00;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
}

/* =========================
   SERVICES PAGE HERO
========================= */

.services-hero {
    padding: 100px 0 70px;
    overflow: hidden;
    background: #ffffff;
    text-align: center;
}

.section-tag {
    display: inline-block;
    color: #ff6b00;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.services-hero h1 {
    margin-top: 15px;
    color: #1d2433;
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.services-hero p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #667085;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Service-page feature list */

.service-features {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 14px;
    gap: 10px;
    color: #5b6472;
    line-height: 1.5;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features i {
    flex-shrink: 0;
    margin-top: 4px;
    color: #ff6b00;
    font-size: 0.95rem;
}

/* =========================
   SERVICE PROCESS
========================= */

.service-process {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-heading {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.process-item {
    position: relative;
    height: 100%;
    padding: 0 15px;
    text-align: center;
}

.process-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 25px;
    color: #ff6b00;
    background: #ffffff;
    border: 2px solid #ff6b00;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
}

.process-item h5 {
    margin-bottom: 15px;
    color: #1d2433;
    font-weight: 700;
}

.process-item p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Desktop connector */

@media (min-width: 992px) {
    .process-item::after {
        content: "";
        position: absolute;
        top: 32px;
        left: 68%;
        width: 64%;
        height: 2px;
        background: #e5e7eb;
    }

    .col-lg-3:last-child .process-item::after {
        display: none;
    }
}

/* =========================
   WHY CHOOSE OUR SERVICES
========================= */

.why-service {
    padding: 100px 0;
    background: #f8f9fa;
}

.why-card {
    height: 100%;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #ff6b00;
    background: #fff5ef;
    border-radius: 14px;
    font-size: 1.6rem;
}

.why-card h5 {
    margin-bottom: 15px;
    color: #1d2433;
    font-weight: 700;
}

.why-card p {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

@media (hover: hover) and (pointer: fine) {
    .why-card:hover {
        transform: translateY(-5px);
        border-color: #ff6b00;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
}

/* =========================
   HOMEPAGE CTA
========================= */

.cta-section {
    padding: 90px 0;
}

.cta-section .cta-box {
    max-width: none;
    margin: 0;
    padding: 60px 40px;
    color: #ffffff;
    background: #111827;
    border: 1px solid #111827;
    border-radius: 18px;
    text-align: left;
}

.cta-section .cta-title {
    margin: 15px 0 20px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
}

.cta-section .cta-description {
    max-width: 680px;
    margin: 0;
    color: #d1d5db;
    line-height: 1.8;
}

.cta-section .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

/* =========================
   SERVICES PAGE CTA
========================= */

.service-cta {
    padding: 90px 0;
}

.service-cta .cta-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 40px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 18px;
    text-align: center;
}

.service-cta .cta-box h2 {
    margin-bottom: 20px;
    color: #1d2433;
    font-size: clamp(2rem, 4vw, 2.2rem);
    font-weight: 700;
    line-height: 1.25;
}

.service-cta .cta-box p {
    max-width: 620px;
    margin: 0 auto 35px;
    color: #667085;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
}

/* =========================
   TABLETS
========================= */

@media (max-width: 991.98px) {
    .services-section,
    .service-process,
    .why-service,
    .cta-section,
    .service-cta {
        padding: 72px 0;
    }

    .services-hero {
        padding: 76px 0 54px;
    }

    .process-heading {
        margin-bottom: 44px;
    }

    .process-item {
        margin-bottom: 20px;
    }

    .process-item::after {
        display: none;
    }

    .cta-section .cta-box {
        padding: 46px 32px;
        text-align: center;
    }

    .cta-section .cta-description {
        margin-right: auto;
        margin-left: auto;
    }

    .cta-section .col-lg-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 28px;
        gap: 12px;
    }

    .cta-section .col-lg-4 .btn {
        width: 100%;
        margin-right: 0 !important;
    }
}

/* =========================
   PHONES
========================= */

@media (max-width: 767.98px) {
    .services-section,
    .service-process,
    .why-service,
    .cta-section,
    .service-cta {
        padding: 60px 0;
    }

    .services-hero {
        padding: 58px 0 42px;
    }

    .services-hero h1 {
        font-size: clamp(2rem, 10vw, 2.5rem);
    }

    .services-hero p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .service-card {
        padding: 28px 24px;
        border-radius: 16px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
        font-size: 1.8rem;
    }

    .why-card {
        padding: 26px 22px;
    }

    .cta-section .cta-box,
    .service-cta .cta-box {
        padding: 38px 24px;
        border-radius: 16px;
    }

    .cta-section .col-lg-4,
    .cta-buttons {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 12px;
    }

    .cta-section .col-lg-4 .btn,
    .cta-buttons .btn {
        width: 100%;
        min-width: 0;
        margin: 0 !important;
    }
}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 575.98px) {
    .services-section,
    .service-process,
    .why-service,
    .cta-section,
    .service-cta {
        padding: 52px 0;
    }

    .service-card {
        padding: 24px 20px;
    }

    .service-footer {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .process-circle {
        width: 58px;
        height: 58px;
        margin-bottom: 20px;
    }

    .cta-section .cta-box,
    .service-cta .cta-box {
        padding: 32px 20px;
        border-radius: 14px;
    }

    .cta-section .cta-title,
    .service-cta .cta-box h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 359.98px) {
    .service-card,
    .why-card {
        padding: 22px 18px;
    }

    .cta-section .cta-box,
    .service-cta .cta-box {
        padding: 28px 16px;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .why-card {
        transition: none;
    }
}