body {
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

.btn {
    border-radius: 0px;
}

.bg-success {
    background-color: #003f2f !important;
}

.bg-dark-green {
    background-color: #003f2f;
}

.text-dark-green {
    color: #003f2f;
}

.btn-warning {
    background-color: #ffa500;
}

.btn-outline-dark-green {
    border: #003f2f 1px solid;
    background-color: #003f2f;
    color: #f8f9fa;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.navbar {
    background-color: #003f2f;
}

.navbar-nav .nav-link {
    color: white;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover {
    color: #ffa500;
}

.top-bar a,
.top-bar i {
    color: #003f2f;
}

@media screen and (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

.top-bar a:hover,
.top-bar i:hover {
    color: #ffa500;
}

.dropdown-menu {
    background-color: #003f2f;
}

.dropdown-item {
    color: white;
    text-transform: uppercase;
}

.dropdown-item:hover {
    background-color: #ffa500;
    color: #000;
}

.section-title {
    text-transform: uppercase;
    color: #003f2f;
}

.hero-section {
    min-height: 100px;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 0px;
    }
}

.hero-section h1 {
    color: #003f2f;
}

/*.hero-text {*/
/*    padding: 4rem 2rem;*/
/*}*/

.btn-dark-green {
    background-color: #003f2f;
    color: white;
}

.btn-dark-green:hover {
    background-color: #ffa500;
    color: #000;
}

.features {
    z-index: 10;
}

@media (min-width: 768px) {
    .features {
        margin-top: -100px;
    }
}

.features .feature-box {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.features .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.features h4 {
    color: #003f2f;
}

.destination-text {
    background-color: rgba(0, 0, 0, 0.35);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    background-color: #ffa500;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.destination-card,
.package-item {
    transition: all 0.3s ease-in-out;
}

.destination-card:hover,
.package-item:hover {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.service-icon {
    font-size: 2rem;
    color: #004d40;
    background: #f3f7f6;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    display: inline-block;
}

.service-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #003322;
}

.footer {
    background-color: #003f2f;
    width: 100%;
}

.form-section {
    max-width: 800px;
    margin: auto;
    padding: 30px;
}

.carousel-inner {
    height: 400px;
}

.carousel-inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.left-images img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.left-images .row>div {
    margin-bottom: 10px;
}

.form-check-label a {
    color: green;
    text-decoration: underline;
}

.btn-primary {
    background-color: #004d00;
    border-color: #004d00;
}

.btn-primary:hover {
    background-color: #003d00;
    border-color: #003d00;
}

.destination-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

    .gallery {
        padding: 10px;
    }

    .gallery-title {
      text-align: center;
      font-size: 32px;
      color: #003f2f;
      margin-bottom: 40px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .gallery-grid img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery-grid img:hover {
      transform: scale(1.03);
    }

    .browse-button {
      display: block;
      margin: 30px auto;
      padding: 12px 30px;
      font-size: 18px;
      background-color: #003f2f;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-align: center;
      text-decoration: none;
      width: max-content;
    }
    .browse-button:hover {
      background-color: #006644;
    }

    .lightbox {
      position: fixed;
      display: none;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      z-index: 1000;
      flex-direction: column;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80vh;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

    .lightbox .nav-arrow {
      font-size: 40px;
      color: white;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      user-select: none;
    }

    .lightbox .left-arrow {
      left: 30px;
    }

    .lightbox .right-arrow {
      right: 30px;
    }

    .lightbox .close-btn {
      position: absolute;
      top: 30px;
      right: 40px;
      font-size: 30px;
      color: #ffa500;
      cursor: pointer;
    }

    @media (max-width: 600px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .gallery-grid img {
        height: 200px;
      }

      .lightbox img {
        max-width: 95%;
        max-height: 75vh;
      }
    }

.footer:hover {
    cursor: pointer;
}

.quick-links a,
.popular a,
.bottom-bar a {
    color: #ffffff;
    transition: all 0.3s ease;
}

.quick-links a:hover,
.popular a:hover,
.bottom-bar a:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
    color: #ffa500;
}

.footer li {
    line-height: 2;
}

.footer div li a:hover {
    color: #ffa500;
}

.footer .social-icons:hover {
    cursor: pointer;
}

.footer .social-icons a i {
    color: #fff;
    font-size: 20px;
}

.footer .social-icons a i:hover {
    color: #ffa500;
}

/* Scoped Form Styles - Avoids layout interference */
.form-section {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.form-section .booking-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: auto;
}

.form-section h2,
.form-section h3 {
  text-align: center;
  color: #004d40;
  margin-bottom: 15px;
}

.form-section .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-section .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.form-section .form-group.full {
  flex-basis: 100%;
}

.form-section label {
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-section input,
.form-section select,
.form-section textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fefefe;
  transition: all 0.3s ease;
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
  border-color: #004d40;
  box-shadow: 0 0 0 3px rgba(0, 77, 64, 0.1);
  outline: none;
}

.form-section textarea {
  min-height: 100px;
  resize:
