:root {
    --primary-color: #41AED9;
    --primary-light: rgba(65, 174, 217, 0.1);
    --secondary-color: #000000;
    --accent-color: #25d366;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #495057;
    --text-muted: #6c757d;
    --white: #ffffff;
    --black: #000000;
}

/* Base Styles */
body {
    overflow-x: hidden;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/images/Arabman.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.contact-hero .min-vh-50 {
    min-height: 50vh;
}

/* Divider */
.divider {
    height: 4px;
    width: 80px;
    margin: 20px auto;
    background-color: var(--primary-color);
}

/* Contact Form */
.contact-info-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.branch-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-5px);
}



/* Icon Boxes */
.icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: var(--primary-light);
}

.icon-box-lg {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: var(--primary-light);
}

.bg-primary-light {
    background-color: var(--primary-light);
}

/* Input Groups */
.input-group-text {
    border-right: 0;
    background-color: var(--white);
}

.form-control.border-start-0 {
    border-left: 0;
}

/* Map Container */
.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.map-container iframe {
    width: 100%;
    display: block;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: var(--white);
    transform: translateY(-3px);
}

/* Text Colors */
.text-primary {
    color: var(--primary-color) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    color: var(--dark-color);
    background-color: var(--white);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/images/maplying.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    
    padding: 60px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Mobile Responsive Fixes */
@media (max-width: 767.98px) {
    .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
    
    .row {
        margin-right: 0;
        margin-left: 0;
    }
    
    .col-12, 
    .col-md-6, 
    .col-lg-8, 
    .col-lg-5, 
    .col-lg-7 {
        padding-right: 15px;
        padding-left: 15px;
    }
    
    /* Cards and containers */
    .card,
    .contact-info-card,
    .branch-card {
        border-radius: 0;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }
    
    /* Form elements */
    .card-body {
        padding: 1.5rem;
    }
    
    /* Map section */
    .map-container iframe {
        height: 300px;
    }
    
    /* CTA section */
    .cta-section {
        padding: 40px 15px;
    }
      .cta-section a{
        margin-top: 20px;
       }
    /* Hero section */
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
    .map-container {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .card,
    .contact-info-card,
    .branch-card {
        border-radius: 12px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
}