/* Services Page Modern Design */

.services-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a52 100%);
    padding: 6rem 0 4rem;
    color: var(--white);
    text-align: center;
}

.services-hero .hero-label {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.services-hero .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.services-hero .hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Main */
.services-main {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-detailed-card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-detailed-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-header h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-description {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.9375rem;
}

.btn-service {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, #c9a84a 100%);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* View All */
.view-all-services {
    text-align: center;
    margin-top: 3rem;
}

.btn-view-all-services {
    display: inline-block;
    background: var(--white);
    color: var(--navy);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: 2px solid var(--navy);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all-services:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-3px);
}

/* Why Choose */
.why-choose-services {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--white) 100%);
    text-align: center;
}

.why-choose-services h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-item {
    text-align: center;
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* CTA */
.services-cta {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a84a 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.services-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.services-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.btn-cta-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-cta-primary:hover {
    background: #c9a84a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 968px) {
    .services-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-hero .hero-title {
        font-size: 2rem;
    }
    
    .services-grid-detailed,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

