/* Contact Us Styles */

/* Common Styles */
.text-orange {
    color: #FF6F00;
}

.bg-orange {
    background-color: #FF6F00;
}

.bg-light-orange {
    background-color: rgba(255, 111, 0, 0.1);
}

.btn-orange {
    background-color: #FF6F00;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: #E56500;
    color: white;
}

/* Title Section */
.title-separator {
    width: 80px;
    height: 4px;
    background-color: #FF6F00;
    margin-top: 1.5rem;
}

/* Contact Info Card Styles */
.contact-info-card, 
.social-media-card {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover, 
.social-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Contact Info Styles */
.icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

/* Social Media Section in Contact Card */
.social-media-section {
    padding-top: 0.5rem;
}

.social-media-section .social-icons {
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 111, 0, 0.2) !important;
}

/* Map Section */
.map-card {
    position: relative;
    min-height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.map-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info-card {
        margin-bottom: 1.5rem;
    }
    
    .social-media-section {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 992px) {
    .map-card {
        height: 350px !important;
        margin-top: 1rem;
    }
    
    /* Ensure full width on mobile */
    .contact-section .col-lg-6 {
        width: 100%;
    }
}
