/* ─── Page Header (shared via Base.css) ─────────── */

/* ─── Services Overview ──────────────────────────── */
.services-overview {
    padding: 4rem 0 3rem;
    background: var(--off-white);
}

.services-overview .overview-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.overview-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
    text-decoration: none;
    display: block;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.overview-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.overview-card:hover::after { transform: scaleX(1); }
.overview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255,77,0,0.12);
    border-color: rgba(255,77,0,0.1);
}

.overview-card .ov-icon {
    width: 60px; height: 60px;
    background: rgba(255,77,0,0.08);
    border: 1.5px solid rgba(255,77,0,0.15);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.1rem;
    font-size: 1.5rem;
    color: var(--orange);
    transition: all 0.35s ease;
}

.overview-card:hover .ov-icon { background: var(--gradient); border-color: transparent; color: white; }

.overview-card h3 { color: var(--dark); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.overview-card p { color: var(--text-muted); font-size: 0.82rem; line-height: 1.55; margin: 0; }

/* ─── Process Steps ──────────────────────────────── */
.process-steps { padding: 5rem 0; background: var(--dark-3); position: relative; overflow: hidden; }

.process-steps::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255,77,0,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.process-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative; z-index: 2;
}

.process-header .section-title { color: white; }
.process-header .section-subtitle { color: rgba(255,255,255,0.5); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative; z-index: 2;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px; left: 90px; right: 90px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,77,0,0.4), transparent);
    pointer-events: none;
}

.step {
    text-align: center;
    padding: 2.5rem 1.75rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    position: relative;
    transition: all 0.35s ease;
}

.step:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); border-color: rgba(255,77,0,0.3); }

.step-number {
    width: 52px; height: 52px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 6px 18px var(--orange-glow);
    position: relative; z-index: 2;
}

.step-icon {
    font-size: 1.6rem;
    color: var(--orange);
    margin-bottom: 1rem;
    display: block;
}

.step h4 { color: white; margin-bottom: 0.6rem; font-weight: 700; font-size: 1rem; }
.step p { color: rgba(255,255,255,0.45); line-height: 1.65; font-size: 0.88rem; }

/* ─── Services Detail ────────────────────────────── */
.services-detail { padding: 5rem 0 3rem; }

.service-section {
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.service-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-content.reverse { direction: rtl; }
.service-content.reverse .service-text,
.service-content.reverse .service-image { direction: ltr; }

/* Service Label */
.service-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,77,0,0.08);
    border: 1px solid rgba(255,77,0,0.2);
    color: var(--orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}

.service-text h2 {
    color: var(--dark);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.service-text p {
    font-size: 0.97rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Highlight Box */
.service-highlight {
    background: var(--off-white);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1.75rem;
    border-left: 4px solid var(--orange);
}

.service-highlight h4 {
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.9rem;
}

/* Category Blocks */
.service-categories { margin-bottom: 1.75rem; }

.category-block {
    background: var(--off-white);
    padding: 1.5rem 1.75rem;
    border-radius: 14px;
    margin-bottom: 1.25rem;
    border-left: 4px solid var(--orange);
}

.category-block:last-child { margin-bottom: 0; }

.category-block h4 {
    color: var(--dark);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.9rem;
}

.category-block p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* List items */
.service-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-text ul li {
    padding: 0.45rem 0 0.45rem 1.5rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.service-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px; height: 7px;
    background: var(--orange);
    border-radius: 50%;
}

/* Motto */
.service-motto {
    background: linear-gradient(135deg, rgba(255,77,0,0.07) 0%, rgba(255,0,102,0.04) 100%);
    border: 1px solid rgba(255,77,0,0.15);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.service-motto em {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.65;
    font-style: italic;
}

/* CTA Button */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient);
    color: white;
    padding: 13px 32px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 8px 24px var(--orange-glow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cta::after { content: ' →'; }
.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(255,77,0,0.45);
}

/* Image */
.service-image { position: relative; }

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    display: block;
    transition: transform 0.4s ease;
}

.service-image:hover img { transform: scale(1.02); }

.service-image::after {
    content: '';
    position: absolute;
    top: 16px; right: -16px;
    width: 100%; height: 100%;
    border: 2px solid rgba(255,77,0,0.2);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.4s ease;
}

.service-image:hover::after { top: 20px; right: -20px; }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
    .overview-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .service-content { gap: 3rem; }
    .service-image img { height: 340px; }
}

@media (max-width: 768px) {
    .overview-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .services-detail { padding: 3rem 0; }
    .service-section { margin-bottom: 4rem; padding-bottom: 4rem; }
    .service-content { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
    .service-content.reverse { direction: ltr; }
    .service-text { order: 2; }
    .service-image { order: 1; }
    .service-content.reverse .service-text { order: 2; }
    .service-content.reverse .service-image { order: 1; }
    .service-image img { height: 260px; }
    .service-image::after { display: none; }
    .service-text h2 { font-size: 1.7rem; }
    .process-steps { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
    .overview-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .overview-card { padding: 1.4rem 1rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .service-text h2 { font-size: 1.5rem; }
    .service-image img { height: 210px; }
}
