/* Container */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #10b981, #047857); /* green gradient */
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: #050000;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.same-h2 {
  color: #fff;
  font-size: 2.5vw;
  text-align: center;
}

.same-color {
  color: #fff;
  text-align: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
}

.info-item i {
  background: #0ea5e9;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.info-content h3 {
  margin-bottom: 5px;
  color: #0c4a6e;
  font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 20px 30px;
  margin-top: 10vw;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.contact-form h2 {
  margin-bottom: 10px;
  color: #0c4a6e;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Form Inputs */
.form-group {
  margin-bottom: 8px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #334155;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.form-control:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
  background: #fff;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* Button */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.btn i {
  margin-right: 8px;
  font-size: 18px;
}

/* Map Section */
#find {
  text-align: center;
  margin: 2vw 0px;
}

.map-container {
  height: 450px;
  margin-bottom: 4vw;
  background: #e0f2fe;
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  color: #0c4a6e;
  background: #bae6fd;
}

.map-placeholder i {
  font-size: 48px;
  margin-bottom: 15px;
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 8vw;
  }
  .same-h2 {
    font-size: 5.2vw;
    text-transform: uppercase;
  }
  .hero p {
    font-size: 1rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .info-item {
    padding: 10px 12px;
    gap: 10px;
  }

  .info-item i {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .info-content h3 {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 15px 20px;
    margin-top: 5vw;
  }

  .contact-form h2 {
    font-size: 1.25rem;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 14px;
  }

  textarea.form-control {
    min-height: 120px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }

  #find {
    margin: 3vw 0;
  }

  .map-container {
    height: 300px;
  }

  .map-placeholder i {
    font-size: 36px;
  }
}
