/* ═══════════════════════════════════════════════════
   ARTOHOLIX STUDIO — Services Page Styles
   Dark Mode · Gold Glassmorphism
   ═══════════════════════════════════════════════════ */

@import url('./style.css');

/* ─── PAGE HERO ─────────────────────────────────── */
.page-hero {
    min-height: 45vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: calc(var(--nav-h) + 3rem) 5% 4rem;
    text-align: center;
    position: relative;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    border-bottom: 1px solid var(--border);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto;
}

/* ─── SERVICE DETAIL ROWS ───────────────────────── */
.service-detail {
    padding: 7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.service-detail:nth-child(odd) {
    background: var(--bg);
}

.service-detail:nth-child(even) {
    background: var(--bg2);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse>* {
    direction: ltr;
}

.svc-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.svc-img-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.svc-img-wrap:hover img {
    transform: scale(1.04);
}

.svc-img-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.svc-detail-content {}

.svc-detail-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.svc-detail-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1.25rem;
}

.svc-detail-content .lead {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.svc-detail-content .body {
    color: var(--text-muted);
    font-size: 0.93rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 2.25rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.93rem;
    color: var(--text-muted);
}

.check-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(205, 127, 50, 0.15));
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ─── SERVICE CTA BANNER ────────────────────────── */
.svc-cta-banner {
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 5rem 5%;
    text-align: center;
}

.svc-cta-banner h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.svc-cta-banner p {
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.svc-cta-btns {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .svc-img-wrap img {
        height: 320px;
    }
}

@media (max-width: 600px) {
    .svc-img-wrap img {
        height: 240px;
    }
}