body { padding-top: 0; }

/* =================== SERVICES HERO =================== */
.svc-hero {
    position: relative; min-height: 50vh;
    display: flex; align-items: center; justify-content: center;
    background-size: cover; background-position: center;
    text-align: center; color: white;
    padding: 120px 20px 60px;
}
.svc-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(74,25,66,0.88), rgba(183,110,121,0.7));
}
.svc-hero-content { position: relative; z-index: 2; max-width: 600px; }
.svc-hero-badge {
    display: inline-block; padding: 8px 24px;
    background: rgba(212,175,55,0.2); border: 1px solid rgba(212,175,55,0.4);
    border-radius: 30px; font-size: 13px; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    color: #D4AF37; margin-bottom: 20px;
}
.svc-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px); font-weight: 700;
    line-height: 1.2; margin-bottom: 14px;
}
.svc-hero p { font-size: 16px; opacity: 0.85; margin-bottom: 24px; }
.svc-hero-cta {
    display: inline-block; padding: 14px 36px;
    background: linear-gradient(135deg, #B76E79, #D4AF37);
    color: white; border-radius: 14px; font-weight: 600;
    text-decoration: none !important; transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(183,110,121,0.3);
}
.svc-hero-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(183,110,121,0.4); color: white; }

/* =================== CONTAINER =================== */
.svc-container { max-width: 1200px; padding: 60px 15px 40px; }

