/* Contact Page Specific Styles */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
}

.contact-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-container {
  background-color: rgba(255, 255, 255, 0.98);
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.contact-info {
  background-color: #f9f9f9;
  padding: 2.5rem;
  border-radius: 0;
  position: relative;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 30px;
  background: linear-gradient(to right, #f9f9f9, rgba(249, 249, 249, 0));
  z-index: 10;
}

.contact-item {
  transition: all 0.3s ease;
  border-radius: 12px;
  border-left: 4px solid transparent;
  background-color: white;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.contact-item:hover {
  transform: translateY(-5px);
  border-left: 4px solid var(--primary-red);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  background: linear-gradient(135deg, #D80000 0%, #FF4D4D 100%);
  box-shadow: 0 10px 20px rgba(216, 0, 0, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: #222;
  font-weight: 600;
}

.contact-item p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0.3rem;
}

.contact-form {
  border-radius: 0;
  padding: 3rem;
  background: white;
}

.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #222;
  position: relative;
  padding-bottom: 0.7rem;
  font-weight: 600;
}

.contact-form h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #D80000 0%, #FF4D4D 100%);
}

.form-control {
  border-radius: 8px;
  padding: 1.2rem;
  border: 1px solid #eee;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.form-control:focus {
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: rgba(216, 0, 0, 0.3);
}

.form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  display: block;
  font-size: 1.05rem;
}

.btn-primary {
  background: linear-gradient(135deg, #D80000 0%, #FF4D4D 100%);
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(216, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 1.05rem;
  margin-top: 1rem;
  cursor: pointer;
  width: 100%;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(216, 0, 0, 0.3);
  background: linear-gradient(135deg, #FF4D4D 0%, #D80000 100%);
}

.btn-secondary {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.btn-secondary:hover {
  background-color: #1fbd5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  color: white;
}

.map-section {
  margin-top: 5rem;
}

.map-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #222;
  position: relative;
  padding-bottom: 0.7rem;
  font-weight: 600;
  text-align: center;
}

.map-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #D80000 0%, #FF4D4D 100%);
}

.map-section iframe {
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 500px;
}

.map-section iframe:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.map-note {
  text-align: center;
  margin-top: 1.5rem;
  color: #666;
  font-size: 1.05rem;
}

.page-banner {
  height: 450px;
  background-attachment: fixed;
  position: relative;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.page-banner h1 {
  z-index: 15;
  position: relative;
  color: white;
}

.contact-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  max-width: 900px;
  text-align: center;
  margin: 0 auto 2rem auto;
}

.contact-note {
  color: #888;
  font-style: normal;
  margin-top: 0.7rem;
  font-size: 0.9rem;
}

/* Animation enhancements */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for contact items */
.contact-item:nth-child(1) {
  transition-delay: 0.1s;
}

.contact-item:nth-child(2) {
  transition-delay: 0.2s;
}

.contact-item:nth-child(3) {
  transition-delay: 0.3s;
}

.contact-item:nth-child(4) {
  transition-delay: 0.4s;
}

/* Responsive styles */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info::before {
    display: none;
  }
  
  .page-banner {
    height: 350px;
  }
  
  .contact-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .contact-info, .contact-form {
    padding: 2rem;
  }
  
  .contact-item {
    padding: 1.5rem;
  }
  
  .page-banner {
    height: 300px;
  }
  
  .contact-title {
    font-size: 2.2rem;
  }
  
  .map-section iframe {
    height: 350px;
  }
}