html,
body {
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

.hero-section {
  background: linear-gradient(rgba(0, 150, 150, 0.8), rgba(0, 150, 150, 0.8));

  background-size: cover;
  background-position: center;

  padding: 120px 0;
}

/* ===============================
CONTACT PAGE
================================ */

.contact-title {
  font-weight: 700;
  font-size: 36px;
  color: #2c8f8f;
  position: relative;
}

.contact-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #2c8f8f;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

/* ===============================
CONTACT FORM CARD
================================ */

.contact-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* ===============================
LOCATION CARD
================================ */

.location-card {
  border: none;
  border-radius: 16px;
  padding: 25px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* ===============================
FORM INPUTS
================================ */

.contact-card .form-control {
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.contact-card .form-control:focus {
  border-color: #2c8f8f;
  box-shadow: 0 0 8px rgba(44, 143, 143, 0.3);
}

/* ===============================
BUTTON
================================ */

.contact-card .btn {
  background: #2c8f8f;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact-card .btn:hover {
  background: #256f6f;
  transform: scale(1.04);
}

/* ===============================
LOCATION BUTTONS
================================ */

.location-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

/* LOCATION PILLS */

.loc-btn {
  display: flex;
  align-items: center;
  gap: 6px;

  padding: 9px 16px;

  border-radius: 40px;

  border: 1.5px solid #e4eeee;

  background: #ffffff;

  font-size: 13.5px;
  font-weight: 500;

  cursor: pointer;

  transition: all 0.25s ease;

  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
}

/* Hover */

.loc-btn:hover {
  border-color: #2c8f8f;
  background: #f1f8f8;
  transform: translateY(-2px);
}

/* Active */

.loc-btn.active {
  background: #2c8f8f;
  color: #fff;
  border-color: #2c8f8f;
  box-shadow: 0 6px 16px rgba(44, 143, 143, 0.35);
}

/* ===============================
MAP CONTAINER
================================ */

.map-container {
  border-radius: 14px;
  overflow: hidden;
  margin-top: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

/* iframe smooth look */

.map-container iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* Location Section CSS Code */

.locations-section {
  background: #eef3f5;
}

.location-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: #e6f3f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: auto;
}
