
/* =============================== Contact Page Styling =============================== */

.contact-hero {
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.contact-hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(100%);
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 22, 32, 0.3), #001620 80%);
}

.contact-hero h1 {
  letter-spacing: -1px;
}

.contact-card {
  background: linear-gradient(
    145deg,
    rgba(11, 34, 44, 0.8),
    rgba(0, 22, 32, 0.9)
  );
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(0, 237, 100, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-input {
  background: #0f2c38;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 16px 22px;
  color: #fff;
  transition: 0.3s;
}

.contact-input::placeholder {
  color: #7a9ba8;
}

.contact-input:focus {
  outline: none;
  background: #0b222c;
  border-color: #00ed64;
  box-shadow: 0 0 15px rgba(0, 237, 100, 0.2);
}

/* Textarea */

textarea.contact-input {
  border-radius: 20px;
}

.btn-primary-custom {
  background: linear-gradient(90deg, #00ed64, #00c853);
  color: #002108;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 237, 100, 0.4);
}

.contact-info-card {
  display: flex;
  gap: 20px;
  align-items: center;
  background: linear-gradient(
    145deg,
    rgba(11, 34, 44, 0.8),
    rgba(0, 22, 32, 0.9)
  );
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  border-color: #00ed64;
  box-shadow: 0 10px 30px rgba(0, 237, 100, 0.15);
}

.contact-info-card h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info-card p {
  margin: 0;
  color: #8aa3b0;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #0f2c38, #0b222c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.office-section {
  background: #061e28;
  padding: 100px 0;
}

.office-card {
  background: linear-gradient(
    145deg,
    rgba(11, 34, 44, 0.8),
    rgba(0, 22, 32, 0.9)
  );
  padding: 35px;
  border-radius: 20px;
  height: 100%;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.office-card:hover {
  transform: translateY(-10px);
  border-color: #00ed64;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.office-card h4 {
  margin-bottom: 20px;
  font-weight: 600;
}

.office-card ul {
  list-style: none;
  padding: 0;
}

.office-card li {
  margin-bottom: 12px;
  color: #8aa3b0;
  transition: 0.3s;
}

.office-card li:hover {
  color: #00ed64;
  padding-left: 5px;
}

.map-section {
  background: #001620;
  padding: 100px 0;
}

.map-section img {
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .contact-card {
    padding: 30px;
  }

  .contact-hero {
    height: 350px;
  }
}
