/* ===== Services Page Styles ===== */

/* --- Page container --- */
.services-page {
    display: block;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    direction: ltr;
    position: relative;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
}

/* --- Hero --- */
.services-hero {
    text-align: center;
    padding: 140px 40px 70px;
    background: linear-gradient(180deg, #0d0d0d 0%, #141420 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,167,110,0.06) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 50%, rgba(201,167,110,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.services-hero__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C9A76E;
    margin-bottom: 16px;
    position: relative;
}

.services-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: 8px;
    margin: 0 0 20px;
    position: relative;
    text-transform: uppercase;
}

.services-hero__subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    font-style: italic;
}

/* --- Services Card Grid --- */
.services-grid {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 80px 60px 90px;
    background: #0d0d0d;
}

.services-grid__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    box-sizing: border-box;
}

.services-grid__card {
    background: linear-gradient(160deg, #181828 0%, #12121e 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 48px 28px 40px;
    text-align: center;
    transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    min-width: 0;
    width: 100%;
}

.services-grid__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #C9A76E 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s;
}

.services-grid__card:hover {
    border-color: rgba(201,167,110,0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.services-grid__card:hover::before {
    opacity: 1;
}

.services-grid__card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-grid__card-icon svg {
    width: 50px;
    height: 50px;
    stroke: #C9A76E;
    fill: none;
    stroke-width: 1.2;
}

.services-grid__card-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.4;
}

.services-grid__card-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin: 0 0 auto;
    padding-bottom: 28px;
}

.services-grid__card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #C9A76E;
    text-decoration: none;
    transition: gap 0.3s, color 0.3s;
    margin-top: auto;
}

.services-grid__card-link:hover {
    gap: 12px;
    color: #d4b87f;
}

.services-grid__card-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* --- Service Detail Section (individual pages) --- */
.service-section {
    scroll-margin-top: 80px;
}

.service-section__hero {
    text-align: center;
    padding: 140px 24px 50px;
    background: linear-gradient(180deg, #0d0d0d 0%, #141420 100%);
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.service-section__hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(201,167,110,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.service-section__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C9A76E;
    margin-bottom: 16px;
    position: relative;
}

.service-section__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 6px;
    color: #fff;
    margin: 0 0 24px;
    text-transform: uppercase;
    position: relative;
}

.service-section__subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.service-section__content {
    max-width: 960px;
    margin: 0 auto;
    padding: 50px 24px 60px;
}

.service-section__block {
    background: #161622;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 44px 48px;
    color: #fff;
}

.service-section__block p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    margin: 0 0 20px;
}

.service-section__block p:last-child {
    margin-bottom: 0;
}

.service-section__block h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 32px 0 12px;
}

.service-section__block h3:first-child {
    margin-top: 0;
}

/* --- CTA Section --- */
.services-cta {
    text-align: center;
    padding: 90px 24px;
    background: #0d0d0d;
    width: 100%;
    box-sizing: border-box;
}

.services-cta__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C9A76E;
    margin-bottom: 14px;
}

.services-cta__title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 5px;
    color: #fff;
    margin: 0 0 32px;
    text-transform: uppercase;
}

.services-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #C9A76E;
    color: #111;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
}

.services-cta__btn:hover {
    background: #d4b87f;
    transform: translateY(-2px);
}

.services-cta__btn svg {
    width: 16px;
    height: 16px;
    stroke: #111;
    fill: none;
    stroke-width: 2;
}

/* --- Responsive --- */
@media (max-width: 1200px) {
    .services-grid__inner {
        grid-template-columns: repeat(3, 1fr);
    }
    .services-grid {
        padding: 60px 40px 70px;
    }
}

@media (max-width: 900px) {
    .services-grid__inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        padding: 50px 24px 60px;
    }
}

@media (max-width: 600px) {
    .services-hero {
        padding: 110px 20px 50px;
    }

    .services-grid {
        padding: 40px 16px 50px;
    }

    .services-grid__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-grid__card {
        padding: 36px 24px 32px;
    }

    .service-section__hero {
        padding: 100px 20px 36px;
    }

    .service-section__content {
        padding: 30px 16px 40px;
    }

    .service-section__block {
        padding: 28px 20px;
    }

    .services-cta {
        padding: 60px 20px;
    }
}