#section-4 {
  background: url("../images/sec-4/location-bg.jpg") no-repeat center
    center/cover;
  padding: 35px;
}

.sec4-txt-map-con {
  flex-direction: row;
}
.sec4-left-wrapper {
  position: relative;
  flex-shrink: 0;
}

.sec4-content-box {
  background: #000;
  color: #fff;
  padding: 30px;
  max-width: 650px;
  border-radius: 8px;
}

.sec4-subtitle {
  font-style: italic;
  font-family: var(--font3);
  font-size: 2rem;
}

.sec4-title-con {
  display: flex;
  flex-direction: row;
}

.sec4-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
}

.sec4-title .green {
  color: #2ecc71;
  font-size: large;
}

.sec4-title .line {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: #fff;
  margin-right: 10px;
  vertical-align: middle;
}

.sec4-text {
  margin-top: 20px;
  line-height: 29px;
  color: #ccc;
  width: 90%;
  font-size: 16px;
  padding-right: 50px;
}

.sec4-nearby-con {
  margin-top: 20px;
  border-radius: 12px;
}

.nearby-icons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 20px;
}

.nearby-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  background: none;
  border-radius: 12px;
  padding: 10px;
  width: 90px;
  height: 90px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nearby-icon-btn:hover {
  background: rgba(0, 0, 0, 0.2);
  border-color: #2ecc71;
  transform: translateY(-5px);
}

.nearby-icon-btn.active {
  background: rgba(0, 0, 0, 0.3);
  border-color: var(--primary-green);
}

.nearby-icon-btn img {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
  object-fit: contain;
}

.nearby-icon-btn span {
  text-align: center;
  font-size: 13px;
}

.nearby-content-area {
  position: relative;
  min-height: 200px;
}

.nearby-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
  background: rgba(0, 0, 0, 0.6);
  border-left: 4px solid #2ecc71;
  padding: 25px;
  border-radius: 8px;
}

.nearby-content.active {
  display: block;
}

.nearby-content h4 {
  color: #2ecc71;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.nearby-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nearby-content li {
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.nearby-content li:before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Desktop (1200px and up) - No changes */

/* Large Tablet (901px - 1199px) */
@media (max-width: 1199px) {
  #section-4 {
    padding: 40px 20px;
  }

  .sec4-content-box {
    padding: 15px;
    max-width: 600px;
  }

  .sec4-subtitle {
    font-size: 1.6rem;
  }

  .sec4-title {
    font-size: 40px;
  }

  .sec4-text {
    font-size: small;
    width: 100%;
  }

  iframe {
    width: 100%;
    max-width: 500px !important;
    height: 420px !important;
  }

  .sec4-nearby-con {
    padding: 20px;
  }

  .nearby-icons-container {
    gap: 15px;
  }

  .nearby-icon-btn {
    width: 90px;
    height: 90px;
    padding: 15px;
  }

  .nearby-icon-btn img {
    width: 60px;
    height: 60px;
  }

  .nearby-content {
    padding: 20px;
  }

  .nearby-content h4 {
    font-size: 18px;
  }

  .nearby-content li {
    font-size: 14px;
  }
}

/* Medium Tablet (768px - 899px) */
@media (max-width: 899px) {
  #section-4 {
    padding: 30px 15px;
  }

  .sec4-content-box {
    padding: 15px;
    max-width: 600px;
  }

  .sec4-subtitle {
    font-size: 1.6rem;
  }

  .sec4-title {
    font-size: 40px;
  }

  .sec4-text {
    font-size: small;
    width: 100%;
  }

  iframe {
    width: 100%;
    max-width: 500px !important;
    height: 420px !important;
  }

  .sec4-nearby-con {
    padding: 20px;
  }

  .nearby-icons-container {
    gap: 15px;
  }

  .nearby-icon-btn {
    width: 90px;
    height: 90px;
    padding: 15px;
  }

  .nearby-icon-btn img {
    width: 60px;
    height: 60px;
  }

  .nearby-content {
    padding: 20px;
  }

  .nearby-content h4 {
    font-size: 18px;
  }

  .nearby-content li {
    font-size: 14px;
  }
}

/* Small Mobile (520px - 767px) */
@media (max-width: 767px) {
  #section-4 {
    padding: 40px 15px;
  }

  .sec4-txt-map-con {
    flex-direction: column;
  }
  .sec4-left-wrapper {
    width: 100%;
  }

  .sec4-content-box {
    padding: 18px;
    max-width: 100%;
  }

  .sec4-subtitle {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .sec4-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .sec4-title .line {
    width: 40px;
  }

  .sec4-text {
    font-size: 12px;
    line-height: 1.6;
    width: 100%;
    padding-right: 0;
    margin-top: 15px;
  }

  iframe {
    width: 100%;
    max-width: 100% !important;
    height: 250px !important;
  }

  .sec4-nearby-con {
    margin-top: 25px;
    padding: 12px;
  }

  .nearby-icons-container {
    gap: 10px;
  }

  .nearby-icon-btn {
    padding: 10px;
    font-size: 11px;
  }

  .nearby-icon-btn img {
    margin-bottom: 5px;
  }

  .nearby-content {
    padding: 15px;
  }

  .nearby-content h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .nearby-content li {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 6px;
  }
}

/* Extra Small Mobile (< 375px) */
@media (max-width: 374px) {
  #section-4 {
    padding: 30px 10px;
  }

  .row {
    gap: 15px;
  }

  .sec4-content-box {
    padding: 15px;
  }

  .sec4-subtitle {
    font-size: 1rem;
  }

  .sec4-title {
    font-size: 22px;
  }

  .sec4-title .line {
    width: 35px;
  }

  .sec4-title .green {
    font-size: 14px;
  }

  .sec4-text {
    font-size: 11px;
    line-height: 1.5;
  }

  iframe {
    width: 100%;
    max-width: 100% !important;
    height: 200px !important;
  }

  .sec4-nearby-con {
    padding: 10px;
  }

  .nearby-icons-container {
    gap: 8px;
  }

  .nearby-icon-btn {
    width: 90px;
    height: 90px;
    padding: 8px;
  }

  .nearby-icon-btn img {
    margin-bottom: 3px;
  }

  .nearby-content {
    padding: 12px;
  }

  .nearby-content h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .nearby-content li {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 5px;
  }
}
