



/*-----------------------------------*\
 * #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --united-nations-blue: hsl(214, 56%, 58%);
  --bright-navy-blue: hsl(214, 57%, 51%);
  --spanish-gray: hsl(0, 0%, 60%);
  --black-coral: hsl(225, 8%, 42%);
  --oxford-blue: hsl(208, 97%, 12%);
  --yale-blue: hsl(214, 72%, 33%);
  --blue-ncs: hsl(197, 100%, 36%);
  --gunmetal: hsl(206, 34%, 20%);
  --gainsboro: hsl(0, 0%, 88%);
  --cultured: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 25%);
  --jet: hsl(0, 0%, 20%);

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;

  --fs-1: calc(20px + 3.5vw);
  --fs-2: calc(18px + 1.6vw);
  --fs-3: calc(16px + 0.45vw);
  --fs-4: 15px;
  --fs-5: 14px;
  --fs-6: 13px;
  --fs-7: 12px;
  --fs-8: 11px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * border-radius
   */

  --radius-15: 15px;
  --radius-25: 25px;

}





/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


li { list-style: none; }

a { text-decoration: none;}

a,
img,
span,
input,
label,
button,
ion-icon { display: inline; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

button { cursor: pointer; }

input { width: 100%; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body { background: var(--white); }





/*-----------------------------------*\
 * #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 0px; }

.btn {
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-5);
  border-radius: 100px;
  padding: var(--padding, 10px 20px);
  border: var(--border-width, 2px) solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--bright-navy-blue);
  border-color: var(--bright-navy-blue);
}

.btn-primary:is(:hover, :focus) {
  background: var(--yale-blue);
  border-color: var(--yale-blue);
}

.btn-secondary { border-color: var(--white); }

.btn-secondary:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.1); }

.h1,
.h2,
.h3 {
  font-weight: var(--fw-800);
  font-family: var(--ff-montserrat);
  text-transform: uppercase;
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
}

.h2,
.h3 { color: var(--gunmetal); }

.h2 { font-size: var(--fs-2); }

.h3 {
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
}

.section-subtitle {
  color: var(--bright-navy-blue);
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-family: var(--ff-montserrat);
  margin-bottom: 8px;
}

.section-title { margin-bottom: 15px; }

.section-text {
  color: var(--black-coral);
  margin-bottom: 30px;
}

.card-text {
  color: var(--black-coral);
  font-size: var(--fs-5);
}
/* Text hide/reveal effect */
.hero-title,
.hero-text,
.hero .btn-group {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.hero-title {
  animation-delay: 0.3s;
}

.hero-text {
  animation-delay: 0.6s;
}

.hero .btn-group {
  animation-delay: 0.9s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}






/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/
/* Sticky Navbar */
/* ===== HEADER BASE ===== */
/*header1*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: all 0.3s ease;
  padding: 0px 0px;
}

/* Add background + shadow when scrolling */
.header.active {
  background: #e7e2e2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Adjust navbar links on scroll */
.header .navbar-link {
  color: #f2ebeb;
  transition: color 0.3s ease;
}
.header.active .navbar-link {
  color: #ebe0e0;
}

/* Prevent content hiding under fixed navbar */
body {
  padding-top: 0px; /* match your header height */
}



.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 0px;
  z-index: 4;
}

.header-top {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
  border-bottom: 1px solid hsla(0, 6%, 88%, 0.932);
  padding-block: 15px;
  z-index: 1;
  background-color: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  
}

.header.active .header-top {
  position: fixed;
  background: var(--gunmetal);
}

.header-top .container {
  display: flex;

  justify-items: flex-start;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}



/*header contain*/
/* Flex container for header */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo + Title */
.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-title {
  font-size: 24px;
  font-weight: 700;
  color: rgba(32, 28, 28, 0.845);
  margin: 0;
}




.helpline-box .wrapper { display: none; }

.helpline-box .icon-box {
  background: var(--bright-navy-blue);
  padding: 6px;
  border-radius: 50%;
  color: var(--white);
}

.helpline-box .icon-box ion-icon { --ionicon-stroke-width: 40px; }

/* .header-top .logo { margin-inline: auto; } */

.header-top .logo img { max-width: 100px; }

.header-btn-group {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.search-btn,
.nav-open-btn {
  font-size: 30px;
  color: inherit;
}

.search-btn { font-size: 20px; }

.header-bottom { border-bottom: 1px solid hsla(0, 0%, 100%, 0.1); }

.header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 15px;
}

.social-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-link {
  color: var(--white);
  padding: 8px;
  border: 1px solid hsla(0, 15%, 78%, 0.3);
  border-radius: 50%;
  font-size: 15px;
  transition: var(--transition);
}

.social-link:is(:hover, :focus) { background: hsla(0, 0%, 100%, 0.2); }

.header .btn { --padding: 4px 20px; }

/*navbarssss*/



/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

/* Header Styles */
header {
  position: relative;
  background: transparent;
  z-index: 1000;
}

/* Container for the entire header */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar Toggle Button (Mobile Menu Button) */
.nav-open-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 10px;
  border-radius: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-open-btn:hover {
  color: #007bff;
  transform: scale(1.1);
}

.nav-open-btn ion-icon {
  width: 24px;
  height: 24px;
}

/* Navbar Main Container */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 1rem 0;
}

.navbar.active {
  transform: translateY(0);
}

/* Navbar Top Section */
.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo Styles */
.logo {
  display: inline-block;
  text-decoration: none;
}

.logo img {
  height: auto;
  width: auto;
  transition: transform 0.3s ease;
}



/* Navbar Close Button */
.nav-close-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  transition: color 0.3s ease;
}

.nav-close-btn:hover {
  color: #dc3545;
}

/* Navbar List */
.navbar-list {
  display: flex;
  gap: 25px;
  list-style: none;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  border-top: none;
}

.navbar-list .navbar-link {
  color: var(--white);
  font-weight: var(--fw-600);
  font-size: var(--fs-4, 16px);
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 12px;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
  transform: translateY(0);
}

.navbar-list .navbar-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  transition: width 0.4s ease;
  border-radius: 3px;
}

