* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    
    direction: rtl;
}

/* Hero Section */

.contact-hero {
    position: relative;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 53, 102, 0.7);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Contact Page Styling */
.contact-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-section-title {
    color: #003566 !important;
    font-weight: 700 !important;
    font-size: 2.5rem !important;
    margin-bottom: 2rem !important;
    position: relative;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    border-radius: 2px;
}

/* Contact Info Cards */
.contact-info-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 53, 102, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 53, 102, 0.2);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #003566, #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 53, 102, 0.3);
}

.contact-info-card h4 {
    color: #003566;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Forms Container */
.forms-container {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 53, 102, 0.1);
}

/* Form Tabs */
.form-tabs {
    display: flex;
    background: linear-gradient(135deg, #003566, #0077b6);
}

.tab-btn {
    flex: 1;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

/* Form Content */
.form-content {
    display: none;
    padding: 2.5rem;
}

.form-content.active {
    display: block;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    color: #003566;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #6c757d;
    font-size: 1rem;
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #003566;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.btn-primary {
    background: linear-gradient(45deg, #003566, #0077b6);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 53, 102, 0.3);
}

.btn-danger {
    background: linear-gradient(45deg, #dc3545, #c82333);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.btn-outline-primary {
    border: 2px solid #0077b6;
    color: #0077b6;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #0077b6;
    color: white;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    margin: 2rem 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 53, 102, 0.1);
}

.accordion-button {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: #003566;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #003566, #0077b6);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
    color: #495057;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-section-title {
        font-size: 2rem !important;
    }
    
    .tab-btn {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .form-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 767px) {
    .contact-section-title {
        font-size: 1.7rem !important;
    }
    
    .contact-section-title::after {
        left: 0 !important;
        transform: none !important;
    }
    
    .tab-btn {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.9rem;
    }
    
    .contact-info-card {
        margin-bottom: 2rem;
    }
    
    .form-content {
        padding: 1.5rem 1rem;
    }

    .contact-section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        margin-left: 45%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(45deg, #ffd700, #ff6b35);
        border-radius: 2px;
    }
}

/* .select2-selection {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


.select2-selection {
    background-color: #fff;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.select2-selection:focus {
    outline: none;
    border-color: #0077b6;
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}
.select2-selection__rendered {
    color: #fff;
    background-color: #fff;
    line-height: 1.5;
} */


.text-form-reclamation {
    color: #003566;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    
}
