.locations-section {
  background: #ffffff; 
  padding: 80px 20px;
  color: #222;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.locations-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.tab-buttons.joined-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.joined-tabs .tab-btn {
  border-radius: 0;
  margin: 0;
  border: 1px solid #d8b979;
  border-right: none;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  background-color: #fff;
  color: #000;
  transition: background 0.3s ease, color 0.3s ease;
}

.joined-tabs .tab-btn:last-child {
  border-right: 1px solid #d8b979;
}

.joined-tabs .tab-btn.active {
  background-color: #d8b979;
  color: #fff;
}

.tab-content {
  display: none;
}

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

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.location-info {
  flex: 1;
  min-width: 280px;
  padding-right: 20px;
}

.location-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.location-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.location-info .location-link {
  color: #d8b979;
  font-weight: bold;
  text-decoration: none;
  margin-right: 20px;
}

.location-link:hover {
  color: #000;
  text-decoration: underline;
}

.location-image {
  flex: 1;
  min-width: 300px;
  transition: transform 0.4s ease;
}

.location-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: block;
  transition: transform 0.4s ease;
}

.location-image:hover img {
  transform: scale(1.02);
}

/* Mobile */
@media (max-width: 768px) {
  .location-grid {
    flex-direction: column;
  }
  .location-info, .location-image {
    padding: 0;
  }
}

.locations-tab-section {
  background: #f8f8f8;
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.locations-tab-heading {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
}

.tab-buttons.joined-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  border-radius: 0;
  border: 1px solid #d8b979;
  padding: 14px 32px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:not(:last-child) {
  border-right: none;
}

.tab-btn.active {
  background: #d8b979;
  color: #fff;
}

.tab-content {
  display: none;
}

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

.location-tab-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.tab-image {
  flex: 1;
  min-width: 300px;
}

.tab-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.tab-info {
  flex: 1;
  min-width: 300px;
}

.tab-info h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.tab-info p {
  font-size: 1rem;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .location-tab-grid {
    flex-direction: column;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 12px 16px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: #f9f9f9;
  color: #d8b979;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
