.company-form-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 100px);
}

#companyFormContainer {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.banner-section-title-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

.banner-section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.banner-section-p-text {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.progress-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #007bff;
    border-radius: 3px;
    transition: width 0.4s ease;
}

.steps-container {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    overflow-y: scroll;
}

.step-container {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.step-container.active {
    opacity: 1;
    transform: translateX(0);
}

.step-container.previous {
    transform: translateX(-50px);
}

.fields-container {
    margin-bottom: 2.5rem;
}

/* ... Reste des styles ... */

@media (max-width: 768px) {
    .company-form-section {
        padding: 1rem 1rem;
    }

    #companyFormContainer {
        padding: 1.5rem;
    }

    .banner-section-title {
        font-size: 2rem;
    }

    .radio-group {
        flex-direction: column;
    }

    .steps-navigation {
        padding: 0 20px;
    }

    .step-button::after {
        font-size: 0.75rem;
    }

    .form-navigation {
        flex-direction: column;
    }

    .prev-button,
    .next-button {
        width: 100%;
    }
}

.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    height: 100%;
}

img {
    border-radius: 0px;
}

input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.prev-button,.next-button {
    padding: 0.75rem 1.5rem !important;
    border: 1px solid #000;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    background: white;
    transition: all 0.3s ease;
}

.next-button{
  background:#000;
  color:#fff
}
.next-button:hover {
    background: #333;
}

.prev-button:hover {
    background: #f5f5f5;
}

select{
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}


.form-navigation {
    flex-direction: column;
    gap: 12px;
    margin-top: 1rem;
}


.radio-card-text {
    font-weight: 400;
}

/* Styles pour les boutons radio */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 15px 0;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: #007bff;
    background-color: #f8f9ff;
}

.radio-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #007bff;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    cursor: pointer;
}

.radio-option input[type="radio"]:checked {
    background-color: #fff;
    border-color: #007bff;
}

.radio-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: #007bff;
    border-radius: 50%;
}

.radio-option label {
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    user-select: none;
    flex: 1;
}

.radio-option.selected {
    border-color: #007bff;
    background-color: #f8f9ff;
}

/* Style pour le label requis */
.required {
    color: #dc3545;
    margin-left: 4px;
}

/* Style pour le conteneur de champ */
.field-wrapper {
    margin-bottom: 20px;
}

.field-wrapper > label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #212529;
}

/* Styles pour les radio-wrapper standards */
.radio-wrapper {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.radio-wrapper:hover {
    border-color: #007bff;
    background-color: #f8f9ff;
}

.radio-wrapper input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-wrapper label {
    font-size: 1rem;
    color: #495057;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
    width: 100%;
}

.radio-wrapper input[type="radio"]:checked + label {
    color: #007bff;
    font-weight: 500;
}

.radio-wrapper input[type="radio"]:checked ~ .radio-wrapper {
    border-color: #007bff;
    background-color: #f8f9ff;
}

/* Style pour le groupe de radio buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

/* Style pour le label du champ */
.field-wrapper > label {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #212529;
    margin-bottom: 12px;
}

/* Style pour l'indicateur requis */
.required {
    color: #dc3545;
    margin-left: 4px;
}

/* Style pour le wrapper du champ */
.field-wrapper {
    margin-bottom: 24px;
}

.prev-button, .next-button{
    width: 100%;
}   

/* Responsive design */
@media (max-width: 768px) {
    .radio-wrapper {
        padding: 10px 12px;
    }
    
    .radio-wrapper label {
        font-size: 0.95rem;
    }
}

.error-message.not-eligible {
    background-color: #fff3f3;
    border: 1px solid #dc3545;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.error-message.not-eligible h3 {
    color: #dc3545;
    margin-bottom: 15px;
}

.error-message.not-eligible ul {
    margin: 10px 0;
    padding-left: 20px;
}

.error-message.not-eligible li {
    margin: 5px 0;
}

#payment-submit{
    padding: 0.75rem 1.5rem !important;
    border: 1px solid #000;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    background: white;
    transition: all 0.3s ease;
    margin-top: 1rem;
    min-width: 100%;
    background: #000;
    color: #fff;
}

[for="whatsapp"]{
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal{
    z-index: 999999;
}

/* Styles pour les cartes de pack */
.radio-cards-container {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    /* gap: 20px; */
    /* margin-top: 20px; */
}

.radio-card {
    /* border: 2px solid #e9ecef; */
    /* border-radius: 12px; */
    /* padding: 20px; */
    transition: all 0.3s ease;
    /* position: relative; */
    /* background: white; */
}

.radio-card:hover {
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.radio-card.popular {
    border-color: #A18870;
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-card input[type="radio"]:checked + .radio-card-label {
    background-color: #f8f9fa;
    /* height: 0; */
    transition-duration: .3s;
}

.radio-card-label {
    /* display: block; */
    /* cursor: pointer; */
}

.radio-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.radio-card-title h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #212529;
}

.popular-tag {
    display: inline-block;
    background: #A18870;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.5rem;
    margin-top: 5px;
    padding: 0px 20px;
}

.radio-card-price {
    text-align: right;
}

.radio-card-price .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #212529;
}

.radio-card-description {
    color: #6c757d;
    margin-bottom: 15px;
    height: 0;
    opacity: 0;
    transition-duration:.3s;
}

.radio-card-features {
    margin-top: 15px;
    height: 0;
    opacity: 0;
    transition-duration:.3s;

}

.radio-card-content {
    max-height: 40px;
    width: 100%;
}
.radio-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: none;
    width: 100%;
}

.popular-tag{
    position: absolute;
    top: 0;
    left: 0;
}
.selected .radio-card-content, .selected .radio-card-description, .selected .radio-card-features{
    height:100%;
    opacity:1;
    max-height:100%
}
.selected .radio-card-header {
border-bottom: 1px solid #e9ecef;
}


.radio-card-features h4 {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #212529;
}

.radio-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.radio-card-features li {
    padding: 8px 0;
    color: #495057;
    position: relative;
    padding-left: 25px;
}

.radio-card-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
}

/* Style spécifique pour le bouton de paiement */
#payment-submit {
    padding: 0.75rem 1.5rem !important;
    border: 1px solid #000;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    background: #000;
    color: #fff;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

#payment-submit:hover {
    background: #333;
}
.radio-card-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}


.radio-card-label {
    display: flex
;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.radio-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.lasse .radio-cards-container {
    grid-template-columns: none;
}
.radio-card.popular {
    padding-top: 2rem;
  }