
/* Enhanced Contact Page Styling */

/* Main Contact Container */
.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

/* Contact Form Section */
.contact-box {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Contact Information Box */
.contact-info-box {
  flex: 1;
  background: linear-gradient(135deg, #d12028, #8c1a1f);
  color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-info-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

/* Section Headers */
.section-header {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
  position: relative;
  display: inline-block;
}

.contact-info-box .section-header {
  color: #fff;
}

.section-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: #d12028;
}

.contact-info-box .section-header::after {
  background: #fff;
}

/* Form Elements */
.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
  font-size: 1rem;
}

.contact-form .form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: #333;
  background-color: #f9f9f9;
}

.contact-form .form-control:focus {
  border-color: #d12028;
  box-shadow: 0 0 0 3px rgba(209, 32, 40, 0.1);
  background-color: #fff;
}

.contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Submit Button */
.contact-form .btn {
  background: linear-gradient(135deg, #d12028, #8c1a1f);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.contact-form .btn:hover {
  background: linear-gradient(135deg, #c01d25, #791619);
  box-shadow: 0 5px 15px rgba(209, 32, 40, 0.3);
  transform: translateY(-3px);
}

.contact-form .btn:active {
  transform: translateY(1px);
}

/* Alert Styling */
.alert {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid transparent;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

/* Contact Info Styling */
.contact-info {
  margin-top: 20px;
}

.contact-info h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #fff;
}

.contact-info p {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.9);
}

.contact-info strong {
  margin-right: 10px;
  font-weight: 600;
  color: #fff;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-info a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Locations Section */
.locations-wrapper {
  background-color: #f8f9fa;
  padding: 80px 20px;
  text-align: center;
}

.locations-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.locations-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #d12028;
}

.locations-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.map-wrapper, .locations-list {
  flex: 1;
  min-width: 300px;
}

.map-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.map-image:hover {
  transform: scale(1.02);
}

.locations-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

.city-list {
  columns: 2;
  column-gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.city-list li {
  margin-bottom: 15px;
  font-size: 1rem;
  break-inside: avoid;
}

.city-list li i {
  color: #d12028;
  margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-box, .contact-info-box {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .city-list {
    columns: 1;
  }
  
  .section-header {
    font-size: 1.8rem;
  }
  
  .locations-title {
    font-size: 1.8rem;
  }
}
/* Call to Action Section */
.cta-section {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: white;
  padding: 70px 0;
  margin: 60px 0;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(209, 32, 40, 0.15), transparent 60%);
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 35px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.phone-button {
  background: linear-gradient(135deg, #d12028 0%, #a51920 100%);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(209, 32, 40, 0.4);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.phone-button:hover {
  background: linear-gradient(135deg, #a51920 0%, #7a1218 100%);
  transform: translateY(-7px);
  box-shadow: 0 12px 25px rgba(209, 32, 40, 0.5);
  color: white;
  text-decoration: none;
}

.phone-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.phone-button:hover::after {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 1;
}

.quote-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid #d12028;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.quote-button:hover {
  background: #d12028;
  transform: translateY(-7px);
  box-shadow: 0 12px 25px rgba(209, 32, 40, 0.4);
  color: white;
  text-decoration: none;
}

.quote-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.quote-button:hover::before {
  left: 100%;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0 100px;
  background: #f8f9fa;
  border-radius: 8px;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.faq-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #222;
  position: relative;
}

.faq-section h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #d12028;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  background: #fff;
  border: none;
  text-align: left;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: #d12028;
  background-color: #f8f9fa;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(209, 32, 40, 0.2);
}

.accordion-button::after {
  content: '+';
  font-size: 1.5rem;
  color: #d12028;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  content: '−';
  transform: rotate(0deg);
}

.accordion-body {
  padding: 20px 25px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  background: #fff;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .cta-section p {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .phone-button, .quote-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 12px 25px;
    font-size: 1.1rem;
  }
  
  .faq-section h2 {
    font-size: 2.2rem;
  }
  
  .accordion-button {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  
  .accordion-body {
    padding: 15px 20px;
    font-size: 1rem;
  }
}
