/* Desktop Styles */
.ourservices-container.desktop-version {
    display: flex;
    align-items: flex-start;
    min-height: 950px;
    /* background-color rimosso per non sovrapporsi */
    /* padding: 40px; */
    position: relative;
}

.ourservices-left {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.circles-container {
    position: relative;
    width: 400px;
    height: 500px;
}

.service-circle {
    position: absolute;
    border-radius: 50%;
    background-color: #000;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Forza il testo nei cerchi ad andare a capo */
.service-circle span {
}

.service-circle:hover {
    background-color: #DAB986;
    color: #000;
}

.service-circle.active {
    background-color: #DAB986;
    color: #000;
}

/* Posizioni esatte dei cerchi come da screenshot */
.circle-1 {
    top: 0;
    left: 110%;
    transform: translateX(-30%);
    width: 350px;
    height: 350px;
}

.circle-2 {
    top: 230px;
    left: 100%;
    transform: translateX(-55%);
    width: 350px;
    height: 350px;
    z-index: 3;
}

.circle-3 {
    bottom: -230px;
    left: 75%;
    transform: translateX(-40%);
    height: 250px;
    width: 250px;
    display: flex;
    align-items: flex-end;
}

.ourservices-divider {
    width: 2px;
    height: 950px;
    background-color: #fff;
    margin: 0 20px;
}

.ourservices-right {
    flex: 1;
    padding: 40px 80px;
    min-height: 610px;
    display: flex;
    align-items: center;
}

.service-content {
    display: none;
    opacity: 0;
}

.service-content.show {
    display: block;
    animation: fadeInSimple 0.2s ease forwards;
}

@keyframes fadeInSimple {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.service-content h3 {margin-bottom: 40px;text-transform: uppercase;font-family: Inconsolata;font-weight: 500;font-size: 25px;line-height: 20px;letter-spacing: 0px;}

.service-content li {font-family: Inconsolata;font-weight: 400;font-size: 20px;line-height: 20px;letter-spacing: -1px;color:#00000040;margin: 0 30px 80px;}

.service-button {
    display: inline-block;
    color: black;
    border-bottom: 1px solid black;
    transition: all 0.3s ease;
font-weight: 500;

font-size: 20px;
line-height: 100%;
text-transform: uppercase;

}

.service-button:hover {
    color: #DAB986;
    border-color: #DAB986;
}

/* Mobile Styles */
.ourservices-container.mobile-version {
    display: none;
    /* background-color: #DBDADA; - Puoi mantenerlo solo su mobile se vuoi */
}

.service-card {
    background-color: #EDEDED;
    padding-bottom: 120px;
}

.service-card-title {
    color: black;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 13px 30px;
    margin: 0;
    letter-spacing: 1px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.service-card-description {
    color: #B6B6B6;
    font-size: 18px;
    line-height: 1.2;
    padding: 25px 30px 50px 0px;
}

.service-card-button {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid black;
    transition: all 0.3s ease;
    color: black;
    margin-left: 30px;
}

.service-card-button:hover {
    color: #DAB986;
    border-color: #DAB986;
}
/* -----------------------------------
   Titolo sezione (H2)
----------------------------------- */
.ourservices-left {
    flex: 1.5;
    display: flex;
    flex-direction: column;      /* per avere il titolo in alto e i cerchi sotto */
    align-items: flex-start;     /* allineato a sinistra */
    padding: 40px;
}

.ourservices-heading {
    margin: 0 0 30px 0;
    text-transform: uppercase;
    /* Desktop rules */
    font-family: Klapt, sans-serif;
    font-weight: 500;          /* Medium */
    font-size: 80px;
    line-height: 1;
    letter-spacing: 5px;
}

/* Mobile rules per l'H2 */
@media (max-width: 768px) {
    .ourservices-heading {
        font-family: Inconsolata, monospace;
        font-weight: 400;      /* Regular */
        font-size: 18px;
        line-height: 84.26px;  /* come richiesto */
        letter-spacing: 0;
        text-transform: uppercase;
        vertical-align: middle;
        margin-bottom: 10px;
    }
}

/* -----------------------------------
   Cerchi: contenitori per styling testo
----------------------------------- */


.service-circle .circle-text {
    display: block;
    position: relative;
    z-index: 2;
}

.service-circle .circle-deco {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 1;

}

.circle-text-1 { font-family: Inconsolata;font-weight: 300;font-size: 40px;line-height: 40px;letter-spacing: 0px;text-align: center;text-transform: uppercase;}
.circle-text-2 { font-family: Inconsolata;font-weight: 300;font-size: 30px;line-height: 35px;letter-spacing: 0px;text-transform: uppercase;}
.circle-text-3 { font-family: Inconsolata;font-weight: 300;font-size: 27px;line-height: 30px;letter-spacing: 0px;text-transform: uppercase;padding-bottom: 30px;}



@media (max-width: 1024px) {
  .ourservices-container.desktop-version { display: none; }
  .ourservices-container.mobile-version  { display: block; }


  .ourservices-heading {
    font-family: Inconsolata, monospace;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 80px 30px 50px;
    background-color: #EDEDED;
    margin: 0;
  }


}
