/* ===========================
   SERVICES.CSS — Shared styles for all service detail pages
   =========================== */

/* PAGE HERO */
.page-hero {
    position: relative; min-height: 460px; display: flex; align-items: center;
    overflow: hidden; background: #0a0a0a;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.4); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(10,10,10,.8) 0%, rgba(10,10,10,.4) 100%); }
.page-hero-content { position: relative; z-index: 2; padding-top: calc(68px + 48px); padding-bottom: 56px; }
.page-hero-content h1 { color: #fff; max-width: 640px; margin-bottom: 16px; }
.page-hero-content > p { font-size: 1.05rem; color: rgba(255,255,255,.68); max-width: 560px; line-height: 1.7; margin-bottom: 36px; }

/* BREADCRUMB */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: #74c69d; }
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb span { color: rgba(255,255,255,.9); }

/* HERO STATS */
.hero-stats { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.hs-item { display: flex; flex-direction: column; padding-right: 32px; }
.hs-num { font-size: 1.4rem; font-weight: 800; color: #74c69d; line-height: 1; }
.hs-label { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: 3px; }
.hs-divider { width: 1px; height: 36px; background: rgba(255,255,255,.15); margin-right: 32px; }

/* SERVICE SECTION */
.sv-section { padding: 80px 0; }
.sv-section-gray { background: #f5f5f5; }
.sv-section-dark { background: #0d2818; }

/* SECTION HEADER */
.sv-header { margin-bottom: 52px; }
.sv-header h2 { margin-bottom: 8px; }
.sv-header p { color: #888; font-size: .98rem; max-width: 560px; line-height: 1.7; }

/* FEATURES GRID - icon cards */
.sv-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sv-feature-card {
    background: #fff; border: 1px solid #e8e8e8; border-radius: 20px;
    padding: 28px; transition: transform .3s, box-shadow .3s;
}
.sv-feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.12); border-color: transparent; }
.sv-feature-icon { width: 48px; height: 48px; border-radius: 12px; background: #f0faf2; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.sv-feature-icon svg { width: 22px; height: 22px; color: #2d6a4f; }
.sv-feature-card h4 { margin-bottom: 8px; }
.sv-feature-card p { font-size: .88rem; color: #888; line-height: 1.65; }

/* PROCESS STEPS */
.sv-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.sv-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: #e8e8e8; z-index: 0; }
.sv-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.sv-step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: #fff; border: 2px solid #e8e8e8;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; font-size: 1.1rem; font-weight: 800;
    color: #2d6a4f; transition: all .3s;
}
.sv-step:hover .sv-step-num { background: #2d6a4f; color: #fff; border-color: #2d6a4f; }
.sv-step h4 { margin-bottom: 6px; font-size: .95rem; }
.sv-step p { font-size: .82rem; color: #888; line-height: 1.5; }

/* BRANDS GRID */
.sv-brands { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.sv-brand {
    background: #fff; border: 1.5px solid #e8e8e8; border-radius: 10px;
    padding: 10px 20px; font-size: .85rem; font-weight: 700; color: #444;
    transition: all .2s;
}
.sv-brand:hover { border-color: #52b788; color: #1f4a34; background: #f0faf2; }

/* HIGHLIGHT BAND */
.sv-highlight-band {
    background: #1f4a34; color: #fff; border-radius: 20px;
    padding: 40px 48px; display: flex; align-items: center;
    justify-content: space-between; gap: 32px; margin: 52px 0;
}
.sv-highlight-band h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.sv-highlight-band p { color: rgba(255,255,255,.65); font-size: .95rem; }

/* BENEFIT LIST */
.sv-benefit-list { display: flex; flex-direction: column; gap: 14px; }
.sv-benefit-item { display: flex; align-items: flex-start; gap: 14px; }
.sv-benefit-icon {
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
    background: #f0faf2; display: flex; align-items: center; justify-content: center;
}
.sv-benefit-icon svg { width: 15px; height: 15px; color: #2d6a4f; }
.sv-benefit-item h5 { font-size: .9rem; margin-bottom: 2px; color: #111; }
.sv-benefit-item p { font-size: .82rem; color: #888; line-height: 1.5; }

/* TWO COLUMN LAYOUT */
.sv-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sv-two-col-reverse { direction: rtl; }
.sv-two-col-reverse > * { direction: ltr; }
.sv-img-block { border-radius: 20px; overflow: hidden; }
.sv-img-block img { width: 100%; height: 380px; object-fit: cover; }

/* CATEGORY CARDS */
.sv-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sv-cat-card {
    border-radius: 16px; overflow: hidden; border: 1px solid #e8e8e8;
    background: #fff; transition: transform .3s, box-shadow .3s;
}
.sv-cat-card:hover { transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.12); border-color: transparent; }
.sv-cat-img { height: 180px; overflow: hidden; }
.sv-cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.sv-cat-card:hover .sv-cat-img img { transform: scale(1.06); }
.sv-cat-body { padding: 20px 22px; }
.sv-cat-body h4 { margin-bottom: 6px; }
.sv-cat-body p { font-size: .85rem; color: #888; line-height: 1.6; margin-bottom: 12px; }
.sv-cat-link { font-size: .85rem; font-weight: 600; color: #2d6a4f; }
.sv-cat-link:hover { color: #3a8a66; }

/* PAGE CTA */
.sv-cta { padding: 80px 0; background: #f5f5f5; }
.sv-cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.sv-cta-inner h2 { margin-bottom: 14px; }
.sv-cta-inner p { color: #888; font-size: 1rem; line-height: 1.7; margin-bottom: 36px; }
.sv-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 1024px) {
    .sv-features { grid-template-columns: 1fr 1fr; }
    .sv-steps { grid-template-columns: 1fr 1fr; }
    .sv-steps::before { display: none; }
    .sv-categories { grid-template-columns: 1fr 1fr; }
    .sv-two-col { grid-template-columns: 1fr; gap: 40px; }
    .sv-highlight-band { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .sv-features { grid-template-columns: 1fr; }
    .sv-steps { grid-template-columns: 1fr; }
    .sv-categories { grid-template-columns: 1fr; }
    .page-hero-content { padding-top: calc(68px + 32px); padding-bottom: 40px; }
    .hero-stats { gap: 16px; flex-direction: column; align-items: flex-start; }
    .hs-divider { display: none; }
    .sv-highlight-band { padding: 28px; }
    .sv-cta-btns { flex-direction: column; align-items: center; }
}
