/*
 * Services Landing Page — Redesigned Styles
 * Namespace: svp-
 * RTL Arabic · Cairo / Noto Kufi Arabic · Green brand #0a5c18 · Gold accent #e8a817
 */

/* ═══════════════════════════════════════════════════════
   SHARED LAYOUT
   ═══════════════════════════════════════════════════════ */

.svp-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2rem;
}

.svp-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.svp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10, 92, 24, 0.08);
    color: var(--clr-primary, #0a5c18);
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.svp-eyebrow .material-symbols-outlined {
    font-size: 1rem;
}

.svp-section-title {
    font-family: var(--font-display, 'Noto Kufi Arabic', sans-serif);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--clr-text-primary, #1a1f1a);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.svp-accent {
    color: var(--clr-primary, #0a5c18);
}

.svp-section-desc {
    font-size: 1.05rem;
    color: var(--clr-text-secondary, #4a5548);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════════════ */

.svp-stats {
    background: linear-gradient(135deg, var(--clr-primary, #0a5c18) 0%, #0d7020 60%, #1a8a30 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.svp-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(232,168,23,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.svp-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    z-index: 1;
}

.svp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0 3rem;
    text-align: center;
}

.svp-stat-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.svp-stat-icon .material-symbols-outlined {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
}

.svp-stat-number {
    font-family: var(--font-display, 'Noto Kufi Arabic', sans-serif);
    font-size: 2.25rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.svp-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 0.1rem;
}

.svp-stat-sep {
    width: 1px;
    height: 4rem;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════ */

.svp-services {
    padding: 110px 0 120px;
    background: #f7f8f5;
    position: relative;
}

.svp-services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--clr-primary, #0a5c18) 30%,
        var(--clr-accent, #e8a817) 70%,
        transparent 100%);
}

.svp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* ─── Card base ─────────────────────────────────────── */

.svp-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.055);
    transition:
        transform  0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    will-change: transform;
}

.svp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(10, 92, 24, 0.14), 0 4px 16px rgba(0,0,0,0.06);
}

.svp-card:focus-visible {
    outline: 3px solid var(--clr-primary, #0a5c18);
    outline-offset: 3px;
}

/* Active-scale feedback on tap (mobile) */
.svp-card:active {
    transform: scale(0.98);
}

/* Top-edge progress bar on hover */
.svp-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary, #0a5c18), var(--clr-accent, #e8a817));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.svp-card:hover::after {
    transform: scaleX(1);
}

/* Static fallback card (no link) */
.svp-card--static {
    cursor: default;
}

.svp-card--static:hover {
    transform: none;
    box-shadow: none;
}

.svp-card--static::after {
    display: none;
}

/* ─── Card visual (top panel) ───────────────────────── */

/* Photo card */
.svp-card-visual--photo {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8ede8;
}

/* Branded fallback layer — shows through when the image is missing/broken */
.svp-photo-fallback {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--svp-grad-from, #0a5c18) 0%,
        var(--svp-grad-to, #0f7a20) 100%
    );
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px),
        linear-gradient(135deg, var(--svp-grad-from, #0a5c18) 0%, var(--svp-grad-to, #0f7a20) 100%);
    background-size: 18px 18px, cover;
}

.svp-photo-fallback .material-symbols-outlined {
    font-size: 3.25rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.svp-thumb {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image failed to load → reveal the branded fallback beneath it */
.svp-thumb--broken {
    display: none;
}

.svp-card:hover .svp-thumb {
    transform: scale(1.07);
}

.svp-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to top,
        rgba(10, 26, 10, 0.55) 0%,
        transparent 60%
    );
    transition: opacity 0.4s ease;
}

/* Floating icon badge over photo */
.svp-photo-icon {
    position: absolute;
    z-index: 3;
    bottom: 1rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255,255,255,0.95);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.35s ease;
}

.svp-photo-icon .material-symbols-outlined {
    font-size: 1.4rem;
    color: var(--clr-primary, #0a5c18);
}

.svp-card:hover .svp-photo-icon {
    transform: scale(1.1) rotate(-6deg);
}

/* Gradient illustrated card */
.svp-card-visual--gradient {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--svp-grad-from, #0a5c18) 0%,
        var(--svp-grad-to, #0f7a20) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
}

/* Decorative dot-grid texture */
.svp-grad-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.6;
}

/* Decorative concentric rings */
.svp-grad-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.svp-grad-ring--1 {
    width: 140px;
    height: 140px;
    bottom: -40px;
    left: -40px;
}

.svp-grad-ring--2 {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -20px;
}

/* Big icon */
.svp-grad-icon {
    position: relative;
    z-index: 1;
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.svp-grad-icon .material-symbols-outlined {
    font-size: 2.25rem;
    color: #fff;
}

.svp-card:hover .svp-grad-icon {
    transform: scale(1.12) rotate(-4deg);
}

/* Service name label at bottom of gradient panel */
.svp-grad-label {
    position: relative;
    z-index: 1;
    font-family: var(--font-display, 'Noto Kufi Arabic', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
}

/* ─── Card body ─────────────────────────────────────── */

.svp-card-body {
    flex: 1;
    padding: 1.5rem 1.625rem 1rem;
}

.svp-card-title {
    font-family: var(--font-display, 'Noto Kufi Arabic', sans-serif);
    font-size: 1.175rem;
    font-weight: 800;
    color: var(--clr-text-primary, #1a1f1a);
    margin-bottom: 0.5rem;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.svp-card:hover .svp-card-title {
    color: var(--clr-primary, #0a5c18);
}

.svp-card-desc {
    font-size: 0.9175rem;
    color: var(--clr-text-secondary, #4a5548);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.svp-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 0.25rem;
}

.svp-card-features li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    color: var(--clr-text-secondary, #4a5548);
}

.svp-card-features .material-symbols-outlined {
    font-size: 1rem;
    color: var(--clr-primary, #0a5c18);
    flex-shrink: 0;
}

/* ─── Card footer ───────────────────────────────────── */

.svp-card-footer {
    padding: 1rem 1.625rem 1.375rem;
    border-top: 1px solid rgba(0, 0, 0, 0.055);
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.svp-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--clr-primary, #0a5c18);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.svp-card-cta .material-symbols-outlined {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.svp-card:hover .svp-card-cta {
    gap: 0.75rem;
}

.svp-card:hover .svp-card-cta .material-symbols-outlined {
    transform: translateX(-4px);
}

/* Secondary call action in the card footer (pairs with the WhatsApp CTA) */
.svp-card-call {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--clr-text-secondary, #4a5548);
    text-decoration: none;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(10, 92, 24, 0.18);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.svp-card-call .material-symbols-outlined {
    font-size: 1.05rem;
}

.svp-card-call:hover,
.svp-card-call:focus-visible {
    background: var(--clr-primary, #0a5c18);
    border-color: var(--clr-primary, #0a5c18);
    color: #fff;
}

/* Arrow circle badge */
.svp-card-arrow-circle {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(10, 92, 24, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.35s ease, transform 0.35s ease;
}

.svp-card-arrow-circle .material-symbols-outlined {
    font-size: 1.1rem;
    color: var(--clr-primary, #0a5c18);
    transition: transform 0.35s ease;
}

.svp-card:hover .svp-card-arrow-circle {
    background: var(--clr-primary, #0a5c18);
    transform: scale(1.1);
}

.svp-card:hover .svp-card-arrow-circle .material-symbols-outlined {
    color: #fff;
    transform: translateX(-3px);
}

/* ═══════════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════════ */

.svp-why {
    padding: 90px 0;
    background: #fff;
    position: relative;
}

.svp-why::before,
.svp-why::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(10,92,24,0.12), transparent);
}

.svp-why::before { top: 0; }
.svp-why::after  { bottom: 0; }

.svp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(0,0,0,0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 24px rgba(0,0,0,0.04);
}

.svp-why-item {
    background: #fff;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    transition: background 0.35s ease;
}

.svp-why-item:hover {
    background: #f8fcf8;
}

/* Big decorative number */
.svp-why-num {
    font-family: var(--font-display, 'Noto Kufi Arabic', sans-serif);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(10, 92, 24, 0.06);
    line-height: 1;
    margin-bottom: -0.5rem;
    transition: color 0.35s ease;
}

.svp-why-item:hover .svp-why-num {
    color: rgba(10, 92, 24, 0.12);
}

.svp-why-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(10, 92, 24, 0.08);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: background 0.35s ease;
}

.svp-why-icon .material-symbols-outlined {
    font-size: 1.35rem;
    color: var(--clr-primary, #0a5c18);
}

.svp-why-item:hover .svp-why-icon {
    background: var(--clr-primary, #0a5c18);
}

.svp-why-item:hover .svp-why-icon .material-symbols-outlined {
    color: #fff;
}

.svp-why-title {
    font-family: var(--font-display, 'Noto Kufi Arabic', sans-serif);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--clr-text-primary, #1a1f1a);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.svp-why-desc {
    font-size: 0.875rem;
    color: var(--clr-text-secondary, #4a5548);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════════════ */

.svp-process {
    padding: 110px 0 120px;
    background: var(--clr-surface-warm, #f5f2eb);
    position: relative;
    overflow: hidden;
}

/* Subtle top accent */
.svp-process::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent,
        rgba(10, 92, 24, 0.25),
        transparent);
}

/* Large decorative bg text */
.svp-process::after {
    content: 'HOW';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display, sans-serif);
    font-size: 14rem;
    font-weight: 900;
    color: rgba(10, 92, 24, 0.03);
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
}

/* Horizontal connector track */
.svp-process-track {
    position: absolute;
    top: calc(50% + 2rem); /* approximate mid-icon height */
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(
        to left,
        transparent 0%,
        rgba(10, 92, 24, 0.2) 15%,
        rgba(10, 92, 24, 0.3) 50%,
        rgba(10, 92, 24, 0.2) 85%,
        transparent 100%
    );
    pointer-events: none;
}

.svp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.svp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Numbered badge above the icon */
.svp-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--clr-primary, #0a5c18);
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-display, 'Noto Kufi Arabic', sans-serif);
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(10, 92, 24, 0.35);
}

.svp-step-icon {
    width: 5rem;
    height: 5rem;
    background: #fff;
    border-radius: 1.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow:
        0 8px 24px rgba(10, 92, 24, 0.12),
        0 2px 6px rgba(0,0,0,0.06);
    transition:
        transform  0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.svp-step-icon .material-symbols-outlined {
    font-size: 2rem;
    color: var(--clr-primary, #0a5c18);
    transition: transform 0.4s ease;
}

.svp-step:hover .svp-step-icon {
    transform: translateY(-6px) scale(1.04);
    box-shadow:
        0 16px 40px rgba(10, 92, 24, 0.18),
        0 4px 12px rgba(0,0,0,0.08);
}

.svp-step:hover .svp-step-icon .material-symbols-outlined {
    transform: scale(1.1);
}

.svp-step-title {
    font-family: var(--font-display, 'Noto Kufi Arabic', sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clr-text-primary, #1a1f1a);
    margin-bottom: 0.625rem;
}

.svp-step-desc {
    font-size: 0.9175rem;
    color: var(--clr-text-secondary, #4a5548);
    line-height: 1.75;
    max-width: 22ch;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */

.svp-testimonials {
    padding: 110px 0 120px;
    background: #fff;
    position: relative;
}

.svp-testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--clr-primary, #0a5c18) 30%,
        var(--clr-accent, #e8a817) 70%,
        transparent 100%);
}

.svp-testi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

.svp-testi-card {
    background: #f7f8f5;
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(10, 92, 24, 0.07);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.svp-testi-card::before {
    content: '\201C';
    position: absolute;
    top: 1.25rem;
    left: 1.75rem;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(10, 92, 24, 0.07);
    pointer-events: none;
}

.svp-testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 92, 24, 0.1), 0 4px 12px rgba(0,0,0,0.05);
}

.svp-testi-stars {
    display: flex;
    gap: 0.2rem;
}

.svp-star {
    font-size: 1.15rem;
    color: #e8a817;
    font-variation-settings: 'FILL' 1;
}

.svp-testi-text {
    font-size: 0.975rem;
    line-height: 1.85;
    color: var(--clr-text-secondary, #4a5548);
    flex: 1;
}

.svp-testi-footer {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.055);
    flex-wrap: wrap;
}

.svp-testi-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a5c18, #0f7a20);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display, 'Noto Kufi Arabic', sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.svp-testi-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.svp-testi-name {
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--clr-text-primary, #1a1f1a);
}

.svp-testi-role {
    font-size: 0.8125rem;
    color: var(--clr-text-secondary, #4a5548);
}

.svp-testi-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(10, 92, 24, 0.08);
    color: var(--clr-primary, #0a5c18);
    padding: 0.35rem 0.875rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.svp-testi-badge .material-symbols-outlined {
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */

.svp-faq {
    padding: 110px 0 120px;
    background: var(--clr-surface-warm, #f5f2eb);
    position: relative;
}

.svp-faq-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 5rem;
    align-items: start;
}

.svp-faq-aside {
    position: sticky;
    top: 7rem;
}

.svp-faq-aside .svp-eyebrow {
    display: inline-flex;
    margin-bottom: 1.25rem;
}

.svp-faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--clr-primary, #0a5c18);
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 2rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.svp-faq-cta-btn:hover {
    background: #0d7020;
    transform: translateY(-2px);
}

.svp-faq-cta-btn .material-symbols-outlined {
    font-size: 1.2rem;
}

.svp-faq-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.svp-faq-cta-group .svp-faq-cta-btn {
    margin-top: 2rem;
}

/* Call variant — outlined so WhatsApp stays the primary action */
.svp-faq-cta-btn--call {
    background: transparent;
    color: var(--clr-primary, #0a5c18);
    border: 2px solid rgba(10, 92, 24, 0.25);
    padding: 0.75rem 1.5rem;
}

.svp-faq-cta-btn--call:hover {
    background: var(--clr-primary, #0a5c18);
    color: #fff;
    border-color: var(--clr-primary, #0a5c18);
}

.svp-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.svp-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.svp-faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.svp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.375rem 0;
    cursor: pointer;
    text-align: right;
    font-family: var(--font-display, 'Noto Kufi Arabic', sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-text-primary, #1a1f1a);
    transition: color 0.3s ease;
}

.svp-faq-q:hover {
    color: var(--clr-primary, #0a5c18);
}

.svp-faq-q[aria-expanded="true"] {
    color: var(--clr-primary, #0a5c18);
}

.svp-faq-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(10, 92, 24, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svp-faq-icon .material-symbols-outlined {
    font-size: 1.1rem;
    color: var(--clr-primary, #0a5c18);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svp-faq-q[aria-expanded="true"] .svp-faq-icon {
    background: var(--clr-primary, #0a5c18);
}

.svp-faq-q[aria-expanded="true"] .svp-faq-icon .material-symbols-outlined {
    color: #fff;
    transform: rotate(180deg);
}

.svp-faq-ans {
    padding: 0 0 1.375rem;
}

.svp-faq-ans[hidden] {
    display: none;
}

.svp-faq-ans p {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--clr-text-secondary, #4a5548);
}

/* ═══════════════════════════════════════════════════════
   GUARANTEE STRIP
   ═══════════════════════════════════════════════════════ */

.svp-guarantee {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--clr-primary, #0a5c18) 0%, #0d7020 60%, #1a8a30 100%);
    position: relative;
    overflow: hidden;
}

.svp-guarantee::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 50%, rgba(232,168,23,0.07) 0%, transparent 50%);
    pointer-events: none;
}

.svp-guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.svp-guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.svp-guarantee-item:first-child {
    border-left: none;
}

.svp-guarantee-item:nth-child(4) {
    border-left: none;
}

.svp-guarantee-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.svp-guarantee-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svp-guarantee-icon .material-symbols-outlined {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.svp-guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.svp-guarantee-content strong {
    font-family: var(--font-display, 'Noto Kufi Arabic', sans-serif);
    font-size: 0.975rem;
    font-weight: 800;
    color: #fff;
}

.svp-guarantee-content span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.65);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
    .svp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svp-guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svp-guarantee-item:nth-child(4) {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .svp-guarantee-item:nth-child(odd) {
        border-left: none;
    }
}

@media (max-width: 1024px) {
    .svp-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .svp-process-track {
        display: none;
    }
}

@media (max-width: 768px) {
    .svp-container {
        padding: 0 1.25rem;
    }

    /* Stats */
    .svp-stats {
        padding: 2rem 0;
    }

    .svp-stats-inner {
        flex-wrap: wrap;
        gap: 1.5rem 0;
    }

    .svp-stat {
        width: 50%;
        padding: 0;
    }

    .svp-stat-sep {
        display: none;
    }

    /* Services */
    .svp-services {
        padding: 70px 0 80px;
    }

    .svp-grid {
        grid-template-columns: 1fr;
    }

    /* Why */
    .svp-why {
        padding: 60px 0;
    }

    .svp-why-grid {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .svp-why-item {
        padding: 1.75rem 1.5rem;
    }

    /* Process */
    .svp-process {
        padding: 70px 0 80px;
    }

    .svp-process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Testimonials */
    .svp-testimonials {
        padding: 70px 0 80px;
    }

    .svp-testi-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .svp-faq {
        padding: 70px 0 80px;
    }

    .svp-faq-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .svp-faq-aside {
        position: static;
    }

    /* Guarantee */
    .svp-guarantee {
        padding: 50px 0;
    }

    .svp-guarantee-grid {
        grid-template-columns: 1fr;
    }

    .svp-guarantee-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .svp-guarantee-item:first-child {
        border-top: none;
    }

    .svp-guarantee-item:nth-child(4) {
        border-left: none;
    }

    .svp-guarantee-item:nth-child(odd) {
        border-left: none;
    }

    .svp-section-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .svp-stat-number {
        font-size: 1.9rem;
    }

    .svp-stat {
        width: 50%;
    }

    .svp-card-body {
        padding: 1.25rem 1.25rem 0.875rem;
    }

    .svp-card-footer {
        padding: 0.875rem 1.25rem 1.25rem;
    }
}
