/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar Styles */
.navbar {
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background: #064e3b;
  padding: 0.5rem 2.5rem;
}

.top-bar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-divider {
  border-right: 2px solid white;
  padding-right: 0.5rem;
}

.top-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.top-links a {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.top-links a:hover {
  color: #d1d5db;
}

.top-link-divider {
  border-right: 2px solid white;
  padding-right: 1rem;
  margin-right: 0.5rem;
}

.navbar-main {
  padding: 1.25rem 0;
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo img {
  height: 4.5rem;
  width: auto;
}

.desktop-menu {
  display: none;
  align-items: baseline;
  gap: 2rem;
}

.menu-item {
  position: relative;
}

.menu-link {
  color: #1f2937;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.menu-link:hover {
  color: #4b5563;
}

.chevron {
  margin-left: 0.25rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  margin-top: 0.25rem;
  width: 14rem;
  background: white;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: all 0.2s;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  transition: all 0.15s;
}

.dropdown-menu a:hover {
  background: #1f2937;
  color: white;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: #1f2937;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn:hover {
  color: #4b5563;
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.hidden {
  display: none !important;
}

.mobile-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  background: #f9fafb;
}

.mobile-menu.active {
  max-height: 100vh;
  opacity: 1;
  padding: 0.5rem;
}

.mobile-menu-item {
  padding: 0.25rem 0;
}

.mobile-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #1f2937;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.2s;
  flex: 1;
}

.mobile-link:hover {
  background: #1f2937;
  color: white;
}

.mobile-dropdown-btn {
  padding: 0.5rem;
  background: none;
  border: none;
  color: #1f2937;
  cursor: pointer;
}

.chevron-mobile {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.mobile-dropdown-btn.active .chevron-mobile {
  transform: rotate(180deg);
}

.mobile-dropdown {
  margin-left: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s;
}

.mobile-dropdown.active {
  max-height: 500px;
}

.mobile-dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 0.375rem;
  transition: all 0.2s;
}

.mobile-dropdown a:hover {
  background: #1f2937;
  color: white;
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content h2 span {
  color: #1f2937;
}

.about-text {
  margin-bottom: 2rem;
}

.about-text p {
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.benefit-card {
  border-left: 4px solid #1f2937;
  padding-left: 1.5rem;
  transition: border-color 0.3s;
}

.benefit-card:hover {
  border-color: #4b5563;
}

.benefit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.benefit-header h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
}

.benefit-number {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  opacity: 0.6;
}

.benefit-card p {
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

/*Destinations Section*/
/* .destinations-section {
  padding: 4rem 0;
  background: #064e3b;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.destinations-section .section-header h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}



.destinations-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}


.destination-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s;
  width: 350px;
}

.destination-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.destination-image {
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform 0.3s;
}

.destination-card:hover .destination-image img {
  transform: scale(1.05);
}

.destination-content {
  padding: 1.5rem;
}

.destination-content h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.destination-content p {
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.destination-content hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.view-more {
  display: inline-flex;
  align-items: center;
  color: #1f2937;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.view-more:hover {
  color: #4b5563;
}

.view-more svg {
  margin-left: 0.5rem;
}  */


 .destinations-section {
            padding: 80px 0;
            background: #064e3b;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 15px;
            font-weight: 700;
        }
        .destinations-section .section-header p {
  font-size: 1.125rem;
  color: white;
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.75;
}


        .destinations-grid {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            overflow-y: hidden;
            padding: 20px 0;
            scroll-behavior: smooth;
        }

        /* Custom Scrollbar Styles */
        .destinations-grid::-webkit-scrollbar {
            height: 12px;
        }

        .destinations-grid::-webkit-scrollbar-track {
            background: #e0e0e0;
            border-radius: 10px;
            margin: 0 20px;
        }

        .destinations-grid::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            transition: background 0.3s ease;
        }

        .destinations-grid::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
        }

        /* Firefox scrollbar */
        .destinations-grid {
            scrollbar-width: thin;
            scrollbar-color: #667eea #e0e0e0;
        }

        .destination-card {
            width: 320px;
            flex-shrink: 0;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .destination-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .destination-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
        }

        .destination-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .destination-card:hover .destination-image img {
            transform: scale(1.1);
        }

        .destination-content {
            padding: 24px;
        }

        .destination-content h3 {
            font-size: 1.5rem;
            color: #1a1a1a;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .destination-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .destination-content hr {
            border: none;
            border-top: 1px solid #e0e0e0;
            margin-bottom: 20px;
        }

        .view-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: gap 0.3s ease;
        }

        .view-more:hover {
            gap: 12px;
        }

        .view-more svg {
            transition: transform 0.3s ease;
        }

        .view-more:hover svg {
            transform: translateX(4px);
        }

        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .destination-card {
                min-width: 280px;
            }
        }

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: #f9fafb;
}

.testimonials-section .section-header h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 2rem;
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3rem;
}

.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.testimonial-profile img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid #e5e7eb;
}

