

/* Map Section */
.map-section {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.map-section:hover iframe {
  filter: grayscale(0%);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form-wrapper {
  padding: 50px;
  background: white;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue-color);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue-color);
  font-size: 16px;
  z-index: 2;
}

.form-control {
  width: 100%;
  padding: 16px 20px 16px 50px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-color);
  box-shadow: 0 0 0 4px rgba(119, 211, 63, 0.1);
}

.form-control::placeholder {
  color: #999;
}

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

.btn-submit {
  background: var(--green-color);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.btn-submit:hover {
  background: #6bc035;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(119, 211, 63, 0.4);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Contact Info */
.contact-info-wrapper {
  background: var(--blue-color);
  padding: 50px;
  color: white;
  display: flex;
  flex-direction: column;
}

.info-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.contact-info-item-2 {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-info-item-2:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.info-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-content p,
.info-content a {
  font-size: 17px;
  color: white;
  margin: 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--green-color);
}

/* Alert Messages */
.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  flex-direction: column;
  align-items: flex-start;
}

.alert-danger p {
  margin: 0 0 5px 0;
}

.alert-danger p:last-child {
  margin-bottom: 0;
}

.alert i {
  margin-right: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-wrapper {
    display: block;
    grid-template-columns: 1fr;
  }

  .contact-info-wrapper {
    padding: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-wrap-2 {
    min-height: 250px;
    padding: 40px 0;
  }

  .page-title {
    font-size: 32px;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 30px;
  }

  .form-title,
  .info-title {
    font-size: 24px;
  }

  .map-section {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .hero-wrap-2 {
    min-height: 200px;
    padding: 30px 0;
  }

  .page-title {
    font-size: 28px;
  }

  .breadcrumbs {
    font-size: 13px;
  }

  .contact-section {
    padding: 50px 0;
  }

  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 25px;
  }

  .btn-submit {
    width: 100%;
  }

  .form-control {
    padding: 14px 16px 14px 45px;
    font-size: 14px;
  }

  .form-icon {
    left: 16px;
    font-size: 14px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .info-content h4 {
    font-size: 13px;
  }

  .info-content p,
  .info-content a {
    font-size: 15px;
  }
}
