/* Contact Page Styles */

.contact-hero-banner {
  background: linear-gradient(90deg, #D81324, #B31020, #D81324);
  background-size: 200% auto;
  color: white;
  padding: 15px 30px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  animation: gradient 3s ease infinite;
  box-shadow: 0 4px 15px rgba(216, 19, 36, 0.3);
  margin-bottom: 0;
}

@keyframes gradient {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.contact-container {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
  min-height: 100vh;
  padding: 60px 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-subtitle {
  color: #D81324;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.contact-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #D81324, #B31020);
  border-radius: 2px;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.info-card {
  background: white;
  padding: 0;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  overflow: hidden;
  border: none;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(216, 19, 36, 0.2);
}

.info-card-title {
  background: linear-gradient(135deg, #D81324, #B31020);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  padding: 1rem 1.25rem;
  margin: 0;
  box-shadow: 0 2px 8px rgba(216, 19, 36, 0.3);
}

.info-card-content {
  color: #555;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.5rem 1.25rem;
}

.info-card-content i {
  color: #D81324;
  font-size: 1.2rem;
}

.contact-main-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.map-container {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  height: 600px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
  background: linear-gradient(135deg, #D81324 0%, #B31020 100%);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-floating {
  position: relative;
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 2px solid #e8eef5;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #D81324;
  box-shadow: 0 0 0 3px rgba(216, 19, 36, 0.1);
}

.form-floating label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #999;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
  top: -10px;
  left: 10px;
  font-size: 0.85rem;
  background: white;
  padding: 0 5px;
  color: #D81324;
}

.submit-btn {
  background: linear-gradient(135deg, #D81324 0%, #B31020 100%);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(216, 19, 36, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 19, 36, 0.5);
}

.contact-call-section {
  background: linear-gradient(135deg, #D81324 0%, #B31020 100%);
  color: white;
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(216, 19, 36, 0.4);
  margin: 60px auto 40px auto;
  max-width: 800px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(216, 19, 36, 0.4);
  }
  50% {
    box-shadow: 0 8px 35px rgba(216, 19, 36, 0.6);
  }
}

.contact-call-section h2 {
  font-size: 2rem;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.contact-phone {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.contact-phone:hover {
  transform: scale(1.05);
  color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-main-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-hero-banner {
    font-size: 1.2rem;
    padding: 12px 20px;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-subtitle {
    font-size: 0.95rem;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 25px;
  }

  .form-title {
    font-size: 1.5rem;
    padding: 15px;
  }

  .contact-call-section {
    padding: 25px;
    margin: 40px 20px;
  }

  .contact-call-section h2 {
    font-size: 1.5rem;
  }

  .contact-phone {
    font-size: 1.5rem;
  }
}
