* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}
html {
  scroll-behavior: smooth;
}

body {
  background: #f5f8fc;
  color: #333;
}

header {
  height: 100vh;
  color: white;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 30px;
  font-weight: bold;
}
.span1 {
  color: #ff9800;
}

.btn {
  background: #ff9800;
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #d48309;
  color: #161301a4;
  font-size: 17px;
}

section {
  padding: 80px 8%;
}

.title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.destinations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card h3 {
  margin-bottom: 10px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  text-align: center;
}

.service {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service h3 {
  margin: 15px 0;
}

.booking {
  background: #0a47a3bb;
  color: white;
}

.booking form {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
  gap: 20px;
  margin-top: 30px;
}

.booking input,
.booking select {
  padding: 15px;
  border: none;
  border-radius: 8px;
}

.booking button {
  grid-column: 1/-1;
  padding: 15px;
  background: #ff9800;
  border: none;
  color: white;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
  height: 10px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #ffffff;
  color: #0d6efd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 22px;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: translateY(-5px);
  background: #0d6efd;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  font-size: 25px;
}

/* Brand colors on hover */
.social-icons a:nth-child(3):hover {
  background: #165db9; /* Facebook */
}

.social-icons a:nth-child(2):hover {
  background: #e4405f; /* Instagram */
}

.social-icons a:nth-child(1):hover {
  background: #25d366; /* WhatsApp */
}

.social-icons a:nth-child(4):hover {
  background: #dd3004; /* WhatsApp */
}

.booking {
  background: linear-gradient(135deg, #3d5a85, #003b88);
  color: #fff;
}

.booking-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-top: 40px;
}

.booking-form {
  flex: 1;
}

.booking-form form {
  display: grid;
  gap: 20px;
}

.booking-form input {
  padding: 15px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
}

.booking-form button {
  padding: 15px;
  border: none;
  border-radius: 8px;
  background: #ff9800;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
}

.booking-form button:hover {
  background: #d48309;
}

.booking-image {
  flex: 1;
  text-align: center;
}

.booking-image img {
  width: 113%;
  max-width: 550px;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(87, 83, 83, 0.3);
}

@media (max-width: 768px) {
  .booking-container {
    flex-direction: column;
  }

  .booking-image img {
    max-width: 100%;
    margin-top: 30px;
  }
}

footer {
  background: #35393d;
  color: white;
  padding: 25px;
  text-align: center;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  nav {
    flex-direction: column;
  }

  nav ul {
    margin-top: 20px;
  }
}
