/* Root Variables */
:root {
    --primary-color: #C8102E;
    --secondary-color: #C8102E;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #333;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
     --primary-light: rgba(200, 16, 46, 0.1); /* 10% opacity version */
  
  /* Alert Background Overrides */
  --bs-alert-bg: var(--primary-light);
  --bs-alert-border-color: #f8d7da;
  --bs-alert-color: #C8102E;
  
  /* Specifically for info alerts (optional) */
  --bs-info-bg-subtle: var(--primary-light);
  --bs-info-border-subtle: #f8d7da;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
 .contact-header {
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    }




/* Section Titles */
.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Form Styles */
.contact-form-wrapper {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

.btn-primary {
    background-color: var(--secondary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Contact Info Styles */
.contact-info-wrapper {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
}

.contact-info-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-info-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-details p,
.contact-details address {
    margin-bottom: 0;
}

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Social Links */

.social-links h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-links ul {
    list-style: none;

    display: flex;
}

.social-links li {
    margin-right: 0.75rem;
}

.social-link {
    color: #FFFFFF;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 12px;
}
.social-links a:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Map Container */
.map-container {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

#googleMap {
    width: 100%;
    height: 100%;
}

/* Live Chat Button */
.live-chat-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.live-chat-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.live-chat-btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-header {
        padding: 4rem 0 2rem;
    }
}

@media (max-width: 768px) {
    .contact-header {
        padding: 3rem 0 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-bottom: 0.75rem;
    }
    
    .live-chat-btn span {
        display: none;
    }
    
    .live-chat-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
    }
}
.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin: 20px 0;
}

.map-container a {
  color: #2c3e50; /* Your primary color */
  text-decoration: none;
  padding: 10px;
  display: inline-block;
}

/* Override Bootstrap accordion colors with your brand colors */
.accordion-button:not(.collapsed) {
  color: #C8102E; /* Your primary color for text */
  background-color: rgba(200, 16, 46, 0.05); /* Light tint of your primary color */
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(16%) sepia(89%) saturate(4218%) hue-rotate(342deg) brightness(86%) contrast(93%);
  /* This filter converts the SVG arrow to your red color (#C8102E) */
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(200, 16, 46, 0.25); /* Focus shadow in your color */
}

.alert {
  background-color: rgba(200, 16, 46, 0.1) !important;
  border-color: #f8d7da !important;
  color: #C8102E !important;
}

/* For the info alert specifically */
.alert-info {
  background-color: rgba(200, 16, 46, 0.1) !important;
  border-color: #f8d7da !important;
  color: #C8102E !important;
}

/* SweetAlert2 Customization */
.swal2-custom {
  border: 3px solid rgba(200, 16, 46, 0.2) !important;
}

.swal2-confirm-custom {
  background-color: #C8102E !important;
  border-color: #C8102E !important;
  transition: all 0.3s ease;
}

.swal2-confirm-custom:hover {
  background-color: #A00D26 !important; /* Darker shade for hover */
  transform: translateY(-2px);
}

.swal2-confirm-custom:active {
  background-color: #8C0B21 !important; /* Even darker for active state */
}

.swal2-title {
  color: #C8102E !important;
}

/* Customize the info icon color */
.swal2-icon.swal2-info {
  border-color: #C8102E !important;
  color: #C8102E !important;
}

/* Custom icon animation */
.swal2-icon.swal2-info::before {
  background-color: #C8102E !important;
}

.swal2-icon.swal2-info::after {
  background-color: #C8102E !important;
}

.caption-overlay {
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
 bottom: 30%;
    text-align: left;
    padding: 30px;
    background-color: rgba(26, 26, 26, 0.7);
    border-left: 5px solid #C8102E;   max-width: 100%;
}

.with-red-line {
    border-left: 5px solid #dc3545; /* Bootstrap danger red */
    padding-left: 1.25rem;
}

