/* Service marketing pages — Divya Jyotish design system */

.page-service {
    background: var(--dj-cream, #FDF8F1);
    color: var(--dj-ink, #2D2521);
}

.sv-label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dj-gold, #C9A227);
    margin-bottom: 0.85rem;
}

.sv-label::before,
.sv-label::after {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--dj-gold, #C9A227);
    opacity: 0.85;
}

.sv-section-title {
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: clamp(1.85rem, 3.2vw, 2.55rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--dj-ink, #2D2521);
    margin: 0 0 0.85rem;
}

.sv-section-desc {
    margin: 0 auto;
    max-width: 46rem;
    color: var(--dj-muted, #6B6B6B);
    font-size: 1.05rem;
    line-height: 1.7;
}

.sv-section-head {
    margin-bottom: 2.4rem;
}

.sv-section-head--center {
    text-align: center;
}

.sv-section-head--center .sv-label {
    justify-content: center;
}

/* ---- Hero ---- */
.sv-hero {
    padding: 4.5rem 0 3.75rem;
    background:
        radial-gradient(circle at 88% 18%, rgba(232, 140, 27, 0.1), transparent 42%),
        var(--dj-cream, #FDF8F1);
}

.sv-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.9fr);
    gap: clamp(1.5rem, 3.5vw, 2.85rem);
    align-items: center;
}

.sv-hero-copy {
    min-width: 0;
    max-width: 36rem;
}

.sv-hero-label {
    display: inline-flex;
    align-items: center;
    padding: 0.48rem 1.05rem;
    border-radius: 999px;
    background: rgba(242, 145, 17, 0.12);
    color: #E88C1B;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.sv-hero-title {
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: clamp(2.35rem, 4.2vw, 3.35rem);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 1.05rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.sv-hero-title-dark {
    display: inline;
    color: #2D2521;
}

.sv-hero-title-accent {
    display: inline;
    color: #E88C1B;
    font-style: italic;
    font-weight: 600;
}

.sv-hero-sub {
    margin: 0 0 1.6rem;
    max-width: 38rem;
    color: #6B6B6B;
    font-size: 1.05rem;
    line-height: 1.7;
}

.sv-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.sv-hero-visual {
    position: relative;
    width: 100%;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.sv-hero-img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    max-height: 480px;
    display: block;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(45, 37, 33, 0.12);
    object-fit: cover;
    object-position: center center;
    aspect-ratio: 1 / 1;
}

/* ---- Intro ---- */
.sv-intro {
    padding: 1rem 0 2.5rem;
    background: #fff;
}

/* ---- Features ---- */
.sv-features {
    padding: 3.5rem 0;
    background: #fff;
}

.sv-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.sv-feature-card {
    position: relative;
    padding: 1.45rem 1.3rem 1.5rem;
    border-radius: 16px;
    background: var(--dj-cream, #FDF8F1);
    border: 1px solid rgba(45, 37, 33, 0.07);
    transition: transform .2s ease, box-shadow .2s ease;
}

.sv-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(45, 37, 33, 0.08);
}

.sv-feature-num {
    display: inline-block;
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: #E88C1B;
    margin-bottom: 0.7rem;
}

.sv-feature-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1A2744;
    margin: 0 0 0.45rem;
}

.sv-feature-card p {
    margin: 0;
    color: #6B6B6B;
    font-size: 0.92rem;
    line-height: 1.55;
}

/* ---- Steps ---- */
.sv-steps {
    padding: 3.75rem 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(232, 140, 27, 0.08), transparent 40%),
        var(--dj-cream, #FDF8F1);
}

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

.sv-step {
    text-align: center;
    padding: 1.4rem 1rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(45, 37, 33, 0.07);
}

.sv-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-bottom: 0.9rem;
    background: rgba(232, 140, 27, 0.12);
    color: #E88C1B;
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-weight: 700;
    font-size: 1rem;
}

.sv-step h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #1A2744;
    margin: 0 0 0.4rem;
}

