@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --primary-color: #F86F00;
  --primary-color-dark: #002954;
  --text-dark: #12110f;
  --text-light: #6b7280;
  --extra-light: #fbf7f6;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Merriweather", serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Reset body and html to prevent unwanted margins */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

/* Add top padding to all pages except home page */
body:not(.home-page) {
  padding-top: 120px;
}

/* Prevent background content from showing in external popups */
body.modal-open,
body.popup-open {
  overflow: hidden;
}



.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 2.5rem 1rem;
}

.section__header {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  font-weight: 500;
  font-family: var(--header-font);
  color: var(--text-light);
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--primary-color);
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.logo span {
  color: var(--text-dark);
}

.logo-container {
  display: flex;
  align-items: center;
  padding: 10px;
}

.site-logo {
  width: 10rem;
  height: auto;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  padding: 10px;
}

.footer-logo {
  width: 10rem;
  height: auto;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

/* Header and Hero Section Styles */
.header {
  position: relative;
  width: 100%;
  min-height: 88vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.flight-hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.flight-slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.flight-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.flight-slide.active {
  opacity: 1;
}

.flight-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flight-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8rem 1rem 2rem;
  text-align: center;
  color: var(--white);
}

.flight-hero-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--header-font);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.flight-hero-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 800px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Compact Booking Form Styles */
.header__form {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  /* padding: 1rem; */
}

.booking-form {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

.input-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
  text-align: left;
}

.input-group input {
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color 0.3s;
  width: 100%;
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(248, 111, 0, 0.3);
}

.suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 5px 5px;
  max-height: 150px;
  overflow-y: auto;
  z-index: 10;
  display: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.suggestions div {
  padding: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.suggestions div:hover {
  background-color: #f5f5f5;
}

.suggestions strong {
  font-weight: 600;
  color: black;
}

.suggestions small {
  color: #666;
}

.search-btn {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
  height: fit-content;
  align-self: flex-end;
  white-space: nowrap;
}

.search-btn:hover {
  background: var(--primary-color-dark);
}

/* Desktop View */
@media (min-width: 769px) {
  .booking-form {
    flex-wrap: nowrap;
  }

  .input-group {
    min-width: 180px;
    max-width: 220px;
  }

  .flight-hero-content {
    padding-top: 12rem;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  body:not(.home-page) {
    padding-top: 120px;
  }

  .booking-form {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .input-group {
    min-width: 100%;
    margin-bottom: 0.5rem;
  }

  .search-btn {
    width: 100%;
    margin-top: 0.5rem;
  }

  .flight-hero-content {
    padding-top: 8rem;
  }

  .flight-hero-heading {
    font-size: 2rem;
  }

  .flight-hero-text {
    font-size: 1rem;
  }
}

/* Improved Navbar Styles */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
}

.nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
}

.nav__links li {
  position: relative;
}

.nav__links a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav__links a:hover {
  color: var(--primary-color);
}

.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown > a i {
  font-size: 1.2rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  padding: 0.5rem 0;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1001;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-dark);
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--extra-light);
  color: var(--primary-color);
}

.nav__call__btn {
  margin-left: 2rem;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.call-btn:hover {
  background: var(--primary-color-dark);
}

.nav__menu__btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  background: none;
  border: none;
  padding: 0.5rem;
}

.nav__menu__btn:hover {
  color: var(--primary-color);
}

/* Popular Grid */
.popular__grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.popular__card {
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.popular__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.popular__card img {
  margin-bottom: 1rem;
  border-radius: 10px;
}

.popular__card p {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-light);
}

.popular__card h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.popular__card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.popular__card .rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
}

.popular__card .rating span {
  font-size: 1.2rem;
  color: goldenrod;
}

.popular__card .price {
  color: var(--text-light);
}

.popular__card .price span {
  font-weight: 600;
  color: var(--text-dark);
}

.talent__container .section__header {
  text-align: center;
}

.talent__grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.talent__card {
  padding: 2rem 1rem;
  border-radius: 1rem;
  border: 2px solid transparent;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: 0.3s;
}

.talent__card:hover {
  border-color: var(--text-dark);
}

.talent__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 5px 13px;
  font-size: 2rem;
  color: var(--text-dark);
  background-color: var(--extra-light);
  border-radius: 10px;
  transition: 0.3s;
}

.talent__card:hover span {
  color: var(--white);
  background-color: var(--text-dark);
}

.talent__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.talent__card p {
  color: var(--text-light);
}

