* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #333;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #0a3d62;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

/* NAVIGATION LINKS */
.nav-links {
  list-style: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: #0a3d62;
  display: none;
  flex-direction: column;
}

.nav-links li {
  text-align: center;
  padding: 15px 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

/* HAMBURGER ANIMATION */
.nav-links.show {
  display: flex;
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7.5px, 7.5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hamburger span {
  transition: all 0.3s ease;
}

.nav-links a.active {
  border-bottom: 2px solid #fff;
  padding-bottom: 4px;
}

/* HAMBURGER MENU */
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #fff;
  margin: 4px 0;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* HERO SECTION */
.hero {
  padding: 30px 20px;
  text-align: center;
}

.hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hero-text {
  padding: 20px;
}

.hero h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 14px;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0a3d62;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  background-color: #08304d;
}

/* FEATURES SECTION */
.features {
  padding: 20px;
  text-align: center;
}

.feature-card {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
}

/* SEARCH BOX */
.search-box {
  text-align: center;
  margin: 20px;
}

.search-box input {
  width: 100%;
  max-width: 300px;
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
}

.search-box input:focus {
  border-color: #0a3d62;
}

/* FILTER BUTTONS */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 15px;
  border: 1px solid #0a3d62;
  background: transparent;
  color: #0a3d62;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #0a3d62;
  color: #fff;
}

/* DESTINATIONS PREVIEW SECTION */
.preview-destination {
  padding: 20px;
  text-align: center;
}

.preview-destination h2 {
  margin-bottom: 1rem;
}

.destination-card {
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* FOOTER SECTION */
.footer {
  background-color: #0a3d62;
  color: #fff;
  text-align: center;
  padding: 15px;
}

  /* PAGE HERO */
  .page-hero {
    background-color: #0a3d62;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
  }

  /* DESTINATION LIST */
  .destination-list {
    padding: 20px;
  }

  .destination-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .destination-info {
    padding: 15px;
  }

  .destination-info h3 {
    margin-bottom: 8px;
  }

  .destination-info p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* DESTINATION HOVER EFFECTS */
  .destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .destination-card:hover img {
    transform: scale(1.05);
  }

/* CONTACT FORM */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 16px;
}

.contact-form button {
  padding: 10px;
  background-color: #0a3d62;
  color: #fff;
  border: none;
  cursor: pointer;
}

.form-status {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 15px;
}

.form-status.success {
  color: green;
}

.form-status.error {
  color: red;
}

.btn.loading {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.btn.loading::after {
  content: " Sending...";
  font-size: 14px;
  margin-left: 6px;
}

/* ABOUT PAGE */
.about-story,
.about-values,
.about-cta {
  padding: 20px;
  text-align: center;
}

.about-story p {
  font-size: 14px;
  line-height: 1.6;
}

.value-card {
  background-color: #fff;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-cta {
  background-color: #0a3d62;
  color: white;
}

.about-cta .btn {
  margin-top: 15px;
  display: inline-block;
}

/* CONTACT PAGE / SECTION */
.contact-section {
  padding: 20px;
}

.contact-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0a3d62;
  box-shadow: 0 0 5px rgba(10, 61, 98, 0.5);
}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 2000;
}

.modal-content {
  background: #fff;
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  position: relative;
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.close-modal {
  position: absolute;
  top: 1px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
}

.modal img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  margin-top: 2px;
}


/* === MEDIA QUERY (Tablet) === */
@media (min-width: 768px) {
  /* HEADER */
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    width: auto;
    background: none;
  }

  .nav-links li {
    padding: 0 15px;
  }

  .hamburger {
    display: none;
  }

  /* HERO SECTION */
  .hero {
    display: flex;
    align-items: center;
    text-align: left;
  }

  .hero img {
    height: 400px;
  }

  .hero-text {
    padding: 40px;
  }
  
  /* FEATURES GRID */
  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .features h2 {
    grid-column: 1 / -1;
  }

  /* DESTINATION PREVIEW GRID */
  .preview-destination {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .preview-destination h2 {
    grid-column: 1 / -1;
  }

  /* DESTINATION LIST */
  .destination-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* CONTACT FORM */
  .contact-form {
    width: 600px;
    margin: 0 auto
  }

  /* ABOUT VALUES */
  .about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .about-values h2 {
    grid-column: 1 / -1;
  }

  .about-story p {
    max-width: 700px;
    margin: 0 auto;
  }

  .about-cta {
    padding: 40px 20px;
  }

  /* CONTACT FORM */
  .contact-form {
    max-width: 700px;
    margin: 0 auto;
  }

  .contact-form .form-group {
    display: flex;
    flex-direction: column;
  }
}

/* === DESKTOP BREAKPOINT === */
@media (min-width: 1024px) {
  body {
    max-width: 1600px;
    margin: 0 auto;
  }

  /* HEADER */ 
  .header {
    padding: 20px 40px;
  }

  /* HERO SECTION */
  .hero img {
    height: 500px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 18px
  }

  .btn {
    padding: 14px 28px;
    font-size: 16px;
  }

  /* FEATURE SECTION */
  .feature-card {
    padding: 25px;
  }

  /* DESTINATION CARD */
  .destination-card img {
    height: 220px;
  }

  /* DESTINATION LIST */
  .destination-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  /* ABOUT */
  .about-story p {
    font-size: 18px;
    line-height: 1.8;
  }

  .value-card {
    padding: 25px;
  }

  .about-cta h2 {
    font-size: 32px;
  }

  /* CONTACT FORM */
  .contact-form {
    max-width: 900px;
    padding: 40px;
  }

  .form-group label {
    font-size: 15px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 15px;
    padding: 12px;
  }
}