* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* ✨ added for better sizing control */
}

body {
  padding-bottom: 350px;
  position: relative;
  font-family: 'Roboto', sans-serif; /* ✨ added for clean text */
}

/* 🎠 Carousel Container */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: block;
  width: 90vw;
  margin: 40px auto; /* 🔧 centered carousel nicely */
}

/* 🎢 Track & Slide */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  position: relative;
}
@media (max-width:800px) {
    .carousel-track {
        padding-top: 20px;
    }
}

.carousel-slide {
  min-width: 100%;
  transition: transform 0.5s ease;
}

/* ✨ Removed negative margin — it was breaking alignment */
.carousel-slide img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

/* 🎯 Buttons */
.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.4);
  border: none;
  color: white; /* 🔧 was black */
  padding: 10px 18px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  user-select: none;
  opacity: 0.6;
  transition: opacity 0.25s, background-color 0.25s;
}
.carousel-button:hover {
  opacity: 1;
  background-color: rgba(0,0,0,0.7);
}
.carousel-button.prev {
  left: 10px;
}
.carousel-button.next {
  right: 10px;
}

/* 💬 Contact Slide Section */
.contact-slide {
  display: flex;
  align-items: flex-start;
  justify-content: space-around; /* 🔧 more balanced layout */
  flex-wrap: wrap; /* ✨ helps on smaller screens */
  padding: 60px 40px; /* 🔧 replaces margin: 25% */
  gap: 30px;
  position: relative;
  text-align: center;
}

/* 📱 Mobile View Adjustments */
@media (max-width: 800px) {
  .contact-slide {
    flex-direction: column;
    align-items: center;
    gap: 50px; /* 🔧 reduced from 100px */
    padding: 40px 20px; /* ✨ added */
  }
}

/* 🧭 Titles */
.contact-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 15px;
}
.contact-title-info {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px; /* ✨ added for breathing space */
}

/* 🧩 Contact Links */
.contact-slide-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  margin-top: 0; /* 🔧 removed negative margins */
}

.contact-slide-links-img {
  border: 1px solid #aaa;
  border-radius: 4px;
  padding: 10px;
  height: 120px; /* 🔧 was 150px */
  width: 120px; /* ✨ added for symmetry */
  object-fit: contain;
  background-color: white;
}

/* 🗺️ Map Styling */
.map-link {
  text-align: center;
}
.map-link-img {
  border: 1px solid grey;
  border-radius: 4px;
  padding: 10px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}
.contact-link-map {
  color: black;
  text-decoration: none;
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  transition: color 0.2s;
}
.contact-link-map:hover {
  color: purple; /* ✨ gives a hover effect */
}

/* 🏙️ Region Titles */
.region-contact-info,
.region-contact-info-two {
  position: absolute; /* 🔧 was absolute (caused overlap) */
  z-index: 10;
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin-top: -50px; /* ✨ added spacing */
}

/* 📱 Small Screens */
@media (max-width: 800px) {
  .contact-slide-links-img,
  .map-link-img {
    height: 80px;
    width: 80px;
  }
  .region-contact-info,
  .region-contact-info-two {
    font-size: 24px;
    top: 50px;
  }
  .contact-title {
    font-size: 26px;
  }
  .contact-title-info {
    font-size: 16px;
  }
}
