/* About Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../IMG/917.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'El Messiri', sans-serif;
}

.hero .breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
}

.hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
    content: "\f104";
    font-family: "Font Awesome 5 pro";
    font-weight: 900;
}

.hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.hero .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.hero .breadcrumb-item.active {
    color: white;
}

/* Contact Section */
.contact-us-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}


.form-subtitle {
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* Contact Info */
.contact-info-wrapper {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f4f5f6, rgba(255, 6, 4, 0.2));
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-left: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.phones {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.phone-link i {
    margin-left: 8px;
    color: var(--primary-color);
}

.whatsapp-link {
    color: #25D366 !important;
    font-weight: 500;
}

.email-link {
    word-break: break-all;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.form .form-group {
    margin-bottom: 20px;
}

.form .form-control {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    transition: all 0.3s;
}

.form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 6, 4, 0.25);
}

.form textarea.form-control {
    height: auto;
    min-height: 150px;
}

.form .btn-primary {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Map Section */
.map-wrapper {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.company-map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.map-actions .btn {
    padding: 10px 20px;
}

/* Branches Section */
.branches-section {
    padding: 60px 0;
    background-color: white;
}

.branch-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    text-align: center;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary-color);
}

.branch-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-lightest);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.branch-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.branch-card p {
    color: var(--gray-600);
    margin-bottom: 15px;
}

.branch-phone {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 500;
    text-decoration: none;
}

.branch-phone i {
    margin-left: 8px;
    color: var(--primary-color);
}

/* CTA Section */
.contact-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.contact-cta h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-cta p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-info-wrapper,
    .form-wrapper {
        margin-bottom: 30px;
    }
    
    .company-map {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .company-map {
        height: 300px;
    }
    
    .branch-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .contact-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .contact-cta .btn:last-child {
        margin-bottom: 0;
    }
    
    .company-map {
        height: 250px;
    }
}