body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fb;
  color: #1c1c1c;
  line-height: 1.6;
}

/* HEADER */
header {
  background: #0f4c5c;
  color: white;
  padding: 15px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 25px;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #ffb703;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(15,76,92,0.75), rgba(15,76,92,0.75)),
  url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 150px 20px;
}

.hero h1 {
  font-size: 58px;
  margin-bottom: 15px;
}

.hero h2 {
  font-size: 22px;
  letter-spacing: 5px;
  font-weight: 300;
}

/* SECTIONS */
.section {
  padding: 70px 80px;
  text-align: center;
}

.section h2 {
  margin-bottom: 40px;
  color: #0f4c5c;
  font-size: 32px;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  background: white;
  padding: 25px;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

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

.service-icon {
  font-size: 42px;
  margin-bottom: 15px;
  color: #ff7b00;
}

/* DESTINATIONS */
.destination-section {
  padding: 70px 80px;
}

.destination-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0f4c5c;
  font-size: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.gallery-item p {
  margin-top: 8px;
  font-weight: 500;
}

/* CTA */
.cta {
  background: #0f4c5c;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 30px;
}

.cta-button {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 35px;
  background: #ff7b00;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.3s;
}

.cta-button:hover {
  background: #ff9500;
}

/* FOOTER */
footer {
  background: #0f4c5c;
  color: white;
  text-align: center;
  padding: 20px;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
}