
.wrapper-pnc-fournisseur {
    padding: 45px 0 40px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../images/bg/bg-temoignage.png);
}


@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}




.pnc-fournisseur-tagline {
    font-size: 18px;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 29px;
    text-align: center;
}
.wrapper-pnc-fournisseur .section-title {
    margin-bottom: 10px;
}

.wrap-pnc-fournisseur {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-pnc-fournisseur {
   position: relative;
   padding: 0 10px;
   width: 23%;
   flex: 0 0 auto;
}

.wrap-item-pnc-fournisseur:hover .benefit-icon {
    transform: translateY(-5px);
    background: rgb(255 255 255 / 25%);
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); */
}
.wrap-item-pnc-fournisseur{
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}
.benefit-icon {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefit-icon img {
    width: 65px;
}

.wrap-item-pnc-fournisseur h3 {
    color: var(--black-color);
}

.wrap-item-pnc-fournisseur p {
    font-size: 13px;
}



@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.pnc-fournisseur-btn {
    position: relative;
    display: flex;
    justify-content: center;
    bottom: -65px;
}

.pnc-fournisseur-btn strong {
    margin: 0 10px;
    font-size: 20px;
}

span.pnc-fournisseur-btn-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50px;
    margin-left: 14px;
}

/************************ Formulaire ********************/

section.wrapper-devenir-fournisseur {
    position: relative;
    padding: 76px 0 260px;
    background-size: cover;
    background-image: url(../images/bg/bg-initiative.png);
    background-repeat: no-repeat;
    position: relative;
    background-color: #38b6ff14;
}

.bg-initiative-bg {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    opacity: 0.7;
}

.wrap-devenir-fournisseur {
    max-width: 80%;
    margin: 0 auto;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 13%);
    overflow: hidden;
} 
.header {
    background: var(--primary-color);
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.header h1 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 28px;
}

.header p {
    font-size: 14px;
    opacity: 0.9;
}

.form-content {
    padding: 29px 40px;
}

.section-title-form {
    font-weight: 700;
    font-size: 25px;
    color: var(--primary-color);
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 4px solid var(--primary-color);
}

.section-title-form:first-child {
    margin-top: 0 !important;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--black-color);
    font-weight: 600;
    font-size: 15px;
}

.required {
    color: #e74c3c;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 15px !important;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select{
     height: 50px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    margin-top: 10px;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
}

.checkbox-item label {
    margin-bottom: 0;
    font-weight: normal;
    cursor: pointer;
}

.file-upload {
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    background: #f8f9ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload:hover {
    background: #f0f2ff;
    border-color: #5568d3;
}

.file-upload input[type="file"] {
    display: none;
}

.file-upload-label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    font-size: 18px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.info-text {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-content {
        padding: 20px;
    }

    .header h1 {
        font-size: 22px;
    }
}