/* =========================================================
   BLACK SHINE DETAILING — SERVICES PAGES
========================================================= */

.page-hero,
.service-single-hero {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(180deg, #050505, #0b0b0b);
    overflow: hidden;
}

.page-hero h1,
.service-single-hero h1 {
    max-width: 900px;
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: .95;
    letter-spacing: -.06em;
    margin-top: 20px;
}

.page-hero-text,
.service-single-hero p {
    max-width: 820px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.page-hero-glow {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: rgba(245,185,66,.12);
    filter: blur(120px);
    pointer-events: none;
}

/* SERVICES INDEX */

.services-page-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0b0b, #050505);
}

.services-premium-grid {
    display: grid;
    gap: 34px;
}

.service-premium-card {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    min-height: 420px;
    border-radius: 42px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 35px 120px rgba(0,0,0,.48);
}

.service-premium-card:nth-child(even) {
    grid-template-columns: 1.05fr .95fr;
}

.service-premium-card:nth-child(even) .service-premium-image {
    order: 2;
}

.service-premium-image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.service-premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.service-premium-card:hover .service-premium-image img {
    transform: scale(1.08);
}

.service-premium-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.15), rgba(0,0,0,.7));
}

.service-premium-card:nth-child(even) .service-premium-image::after {
    background: linear-gradient(270deg, rgba(0,0,0,.15), rgba(0,0,0,.7));
}

.service-premium-content {
    padding: clamp(34px, 5vw, 68px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-number {
    display: inline-flex;
    margin-bottom: 34px;
    color: var(--gold);
    font-weight: 900;
    letter-spacing: .08em;
}

.service-premium-content h2 {
    margin-bottom: 22px;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: .98;
    letter-spacing: -.05em;
}

.service-premium-content p {
    max-width: 560px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.service-meta-row span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(245,185,66,.10);
    border: 1px solid rgba(245,185,66,.18);
    color: var(--gold);
    font-weight: 700;
    font-size: .9rem;
}

.service-link {
    display: inline-flex;
    margin-top: 28px;
    color: var(--gold);
    font-weight: 800;
}

.empty-state {
    padding: 50px;
    border-radius: 32px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--muted);
}

/* SERVICE DETAIL */

.premium-service-hero {
    padding: 160px 0 110px;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(40px, 7vw, 90px);
    align-items: center;
}

.service-hero-copy h1 {
    max-width: 760px;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .92;
    letter-spacing: -.07em;
}

.service-hero-copy p {
    max-width: 660px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
}

.service-hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 42px;
}

.service-hero-image {
    position: relative;
    min-height: 560px;
    border-radius: 44px;
    overflow: hidden;
    transform: rotate(1.5deg);
    box-shadow: 0 40px 140px rgba(0,0,0,.65);
    border: 1px solid rgba(255,255,255,.10);
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(245,185,66,.20), transparent 34%),
        linear-gradient(180deg, transparent, rgba(0,0,0,.48));
}

.service-single-content,
.premium-service-content {
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0b0b, #050505);
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
}

.content-card {
    padding: clamp(34px, 5vw, 62px);
    border-radius: 38px;
    background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 35px 120px rgba(0,0,0,.38);
}

.service-text {
    color: rgba(255,255,255,.78);
    font-size: 1.08rem;
    line-height: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 34px;
}

.benefit-card {
    padding: 32px;
    min-height: 240px;
    border-radius: 30px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.08);
}

.benefit-card span {
    display: inline-flex;
    margin-bottom: 44px;
    color: var(--gold);
    font-weight: 900;
}

.benefit-card h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
}

.benefit-card p {
    color: var(--muted);
    line-height: 1.7;
}

.service-gallery-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.service-gallery-preview div {
    min-height: 260px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255,255,255,.08);
}

.service-gallery-preview div:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1603386329225-868f9b1ee6c9?q=80&w=1000&auto=format&fit=crop');
}

.service-gallery-preview div:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1000&auto=format&fit=crop');
}

.service-gallery-preview div:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=1000&auto=format&fit=crop');
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sticky-service-box {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sidebar-card {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.08);
}

.sidebar-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 1.8rem;
}

.sidebar-card span {
    color: var(--muted);
}

.sidebar-cta h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.sidebar-cta p {
    margin-bottom: 24px;
    color: var(--muted);
    line-height: 1.7;
}

.service-final-cta {
    padding: 80px 0 140px;
    background: linear-gradient(180deg, #050505, #000);
}

/* RESPONSIVE */

@media (max-width: 980px) {
    .service-premium-card,
    .service-premium-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-premium-card:nth-child(even) .service-premium-image {
        order: 0;
    }

    .service-hero-grid,
    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-hero-image {
        min-height: 420px;
        transform: none;
    }

    .sticky-service-box {
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px) {
    .page-hero,
    .service-single-hero {
        padding: 130px 0 80px;
    }

    .page-hero h1,
    .service-single-hero h1,
    .service-hero-copy h1 {
        font-size: clamp(2.6rem, 14vw, 4.4rem);
    }

    .service-premium-card {
        border-radius: 28px;
    }

    .service-premium-image {
        min-height: 280px;
    }

    .service-premium-content {
        padding: 28px;
    }

    .service-hero-actions {
        flex-direction: column;
    }

    .service-hero-image {
        min-height: 320px;
        border-radius: 28px;
    }

    .benefits-grid,
    .service-gallery-preview {
        grid-template-columns: 1fr;
    }

    .service-gallery-preview div {
        min-height: 220px;
    }
}