.navbar-list .navbar-link:hover,
.navbar-list .navbar-link.active {
  color: #ff6600;
  text-shadow: 0px 0px 8px rgba(255, 102, 0, 0.4);
  transform: translateY(-2px);
}

.navbar-list .navbar-link:hover::after,
.navbar-list .navbar-link.active::after {
  width: 100%;
}

/* Dropdown Items */
.dropdown-item {
  padding: 0;
}

.dropdown-item a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin: 2px 10px;
}

.dropdown-item a:hover {
  background-color: #f8f9fa;
  color: #007bff;
  padding-left: 25px;
  transform: translateX(5px);
}

/* Mobile Menu Styles */
@media screen and (max-width: 768px) {
  .nav-open-btn {
    display: block;
  }

  .navbar-list {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .navbar.active .navbar-list {
    transform: translateX(0);
  }

  .navbar-list li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .navbar-list li:last-child {
    border-bottom: none;
  }

  .navbar-list .navbar-link {
    display: block;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
  }

  /* Mobile Dropdown */
  .dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: top;
    background: rgba(0, 123, 255, 0.05);
    margin-left: 20px;
    padding: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .navbar-item.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    padding: 10px 0;
  }

  .dropdown-item a {
    padding: 10px 30px;
    font-size: 15px;
    margin: 5px 0;
  }

  .nav-close-btn {
    display: block;
  }

  .navbar-top {
    padding: 0 20px;
  }

  .logo img {
    height: 40px;
  }
}

/* Tablet Styles */
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .navbar-list {
    gap: 1.5rem;
  }

  .navbar-link {
    font-size: 15px;
    padding: 0.5rem 0;
  }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
  .navbar,
  .dropdown {
    background: rgba(17, 17, 17, 0.95);
    color: #fff;
  }

  .navbar-link,
  .dropdown-item a {
    color: #fff;
  }

  .navbar-link:hover,
  .dropdown-item a:hover {
    color: #4dabf7;
  }

  .nav-open-btn,
  .nav-close-btn {
    color: #fff;
  }
}

/* Active State for Mobile Dropdown Toggle */
.navbar-item.dropdown-toggle.active::after {
  transform: rotate(180deg);
}

/* Smooth Scrolling for Anchor Links */
html {
  scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.navbar-link:focus,
.dropdown-item a:focus,
.nav-open-btn:focus,
.nav-close-btn:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}




.header .navbar {
  position: sticky;
  top: 0;
  right: -300px;
  width: 100%;
  max-width: 300px;
  height: 100%;
  background: var(--white);
  visibility: hidden;
  pointer-events: none;
  transition: 0.15s ease-in;
  z-index: 3;
}

