.location-section {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.heading {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.sub-heading {
  color: #b0b0b0;
  font-size: 20px;
  margin-bottom: 80px;
  font-weight: 400;
  letter-spacing: 1px;
}

.location-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
}

.location-left,
.location-right {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  position: relative;
  max-width: 280px;
  padding: 15px 20px;
  border-radius: 10px;
  background: rgba(30, 30, 30, 0.7);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.location-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

.location-item i {
  color: #d4af37;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.location-item:hover i {
  transform: scale(1.2);
}

.location-text {
  text-align: left;
}

.location-item span {
  color: #fff;
  font-weight: 600;
  display: block;
  font-size: 18px;
}

.location-item p {
  font-weight: 400;
  color: #b0b0b0;
  margin: 5px 0 0;
  font-size: 16px;
}

/* Golden dotted connectors pointing to the center image */
.location-left .location-item::after,
.location-right .location-item::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 70px;
  height: 1px;
  border-bottom: 2px dotted #d4af37;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.location-left .location-item::after {
  right: -75px;
}

.location-right .location-item::after {
  left: -75px;
}

.location-item:hover::after {
  opacity: 1;
  width: 80px;
}

/* Center Map Image with Golden Border */
.location-map {
  position: relative;
  z-index: 2;
}

.location-map img {
  max-width: 500px;
  border: 3px solid #d4af37;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.location-map:hover img {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* Golden accent elements */
.gold-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  pointer-events: none;
}

.accent-1 {
  top: 10%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

.accent-2 {
  bottom: 15%;
  right: 8%;
  animation: float 10s ease-in-out infinite 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .location-container {
    gap: 40px;
  }

  .location-map img {
    max-width: 400px;
  }
}

@media (max-width: 1024px) {
  .location-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .location-left,
  .location-right {
    align-items: center;
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .location-item {
    justify-content: center;
    max-width: 300px;
  }

  .location-left .location-item::after,
  .location-right .location-item::after {
    display: none; /* remove dotted lines on tablet/mobile */
  }
}

@media (max-width: 768px) {
  .heading {
    font-size: 36px;
  }

  .sub-heading {
    font-size: 18px;
    margin-bottom: 60px;
  }

  .location-item {
    font-size: 16px;
    gap: 15px;
    max-width: 100%;
    width: 100%;
  }

  .location-map img {
    max-width: 90%;
  }

  .location-left,
  .location-right {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: 32px;
  }

  .sub-heading {
    font-size: 16px;
  }

  .location-item {
    padding: 12px 15px;
  }

  .gold-accent {
    display: none;
  }
}
