/* css/services.css */

.services-header {
    padding-top: 150px;
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: linear-gradient(to bottom right, #ffffff 0%, var(--gold-light) 60%, var(--gold-main) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-subtitle {
    font-family: 'Inter', monospace;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Services Rows Layout */
.services-list { 
    display: flex; 
    flex-direction: column; 
    gap: 1.2rem; 
    max-width: 1000px;
    margin: 0 auto 4rem auto;
}

.service-row { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 2.5rem 3rem; 
    text-decoration: none; 
    cursor: pointer; 
}

.service-left { 
    display: flex; 
    align-items: center; 
    gap: 2rem; 
    min-width: 300px; 
}

.service-number { 
    font-family: 'Playfair Display', serif; 
    font-size: 2rem; 
    font-weight: 900; 
    color: var(--text-muted); 
    transition: 0.4s; 
}

.service-row h3 { 
    margin: 0; 
    font-size: 1.6rem; 
    transition: color 0.4s; 
}

.service-desc { 
    flex-grow: 1; 
    margin: 0 3rem; 
    font-size: 1.05rem; 
    color: var(--text-muted); 
    transition: color 0.4s; 
    line-height: 1.6;
}

.service-arrow { 
    width: 55px; 
    height: 55px; 
    border-radius: 50%; 
    border: 1px solid var(--border-subtle); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: var(--text-pure); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    flex-shrink: 0;
}

.service-row:hover .service-number { color: var(--gold-main); }
.service-row:hover h3 { color: var(--gold-light); }
.service-row:hover .service-desc { color: var(--text-pure); }
.service-row:hover .service-arrow { 
    background: var(--gold-main); 
    border-color: var(--gold-main); 
    color: var(--bg-deep); 
    transform: translateX(10px) rotate(-45deg); 
}

@media (max-width: 1024px) {
    .service-row { flex-direction: column; text-align: center; gap: 1.5rem; padding: 2.5rem; }
    .service-left { flex-direction: column; gap: 0.5rem; min-width: auto; }
    .service-desc { margin: 0; }
    .service-row:hover .service-arrow { transform: translateY(5px) rotate(90deg); } 
}