/* =========================
   Services Page Styles
   ========================= */

.page-hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), var(--bg-image) center/cover no-repeat;
    background-attachment: fixed;
    padding: 120px 0 60px;
    color: white;
    text-align: center;
    border-radius: 28px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.page-hero-content {
    z-index: 2;
    position: relative;
}

.page-hero .eyebrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    margin: 0 0 20px;
}

.page-hero .sub {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.hero-band {
    height: 200px;
    margin-bottom: 60px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-band.bg-img-2 {
    background: var(--bg-image) center/cover;
}

.hero-band-text {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.hero-band-text h2 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 32px;
}

.services {
    max-width: 1400px;
    margin: 0 auto;
}

.content-grid-staggered {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-intro {
    margin-bottom: 60px;
    gap: 40px;
}

.service-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
}

.service-card-premium {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-premium h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 0 0 8px;
}

.service-card-premium p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.text-block h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--ink);
}

.text-block p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Animations */
.animate-enter {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Media Queries */
@media (max-width: 980px) {
    .content-grid-staggered {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .page-hero {
        padding: 100px 20px 60px;
        min-height: auto;
        /* Allow growth */
    }

    .page-hero h1 {
        font-size: 36px;
        /* Better size */
        line-height: 1.1;
    }

    .service-grid-premium {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .content-grid-staggered {
        gap: 48px;
        /* Better rhythm */
    }

    .text-block h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    /* Fix Hero Band */
    .hero-band {
        height: auto;
        /* Remove fixed height */
        min-height: 200px;
        /* Ensure visual weight */
        padding: 60px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-band-text {
        padding: 24px 32px;
        width: 100%;
        max-width: 400px;
    }

    /* Card Polish */
    .service-card-premium {
        padding: 24px;
        /* Mobile suitable padding */
        border-radius: 20px;
    }
}