.testimonial-profile h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.testimonial-profile p {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-text {
  color: #374151;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.stars svg {
  width: 1.25rem;
  height: 1.25rem;
}

.star-filled {
  color: #fbbf24;
  fill: #fbbf24;
}

/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
}

.slider-nav:hover {
  background: #1f2937;
  border-color: #1f2937;
}

.slider-nav:hover svg {
  color: white;
}

.slider-nav svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #1f2937;
  transition: color 0.3s;
}

.slider-nav.prev {
  left: 0;
}

.slider-nav.next {
  right: 0;
}

/* Dots Indicator */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #1f2937;
  width: 2rem;
  border-radius: 0.375rem;
}

@media (max-width: 768px) {
  .testimonials-slider-wrapper {
    padding: 0 2.5rem;
  }

  .slider-nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .slider-nav svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

/* Footer */
.footer {
  background: #064e3b;
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-logo {
  height: 5.5rem;
  width: auto;
  margin-bottom: 1.5rem;
}

.social-title {
  display: block;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: #d1d5db;
  transition: color 0.2s;
}

.social-icons a:hover {
  color: white;
}

.social-icons svg {
  width: 1.5rem;
  height: 1.5rem;
}

.footer-links {
  list-style: none;
}
.footer-links {
  display: flex;
  gap: 35px;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #d1d5db;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.contact-details {
  color: #d1d5db;
  font-size: 0.875rem;
}

.contact-details > div {
  margin-bottom: 1rem;
}

.contact-details p {
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-details a:hover {
  color: white;
}

.hours {
  padding-top: 1rem;
}

.hours h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.copyright {
  border-top: 1px solid #374151;
  padding: 2rem 0;
  text-align: center;
}

.copyright p {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* Responsive Styles */
@media (min-width: 640px) {
  .contact-info {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-text h2 {
    font-size: 1.875rem;
  }

  .hero-text p {
    font-size: 1.25rem;
  }

  .about-content h2 {
    font-size: 2.25rem;
  }

  .destinations-section .section-header h2 {
    font-size: 2.25rem;
  }

  .destinations-section .section-header p {
    font-size: 1.25rem;
  }

  .testimonials-section .section-header h2 {
    font-size: 2.25rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .destination-image img {
    height: 14rem;
  }

  .benefit-header h3 {
    font-size: 1.5rem;
  }

  .benefit-number {
    font-size: 2.25rem;
  }

  .benefit-card p {
    font-size: 1.125rem;
  }

  .destination-content h3 {
    font-size: 1.5rem;
  }

  .destination-content p {
    font-size: 1rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .top-bar-content {
    flex-direction: row;
  }

  .desktop-menu {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .container {
    padding: 0 2rem;
  }

  .about-section {
    padding: 6rem 0;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .benefits-section {
    padding: 6rem 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .destinations-section {
    padding: 6rem 0;
  }

  .testimonials-section {
    padding: 6rem 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-text h1 {
    font-size: 3.75rem;
  }

  .hero-text h2 {
    font-size: 2.25rem;
  }

  .about-content h2 {
    font-size: 2.25rem;
  }

  .destinations-section .section-header h2 {
    font-size: 3rem;
  }

  .testimonials-section .section-header h2 {
    font-size: 3rem;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Hero Section */
        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .hero-slides {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        .hero-text {
            max-width: 42rem;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-slide.active .hero-text {
            animation: slideInLeft 1s ease-out;
        }

        .hero-text h1 {
            font-size: 3rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-text h1 span {
            color: #fbbf24;
        }

        .hero-text h2 {
            font-size: 1.875rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1.5rem;
        }

        .hero-text p {
            font-size: 1.125rem;
            color: #f3f4f6;
            margin-bottom: 2rem;
            line-height: 1.75;
        }

        .btn-primary {
            display: inline-block;
            background: #1f2937;
            color: white;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .btn-primary:hover {
            background: #374151;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            transform: translateY(-0.25rem);
        }

        /* Navigation Arrows */
        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 3.5rem;
            height: 3.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 20;
            backdrop-filter: blur(10px);
        }

        .slider-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav svg {
            width: 2rem;
            height: 2rem;
            color: #1f2937;
        }

        .slider-nav.prev {
            left: 2rem;
        }

        .slider-nav.next {
            right: 2rem;
        }

        /* Dots Indicator */
        .slider-dots {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.75rem;
            z-index: 20;
        }

        .dot {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .dot.active {
            background: white;
            width: 2.5rem;
            border-radius: 0.375rem;
        }

        .dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Progress Bar */
        .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: rgba(251, 191, 36, 0.8);
            width: 0;
            transition: width 0.1s linear;
            z-index: 20;
        }

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text h2 {
                font-size: 1.5rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .slider-nav {
                width: 2.5rem;
                height: 2.5rem;
            }

            .slider-nav svg {
                width: 1.5rem;
                height: 1.5rem;
            }

            .slider-nav.prev {
                left: 1rem;
            }

            .slider-nav.next {
                right: 1rem;
            }

            .slider-dots {
                bottom: 2rem;
            }
        }



        