@media (width > 540px) {
  .popular__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .talent__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  .popular__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .talent__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width > 1024px) {
  .talent__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.experience__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.experience__image img {
  max-width: 500px;
  border-radius: 5px;
}

.experience__description {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--text-light);
}

.process__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.process__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 50px auto;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  align-items: center;
}

.process__image {
  text-align: right;
}

.process__image img {
  max-width: 500px;
  border-radius: 5px;
}

@media (width < 600px) {
  .experience__container {
    grid-template-columns: repeat(1, 1fr);
  }

  .process__container {
    grid-template-columns: repeat(1, 1fr);
  }

  .process__image {
    grid-area: 1/1/2/2;
  }
}

/* Register Grid */
.register__grid {
  display: grid;
  background-color: var(--text-dark);
  border-radius: 1rem;
}

.feature__container {
  display: grid;
  gap: 1rem;
}

.feature__card {
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--white);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.feature__card img {
  max-width: 70px;
}

.feature__card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.feature__card p {
  color: var(--text-light);
  line-height: 1.5rem;
}

.destination {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.destination::before {
  position: absolute;
  content: "TRAVEL";
  bottom: 0;
  left: 50%;
  transform: translateX(-100%);
  font-size: 20rem;
  font-weight: 900;
  line-height: 14rem;
  letter-spacing: -30px;
  color: var(--text-light);
  opacity: 0.2;
  z-index: -1;
}

.destination__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.destination__card {
  position: relative;
  isolation: isolate;
}

.destination__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
}

.destination__card:hover .destination__content {
  opacity: 1;
}

.discount {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("assets/discount.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.discount__container {
  text-align: center;
}

.discount__container h2 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 500;
  font-family: var(--header-font);
  color: var(--white);
}

.discount__container h2 span {
  font-size: 2rem;
}

.package__grid {
  margin-top: 4rem;
  display: grid;
  gap: 1rem;
}

.package__card {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
}

.package__card__details {
  padding: 1rem;
}

.package__card__details h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.package__card__details p {
  margin-bottom: 2rem;
  color: var(--text-light);
  line-height: 1.5rem;
}

.package__card__details > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.package__card__details h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  font-family: var(--header-font);
}

