/*
* Murtaza Auto Parts - Contact Page Redesign
* August 31, 2025
*/

/* Hero Banner Styling */
.contact-hero-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 40px;
}

.contact-hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.contact-hero-banner-overlay h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero-banner-overlay p {
  color: #fff;
  font-size: 16px;
}

.contact-hero-banner-overlay a {
  color: #fff;
  text-decoration: none;
}

.contact-hero-banner-overlay a:hover {
  color: #e74c3c;
}

/* Contact Information Section */
.contact-main-section {
  padding: 60px 0;
  background-color: #fff;
}

.contact-columns-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-column {
  flex: 0 0 48%;
  padding: 30px;
  margin-bottom: 30px;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-heading {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}

.contact-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #e63946; /* Dark red accent color */
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  font-size: 20px;
  color: #e63946;
  margin-right: 15px;
  min-width: 25px;
  text-align: center;
}

.contact-text {
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

.contact-text.highlight {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* Map Section */
.map-section {
  width: 100%;
  height: 450px;
  margin-bottom: 40px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .contact-column {
    flex: 0 0 100%;
  }
}

@media (max-width: 767px) {
  .contact-hero-banner {
    height: 300px;
  }
  
  .contact-hero-banner-overlay h1 {
    font-size: 32px;
  }
  
  .contact-main-section {
    padding: 40px 0;
  }
  
  .contact-column {
    padding: 20px;
  }
  
  .map-section {
    height: 350px;
  }
}
