/* ================================
   SERVICES PAGE
================================ */

/* Page Hero */
.services-hero {
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(197, 160, 89, 0.4), transparent);
}

.page-eyebrow {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: #C5A059;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.services-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.gold-text {
    color: #C5A059;
}

.services-hero p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* Main Section */
.services-main {
    padding: 80px 0 100px;
}

/* Category Block */
.service-category {
    margin-bottom: 80px;
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.category-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.category-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(197, 160, 89, 0.6);
    font-family: 'Montserrat', sans-serif;
    display: block;
    margin-bottom: 6px;
}

.category-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: #fff;
    margin-bottom: 6px;
}

.category-desc {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Service Card */
.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s ease, transform 0.3s ease,
        background 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(197, 160, 89, 0.4),
            transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: rgba(197, 160, 89, 0.25);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.04);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-custom {
    border-color: rgba(197, 160, 89, 0.15);
    background: rgba(197, 160, 89, 0.03);
}

/* Card Top Row */
.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-num {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: rgba(197, 160, 89, 0.4);
    letter-spacing: 0.1em;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    border-color: rgba(197, 160, 89, 0.3);
    color: #C5A059;
}

/* Card Content */
.service-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.service-card p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    flex: 1;
}

/* Includes List */
.service-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-includes li {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: 'Montserrat', sans-serif;
    padding-left: 16px;
    position: relative;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C5A059;
    font-size: 0.7rem;
}

/* CTA Link */
.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    margin-top: 4px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.service-cta:hover {
    color: #C5A059;
}

.service-cta-gold {
    color: #C5A059;
}

/* Divider */
.category-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.06),
            transparent);
    margin: 20px 0 80px;
}

/* ================================
   CTA BANNER
================================ */
.services-cta-banner {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background: rgba(197, 160, 89, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 20px;
    padding: 56px 60px;
}

.cta-eyebrow {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: #C5A059;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.cta-banner-left h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.cta-banner-left p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
}

.cta-banner-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.btn-large {
    padding: 16px 32px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 960px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    .cta-banner-right {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        flex-direction: column;
        gap: 16px;
    }

    .services-hero {
        padding: 100px 0 60px;
    }
}