/* =========================
   LOCATION SECTION
========================= */

.location-section {
  position: relative;
  padding: 50px 0%;
  padding-left: 5%;
  background-image: url("https://projects.synergynexa.com/hind-terminal/assets/images/contact-us/BG.png");
  background-size: contain;
  background-position: start;
  background-repeat: no-repeat;
}

/* Orange Background Box */
.location-wrapper {
  border-radius: 40px;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Wave Pattern Overlay */
.location-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/wave-pattern.png");
  background-size: cover;
  opacity: 0.25;
  pointer-events: none;
}

/* LEFT SIDE */
.location-left {
  width: 45%;
  position: relative;
  z-index: 2;
}

.location-left h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sub-text {
  font-size: 18px;
  margin-bottom: 20px;
}

.location-select {
  width: 70%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 40px;
  font-size: 16px;
}

/* Card */
.location-card {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  max-width: 450px;
}

.location-card h3 {
  color: #f4a32d;
  font-size: 28px;
  margin-bottom: 20px;
}

.location-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.location-card .email {
  margin-top: 20px;
  font-weight: 500;
}

/* RIGHT SIDE */
.location-right {
  width: 50%;
  position: relative;
  z-index: 2;
  display: flex;
}

/* Map Frame */
.map-frame {
  background: #111;
  padding: 15px;
  border-radius: 25px;
  width: 100%;
  height: 450px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

/* Big Bottom Text */
.big-text {
  position: absolute;
  bottom: -20px;
  left: 5%;
  font-size: 70px;
  font-weight: 800;
  color: #fff;
  pointer-events: none;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .location-left {
    width: 48%;
  }

  .location-right {
    width: 48%;
  }

  .map-frame {
    height: 400px;
  }

  .big-text {
    font-size: 60px;
  }
}

@media (max-width: 992px) {
  .location-section {
    padding: 60px 5%;
    background-size: cover;
    background-position: center;
  }

  .location-wrapper {
    flex-direction: column;
    padding: 60px 40px;
  }

  .location-left,
  .location-right {
    width: 100%;
  }

  .location-right {
    margin-top: 40px;
  }

  .location-select {
    width: 100%;
  }

  .location-card {
    max-width: 100%;
  }

  .map-frame {
    height: 380px;
  }

  .big-text {
    position: static;
    text-align: center;
    margin-top: 50px;
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .location-wrapper {
    padding: 0 20px;
  }

  .location-left h2 {
    font-size: 26px;
  }

  .sub-text {
    font-size: 16px;
  }

  .location-card {
    padding: 30px;
  }

  .location-card h3 {
    font-size: 22px;
  }

  .map-frame {
    height: 320px;
  }

  .big-text {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .location-section {
    padding: 50px 15px;
  }

  .location-left h2 {
    font-size: 22px;
  }

  .location-card {
    padding: 22px;
    border-radius: 20px;
  }

  .map-frame {
    height: 260px;
    padding: 10px;
    border-radius: 20px;
  }

  .map-frame iframe {
    border-radius: 12px;
  }

  .big-text {
    font-size: 26px;
    margin-top: 30px;
  }
}