/* Footer Responsive Styles */
.footer {
  background-color: var(--white);
  padding: 0;
  margin: 0;
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__col {
  text-align: center;
}

.footer__col p {
  margin: 1rem 0;
  font-family: var(--header-font);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.footer__logo {
  margin-bottom: 1rem;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__socials a {
  font-size: 1.25rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer__socials a:hover {
  color: var(--primary-color);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.footer__links a {
  font-family: var(--header-font);
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__links a:hover {
  color: var(--primary-color);
}

.footer__bar {
  padding: 1.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  background-color: var(--extra-light);
  border-top: 1px solid #e5e7eb;
}

@media (width > 540px) {
  .feature__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer responsive - 2 columns on tablets */
  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
    padding: 3rem 1.5rem;
  }

  .footer__col {
    text-align: left;
  }

  .footer__socials {
    justify-content: flex-start;
  }

  .footer__links {
    align-items: flex-start;
  }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  nav {
    padding: 0.75rem 1rem;
    position: fixed;
    top: 0;
  }

  .nav__header {
    width: 100%;
    position: relative;
    z-index: 1001;
  }

  .nav__menu__btn {
    display: block;
    z-index: 1002;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .nav__links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links li {
    width: 100%;
    border-bottom: 1px solid var(--extra-light);
  }

  .nav__links li:last-child {
    border-bottom: none;
  }

  .nav__links a {
    display: block;
    padding: 1rem 1.5rem;
    width: 100%;
    font-size: 1rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: var(--extra-light);
    display: none;
    margin-left: 1rem;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown > a {
    position: relative;
  }

  .dropdown > a::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
  }

  .dropdown.active > a::after {
    transform: rotate(45deg);
  }

  .nav__call__btn {
    margin: 1rem 1.5rem 0;
    width: calc(100% - 3rem);
  }

  .call-btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .site-logo {
    width: 8rem;
  }

  /* Ensure content doesn't overlap with fixed navbar */
  /* .header {
    margin-top: 70px;
  } */

  .flight-hero-content {
    padding-top: 2rem;
  }
}

@media (min-width: 769px) {
  nav {
    position: fixed;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .nav__header {
    padding: 0;
    background-color: transparent;
    border: none;
    flex: 0 0 auto;
    width: auto;
  }

  .nav__menu__btn {
    display: none;
  }

  .nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    background-color: transparent;
    transform: none;
    border: none;
    flex: 1;
    opacity: 1;
    visibility: visible;
  }

  .nav__call__btn {
    flex: 0 0 auto;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown > a::after {
    display: none;
  }
}

  .feature__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .destination__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .package__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer responsive - 4 columns on desktop */
  .footer__container {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem 2rem;
    padding: 4rem 2rem;
  }

  .footer__col h4 {
    font-size: 1.2rem;
  }

  .footer__col p {
    font-size: 1rem;
  }

  .footer__links a {
    font-size: 1rem;
  }


@media (width > 1024px) {
  .destination__grid {
    gap: 2rem;
  }

  .package__grid {
    gap: 2rem;
  }
}

/* FAQ Section */
.faq__content .section__header {
  margin-bottom: 1rem;
}

.faq__grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.faq__card {
  padding: 1rem;
  display: grid;
  gap: 10px;
  background-color: var(--extra-light);
  border: 5px;
}

.faq__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq__header span {
  font-size: 1.5rem;
  transition: 0.3s;
  cursor: pointer;
}

.faq__card.active .faq__header span {
  transform: rotate(180deg);
}

.faq__description {
  color: var(--text-light);
  display: none;
}

.faq__card.active .faq__description {
  display: block;
}

/* Section Para */
.section__header1 {
  position: relative;
  isolation: isolate;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 1rem;
  padding-inline: 1rem;
  font-size: 2rem;
  font-family: var(--header-font);
  color: var(--text-dark);
  text-align: center;
}

.section__description1 {
  line-height: 1.75rem;
  color: var(--text-light);
}

/* Blogs */
.blog__grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.blog__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
}

.blog__header {
  padding: 1rem;
}

.blog__header h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: var(--header-font);
  color: var(--text-dark);
}

.blog__card__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--text-light);
}

.blog__card__footer div {
  font-size: 0.9rem;
  color: var(--text-light);
}

.blog__card__footer span {
  margin-right: 5px;
  font-size: 1rem;
}

.blog__content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  padding: 2rem;
  background-color: rgba(22, 22, 22, 0.95);
  z-index: 1;
  transition: 0.5s;
}

.blog__content h4 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: var(--header-font);
  color: var(--white);
}

.blog__content p {
  color: var(--text-light);
  line-height: 1.75rem;
}

.blog__card:hover .blog__content {
  top: 0;
}

@media (width > 480px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width > 768px) {
  .blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Privacy Policy */
.privacy-container {
  width: 100%;
  margin: auto;
  background: white;
  padding: 2rem 3rem;
}

.privacy-header {
  text-align: center;
  padding: 20px 10px;
  background-color: #2e2a40;
}

.privacy-header h1 {
  font-size: 28px;
  color: rgb(255, 255, 255);
}

.privacy-section {
  margin-bottom: 25px;
}

.privacy-section h2 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.privacy-section p {
  font-size: 16px;
  line-height: 1.6;
}

.privacy-section ul {
  margin-top: 10px;
  padding-left: 20px;
}

.privacy-section ul li {
  font-size: 16px;
  margin-bottom: 5px;
}

.privacy-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .privacy-container {
    width: 95%;
    padding: 20px;
  }

  .privacy-header h1 {
    font-size: 24px;
  }

  .privacy-section h2 {
    font-size: 20px;
  }

  .privacy-section p,
  .privacy-section ul li {
    font-size: 15px;
  }
}

/* Disclaimer */
.disclaimer-container {
  width: 100%;
  margin: auto;
  background: white;
  padding: 2rem 3rem;
}

.disclaimer-header {
  text-align: center;
  padding: 20px 10px;
  background-color: #2e2a40;
}

.disclaimer-header h1 {
  font-size: 28px;
  color: rgb(255, 255, 255);
}

.disclaimer-header p {
  font-size: 14px;
  color: #555;
}

.disclaimer-section {
  margin-bottom: 25px;
}

.disclaimer-section h2 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.disclaimer-section p {
  font-size: 16px;
  line-height: 1.6;
}

.disclaimer-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .disclaimer-container {
    width: 95%;
    padding: 20px;
  }

  .disclaimer-header h1 {
    font-size: 24px;
  }

  .disclaimer-section h2 {
    font-size: 20px;
  }

  .disclaimer-section p {
    font-size: 15px;
  }
}

/* Terms & Conditions */
.terms-container {
  width: 100%;
  margin: auto;
  background: white;
  padding: 2rem 3rem;
}

