/* Single service page styles
   Generated: moved from inline <style> blocks. */


/* ---- from single-service.php ---- */
/* Service Page Design System */
:root {
    --svc-cream: #f5f1eb;
    --svc-forest: #0a5c18;
    --svc-forest-light: #e8f0e4;
    --svc-amber: #c47834;
    --svc-charcoal: #1a1a1a;
    --svc-sage: #d4e4cc;
    --svc-white: #ffffff;
    --svc-radius: 16px;
    --svc-radius-sm: 10px;
    --svc-shadow: 0 2px 20px rgba(10, 92, 24, 0.08);
    --svc-shadow-lg: 0 8px 40px rgba(10, 92, 24, 0.12);
}

/* Hero Section */
.svc-hero {
    background: linear-gradient(165deg, #0f1a0f 0%, #1a2e1a 40%, #0d200d 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.svc-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196, 120, 52, 0.15), transparent 70%);
    pointer-events: none;
}

.svc-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
    pointer-events: none;
}

.svc-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .svc-hero-inner {
        grid-template-columns: 1fr 1fr;
        padding: 0 3rem;
    }
}

.svc-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.svc-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.svc-hero-breadcrumb a:hover {
    color: var(--svc-amber);
}

.svc-hero-breadcrumb .current {
    color: var(--svc-amber);
    font-weight: 600;
}

.svc-hero-title {
    font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.svc-hero-title .accent {
    color: var(--svc-amber);
    display: block;
}

.svc-hero-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.svc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.svc-hero-visual {
    display: none;
    position: relative;
}

@media (min-width: 1024px) {
    .svc-hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.svc-hero-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Trust Metrics */
.svc-trust-metrics {
    background: var(--svc-white);
    border-bottom: 1px solid rgba(10, 92, 24, 0.1);
    padding: 2.5rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    margin-top: -40px;
    border-radius: var(--svc-radius);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}
.svc-trust-metrics-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    padding: 0 1.5rem;
}
.svc-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.svc-trust-value {
    font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--svc-amber);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.svc-trust-label {
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--svc-charcoal);
    text-transform: uppercase;
}

/* Sections */
.svc-section { padding: 5rem 0; }
.svc-section-alt { background: var(--svc-forest-light); }
.svc-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .svc-container { padding: 0 3rem; } }

/* Section Headers */
.svc-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.svc-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--svc-forest);
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.svc-section-title {
    font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--svc-charcoal);
    margin-bottom: 1rem;
}
.svc-section-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 1.125rem;
    color: #5a6b57;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Objection Handling */
.svc-objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.svc-objection-card {
    background: var(--svc-white);
    padding: 2rem;
    border-radius: var(--svc-radius);
    border-left: 4px solid var(--svc-amber);
    box-shadow: var(--svc-shadow);
    transition: transform 0.3s ease;
}
.svc-objection-card:hover { transform: translateY(-4px); box-shadow: var(--svc-shadow-lg); }
.svc-objection-card .material-symbols-outlined { color: var(--svc-amber); font-size: 2rem; margin-bottom: 1rem; }
.svc-objection-title { font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif; font-weight: 700; font-size: 1.125rem; color: var(--svc-charcoal); margin-bottom: 0.75rem; }
.svc-objection-desc { font-family: 'Cairo', sans-serif; color: #5a6b57; line-height: 1.6; font-size: 0.9375rem; }

/* Real Photos Section */
.svc-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.svc-photo-card {
    border-radius: var(--svc-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--svc-shadow);
}
.svc-photo-img {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, var(--svc-forest), #1a7a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 4rem;
}
.svc-photo-img img { width: 100%; height: 100%; object-fit: cover; }
.svc-photo-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Service Coverage */
.svc-coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.svc-coverage-item {
    background: var(--svc-white);
    border: 2px solid rgba(10, 92, 24, 0.1);
    padding: 1rem 2rem;
    border-radius: 40px;
    font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--svc-charcoal);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}
.svc-coverage-item:hover {
    border-color: var(--svc-forest);
    background: var(--svc-forest-light);
    transform: translateY(-2px);
}
.svc-coverage-item .material-symbols-outlined { color: var(--svc-forest); font-size: 1.5rem; }