/* =================== CATEGORY =================== */
.svc-category { margin-bottom: 50px; }
.svc-category-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 28px; padding-bottom: 16px;
    border-bottom: 2px solid var(--primary-soft, #F8E8EE);
}
.svc-category-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, var(--primary, #B76E79), var(--dark, #4A1942));
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.svc-category-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 600;
    color: var(--dark, #4A1942); margin: 0; flex: 1;
}
.svc-category-count {
    padding: 4px 14px; border-radius: 20px;
    background: var(--primary-soft, #F8E8EE);
    color: var(--primary, #B76E79);
    font-size: 13px; font-weight: 600;
}

/* =================== SERVICE CARDS =================== */
.svc-card {
    background: white; border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(183,110,121,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex; flex-direction: column;
}
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(183,110,121,0.15);
    border-color: var(--primary-light, #D4979F);
}
.svc-card-media {
    height: 220px; overflow: hidden; position: relative;
}
.svc-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.svc-card:hover .svc-card-media img { transform: scale(1.08); }
.svc-card-empty {
    height: 220px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--primary-soft, #F8E8EE), #fff);
}
.svc-card-empty i { font-size: 48px; color: var(--primary-light, #D4979F); opacity: 0.5; }
.svc-card-photo-count {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.6); color: white;
    padding: 4px 10px; border-radius: 8px;
    font-size: 12px; font-weight: 600;
    backdrop-filter: blur(4px);
}
.svc-card-body {
    padding: 22px 20px; flex: 1;
    display: flex; flex-direction: column;
}
.svc-card-body h5 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 600;
    color: var(--dark, #4A1942); margin-bottom: 8px;
    transition: color 0.3s;
}
.svc-card:hover .svc-card-body h5 { color: var(--primary, #B76E79); }
.svc-card-desc {
    font-size: 13px; color: #8E8E8E; line-height: 1.6;
    margin-bottom: 16px; flex: 1;
}
.svc-card-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px; border-top: 1px solid rgba(183,110,121,0.1);
    margin-top: auto;
}
.svc-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700;
    color: var(--primary, #B76E79);
}
.svc-card-duration {
    font-size: 13px; color: #8E8E8E; font-weight: 500;
    background: var(--primary-soft, #F8E8EE);
    padding: 4px 12px; border-radius: 8px;
}

/* =================== EMPTY STATE =================== */
.svc-empty {
    text-align: center; padding: 80px 20px;
    background: white; border-radius: 20px;
    border: 1px solid rgba(183,110,121,0.08);
}
.svc-empty-icon { font-size: 64px; margin-bottom: 16px; }
.svc-empty h4 {
    font-family: 'Playfair Display', serif;
    color: var(--dark, #4A1942); margin-bottom: 8px;
}
.svc-empty p { color: #8E8E8E; }

/* =================== BOTTOM CTA =================== */
.svc-bottom-cta {
    text-align: center; padding: 60px 30px;
    background: linear-gradient(135deg, var(--primary-soft, #F8E8EE), #fff);
    border-radius: 24px; margin: 20px 0 40px;
    border: 1px solid rgba(183,110,121,0.1);
}
.svc-bottom-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px; color: var(--dark, #4A1942); margin-bottom: 10px;
}
.svc-bottom-cta p { color: #8E8E8E; font-size: 16px; margin-bottom: 28px; }
.svc-bottom-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.svc-btn-primary {
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--primary, #B76E79), var(--dark, #4A1942));
    color: white; border-radius: 14px; font-weight: 600;
    text-decoration: none !important; transition: all 0.3s;
    box-shadow: 0 4px 18px rgba(183,110,121,0.3);
}
.svc-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(183,110,121,0.4); color: white; }
.svc-btn-secondary {
    padding: 14px 36px;
    background: transparent; color: var(--primary, #B76E79);
    border: 2px solid var(--primary, #B76E79);
    border-radius: 14px; font-weight: 600;
    text-decoration: none !important; transition: all 0.3s;
}
.svc-btn-secondary:hover { background: var(--primary-soft, #F8E8EE); transform: translateY(-3px); color: var(--primary, #B76E79); }

/* =================== REVEAL ANIMATION =================== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =================== GALLERY MODAL =================== */
.gallery-modal-dialog { max-width: 90vw; }
.gallery-modal-content { background: #000; border: none; border-radius: 16px; overflow: hidden; }
.gallery-modal-body { min-height: 75vh; }
.gallery-close { top: 15px; right: 20px; z-index: 10; opacity: 1; font-size: 2rem; text-shadow: 0 0 10px rgba(0,0,0,0.8); }
.gallery-service-name { top: 15px; left: 20px; z-index: 10; font-weight: 600; text-shadow: 0 0 10px rgba(0,0,0,0.8); }
.gallery-container { width: 100%; height: 75vh; overflow: hidden; position: relative; }
.gallery-track { display: flex; height: 100%; transition: transform 0.3s ease; }
.gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    background: rgba(255,255,255,0.2); border: none; color: #fff;
    width: 44px; height: 44px; border-radius: 50%; font-size: 1.1rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px); transition: all 0.3s;
}
.gallery-nav:hover { background: rgba(255,255,255,0.4); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-slide { min-width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.gallery-slide img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-counter {
    bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 10;
    background: rgba(0,0,0,0.6); padding: 4px 14px; border-radius: 20px; font-size: 0.85rem;
}

/* =================== DARK MODE =================== */
.dark-theme .svc-card { background: #252540; border-color: #333355; }
.dark-theme .svc-card-body h5 { color: #E8E8E8; }
.dark-theme .svc-card:hover .svc-card-body h5 { color: var(--primary-light, #D4979F); }
.dark-theme .svc-card-desc { color: #aaa; }
.dark-theme .svc-card-footer { border-top-color: #333355; }
.dark-theme .svc-card-duration { background: #333355; color: #ccc; }
.dark-theme .svc-category-header { border-bottom-color: #333355; }
.dark-theme .svc-category-header h3 { color: #E8E8E8; }
.dark-theme .svc-category-count { background: #333355; color: var(--primary-light, #D4979F); }
.dark-theme .svc-empty { background: #252540; border-color: #333355; }
.dark-theme .svc-empty h4 { color: #E8E8E8; }
.dark-theme .svc-bottom-cta { background: linear-gradient(135deg, #1a1a2e, #252540); border-color: #333355; }
.dark-theme .svc-bottom-cta h3 { color: #E8E8E8; }
.dark-theme .svc-card-empty { background: linear-gradient(135deg, #333355, #252540); }

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
    .svc-hero { min-height: 40vh; padding: 100px 16px 40px; }
    .svc-hero h1 { font-size: 28px; }
    .svc-container { padding: 40px 15px 20px; }
    .svc-category-header { flex-wrap: wrap; gap: 10px; }
    .svc-category-header h3 { font-size: 20px; }
    .svc-bottom-cta { padding: 40px 20px; }
    .svc-bottom-cta h3 { font-size: 22px; }
    .svc-btn-primary, .svc-btn-secondary { width: 100%; max-width: 280px; text-align: center; }
}
