/* VARIABILI */
:root {
    --apedomus-orange: #f39200;
    --apedomus-purple: #6b2d91;
    --text-main: #2d3436;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #fdfdfd;
    color: var(--text-main);
}

/* HEADER E TITOLO CENTRATO */
.page-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 4px;
    background-color: var(--apedomus-orange);
}

/* PULSANTE BACK */
.btn-back-modern {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: var(--apedomus-orange) !important;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.7rem;
    border: 1px solid #eee;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.btn-back-modern:hover {
    background: var(--apedomus-orange);
    color: white !important;
    transform: translateX(-5px);
}

/* SERVICE CARDS */
.service-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.02);
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: var(--apedomus-purple);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--apedomus-purple);
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 2.2rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.8rem;
    color: #636e72;
    line-height: 1.5;
}

/* BOX CONTATTI (STILE INTEGRATO) */
.contact-highlight {
    background: #ffffff;
    border-radius: 25px;
    padding: 50px 30px;
    margin-top: 70px;
    border: 1px solid #f1f1f1;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.email-link {
    color: var(--apedomus-purple) !important;
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    transition: 0.3s;
}

.email-link:hover {
    color: var(--apedomus-orange) !important;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .position-md-absolute { position: absolute !important; }
}

@media (max-width: 767px) {
    .page-title { font-size: 1.6rem; }
    .btn-back-modern { margin-bottom: 25px; }
    .contact-highlight { padding: 30px 20px; }
    .email-link { font-size: 1.1rem; }
}