/* Process Section */
.svc-process-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.svc-process-line {
    position: absolute; top: 0; left: 32px; width: 2px; height: 100%;
    background: linear-gradient(to bottom, var(--svc-forest), var(--svc-amber));
}
@media (min-width: 768px) { .svc-process-line { left: 50%; transform: translateX(-50%); } }
.svc-process-step { display: flex; gap: 2rem; margin-bottom: 3rem; position: relative; }
@media (min-width: 768px) {
    .svc-process-step { flex-direction: row; align-items: center; }
    .svc-process-step:nth-child(even) { flex-direction: row-reverse; }
}
.svc-process-number {
    width: 64px; height: 64px; background: var(--svc-forest); color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif; font-size: 1.5rem; font-weight: 800;
    flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 4px 15px rgba(10, 92, 24, 0.3);
}
.svc-process-card {
    background: var(--svc-white); padding: 1.5rem; border-radius: var(--svc-radius);
    border: 1px solid rgba(10, 92, 24, 0.1); flex: 1; box-shadow: var(--svc-shadow);
}
.svc-process-title { font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif; font-weight: 700; color: var(--svc-charcoal); margin-bottom: 0.5rem; }
.svc-process-desc { font-family: 'Cairo', sans-serif; font-size: 0.9375rem; color: #5a6b57; line-height: 1.7; }

/* Why Us Section */
.svc-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; text-align: center; }
.svc-why-item { display: flex; flex-direction: column; align-items: center; }
.svc-why-icon {
    width: 80px; height: 80px; border: 2px solid var(--svc-forest); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: all 0.3s ease;
}
.svc-why-item:hover .svc-why-icon { background: var(--svc-forest); color: white; }
.svc-why-icon .material-symbols-outlined { font-size: 2.5rem; color: var(--svc-forest); transition: color 0.3s ease; }
.svc-why-item:hover .svc-why-icon .material-symbols-outlined { color: white; }
.svc-why-title { font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--svc-charcoal); margin-bottom: 0.5rem; }
.svc-why-desc { font-family: 'Cairo', sans-serif; font-size: 0.9375rem; color: #5a6b57; line-height: 1.6; }

/* FAQ Section */
.svc-faq-list { max-width: 800px; margin: 0 auto; }
.svc-faq-item { background: var(--svc-white); border-radius: var(--svc-radius); border: 1px solid rgba(10, 92, 24, 0.1); margin-bottom: 1rem; overflow: hidden; transition: all 0.3s ease; }
.svc-faq-item:hover { border-color: var(--svc-forest); }
.svc-faq-item[open] { box-shadow: var(--svc-shadow); }
.svc-faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 1.5rem; cursor: pointer; font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif; font-weight: 700; color: var(--svc-charcoal); list-style: none; transition: color 0.2s; }
.svc-faq-question::-webkit-details-marker { display: none; }
.svc-faq-question:hover { color: var(--svc-forest); }
.svc-faq-arrow { transition: transform 0.3s ease; color: var(--svc-forest); }
.svc-faq-item[open] .svc-faq-arrow { transform: rotate(180deg); }
.svc-faq-answer { padding: 0 1.5rem 1.25rem; font-family: 'Cairo', sans-serif; color: #5a6b57; line-height: 1.8; }

/* Buttons & CTA */
.svc-cta-banner {
    background: var(--svc-forest-light); border-radius: var(--svc-radius); padding: 2rem;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; margin: 3rem 0;
    border: 1px solid rgba(10, 92, 24, 0.1);
}
.svc-cta-banner-text h3 { font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif; color: var(--svc-charcoal); margin-bottom: 0.5rem; }

.svc-final-cta {
    background: linear-gradient(135deg, rgba(10, 92, 24, 0.95), rgba(15, 26, 15, 0.98));
    border-radius: var(--svc-radius); padding: 4rem 3rem; display: flex; flex-direction: column; gap: 2.5rem; align-items: center; text-align: center; position: relative; overflow: hidden;
}
.svc-final-cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(196, 120, 52, 0.15), transparent 70%); pointer-events: none; }
@media (min-width: 1024px) { .svc-final-cta { flex-direction: row; text-align: right; justify-content: space-between; } }
.svc-final-cta-content { position: relative; z-index: 1; flex: 1; }
.svc-final-cta-title { font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif; font-size: 2rem; font-weight: 800; color: white; margin-bottom: 1.5rem; }
.svc-final-cta-list { list-style: none; padding: 0; margin: 0 0 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.svc-final-cta-list li { display: flex; align-items: center; gap: 0.75rem; color: rgba(255, 255, 255, 0.9); font-family: 'Cairo', sans-serif; font-size: 1.125rem; font-weight: 600; }
.svc-final-cta-list .material-symbols-outlined { color: var(--svc-amber); font-weight: bold; }
.svc-final-cta-actions { display: flex; flex-direction: column; gap: 1rem; position: relative; z-index: 1; min-width: 300px; }

.svc-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem 2rem; border-radius: var(--svc-radius-sm); font-family: 'Cairo', sans-serif; font-weight: 800; font-size: 1.125rem; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; }
.svc-btn-primary { background: var(--svc-forest); color: white; }
.svc-btn-primary:hover { background: #084a14; box-shadow: 0 4px 15px rgba(10, 92, 24, 0.3); transform: translateY(-2px); }
.svc-btn-whatsapp { background: #25d366; color: white; }
.svc-btn-whatsapp:hover { background: #1da851; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); transform: translateY(-2px); }
.svc-btn-outline { background: transparent; color: white; border: 2px solid rgba(255, 255, 255, 0.3); }
.svc-btn-outline:hover { border-color: white; background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }
/* Call action on light surfaces (mid-page CTA banner) */
.svc-btn-call { background: transparent; color: var(--svc-forest, #0a5c18); border: 2px solid rgba(10, 92, 24, 0.28); }
.svc-btn-call:hover { background: var(--svc-forest, #0a5c18); color: #fff; border-color: var(--svc-forest, #0a5c18); transform: translateY(-2px); }
.svc-cta-banner-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* Other Components */
.svc-prose { font-family: 'Cairo', sans-serif; font-size: 1.125rem; line-height: 1.9; color: #3d4a3a; max-width: 800px; margin: 0 auto 3rem; }
.svc-prose h2, .svc-prose h3 { font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif; color: var(--svc-charcoal); margin-top: 2.5rem; margin-bottom: 1rem; }
.svc-prose p { margin-bottom: 1.25rem; }
.svc-safety-box { background: white; border: 2px solid var(--svc-forest); border-radius: var(--svc-radius); padding: 2rem; display: flex; align-items: flex-start; gap: 1.5rem; }
.svc-safety-icon { font-size: 3rem; color: var(--svc-forest); }

/* ════════════════════════════════════════════════════════════
   Internal-linking blocks (Related Services + Service Areas)
   Token-based, matches the site's green/radius system. Link-only.
   ════════════════════════════════════════════════════════════ */
.svc-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.svc-related-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(10, 92, 24, 0.12);
    border-radius: var(--radius-lg, 12px);
    color: var(--text-primary, #1a1f1a);
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-related-link:hover {
    border-color: var(--primary, #0a5c18);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card-hover, 0 12px 36px rgba(0, 0, 0, 0.1));
}
.svc-related-link .material-symbols-outlined {
    color: var(--primary, #0a5c18);
}

.svc-areas {
    margin-top: 2.5rem;
    text-align: center;
}
.svc-areas-title {
    font-family: 'Noto Kufi Arabic', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary, #1a1f1a);
    margin-bottom: 1.25rem;
}
.svc-areas-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}
.svc-area-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(10, 92, 24, 0.15);
    border-radius: var(--radius-pill, 999px);
    color: var(--primary, #0a5c18);
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.svc-area-link .material-symbols-outlined {
    font-size: 1.1rem;
}
.svc-area-link:hover {
    background: var(--primary, #0a5c18);
    color: #fff;
}

/* ════════════════════════════════════════════════════════════
   UI ENHANCEMENT LAYER — Polish pass
   ════════════════════════════════════════════════════════════ */

/* Hero: subtle dot-grid texture on the dark gradient */
.svc-hero {
    background:
        radial-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
        linear-gradient(165deg, #0f1a0f 0%, #1a2e1a 40%, #0d200d 100%);
    background-size: 22px 22px, auto;
}

/* ── Hero Guarantee Panel (right column, desktop only) ────────── */
.svc-hero-visual {
    display: none;
}
@media (min-width: 1024px) {
    .svc-hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.svc-hero-panel {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    padding: 2rem 2.25rem;
    max-width: 380px;
    width: 100%;
    animation: svcPanelIn 0.7s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes svcPanelIn {
    from { opacity: 0; transform: translateY(18px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

@media (prefers-reduced-motion: reduce) {
    .svc-hero-panel { animation: none; }
}

.svc-hero-panel-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-hero-panel-icon-main {
    font-size: 2.25rem;
    color: var(--svc-amber);
}

.svc-hero-panel-title {
    font-family: 'Noto Kufi Arabic', 'Cairo', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.svc-hero-panel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.svc-hero-panel-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.4;
}

.svc-hero-panel-list li .material-symbols-outlined {
    color: var(--svc-amber);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.svc-hero-panel-list li strong {
    color: #ffffff;
    font-weight: 700;
}

.svc-hero-panel-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(196, 120, 52, 0.18);
    border: 1px solid rgba(196, 120, 52, 0.32);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-family: 'Cairo', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--svc-amber);
    width: 100%;
    justify-content: center;
}

.svc-hero-panel-footer .material-symbols-outlined {
    font-size: 1.1rem;
}

/* ── Trust Metrics: card treatment + better spacing ──────────── */
.svc-trust-metrics {
    border: 1px solid rgba(10, 92, 24, 0.07);
}

.svc-trust-item {
    background: rgba(10, 92, 24, 0.03);
    border: 1px solid rgba(10, 92, 24, 0.07);
    border-radius: 14px;
    padding: 1rem 1.5rem;
    min-width: 120px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.svc-trust-item:hover {
    background: rgba(10, 92, 24, 0.06);
    border-color: rgba(10, 92, 24, 0.14);
}

.svc-trust-value {
    font-size: clamp(2rem, 4vw, 3rem); /* slightly tighter */
}

/* ── Section eyebrow labels ──────────────────────────────────── */
.svc-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(10, 92, 24, 0.08);
    color: var(--svc-forest);
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.8125rem;
    padding: 0.35rem 0.875rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 0.04em;
}

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

/* ── Why-Us cards: add background + shadow ───────────────────── */
/* polish.css already gives border-radius:20px + height:100% */
.svc-why-item {
    background: var(--svc-white);
    border: 1px solid rgba(10, 92, 24, 0.07);
    box-shadow: 0 4px 24px rgba(10, 92, 24, 0.05);
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-why-item:hover {
    transform: translateY(-6px) !important; /* override polish.css hover */
    box-shadow: 0 16px 48px rgba(10, 92, 24, 0.11);
}

/* Filled icon background on hover */
.svc-why-icon {
    background: rgba(10, 92, 24, 0.05);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.svc-why-item:hover .svc-why-icon {
    background: var(--svc-forest);
    border-color: var(--svc-forest);
    transform: scale(1.08);
}

/* ── Objection cards: RTL accent border + icon circle ────────── */
.svc-objection-card {
    border-left: none;
    border-right: 4px solid var(--svc-amber); /* RTL: accent on start edge */
    position: relative;
}

.svc-objection-card .material-symbols-outlined {
    background: rgba(196, 120, 52, 0.1);
    border-radius: 50%;
    padding: 0.5rem;
    display: inline-flex;
}

/* ── FAQ: richer open state ──────────────────────────────────── */
.svc-faq-item[open] {
    border-color: rgba(10, 92, 24, 0.25);
    box-shadow: 0 4px 24px rgba(10, 92, 24, 0.08);
}

.svc-faq-item[open] .svc-faq-question {
    color: var(--svc-forest);
    border-bottom: 1px solid rgba(10, 92, 24, 0.08);
}

.svc-faq-answer {
    padding-top: 1rem;
}

/* ── Section alt: subtle top separator line ──────────────────── */
.svc-section-alt {
    border-top: 1px solid rgba(10, 92, 24, 0.07);
    border-bottom: 1px solid rgba(10, 92, 24, 0.07);
}

/* ── CTA Banner: elevated treatment ─────────────────────────── */
.svc-cta-banner {
    background: linear-gradient(135deg, rgba(10,92,24,0.06) 0%, rgba(10,92,24,0.03) 100%);
    border: 1px solid rgba(10, 92, 24, 0.14);
    box-shadow: 0 4px 24px rgba(10, 92, 24, 0.06);
}

/* ── Final CTA: pulsing WhatsApp button ─────────────────────── */
.svc-final-cta .svc-btn-whatsapp {
    animation: svcWaPulse 3s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
}

@keyframes svcWaPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.25), 0 0 0 0 rgba(37,211,102,0.3); }
    50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 10px rgba(37,211,102,0); }
}

@media (prefers-reduced-motion: reduce) {
    .svc-final-cta .svc-btn-whatsapp { animation: none; }
}

/* Final CTA: subtle pattern overlay */
.svc-final-cta {
    background:
        radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(135deg, rgba(10,92,24,0.95), rgba(15,26,15,0.98));
    background-size: 20px 20px, auto;
}

/* ── Coverage items: green icon on hover ─────────────────────── */
.svc-coverage-item:hover .material-symbols-outlined {
    color: var(--svc-amber);
}

/* ── Section gap rhythm consistency ─────────────────────────── */
.svc-why-grid {
    gap: 1.5rem;
}

.svc-section-header {
    margin-bottom: 3rem;
}

/* ════════════════════════════════════════════════════════════
   CONTENT TYPOGRAPHY — svc-prose rich article styling
   Targets the long-form SEO content block (the_content())
   ════════════════════════════════════════════════════════════ */

/* H2 — major section break with green right-border (RTL start) */
.svc-prose h2 {
    font-size: clamp(1.375rem, 2.5vw, 1.875rem);
    font-weight: 800;
    color: var(--svc-charcoal);
    line-height: 1.35;
    margin: 3rem 0 1.125rem;
    padding: 0.625rem 1.25rem 0.625rem 0;
    border-right: 4px solid var(--svc-forest);
    position: relative;
}

.svc-prose h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(to left, rgba(10, 92, 24, 0.14), transparent 70%);
}

/* H3 — sub-heading with amber dot */
.svc-prose h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--svc-forest);
    margin: 2rem 0 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.svc-prose h3::before {
    content: '';
    display: inline-block;
    width: 9px;
    height: 9px;
    min-width: 9px;
    background: var(--svc-amber);
    border-radius: 50%;
}

/* Paragraphs */
.svc-prose p {
    font-size: 1.0625rem;
    color: #3d4a3a;
    line-height: 1.9;
    margin-bottom: 1.375rem;
}

/* Bold keywords — forest green highlight */
.svc-prose strong {
    color: var(--svc-forest);
    font-weight: 700;
}

/* Lists — card-style items with green checkmark */
.svc-prose ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.svc-prose ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.875rem 1.125rem;
    background: rgba(10, 92, 24, 0.035);
    border: 1px solid rgba(10, 92, 24, 0.07);
    border-radius: 12px;
    font-size: 1rem;
    color: #3d4a3a;
    line-height: 1.7;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.svc-prose ul li:hover {
    background: rgba(10, 92, 24, 0.065);
    border-color: rgba(10, 92, 24, 0.13);
}

/* Checkmark icon via CSS-drawn circle */
.svc-prose ul li::before {
    content: '';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--svc-forest);
    border-radius: 50%;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M8 13.4 4.6 10l-1.4 1.4L8 16.2l9-9-1.4-1.4z'/%3E%3C/svg%3E");
    background-size: 14px 14px;
    background-repeat: no-repeat;
    background-position: center;
}

/* ════════════════════════════════════════════════════════════
   WHY-US CARDS — animated top-bar reveal on hover
   ════════════════════════════════════════════════════════════ */

.svc-why-item {
    overflow: hidden;
    position: relative;
}

.svc-why-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to left, var(--svc-forest), var(--svc-amber));
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-why-item:hover::before {
    transform: scaleX(1);
}

/* ════════════════════════════════════════════════════════════
   SECTION HEADERS — centered accent line
   ════════════════════════════════════════════════════════════ */

.svc-section-header::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(to left, var(--svc-forest), var(--svc-amber));
    border-radius: 3px;
    margin: 1.25rem auto 0;
}

/* ════════════════════════════════════════════════════════════
   OBJECTION CARDS — gradient right-border via pseudo-element
   (replaces the flat border-right from the enhancement layer)
   ════════════════════════════════════════════════════════════ */

.svc-objection-card {
    border-right: none !important; /* remove flat border */
    overflow: hidden;
}

.svc-objection-card::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--svc-amber), rgba(196, 120, 52, 0.25));
    border-radius: 0 var(--svc-radius) var(--svc-radius) 0;
}

/* Icon wrapper — larger circle on hover */
.svc-objection-card:hover .material-symbols-outlined {
    background: rgba(196, 120, 52, 0.18);
    transform: scale(1.1);
    transition: background 0.25s ease, transform 0.25s ease;
}

/* ════════════════════════════════════════════════════════════
   TRUST METRICS — scale pop on hover + entrance animation
   ════════════════════════════════════════════════════════════ */

.svc-trust-value {
    display: block;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}

.svc-trust-item:hover .svc-trust-value {
    transform: scale(1.12);
    color: var(--svc-forest);
}

/* Counter-reveal: value starts dimmed, brightens when JS fires */
.svc-trust-value.is-counting {
    animation: svcCountPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes svcCountPop {
    0%   { transform: scale(0.85); opacity: 0.5; }
    100% { transform: scale(1);    opacity: 1;   }
}

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL — cards and sections enter from below
   ════════════════════════════════════════════════════════════ */

.svc-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity  0.55s ease,
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger siblings in a grid */
.svc-why-grid .svc-reveal:nth-child(2) { transition-delay: 0.08s; }
.svc-why-grid .svc-reveal:nth-child(3) { transition-delay: 0.16s; }
.svc-why-grid .svc-reveal:nth-child(4) { transition-delay: 0.24s; }

.svc-objections-grid .svc-reveal:nth-child(2) { transition-delay: 0.08s; }
.svc-objections-grid .svc-reveal:nth-child(3) { transition-delay: 0.16s; }
.svc-objections-grid .svc-reveal:nth-child(4) { transition-delay: 0.24s; }

/* ════════════════════════════════════════════════════════════
   COVERAGE ITEMS — gradient fill on hover
   ════════════════════════════════════════════════════════════ */

.svc-coverage-item {
    overflow: hidden;
    position: relative;
}

.svc-coverage-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 92, 24, 0.09), rgba(10, 92, 24, 0.03));
    opacity: 0;
    border-radius: inherit;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.svc-coverage-item:hover::after {
    opacity: 1;
}

/* ════════════════════════════════════════════════════════════
   RELATED SERVICES — richer link card
   ════════════════════════════════════════════════════════════ */

.svc-related-link {
    position: relative;
    overflow: hidden;
}

.svc-related-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 92, 24, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.svc-related-link:hover::after {
    opacity: 1;
}

/* ════════════════════════════════════════════════════════════
   SERVICE AREAS — pill hover filled cleanly
   ════════════════════════════════════════════════════════════ */

.svc-area-link {
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.svc-area-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 92, 24, 0.15);
}

/* ════════════════════════════════════════════════════════════
   PROCESS TIMELINE — number pulse on enter
   ════════════════════════════════════════════════════════════ */

.svc-process-number {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.svc-process-step:hover .svc-process-number {
    transform: scale(1.12);
    box-shadow: 0 8px 24px rgba(10, 92, 24, 0.35);
}

.svc-process-card {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.svc-process-step:hover .svc-process-card {
    border-color: rgba(10, 92, 24, 0.2);
    box-shadow: 0 8px 32px rgba(10, 92, 24, 0.08);
}

/* ════════════════════════════════════════════════════════════
   FAQ — smoother open/close with color transition
   ════════════════════════════════════════════════════════════ */

.svc-faq-item {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.svc-faq-item[open] > .svc-faq-question {
    background: rgba(10, 92, 24, 0.04);
    margin-bottom: 0;
}

.svc-faq-answer {
    animation: svcFaqOpen 0.3s ease forwards;
}

@keyframes svcFaqOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0);    }
}

@media (prefers-reduced-motion: reduce) {
    .svc-faq-answer { animation: none; }
    .svc-reveal { opacity: 1; transform: none; transition: none; }
    .svc-why-item::before { transition: none; }
}

/* ════════════════════════════════════════════════════════════
   HERO — tighter mobile padding
   ════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
    .svc-hero {
        padding: 4.5rem 0 3rem;
        min-height: auto;
    }
    .svc-trust-metrics {
        margin-top: -20px;
    }
    .svc-trust-metrics-inner {
        gap: 1rem;
    }
    .svc-trust-item {
        padding: 0.75rem 1rem;
        min-width: 100px;
    }
}
