/* SERVICES HERO */
.srv-hero {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #690017 0%, #a0002a 60%, #690017 100%);
}
.srv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80') center/cover no-repeat;
    opacity: 0.12;
}
.srv-hero .container { position: relative; z-index: 2; }
.srv-hero-content { max-width: 700px; }
.srv-hero-content .label { color: #D4AF37; margin-bottom: 12px; display: inline-block; }
.srv-hero-content h1 { font-size: 44px; font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.srv-hero-content p { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.75; max-width: 600px; }

/* BREADCRUMB */
.srv-breadcrumb { background: #fff; border-bottom: 1px solid #E2E8F0; padding: 12px 0; }
.srv-breadcrumb .container { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #64748B; }
.srv-breadcrumb a { color: #690017; text-decoration: none; font-weight: 500; }
.srv-breadcrumb a:hover { text-decoration: underline; }
.srv-breadcrumb i { font-size: 10px; color: #94A3B8; }

/* SERVICE CARDS NAV */
.srv-cards-nav { padding: 60px 0; background: #F5F6F8; }
.srv-cards-nav .sec-top { margin-bottom: 32px; }
.srv-cards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.srv-nav-card { display: flex; flex-direction: column; background: #fff; border: 1px solid #E2E8F0; border-radius: 12px; padding: 24px 20px; text-decoration: none; transition: 0.3s; }
.srv-nav-card:hover, .srv-nav-card.active { border-color: #690017; box-shadow: 0 8px 24px rgba(105,0,23,0.1); transform: translateY(-3px); }
.srv-nav-card i { font-size: 26px; color: #690017; margin-bottom: 12px; }
.srv-nav-card h3 { font-size: 14px; font-weight: 700; color: #690017; margin-bottom: 6px; line-height: 1.3; }
.srv-nav-card p { font-size: 12px; color: #64748B; margin-bottom: 12px; line-height: 1.5; flex: 1; }
.srv-nav-card span { font-size: 12px; font-weight: 600; color: #690017; }

/* STICKY NAV */
.srv-sticky-nav { display: none !important; }

/* SERVICE DETAIL SECTION */
.srv-section { padding: 70px 0; }
.srv-section.white { background: #fff; }
.srv-section.grey { background: #F5F6F8; }
.srv-grid { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.srv-grid.reverse { grid-template-columns: 420px 1fr; }
.srv-grid.reverse .srv-text { order: 2; }
.srv-grid.reverse .srv-img { order: 1; }

.srv-text .label { margin-bottom: 10px; }
.srv-text h2 { font-size: 28px; font-weight: 800; color: #690017; margin-bottom: 20px; line-height: 1.3; }
.srv-text p { font-size: 14px; color: #475569; line-height: 1.8; margin-bottom: 16px; }
.srv-text p:last-of-type { margin-bottom: 24px; }

.srv-includes { background: #F5F6F8; border-left: 3px solid #690017; border-radius: 0 10px 10px 0; padding: 20px 24px; margin-bottom: 28px; }
.srv-includes h4 { font-size: 13px; font-weight: 700; color: #690017; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.srv-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.srv-tags span { background: #fff; border: 1px solid #E2E8F0; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 500; color: #334155; transition: 0.2s; }
.srv-tags span:hover { border-color: #690017; color: #690017; }

.srv-img { position: sticky; top: 90px; }
.srv-img img { width: 100%; border-radius: 16px; box-shadow: 0 16px 48px rgba(0,0,0,0.1); display: block; }
.srv-img-caption { margin-top: 16px; background: linear-gradient(135deg, #690017, #a0002a); border-radius: 10px; padding: 16px 20px; color: #fff; }
.srv-img-caption strong { font-size: 15px; display: block; margin-bottom: 4px; }
.srv-img-caption span { font-size: 12px; opacity: 0.8; }

/* ACTIVE LINK */
.active-link { color: #690017 !important; background: #F5F6F8; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .srv-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .srv-grid, .srv-grid.reverse { grid-template-columns: 1fr; gap: 36px; }
    .srv-grid.reverse .srv-text { order: 1; }
    .srv-grid.reverse .srv-img { order: 2; }
    .srv-img { position: static; }
    .srv-hero-content h1 { font-size: 36px; }
}
@media (max-width: 768px) {
    .srv-cards-grid { grid-template-columns: 1fr 1fr; }
    .srv-hero { padding: 60px 0 50px; }
    .srv-hero-content h1 { font-size: 28px; }
    .srv-section { padding: 48px 0; }
    .srv-text h2 { font-size: 22px; }
    .srv-grid { gap: 28px; }
}