.sv-step p {
    margin: 0;
    color: #6B6B6B;
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ---- Why ---- */
.sv-why {
    padding: 3.75rem 0;
    background: #fff;
}

.sv-why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.sv-why-card {
    padding: 1.5rem 1.35rem;
    border-radius: 16px;
    border: 1px solid rgba(45, 37, 33, 0.08);
    background: #fff;
    box-shadow: 0 10px 28px rgba(45, 37, 33, 0.04);
}

.sv-why-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #E88C1B;
    background: rgba(232, 140, 27, 0.12);
    margin-bottom: 0.9rem;
}

.sv-why-icon svg {
    display: block;
}

.sv-why-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1A2744;
    margin: 0 0 0.4rem;
}

.sv-why-card p {
    margin: 0;
    color: #6B6B6B;
    font-size: 0.92rem;
    line-height: 1.55;
}

/* ---- Info ---- */
.sv-info {
    padding: 3.75rem 0;
    background: var(--dj-cream, #FDF8F1);
}

.sv-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.35rem, 3vw, 2.5rem);
    align-items: center;
}

.sv-info-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(45, 37, 33, 0.1);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.sv-info-copy .sv-section-title {
    margin-bottom: 0.9rem;
}

.sv-info-copy > p {
    margin: 0 0 1.15rem;
    color: #6B6B6B;
    font-size: 1rem;
    line-height: 1.7;
}

.sv-info-points {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.7rem;
}

.sv-info-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #2D2521;
    font-size: 0.95rem;
    line-height: 1.45;
}

.sv-info-points li span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #E88C1B;
    background: rgba(232, 140, 27, 0.12);
    margin-top: 0.05rem;
}

.sv-info-points li span svg {
    display: block;
}

/* ---- CTA ---- */
.sv-cta {
    padding: 3.25rem 0 4.25rem;
    background: #fff;
}

.sv-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.55rem 1.75rem;
    border-radius: 18px;
    background:
        radial-gradient(circle at 8% 50%, rgba(232, 140, 27, 0.14), transparent 42%),
        linear-gradient(90deg, #FFF6EB, #FFF9F2);
    border: 1px solid rgba(232, 140, 27, 0.18);
}

.sv-cta-copy h2 {
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    margin: 0 0 0.35rem;
    color: #1A2744;
}

.sv-cta-copy p {
    margin: 0;
    color: #6B625A;
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 46ch;
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
    .sv-hero-title {
        font-size: clamp(2.15rem, 3.6vw, 2.85rem);
    }
}

@media (max-width: 991.98px) {
    .sv-hero-grid,
    .sv-info-grid {
        grid-template-columns: 1fr;
    }

    .sv-hero {
        padding: 3.25rem 0 2.75rem;
    }

    .sv-hero-copy {
        max-width: none;
    }

    .sv-hero-title {
        white-space: normal;
    }

    .sv-hero-visual {
        order: -1;
        max-width: 440px;
        width: 100%;
        margin: 0 auto;
        align-self: center;
    }

    .sv-hero-img {
        min-height: 280px;
        max-height: 420px;
    }

    .sv-feature-grid,
    .sv-why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sv-steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sv-cta {
        padding: 2.75rem 0 3.5rem;
    }

    .sv-cta-bar {
        flex-direction: column;
        text-align: center;
        align-items: stretch;
    }

    .sv-cta-copy p {
        max-width: none;
        margin-bottom: 0.35rem;
    }

    .sv-cta-bar .dj-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .sv-feature-grid,
    .sv-why-grid,
    .sv-steps-grid {
        grid-template-columns: 1fr;
    }

    .sv-hero-title {
        white-space: normal;
        font-size: clamp(2rem, 8vw, 2.45rem);
    }

    .sv-hero-img {
        min-height: 240px;
        max-height: 340px;
    }

    .sv-hero-actions {
        flex-direction: column;
    }

    .sv-hero-actions .dj-btn {
        width: 100%;
        justify-content: center;
    }

    .sv-cta {
        padding: 2.5rem 0 3.25rem;
    }
}
