* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #eef2f7;
  color: #111827;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #ffffff;
  box-shadow: 0 1px 18px rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #111827;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #0f172a;
}

.home-page {
  height: calc(100vh - 84px);
  min-height: 0;
}

.carousel {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.24), rgba(15, 23, 42, 0.72));
}

.slide-content {
  position: relative;
  max-width: 640px;
  color: #ffffff;
  z-index: 1;
}

.slide-content h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.slide-content p {
  margin: 1.5rem 0 2rem;
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  background: #ff6b5c;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(255, 107, 92, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  background: #ff5b4a;
}

.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.65rem;
  z-index: 2;
}

.carousel-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
  width: 1rem;
  height: 1rem;
  background: #ffffff;
}

.destinations-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  margin: 0;
  color: #0f172a;
}

.section-header p {
  margin: 1rem auto 0;
  color: #475569;
  font-size: 1rem;
  line-height: 1.8;
}

.destinations-carousel-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.destinations-carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
  width: max-content;
  margin: 0 auto;
}

.dest-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(15, 23, 42, 0.08);
  color: #0f172a;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 5;
}

.dest-carousel-arrow.left {
  left: 0.75rem;
}

.dest-carousel-arrow.right {
  right: 0.75rem;
}

.dest-carousel-arrow:hover {
  background: rgba(15, 23, 42, 0.18);
  transform: translateY(-50%);
  box-shadow: 0 0 18px rgba(15, 23, 42, 0.18);
}

.destination-card {
  position: relative;
  min-width: 220px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  scroll-snap-align: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.destination-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.32);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: opacity 0.3s ease;
}

.destination-card:hover {
  box-shadow: inset 0 0 0 100px rgba(15, 23, 42, 0.18), 0 18px 40px rgba(15, 23, 42, 0.12);
}

.destination-card:hover img {
  filter: brightness(0.5);
  transform: scale(1.03);
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.adventure-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
}

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.adventure-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  min-height: 260px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

.adventure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.adventure-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.28);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.2;
  padding: 0 1rem;
  transition: opacity 0.3s ease;
}

.adventure-card:hover img {
  filter: brightness(0.55);
  transform: scale(1.05);
}

.adventure-card:hover .adventure-overlay {
  opacity: 1;
}

.offer-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 100%);
}

.offer-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.offer-panel {
  background: #ffffff;
  border-radius: 1.75rem;
  padding: 2.25rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.09);
  position: relative;
  overflow: hidden;
}

.offer-panel::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
}

.offer-panel::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
}

.offer-badge {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #2563eb, #10b981);
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.2);
  animation: nudge 3s ease-in-out infinite;
}

.offer-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  color: #111827;
}

.offer-panel p {
  margin: 0;
  color: #475569;
  line-height: 1.85;
}

.offer-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

@keyframes nudge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Footer Styles */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 4rem 2rem 3rem;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand-section p {
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.enquiry-btn {
  padding: 0.75rem 1.5rem;
  background: #ff6b5c;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.enquiry-btn:hover {
  background: #ff5b4a;
  transform: translateY(-2px);
}

.footer-links h4,
.footer-social h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin: 0 0 1.25rem 0;
}

.footer-links ul,
.footer-social ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-container a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-container a:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .adventure-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .adventure-grid {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 860px) {
  .navbar {
    padding: 1rem 1.2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .carousel-slide {
    padding: 0 1.5rem;
  }

  .slide-content h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .slide-content p {
    font-size: 1rem;
  }
}