.navbar.active {
  right: 0;
  visibility: visible;
  pointer-events: all;
  transition: 0.25s ease-out;
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 15px;
}

.navbar-top .logo img { width: 150px; }

.nav-close-btn {
  font-size: 20px;
  color: var(--bright-navy-blue);
}

.nav-close-btn ion-icon { --ionicon-stroke-width: 80px; }

.navbar-list { border-top: 1px solid hsla(0, 13%, 85%, 0.1); }

.navbar-list li { border-bottom: 1px solid hwb(0 93% 6% / 0.932); }

/*
/* Navbar links default style */
.navbar-list .navbar-link {
  color: #212020;           /* default text color (white) */
  font-weight: 600;
  padding: 8px 16px;
  text-decoration: none;
  transition: all 0.3s ease; /* smooth hover effect */
  position: relative;
}


/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/
/* Hero section container */
/* HERO SLIDER STYLES */
    .hero {
      display: flex;
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }

    .hero-slide.active {
      opacity: 1;
      z-index: 1;
    }

    .hero .container {
      position: relative;
      text-align: center;
      z-index: 2;
      max-width: 700px;
    }

    .hero-title {
      font-size: 3rem;
      margin-bottom: 1rem;
      
    }

    .hero-text {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: var(--white);
  font-size: var(--fs-5);
  margin-bottom: 40px;
    }

    .btn-primary {
      background: #ff5a5f;
      border: none;
      padding: 12px 25px;
      font-size: 1rem;
      border-radius: 6px;
      color: #fff;
      cursor: pointer;
      transition: background 0.3s;
    }

    .btn-primary:hover {
      background: #e14a4f;
    }

.hero {
  background-image: url("../images/banner4.jpg");
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  background-color: hsla(0, 0%, 0%, 0.7);
  background-blend-mode: overlay;
  display: grid;
  place-items: center;
  min-height: 600px;
  text-align: center;
  padding-top: 125px;
}

.hero-title { margin-bottom: 20px; }

.hero-text {
  color: var(--white);
  font-size: var(--fs-5);
  margin-bottom: 40px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* HERO SLIDER */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* Hero content overlay */
.hero .container {
  position: relative;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5); /* dark overlay for text readability */
  z-index: 1;
}



/* ABOUT SECTION */
/* About Section */
/* About Section */
.about {
  padding: 80px 0px ;
  background: #ebe1e1;
  text-align: center;
  justify-content: center;
}

.about .section-subtitle {
  color: #0077ff;
  font-weight: 600;
  margin-bottom: 10px;
}

.about .section-title {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.about .section-text {
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: #444;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.about-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  cursor: pointer;
}

.about-card img {
  width: 100%;
  height: 250px;
  display: block;
  transition: transform 0.6s ease;
}

.about-card:hover img {
  transform: scale(1.1);
}

.about-card .overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 20px;
  text-align: center;
  transition: top 0.6s ease;
}

.about-card:hover .overlay {
  top: 0;
}

.about-card .overlay h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}

/* Hero section style */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}








/*-----------------------------------*\
 * #TOUR SEARCH
\*-----------------------------------*/

.tour-search {
  background: var(--bright-navy-blue);
  padding-block: var(--section-padding);
}

.tour-search-form .input-label {
  color: var(--white);
  font-size: var(--fs-4);
  margin-left: 20px;
  margin-bottom: 10px;
}

.tour-search-form .input-field {
  background: var(--white);
  padding: 10px 15px;
  font-size: var(--fs-5);
  border-radius: 50px;
}

.tour-search-form .input-field::placeholder { color: var(--spanish-gray); }

.tour-search-form .input-field::-webkit-datetime-edit {
  color: var(--spanish-gray);
  text-transform: uppercase;
}

.tour-search-form .input-wrapper { margin-bottom: 15px; }

.tour-search .btn {
  width: 100%;
  --border-width: 1px;
  font-weight: var(--fw-600);
  margin-top: 35px;
}

/* Destination Section */
.popular {
  padding: 70px 0;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  text-align: center;
}

.popular .section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2d2d2d;
  font-weight: 800;
}

.popular .section-subtitle {
  font-size: 1rem;
  color: #ff7b54;
  font-weight: 600;
  letter-spacing: 1px;
}

.popular .section-text {
  max-width: 650px;
  margin: 0 auto 40px;
  color: #555;
  line-height: 1.7;
}

/* Grid Layout */
.popular-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  list-style: none;
  padding: 0;
}

