/* public/assets/css/custom-intl-tel-input.css */
.contact-section::before,
.order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(17, 24, 39, 0.2), transparent);
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 70%);
}

.contact-section,
.order-section {
    background: linear-gradient(to bottom, #1F2937, #374151);
    color: #F9FAFB;
}

.order-section .form-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section input,
.contact-section textarea,
.order-section input,
.order-section select {
    font-family: 'Inter', sans-serif;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: #F9FAFB;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-section input:focus,
.contact-section textarea:focus,
.order-section input:focus,
.order-section select:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
    background: #FFFFFF;
    outline: none;
}

.contact-section button,
.order-section button {
    background: linear-gradient(90deg, #1E40AF, #2563EB);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section button:hover,
.order-section button:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.offer-card,
.description-card {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(209, 213, 219, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover,
.description-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.offer-header {
    background: linear-gradient(135deg, #1F2937, #374151);
    padding: 2rem;
    text-align: center;
    color: #F9FAFB;
    border-bottom: 4px solid #DBEAFE;
}

.offer-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.offer-header p {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

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

.features-grid li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #374151;
    transition: background 0.2s ease;
    border-radius: 0.5rem;
}

.features-grid li:hover {
    background: #F9FAFB;
}

.description-header {
    background: linear-gradient(135deg, #1F2937, #374151);
    padding: 1.5rem;
    text-align: center;
    color: #F9FAFB;
    border-bottom: 4px solid #DBEAFE;
}

.description-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.description-content {
    padding: 2rem;
    font-family: 'Inter', sans-serif;
    color: #374151;
    line-height: 1.75;
    font-size: 1rem;
}

.description-content p {
    margin-bottom: 1rem;
}

/* Styles spécifiques pour intl-tel-input */
.iti {
    width: 100%;
}

.iti__country-list {
    background-color: #D1D5DB !important;
    /* Gris clair pour le menu déroulant */
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #B3B7C1;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin: 0;
    width: 300px;
}

.iti__selected-dial-code {
    color: #1F2937;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.error-border {
    border-color: #EF4444 !important;
}

/* Ajustements pour mobile */
@media (max-width: 767px) {
    .iti__country-list {
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
    }
}

/* Styles spécifiques pour intl-tel-input */
.iti {
    width: 100%;
}

.iti__country-list {
    background-color: #D1D5DB !important;
    /* Gris clair pour le menu déroulant */
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #B3B7C1;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    margin: 0;
    width: 300px;
}

.iti__selected-flag {
    padding: 0.5rem 1rem;
    background-color: #F9FAFB;
    /* Fond clair pour contraste */
    border-right: 1px solid #D1D5DB;
    /* Séparateur subtil */
}

.iti__selected-flag:focus,
.iti__selected-flag:hover {
    background-color: #E5E7EB;
    /* Variation au survol */
    outline: none;
}

.iti__flag-container {
    display: flex;
    align-items: center;
}

.iti__selected-dial-code {
    color: #1F2937;
    font-size: 1rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.iti__country-list .iti__country {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #374151;
}

.iti__country-list .iti__dial-code {
    color: #1F2937;
    font-weight: 600;
}

.error-border {
    border-color: #EF4444 !important;
}

/* Ajustements pour mobile */
@media (max-width: 767px) {
    .iti__country-list {
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
    }
}