/* ============================================================
   SPARK SKOON — services.css
   Covers: services preview (homepage) + full services page
   ============================================================ */


/* ============================================================
   SHARED: Section Header (used on homepage preview)
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-block;
    background-color: #fdf7e3;
    color: #1565C0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 0.85rem;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0D2863;
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.section-header p {
    color: #555;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}


/* ============================================================
   HOMEPAGE: Services Preview
   ============================================================ */
.services-preview {
    padding: 5rem 1.5rem;
    background-color: #F5F8FF;
}

/* 6-card grid */
.services-preview .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 3rem;
}

/* Individual service card */
.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.75rem;
    border: 1px solid #E8EEF8;
    box-shadow: 0 2px 12px rgba(13, 40, 99, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(13, 40, 99, 0.12);
    border-color: #29B6F6;
}

.service-card-icon {
    width: 54px;
    height: 54px;
    background-color: #E3F2FD;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E88E5;
    font-size: 1.4rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-card-icon {
    background-color: #1E88E5;
    color: #ffffff;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0D2863;
    margin: 0;
}

.service-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.65;
    flex-grow: 1;
    margin: 0;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #1E88E5;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.25rem;
    transition: gap 0.25s ease, color 0.25s ease;
}

.service-card-link:hover {
    color: #0D2863;
    gap: 0.65rem;
}

/* Two CTA buttons under the grid */
.services-preview-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}


/* ============================================================
   SERVICES PAGE: Page Hero
   ============================================================ */
.page-hero {
    position: relative;
    min-height: 80dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1.5rem 4rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0D2863 0%, #1565C0 60%, #1E88E5 100%);
    margin-top: 130px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: url('../assets/images/hero-services-bg.jpg') center/cover no-repeat;
    opacity: 0.12;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-hero-label {
    display: inline-block;
    background-color: rgba(41, 182, 246, 0.2);
    color: #29B6F6;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(41, 182, 246, 0.35);
}

.page-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.9rem, 5vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.page-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* ============================================================
   SERVICES PAGE: Quick Nav Bar
   ============================================================ */
.services-quick-nav {
    background-color: #ffffff;
    border-bottom: 2px solid #E8EEF8;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(13, 40, 99, 0.07);
}

.quick-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.quick-nav-list::-webkit-scrollbar {
    display: none;
}

.quick-nav-list li {
    flex-shrink: 0;
}

.quick-nav-list a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 1.35rem;
    color: #444;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.quick-nav-list a i {
    color: #1E88E5;
    font-size: 0.9rem;
}

.quick-nav-list a:hover,
.quick-nav-list a.active {
    color: #0D2863;
    border-bottom-color: #1E88E5;
}


/* ============================================================
   SERVICES PAGE: Service Blocks
   ============================================================ */
.services-list {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.service-block {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 3rem;
    border-radius: 16px;
    background-color: #F5F8FF;
    border: 1px solid #E8EEF8;
    margin-bottom: 2rem;
    scroll-margin-top: 80px;
    transition: box-shadow 0.3s ease;
}

.service-block:hover {
    box-shadow: 0 8px 32px rgba(13, 40, 99, 0.1);
}

.service-block-alt {
    background-color: #ffffff;
    border-color: #E3F2FD;
}

.service-block-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1E88E5, #29B6F6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.2rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.3);
}

.service-tag {
    display: inline-block;
    background-color: #E3F2FD;
    color: #1565C0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
}

.service-block-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #0D2863;
    margin-bottom: 0.85rem;
    line-height: 1.2;
}

.service-desc {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 640px;
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.service-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
}

.service-includes li i {
    color: #1E88E5;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.8rem;
}


/* ============================================================
   SERVICES PAGE: Trust Strip
   ============================================================ */
.services-trust-strip {
    background-color: #0D2863;
    padding: 2.5rem 1.5rem;
}

.trust-strip-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #E8EEF8;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: #29B6F6;
    font-size: 1.2rem;
}


/* ============================================================
   SERVICES PAGE: CTA Banner
   ============================================================ */
.services-cta-banner {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #E3F2FD 0%, #E8EEF8 100%);
    text-align: center;
}

.cta-banner-content {
    max-width: 660px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: #0D2863;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-banner-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-banner-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* WhatsApp button (shared with footer.css) */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebe5b;
    transform: translateY(-2px);
}


/* ============================================================
   MOBILE RESPONSIVENESS
   ============================================================ */

/* Tablet: 2-column service card grid */
@media (max-width: 960px) {
    .services-preview .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-block-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }

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

/* Mobile: single column */
@media (max-width: 580px) {
    .services-preview {
        padding: 3.5rem 1rem;
    }

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

    .services-preview-btn {
        flex-direction: column;
        align-items: stretch;
    }

    .services-preview-btn a {
        text-align: center;
        justify-content: center;
    }

    .page-hero {
        min-height: 360px;
        padding: 4rem 1rem 3rem;
    }

    .page-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .service-block {
        padding: 1.75rem 1.25rem;
    }

    .trust-strip-grid {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .cta-banner-btns {
        flex-direction: column;
        align-items: stretch;
    }
}