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

/* Typography & Layout */
.text-center { text-align: center; }

/* Hero Section */
.services-hero {
    background: var(--ink);
    color: var(--cream);
    padding: 8rem 5vw 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.services-hero-title .accent {
    color: var(--gold);
    font-style: italic;
}

.services-hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Grid */
.services-section {
    background: var(--cream);
    padding: 6rem 5vw;
}

.services-header {
    margin-bottom: 4rem;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.services-sub {
    font-size: 1.1rem;
    color: var(--muted);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 10, 15, 0.08);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--muted);
}

.service-features li .check {
    color: var(--gold);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-link {
    color: var(--ink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    margin-top: auto;
    transition: color 0.2s;
}

.service-link:hover {
    color: var(--gold);
}

/* Why Choose Us (Advantage) */
.advantage-section {
    background: rgba(16, 185, 129, 0.05);
    padding: 6rem 5vw;
}

.advantage-grid {
    max-width: 1200px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.advantage-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 4px;
    text-align: center;
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.advantage-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.advantage-desc {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.services-cta {
    background: #fff;
    padding: 6rem 5vw;
    text-align: center;
    border-top: 1px solid var(--border);
}

.services-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.services-cta-sub {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}
