/* Base and Reset */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #111; /* Black background */
  color: #ffd600;    /* Yellow text */
  min-height: 100vh;
  overflow-x: hidden;
}

/* Destinations Section */
#destinations {
  text-align: center;
  padding: 60px 10px 50px 10px;
  background: #181818;
}

#destinations h2 {
  font-size: 2.3rem;
  color: #ffd600;
  font-weight: bold;
  margin-bottom: 14px;
  letter-spacing: 1px;
}
#destinations h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ffd600;
  margin: 10px auto 20px auto;
  border-radius: 2px;
}

#destinations p {
  font-size: 1.08rem;
  color: #fffde7;
  margin-bottom: 36px;
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* Destination Card */
.destination-card {
  position: relative;
  background: #222;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 #ffd60033;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition: 
    opacity 0.7s cubic-bezier(.22,1,.36,1), 
    transform 0.7s cubic-bezier(.22,1,.36,1), 
    box-shadow 0.3s;
  border: 2px solid #ffd600;
}
.destination-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.destination-card:hover,
.destination-card:focus-visible {
  box-shadow: 0 6px 24px 0 #ffd60088, 0 2px 8px 0 #ffd60033;
  transform: translateY(-8px) scale(1.03);
  border: 2px solid #fff;
}

.destination-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  display: block;
  transition: filter 0.4s, transform 0.4s;
  filter: grayscale(0.12) brightness(0.94) contrast(1.02);
}
.destination-card:hover img,
.destination-card:focus-visible img {
  filter: grayscale(0) brightness(1.08) contrast(1.09);
  transform: scale(1.06);
}

/* Belt Overlay */
.destination-card .belt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 13px 0 11px 0;
  background: #ffd600;
  color: #111;
  font-size: 1.13rem;
  font-weight: 600;
  text-align: center;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  letter-spacing: 0.5px;
  opacity: 0.93;
  transition: background 0.2s, color 0.2s, letter-spacing 0.25s, font-size 0.25s;
  user-select: none;
}
.destination-card:hover .belt,
.destination-card:focus-visible .belt {
  background: #111;
  color: #ffd600;
  letter-spacing: 1.2px;
  font-size: 1.16rem;
}

/* Subtle icon in belt */
.destination-card .belt i {
  margin-right: 6px;
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 900px) {
  .destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    padding: 0 8px;
  }
  .destination-card img {
    height: 140px;
  }
}

@media (max-width: 600px) {
  #destinations {
    padding: 32px 0 15px 0;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 3px;
    width: 100%;
  }
  .destination-card img {
    height: 110px;
  }
}

/* How to Book Section */
.how-to-book-section {
  padding: 60px 20px;
  background: #111;
  color: #ffd600;
  text-align: center;
  position: relative;
}

.how-to-book-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffd600;
  letter-spacing: 1px;
}

.steps-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  width: 100%;
}

.progress-bar-container {
  position: relative;
  width: 50px;
  min-width: 50px;
  height: 100%;
  background: #222;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-bar {
  position: absolute;
  width: 10px;
  height: 0%;
  background: linear-gradient(90deg, #ffd600 60%, #fff 100%);
  border-radius: 25px;
  left: 50%;
  transform: translateX(-50%);
  transition: height 0.5s ease;
}

.step-dot {
  position: relative;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 3px solid #ffd600;
  border-radius: 50%;
  margin: 20px 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  color: #111;
  font-weight: bold;
  font-size: 1.25rem;
  box-shadow: 0 2px 8px #ffd60022;
}

.step-dot.active {
  background: #ffd600;
  color: #111;
  border-color: #fff;
  transform: scale(1.12);
}

.dot-icon {
  font-size: 1.2rem;
  color: #111;
  transition: color 0.3s;
}

.step-dot.active .dot-icon {
  color: #111;
}

/* Steps Content */
.steps-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  max-width: 480px;
}

.step {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
  background: #222;
  padding: 32px 32px 24px 32px;
  margin-bottom: 10px;
  border-radius: 16px;
  box-shadow: 0 6px 20px #ffd60022;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: #ffd600;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step .step-number {
  background: #ffd600;
  color: #111;
  font-weight: bold;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px #ffd60044;
}

.step h3 {
  font-size: 1.4rem;
  color: #ffd600;
  margin: 0 0 6px 0;
  letter-spacing: 1px;
}

.step p {
  font-size: 1rem;
  color: #fffde7;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .steps-content .step {
    max-width: 100%;
    min-width: 0;
    padding: 20px 10px 12px 10px;
  }
}

@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .progress-bar-container {
    width: 10px;
    min-width: 10px;
    height: auto;
  }
  .steps-content {
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 100%;
  }
  .steps-content .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 0;
    padding: 18px 8px 12px 8px;
  }
  .step .step-number {
    margin: 0 0 12px 0;
  }
}

@media (max-width: 600px) {
  .how-to-book-section {
    padding: 30px 3px;
  }
}

/* General section spacing for mobile */
@media (max-width: 600px) {
  #destinations {
    padding: 24px 0 10px 0;
  }
}


/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, #1e1e1e, #333);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Headers with Underlines */
.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffcc00;
  position: relative;
}

.header-underline {
  width: 50px;
  height: 3px;
  background: #ffcc00;
  margin: 10px auto 20px auto;
}

/* Company Info */
.footer-company {
  text-align: left;
  max-width: 250px;
}

.company-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-company a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-company a:hover {
  text-decoration: underline;
}

/* Quick Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc00;
}

/* Map Section */
.footer-map iframe {
  border-radius: 10px;
  border: 2px solid #444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-map iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2);
}

/* Social Links */
.footer-social .social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-link {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
  color: #ffcc00;
}

/* Newsletter */
.footer-newsletter .newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-input {
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
  width: 250px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 5px #ffcc00;
}

.newsletter-button {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  background: #ffcc00;
  color: #333;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.newsletter-button:hover {
  transform: scale(1.1);
  background: #e6b800;
}

.newsletter-success {
  margin-top: 10px;
  display: none;
  color: #ffcc00;
  font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #555;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-input {
    width: 100%;
    max-width: 300px;
  }

  .footer-company,
  .footer-links,
  .footer-social,
  .footer-newsletter {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .newsletter-form {
    justify-content: center;
  }
}