/* Destination Cards */
.popular-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  position: relative;
}

.popular-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Image Effects */
.card-img {
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.popular-card:hover .card-img img {
  transform: scale(1.1);
}

.img-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.popular-card:hover .img-overlay {
  opacity: 1;
}

/* Card Content */
.card-content {
  padding: 20px;
  text-align: left;
}

.card-rating ion-icon {
  color: #ffc107;
  font-size: 1.1rem;
}

.card-subtitle a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.card-title a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}

.card-text {
  margin-top: 10px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Stylish Button */
.animated-btn {
  margin-top: 40px;
  padding: 12px 35px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff7b54, #ff3c83);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.animated-btn:hover {
  background: linear-gradient(135deg, #ff3c83, #ff7b54);
  transform: translateY(-3px);
}






.popular { padding-block: var(--section-padding); }

.popular-list,
.popular-list > li:not(:last-child) { margin-bottom: 30px; }

.popular-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-25);
  height: 430px;
}

.popular-card .card-img { height: 100%; }

.popular-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-card .card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-25);
  padding: 7px;
}


.popular-card .card-rating {
  background: var(--bright-navy-blue);
  color: var(--white);
  position: absolute;
  top: 0;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 1px;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.popular-card .card-subtitle {
  color: var(--blue-ncs);
  font-size: var(--fs-6);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.popular-card .card-title { margin-bottom: 5px; }

.popular-card :is(.card-subtitle, .card-title) > a { color: inherit; }

.popular .btn { margin-inline: auto; }
/* Popular destination card hover */
.popular-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.popular-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.popular-card img {
  transition: transform 0.5s ease;
}

.popular-card:hover img {
  transform: scale(1.1);
}

.popular-card .card-content {
  padding: 15px;
  transition: background 0.3s ease;
}

.popular-card:hover .card-content {
  background: #f0f8ff; /* light highlight */
}


/*-----------------------------------*\
 * #BLOG SECTION STYLES
\*-----------------------------------*/

/* Blog Hero Section */
.blog-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.blog-hero .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.blog-hero .hero-slide.active {
  opacity: 1;
}

.blog-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.blog-hero .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.blog-hero .hero-text {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.blog-hero .btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 2rem;
}

.blog-hero .btn {
  padding: 12px 30px;
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-hero .btn-primary {
  background: linear-gradient(135deg, var(--bright-navy-blue), var(--yale-blue));
  border-color: var(--bright-navy-blue);
}

.blog-hero .btn-primary:hover {
  background: linear-gradient(135deg, var(--yale-blue), var(--blue-ncs));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.blog-hero .btn-secondary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.blog-hero .btn-secondary:hover {
  background: hsla(0, 0%, 100%, 0.15);
  transform: translateY(-2px);
}

/* Blog Main Section */
.blog-section {
  padding-block: var(--section-padding);
  background: var(--cultured);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .section-subtitle {
  color: var(--bright-navy-blue);
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-600);
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-header .section-title {
  font-size: var(--fs-2);
  margin-bottom: 20px;
  color: var(--gunmetal);
}

.section-header .section-text {
  color: var(--black-coral);
  font-size: var(--fs-5);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-25);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.blog-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.blog-card .card-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .card-img img {
  transform: scale(1.1);
}

.blog-card .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(0,0,0,0.1) 0%, 
    rgba(0,0,0,0.4) 50%, 
    rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-card:hover .img-overlay {
  opacity: 1;
}

.blog-card .card-rating {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--bright-navy-blue), var(--yale-blue));
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.blog-card .card-rating i {
  color: #ffc107;
  font-size: 12px;
}

.blog-card .card-content {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: var(--fs-7);
  color: var(--spanish-gray);
}

.blog-meta i {
  color: var(--bright-navy-blue);
  margin-right: 4px;
}

.blog-category a {
  color: var(--blue-ncs);
  text-transform: uppercase;
  font-weight: var(--fw-600);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.blog-category a:hover {
  color: var(--bright-navy-blue);
}

.blog-card .card-title {
  font-size: var(--fs-4);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-card .card-title a {
  color: var(--gunmetal);
  text-decoration: none;
  font-weight: var(--fw-700);
  font-family: var(--ff-montserrat);
  transition: color 0.3s ease;
}

.blog-card .card-title a:hover {
  color: var(--bright-navy-blue);
}

.blog-card .card-text {
  color: var(--black-coral);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: var(--fs-5);
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--gainsboro);
  padding-top: 15px;
}

.read-more-btn {
  color: var(--bright-navy-blue);
  font-weight: var(--fw-600);
  text-decoration: none;
  font-size: var(--fs-6);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more-btn:hover {
  color: var(--yale-blue);
  transform: translateX(5px);
}

.read-more-btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(3px);
}

.read-time {
  color: var(--spanish-gray);
  font-size: var(--fs-7);
  display: flex;
  align-items: center;
  gap: 4px;
}

.read-time i {
  font-size: 12px;
  color: var(--black-coral);
}

/* Load More Section */
.load-more-section {
  text-align: center;
  margin-top: 50px;
}

.animated-btn {
  background: linear-gradient(135deg, var(--bright-navy-blue), var(--yale-blue));
  color: var(--white);
  border: none;
  padding: 15px 40px;
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
  position: relative;
  overflow: hidden;
}

.animated-btn:hover {
  background: linear-gradient(135deg, var(--yale-blue), var(--blue-ncs));
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(52, 152, 219, 0.3);
}

.animated-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.animated-btn:hover::after {
  width: 300px;
  height: 300px;
}

.animated-btn.loading::after {
  animation: loadingPulse 1.5s infinite;
}

@keyframes loadingPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Categories Section */
.categories {
  padding-block: var(--section-padding);
  background: linear-gradient(135deg, var(--gainsboro), var(--white));
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.category-card {
  background: var(--white);
  padding: 40px 25px;
  border-radius: var(--radius-25);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bright-navy-blue), var(--yale-blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.category-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--bright-navy-blue), var(--yale-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--white);
  transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  color: var(--gunmetal);
  margin-bottom: 15px;
  font-family: var(--ff-montserrat);
}

.category-card p {
  color: var(--black-coral);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: var(--fs-6);
}

.category-link {
  color: var(--bright-navy-blue);
  font-weight: var(--fw-600);
  text-decoration: none;
  font-size: var(--fs-6);
  transition: color 0.3s ease;
  display: inline-block;
}

.category-link:hover {
  color: var(--yale-blue);
}

/* Newsletter Section */
.newsletter {
  padding-block: var(--section-padding);
  background: linear-gradient(135deg, var(--bright-navy-blue), var(--yale-blue));
  color: var(--white);
  text-align: center;
}

.newsletter-content {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter .section-title {
  color: var(--white);
  font-size: var(--fs-2);
  margin-bottom: 20px;
}

.newsletter .section-text {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: var(--fs-5);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter .input-field {
  background: var(--white);
  border-radius: 50px;
  padding: 15px 25px;
  font-size: var(--fs-5);
  border: none;
  flex: 1;
  min-width: 250px;
}

.newsletter .input-field::placeholder {
  color: var(--spanish-gray);
}

.newsletter .btn {
  padding: 15px 30px;
  white-space: nowrap;
}

/*-----------------------------------*\
 * #FOOTER
\*-----------------------------------*/









.footer-top {
  background: var(--gunmetal);
  padding-block: var(--section-padding);
  color: var(--gainsboro);
}

.footer-brand { margin-bottom: 30px; }

.footer-brand img { width: 150px; }

.footer-brand .logo { margin-bottom: 20px; }

.footer-text {
  font-size: var(--fs-5);
  line-height: 1.7;
}

.footer-contact { margin-bottom: 30px; }

.contact-title {
  position: relative;
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-500);
  margin-bottom: 30px;
}

.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--bright-navy-blue);
}

.contact-text {
  font-size: var(--fs-5);
  margin-bottom: 15px;
  max-width: 200px;
}

.contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item ion-icon { --ionicon-stroke-width: 40px; }

.contact-link,
address {
  font-style: normal;
  color: var(--gainsboro);
  font-size: var(--fs-5);
}

.contact-link:is(:hover, :focus) { color: var(--white); }

.form-text {
  font-size: var(--fs-5);
  margin-bottom: 20px;
}

.footer-form .input-field {
  background: var(--white);
  font-size: var(--fs-5);
  padding: 15px 20px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.footer-form .btn { width: 100%; }

.footer-bottom {
  --gunmetal: hsl(205, 36%, 17%);
  background: var(--gunmetal);
  padding-block: 20px;
  text-align: center;
}

.copyright {
  color: var(--gainsboro);
  font-size: var(--fs-5);
  margin-bottom: 10px;
}

.copyright a {
  color: inherit;
  display: inline-block;
}

.copyright a:is(:hover, :focus) { color: var(--white); }

.footer-bottom-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.footer-bottom-list > li { position: relative; }

.footer-bottom-list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -10px;
  bottom: 3px;
  width: 1px;
  background: hsla(0, 0%, 100%, 0.2);
}

.footer-bottom-link {
  color: var(--gainsboro);
  font-size: var(--fs-7);
  transition: var(--transition);
}

.footer-bottom-link:is(:hover, :focus) { color: var(--white); }





/*-----------------------------------*\
 * #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: var(--bright-navy-blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: var(--transition);
}

.go-top.active {
  opacity: 0.8;
  transform: translateY(0);
  visibility: visible;
}

.go-top:is(:hover, :focus) { opacity: 1; }





/*-----------------------------------*\
 * #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 580px screen
 */

@media (min-width: 580px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 580px;
    margin-inline: auto;
  }

  .btn {
    --fs-5: 16px;
    --padding: 12px 30px;
  }

  section:not(.cta) :is(.section-subtitle, .section-title, .section-text) {
    text-align: center;
  }

  .section-text { margin-bottom: 40px; }

  .card-text { --fs-5: 15px; }



  /**
   * HEADER
   */

  .header { padding-top: 0px; }

  .helpline-box .icon-box { padding: 14px; }

  .header-top .logo img { max-width: unset; }

  .search-btn { font-size: 30px; }

  .nav-open-btn { font-size: 40px; }

  .header .btn {
    --fs-5: 14px;
    --padding: 6px 20px;
  }



  /**
   * HERO
   */

  .hero {
    min-height: 800px;
    padding-top: 85px;
  }

  .hero-text { --fs-5: 15px; }

  .btn-group { gap: 20px; }



  /**
   * TOUR SEARCH
   */

  .tour-search-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 15px;
  }

  .tour-search-form .input-wrapper { margin-bottom: 0; }

  .tour-search-form .input-field { padding: 16px 20px; }

  .tour-search .btn {
    grid-column: span 2;
    margin-top: 20px;
  }



  /**
   * POPULAR
   */

  .popular-card .card-content { right: auto; }



  /**
   * FOOTER
   */

  .footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-form { grid-column: span 2; }

  .footer-bottom { text-align: left; }

  .copyright { margin-bottom: 0; }

  .footer-bottom-list { justify-content: flex-end; }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-5: 15px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 800px; }

  .section-text {
    max-width: 60ch;
    margin-inline: auto;
  }



  /**
   * HEADER
   */

  .helpline-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }

  .helpline-box .wrapper {
    display: block;
    color: var(--white);
    font-size: var(--fs-6);
  }

  .social-list { gap: 10px; }



  /**
   * POPULAR
   */

  .popular-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }

  .popular-list > li:not(:last-child) { margin-bottom: 0; }

  .popular-card .card-content { right: 20px; }



  /**
   * PACKAGE
   */

  .package-list { margin-bottom: 50px; }

  .package-list > li:not(:last-child) { margin-bottom: 40px; }

  .package-card {
    display: grid;
    grid-template-columns: 1.3fr 1.5fr 1fr;
  }

  .package-card .card-banner { height: 100%; }

  .package-card .card-content { padding: 40px; }

  .package-card .card-price {
    display: grid;
    place-content: center;
  }

  .package-card .card-price .wrapper { margin-bottom: 15px; }



  /**
   * GALLERY
   */

  .gallery { padding-bottom: calc(var(--section-padding * 2)); }

  .gallery-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .gallery-image { border-radius: var(--radius-25); }



  /**
   * CTA
   */

  .cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .cta-content { width: calc(100% - 225px); }

  .cta .section-text { margin-inline: 0; }



  /**
   * FOOTER
   */

  .form-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }

  .footer-form .input-field { margin-bottom: 0; }

  .footer-form .btn { width: max-content; }

  .blog-hero .btn-group {
    gap: 20px;
  }
  
  .newsletter-form {
    flex-wrap: nowrap;
  }
  
  .newsletter .input-field {
    min-width: auto;
  }

  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-hero .container {
    padding: 0 40px;
  }
}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1050px; }



  /**
   * HEADER
   */

  .header.active .header-top {
    position: unset;
    background: unset;
  }

  .nav-open-btn,
  .navbar-top { display: none; }

  .header-bottom { border-bottom: none; }

  .header.active .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    color: var(--onyx);
    box-shadow: 0 2px 5px hsla(0, 0%, 0%, 0.08);
    transition: var(--transition);
  }

  .header-bottom .container { padding-block: 0; }

  .header .navbar { all: unset; }

  .navbar-list {
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-list li { border-bottom: none; }

  .navbar-link {
    color: var(--white);
    --fs-4: 16px;
    font-weight: unset;
    text-transform: uppercase;
    padding: 20px 15px;
  }

  .header.active .navbar-link { color: var(--onyx); }

  .header.active .navbar-link:is(:hover, :focus) { color: var(--bright-navy-blue); }

  .header.active .social-link {
    color: var(--onyx);
    border-color: hsla(0, 0%, 0%, 0.15);
  }

  .overlay { display: none; }



  /**
   * HERO
   */

  .hero .container { max-width: 740px; }



  /**
   * TOUR SEARCH
   */

  .tour-search-form { grid-template-columns: repeat(5, 1fr); }

  .tour-search .btn {
    --padding: 15px;
    grid-column: unset;
    margin-top: 0;
  }



  /**
   * POPULAR
   */

  .popular-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * PACKAGE
   */

  .meta-box { --fs-8: 13px; }

  .meta-box > ion-icon { font-size: 15px; }



  /**
   * CTA 
   */

  .cta .section-title { max-width: 25ch; }



  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }

  .footer-form { grid-column: unset; }

  .form-wrapper { flex-direction: column; }

  .footer-form .btn { width: 100%; }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .blog-hero .hero-title {
    font-size: 4.5rem;
  }
  
  .blog-hero .hero-text {
    font-size: 1.4rem;
  }
}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  
  .blog-card .card-content {
    padding: 30px;
  }
  
  .blog-card .card-img {
    height: 280px;
  }
}


