.facial-treatments {
    padding: 120px 0 60px;
    background: #f2fafc;
}

.treatments-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.treatment-card {
    background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(89,153,238,0.07);
    padding: 0;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.25s, border 0.25s, background 0.25s, transform 0.25s;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border: 2px solid transparent;
}

.treatment-card:hover {
    box-shadow: 0 8px 32px rgba(89,153,238,0.18);
    border: 2px solid #fff;
    background: rgba(255,255,255,0.96);
    transform: translateY(-4px) scale(1.01);
    z-index: 2;
}

.treatment-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.treatment-image {
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.badge-group {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 3;
}

.badge {
    border-radius: 9999px;
    background: rgba(255,255,255,0.5);
    color: #222;
    font-size: 0.88em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    border: 1.5px solid #fff;
    padding: 3px 10px;
    box-shadow: 0 2px 8px rgba(89,153,238,0.07);
    white-space: nowrap;
    transition: background 0.2s;
    display: inline-block;
}

.badge-left, .badge-right {
    position: static;
}

.treatment-content {
    padding: 6px 6px 2px 6px;
    min-height: unset;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.treatment-content h3 {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
    font-weight: 300 !important;
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
    margin-top: 0.1em;
}

.treatment-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.1em;
}


.treatment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.treatment-price {
    color: #5999ee;
    font-weight: bold;
    font-size: 1.3em;
}

/* Butoane comune */
.details-button,
.modal-button {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(45deg, #5999ee, #3d7fd9);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.05em;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(89, 153, 238, 0.2);
}

.details-button:hover,
.modal-button:hover {
    background: linear-gradient(45deg, #3d7fd9, #2666c0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(89, 153, 238, 0.3);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    background-color: white;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    color: #5999ee;
    margin-bottom: 15px;
}

.modal-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.modal-price {
    font-size: 20px;
    font-weight: bold;
    color: #5999ee;
    margin: 0;
    flex-grow: 1;
}

.modal-button {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(45deg, #5999ee, #3d7fd9);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: normal;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(89, 153, 238, 0.3);
    text-align: center;
}

.modal-button:hover {
    background: linear-gradient(45deg, #3d7fd9, #2666c0);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(89, 153, 238, 0.4);
}

/* Consultation banner */
.consultation-banner {
    background: #f2fafc;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(89, 153, 238, 0.1);
}

.consultation-banner h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.consultation-banner p {
    color: #666;
    font-size: 1.1em;
}

.free-tag {
    display: inline-block;
    background: #5999ee;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.free-tag:hover {
    background: #4788dd;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(89, 153, 238, 0.2);
}

/* Consultation modal */
.consultation-modal {
    display: flex;
    max-width: 900px;
    width: 90%;
    height: 90vh;
    max-height: 800px;
    padding: 0;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.calendly-section {
    flex: 1;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.calendly-inline-widget {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .consultation-modal {
        flex-direction: column;
        height: 90vh;
    }

    .calendly-section {
        flex: 2;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .modal-content {
        width: 95%;
        padding: 15px;
    }

    .modal-image {
        height: 200px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-description {
        font-size: 14px;
    }

    .modal-price {
        font-size: 18px;
    }
}

.footer, .footer-content, .footer-column, .footer-logo, .footer-logo span, .footer h3, .footer ul, .footer a, .footer-bottom, .contact-info, .address, .social-links, .messenger-links {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
    font-weight: 300 !important;
} 