/* Servizi page styles */
.hero-services {
    background: linear-gradient(135deg, rgba(26, 29, 41, 0.85), rgba(30, 39, 56, 0.85)); /* Sfondo simile al hero-home */
    color: var(--text-color);
    padding: 80px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-gold-medium); /* Aggiunto bordo inferiore */
}

.hero-services .hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-services h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Ombra dal secondo CSS */
}

.hero-services p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-light); /* Colore testo leggero dal secondo CSS */
}

.services-main {
    padding: 6rem 0;
    background: rgba(20, 25, 35, 0.95);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    transition: var(--transition);
    border: 1px solid var(--border-gold-light);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-card.featured {
    border: 2px solid var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}

.featured-badge {
    position: absolute;
    top: -5px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--primary-bg);
    padding: 0.5rem 1rem;
    border-radius: 0 0 10px 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: var(--border-radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-bg);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    font-weight: bold;
}

.service-header h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin: 0;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: #e2e8f0;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.service-price {
    border-top: 1px solid var(--border-gold-medium);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-value {
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: bold;
}

.process-section {
    padding: 6rem 0;
    background: rgba(15, 18, 25, 0.95);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--gradient-gold);
    z-index: 1;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--primary-bg);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.step-content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.guarantees-section {
    padding: 6rem 0;
    background: rgba(20, 25, 35, 0.95);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-gold-light);
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.2);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.guarantee-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.guarantee-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.bonus-section {
    padding: 6rem 0;
    background: rgba(15, 18, 25, 0.95);
}

.bonus-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.bonus-text h2 {
    color: var(--text-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bonus-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.bonus-list {
    margin-bottom: 2rem;
}

.bonus-item {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
}

.bonus-item strong {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.bonus-item span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.bonus-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-card);
}

.cta-services {
    background: linear-gradient(135deg, var(--secondary-bg), #252a3a);
    color: var(--text-color);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border-gold-medium);
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-light);
}