/* Parent container */
.dropdown-parent {
  position: relative;
}

/* Dropdown menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  z-index: 1000;
}

/* Dropdown links */
.dropdown-item a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-item a:hover {
  background: #ff6a00;
  color: #fff;
}

/* Show dropdown on hover */
.dropdown-parent:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.travel-guide {
  padding: 60px 0;
  background: #f9f9f9;
}

.travel-guide .section-title {
  text-align: center;
  margin-bottom: 20px;
}

.travel-guide .section-text {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
}

.guide-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.guide-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.guide-card:hover .guide-img img {
  transform: scale(1.08);
}

.guide-content {
  padding: 20px;
  text-align: center;
}

.guide-title {
  font-size: 1.2rem;
  color: #ff6600;
  margin-bottom: 10px;
}

.guide-text {
  font-size: 0.95rem;
  color: #666;
}





  
   .hero {
      display: flex;
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }

    .hero-slide.active {
      opacity: 1;
      z-index: 1;
    }

    .hero .container {
      position: relative;
      text-align: center;
      z-index: 2;
      max-width: 700px;
    }

    .hero-title {
      font-size: 3rem;
      margin-bottom: 1rem;
      
    }

    .hero-text {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      color: var(--white);
  font-size: var(--fs-5);
  margin-bottom: 40px;
    }

    .btn-primary {
      background: #d34013;
      border: none;
      padding: 12px 25px;
      font-size: 1rem;
      border-radius: 100px;
      color: #fff;
      cursor: pointer;
      transition: background 0.3s;
    }

    .btn-primary:hover {
      background: #5a59b9;
    }


    /* Extra Stylish Effects */

    .about-page {
      padding: 80px 20px;
      background: linear-gradient(to bottom right, #f7f7f7, #e8f0ff);
      text-align: center;
      animation: fadeIn 1s ease-in-out;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }

    .about-card {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      transition: transform 0.4s ease;
    }

    .about-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .about-card:hover img {
      transform: scale(1.1);
    }

    .about-card .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      opacity: 0;
      transition: opacity 0.5s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .about-card:hover .overlay {
      opacity: 1;
    }

    .about-extra {
      margin-top: 50px;
      text-align: left;
      padding: 30px;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      animation: slideUp 1s ease;
    }

    .gallery-grid {
      margin-top: 70px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .gallery-item {
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
      transition: transform 0.4s ease;
    }

    .gallery-item img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.2) rotate(2deg);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  




     .contact-hero {
      position: relative;
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat fixed;
      color: #fff;
      overflow: hidden;
    }
    .contact-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 123, 255, 0.2);
      z-index: 1;
    }
    .contact-hero h1 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      animation: fadeInDown 1s ease;
      position: relative;
      z-index: 2;
    }
    .contact-hero p {
      font-size: 1.2rem;
      animation: fadeInUp 1.2s ease;
      position: relative;
      z-index: 2;
      max-width: 600px;
      margin: 0 auto;
    }

    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin: 50px auto;
      max-width: 1200px;
      padding: 0 20px;
    }
    .contact-info {
      background: #f8f9fa;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      position: relative;
      overflow: hidden;
    }
    .contact-info::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, rgba(0,123,255,0.1), transparent);
      z-index: 0;
      transition: all 0.5s ease;
    }
    .contact-info:hover::before {
      background: linear-gradient(45deg, rgba(0,123,255,0.2), transparent);
    }
    .contact-info h2 {
      margin-bottom: 20px;
      text-align: center;
      font-size: 2rem;
      position: relative;
      z-index: 1;
    }
    .contact-info p {
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }
    .contact-info .info-item {
      display: flex;
      align-items: center;
      padding: 15px;
      margin-bottom: 15px;
      background: #fff;
      border-radius: 8px;
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      z-index: 1;
    }
    .contact-info .info-item:hover {
      background: var(--bright-navy-blue);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    .contact-info .info-item:hover ion-icon {
      color: #fff;
    }
    .contact-info .info-item:active {
      transform: translateY(0);
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .contact-info ion-icon {
      color: var(--bright-navy-blue);
      margin-right: 10px;
      font-size: 1.5rem;
      transition: all 0.3s ease;
    }
    .contact-info a, .contact-info address {
      color: inherit;
      text-decoration: none;
      font-style: normal;
      font-size: 1rem;
    }

    .contact-form {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      position: relative;
      overflow: hidden;
    }
    .contact-form::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,123,255,0.1), transparent);
      z-index: 0;
      transition: all 0.5s ease;
    }
    .contact-form:hover::before {
      background: linear-gradient(135deg, rgba(0,123,255,0.2), transparent);
    }
    .contact-form h2 {
      margin-bottom: 20px;
      font-size: 2rem;
      position: relative;
      z-index: 1;
    }
    .form-group {
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    .form-group label {
      font-weight: 600;
      display: block;
      margin-bottom: 8px;
      color: #333;
      transition: all 0.3s ease;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: #fafafa;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--bright-navy-blue);
      box-shadow: 0 0 8px rgba(0,123,255,0.3);
      background: #fff;
      transform: scale(1.02);
    }
    .form-group textarea {
      min-height: 140px;
      resize: vertical;
    }
    .form-group input:not(:placeholder-shown) + label,
    .form-group textarea:not(:placeholder-shown) + label {
      transform: translateY(-25px);
      font-size: 0.85rem;
      color: var(--bright-navy-blue);
    }
    .contact-form button {
      width: 100%;
      padding: 14px;
      font-size: 1.1rem;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      background: var(--bright-navy-blue);
      color: #fff;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
      overflow: hidden;
    }
    .contact-form button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: 0.5s;
    }
    .contact-form button:hover::before {
      left: 100%;
    }
    .contact-form button:hover {
      background: #0056b3;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .social-section {
      text-align: center;
      padding: 40px 20px;
      background: #f1f3f5;
      margin-top: 50px;
    }
    .social-section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    .social-links {
      display: flex;
      justify-content: center;
      gap: 20px;
    }
    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: var(--bright-navy-blue);
      color: #fff;
      border-radius: 50%;
      transition: all 0.3s ease;
      font-size: 1.5rem;
    }
    .social-links a:hover {
      background: #0056b3;
      transform: scale(1.1);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Medium-sized screens (tablets, 768px to 991px) */
    @media (max-width: 991px) and (min-width: 768px) {
      .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      .contact-info, .contact-form {
        max-width: 600px;
        margin: 0 auto;
        padding: 25px;
      }
      .contact-info .info-item {
        padding: 12px;
        margin-bottom: 12px;
        border-radius: 6px;
      }
      .contact-info ion-icon {
        font-size: 1.3rem;
        margin-right: 8px;
      }
      .contact-info a, .contact-info address {
        font-size: 0.95rem;
      }
    }

    /* Small screens (below 768px) */
    @media (max-width: 767px) {
      .contact-hero h1 {
        font-size: 2rem;
      }
      .contact-hero p {
        font-size: 1rem;
      }
      .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .contact-info, .contact-form {
        padding: 20px;
      }
      .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }
    }





    