.terms-header {
  text-align: center;
  padding: 20px 10px;
  background-color: #cdcdcd;
}

.terms-header h1 {
  font-size: 28px;
  color: #2c3e50;
}

.terms-section {
  margin-bottom: 25px;
}

.terms-section h2 {
  font-size: 22px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.terms-section p {
  font-size: 16px;
  line-height: 1.6;
}

.terms-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
  .terms-container {
    width: 95%;
    padding: 20px;
  }

  .terms-header h1 {
    font-size: 24px;
  }

  .terms-section h2 {
    font-size: 20px;
  }

  .terms-section p {
    font-size: 15px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  background-color: var(--primary-color-dark);
  overflow: hidden;
}

.hero__container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  min-height: calc(100vh - 80px);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.hero__content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero__content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.stat p {
  font-size: 1rem;
  margin: 0;
}

/* Flight Search Form */
.flight-search {
  display: flex;
  align-items: center;
}

.search-container {
  width: 100%;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.search-container h2 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  font-size: 1.5rem;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  position: relative;
}

.form-group i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.form-group input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.search-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: var(--primary-color-dark);
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background-color: var(--extra-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-box {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white);
}

.feature-box h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.feature-box p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Destinations Section */
.destinations-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.destination-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.destination-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
}

.destination-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.explore-btn {
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.explore-btn:hover {
  background-color: var(--primary-color-dark);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(to right, var(--primary-color-dark), var(--primary-color));
}

.testimonials-section .section__header,
.testimonials-section .section__description {
  color: var(--white);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 1rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-info h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.profile-info p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.rating {
  margin-bottom: 1rem;
}

.rating i {
  color: #ffd700;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
}

/* Special Offers Section */
.offers-section {
  padding: 5rem 0;
  background-color: var(--extra-light);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.offer-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-10px);
}

.offer-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 1;
}

.offer-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.offer-content {
  padding: 1.5rem;
}

.offer-details h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.offer-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.offer-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.old-price {
  color: var(--text-light);
  text-decoration: line-through;
  font-size: 1.1rem;
}

.new-price {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.book-now-btn {
  width: 100%;
  padding: 0.8rem;
  text-align: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/header.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  padding: 2rem;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-item i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--white);
}

.stat-item h4 {
  color: var(--white);
  font-size: 1.2rem;
}

/* Airlines Section */
.airlines-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.airlines-slider {
  margin-top: 3rem;
  padding: 2rem 0;
}

.airline-logos {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.airline-logos img {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.airline-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Travel Guide Section */
.travel-guide {
  padding: 5rem 0;
  background-color: var(--extra-light);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.guide-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.guide-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.guide-icon i {
  font-size: 2rem;
  color: var(--white);
}

.guide-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.guide-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.learn-more {
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.learn-more:hover {
  gap: 0.8rem;
}

/* Newsletter Section */
.newsletter-section {
  padding: 5rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/slide_2.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--white);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

/* App Section */
.app-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.app-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.app-text p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.app-buttons {
  display: flex;
  gap: 1rem;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--text-dark);
  color: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.app-btn:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.app-btn i {
  font-size: 2rem;
}

.app-btn span {
  display: flex;
  flex-direction: column;
}

.app-btn small {
  font-size: 0.8rem;
  opacity: 0.8;
}

.app-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 991px) {
  .app-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-buttons {
    justify-content: center;
  }

  .newsletter-form .form-group {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .counter {
    font-size: 2.5rem;
  }

  .airline-logos {
    gap: 2rem;
  }

  .airline-logos img {
    max-width: 120px;
  }

  /* Footer tablet optimizations */
  .footer__container {
    padding: 2.5rem 1.5rem;
  }

  .footer__col:first-child {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer__links {
    gap: 0.7rem;
  }
}

@media (max-width: 480px) {
  body:not(.home-page) {
    padding-top: 130px;
  }

  .flight-hero-content {
    padding-top: 9rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .app-buttons {
    flex-direction: column;
  }

  .airline-logos img {
    max-width: 100px;
  }

  .site-logo {
    width: 7rem;
  }

  .call-btn {
    font-size: 0.8rem;
    padding: 0.6rem 0.8rem;
  }

  .nav__links a {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  /* Footer mobile optimizations */
  .footer__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .footer__col h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .footer__col p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .footer__links a {
    font-size: 0.85rem;
  }

  .footer__bar {
    padding: 1rem;
    font-size: 0.8rem;
  }

  .footer__socials {
    gap: 0.8rem;
  }

  .footer__socials a {
    font-size: 1.1rem;
  }
}