:root {

  /**
   * colors
   */

  --united-nations-blue: hsl(202, 46%, 38%);
  --bright-navy-blue: hsl(205, 85%, 62%);
  --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: block; }

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: 15px; }

.btn {
  color: var(--white);
  text-transform: uppercase;
  font-size: var(--fs-5);
  border-radius: 100px;
  padding: var(--padding, 8px 18px);
  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;
  text-align: center;
}

.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);
}






/*-----------------------------------*\
 * #HEADER
\*-----------------------------------*/

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 61px;
  z-index: 4;
}

.header-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  padding-block: 15px;
  z-index: 1;
}

.header.active .header-top {
  position: fixed;
  background: var(--gunmetal);
}

.header-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: center;
}

.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, 0%, 100%, 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; }

.header .navbar {
  position: fixed;
  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, 0%, 0%, 0.1); }

.navbar-list li { border-bottom: 1px solid hsla(0, 0%, 0%, 0.1); }

.navbar-link {
  padding: 15px 20px;
  color: var(--jet);
  font-weight: var(--fw-500);
  font-size: var(--fs-4);
  transition: var(--transition);
  text-transform: capitalize;
}

.navbar-link:is(:hover, :focus) { color: var(--bright-navy-blue); }

.overlay {
  position: fixed;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}

.overlay.active {
  opacity: 0.7;
  pointer-events: all;
}





/* updating header?? */

.dropdown {
  position: relative;
}
.dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  outline: none;
}

.dropdown-menu {
  display: none;
  position: absolute;
  left: 0; /* attaches to left of button */
  top: calc(100% + 8px);
  min-width: 220px;
  background: var(--white, #fff);
  border: 1px solid var(--spanish-gray, #e6e6e6);
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
  border-radius: 10px;
  z-index: 100;
  padding: 10px 0;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  animation: fadeInDropdown 0.2s;
}

@keyframes fadeInDropdown {
  from { opacity: 0; transform: translateY(-8px);}
  to   { opacity: 1; transform: translateY(0);}
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 24px;
  color: var(--black-coral, #353b48);
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.14s, color 0.14s;
}
.dropdown-menu li a:hover {
  background: var(--bright-navy-blue, #297ef6);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/*-----------------------------------*\
 * #HERO
\*-----------------------------------*/

.hero {
  background-image: url("../images/hero-banner.jpg");
  background-repeat: no-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;
}





/*-----------------------------------*\
 * #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;
}





/*-----------------------------------*\
 * #POPULAR
\*-----------------------------------*/

.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: 20px;
}


.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; }





/* /*-----------------------------------*\
 * #PACKAGE
\*-----------------------------------*/
/* 
.package { padding-block: var(--section-padding); }

.package-list { margin-bottom: 40px; }

.package-list > li:not(:last-child) { margin-bottom: 30px; }

.package-card {
  background: var(--cultured);
  overflow: hidden;
  border-radius: 15px;
}

.package-card .card-banner { height: 250px; }

.package-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-card .card-content { padding: 30px 20px; }

.package-card .card-title { margin-bottom: 15px; }

.package-card .card-text {
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-meta-list {
  background: var(--white);
  max-width: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 8px;
  box-shadow: 0 0 5px hsla(0, 0%, 0%, 0.15);
  border-radius: 50px;
}

.card-meta-item { position: relative; }

.card-meta-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -1px;
  bottom: 4px;
  width: 1px;
  background: hsla(0, 0%, 0%, 0.3);
}

.meta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-inline: 9px;
  color: var(--black-coral);
  font-size: var(--fs-8);
}

.meta-box > ion-icon {
  color: var(--bright-navy-blue);
  font-size: 13px;
}

.package-card .card-price {
  background: var(--united-nations-blue);
  color: var(--white);
  padding: 25px 20px;
  text-align: center;
}

.package-card .card-price .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 15px;
  margin-bottom: 10px;
}

.package-card .card-price .reviews { font-size: var(--fs-5); }

.package-card .card-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  font-size: 14px;
}

.package-card .card-rating ion-icon:last-child { color: hsl(0, 0%, 80%); }

.package-card .price {
  font-size: var(--fs-2);
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-800);
  margin-bottom: 20px;
}

.package-card .price span {
  font-size: var(--fs-7);
  font-weight: initial;
}

.package .btn { margin-inline: auto; }

 */ */

/* ==============================
   #package Two-Card Bootstrap-like
================================= */
#package {
  padding: var(--section-padding) 0;
}

/* Cards container */
#package .package-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Individual card */
#package .package-card {
  flex: 1 1 18rem;       /* grow, shrink, base width */
  max-width: 18rem;      /* same as Bootstrap’s 18rem */
  background: var(--white);
  border-radius: var(--radius-15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#package .package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Card image */
#package .package-card__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card body */
#package .package-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Title */
#package .package-card__title {
  font-family: var(--ff-montserrat);
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  color: var(--oxford-blue);
  margin-bottom: 0.75rem;
}

/* Text */
#package .package-card__text {
  font-family: var(--ff-poppins);
  font-size: var(--fs-6);
  color: var(--black-coral);
  flex: 1;    /* push button to bottom */
  margin-bottom: 1.25rem;
}

/* Button (reuses primary style) */
#package .package-card__btn {
  display: inline-block;
  text-align: center;
  padding: 0.6rem 1.2rem;
  background-color: var(--bright-navy-blue);
  color: var(--white);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  border: none;
  border-radius: var(--radius-15);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
#package .package-card__btn:hover {
  background-color: var(--yale-blue);
  transform: translateY(-2px);
}

/* Mobile stacking */
@media (max-width: 576px) {
  #package .package-cards {
    flex-direction: column;
    align-items: center;
  }
}
/* 1) Give the whole section some extra bottom spacing */
#package {
  margin-bottom: 4rem;
}

/* 2) Enlarge the cards and make them span more of the container */
#package .package-cards {
  display: grid;
  /* each card is at least 400px wide, but expand equally otherwise */
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  justify-items: center;    /* center cards if there's extra space */
  margin: 2rem auto 0;
  max-width: 1100px;        /* same max-width as your form above */
  padding: 0 1rem;          /* small side padding on narrow screens */
}

/* 3) Ensure each card fills its grid cell */
#package .package-card {
  width: 100%;
  max-width: none;          /* remove previous caps */
}

/* 4) On smaller screens, drop to one column */
@media (max-width: 768px) {
  #package .package-cards {
    grid-template-columns: 1fr;
  }
}



/*-----------------------------------*\
 * #GALLERY
\*-----------------------------------*/

.gallery { padding-block: var(--section-padding); }

.gallery-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-15);
  overflow: hidden;
}

.gallery-item:nth-child(3) { grid-area: 1 / 2 / 3 / 3; }

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/*-----------------------------------*\
 * #CTA
\*-----------------------------------*/

.cta {
  background: #4caced;
  padding-block: var(--section-padding);
}

.cta :is(.section-subtitle, .section-title, .section-text) { color: var(--white); }

.cta .section-text { font-size: var(--fs-5); }





/*-----------------------------------*\
 * #FOOTER
\*-----------------------------------*/

.footer-top {
  background: var(--gunmetal);
  padding-block: var(--section-padding);
  color: var(--gainsboro);
}

.footer-brand { margin-bottom: 30px; }

.footer-brand img { width: 180px; }

.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: 83px; }

  .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; }

}





/**
 * 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%; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }

}
/*-----------------------------------*\
  #WHATSAPP DOCK
\*-----------------------------------*/

.floating-contact {
  position: fixed;
  bottom: 25px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

/* WhatsApp button – use original look */
.whatsapp-dock {
  width: 48px;
  height: 48px;
  background-color: #25D366;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  font-size: 20px;
}

/* Phone button – match primary button style */
.phone-dock {
  background-color: var(--bright-navy-blue);
  color: white;
  font-size: var(--fs-5);
  padding: 8px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.logo img {
  width: 300px;
  height: auto;
  display: block;
}
.header:not(.active) .header-bottom {
  margin-top: 60px; /* Adds space only when header is NOT sticky */
}

.header.active .header-bottom {
  margin-top: 0; /* Reset when header sticks */
}
.navbar-link {
  font-weight: 600; /* Or 700 for heavier bold */
}
/* // */
.success-stories {
  padding: var(--section-padding) 20px;
  text-align: center;
  background-color: var(--cultured);
}

.success-stories .section-subtitle {
  color: var(--bright-navy-blue);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.success-stories .section-title {
  font-family: var(--ff-montserrat);
  font-size: var(--fs-2);
  color: var(--oxford-blue);
  font-weight: var(--fw-800);
  margin-bottom: 10px;
}

.success-stories .section-text {
  color: var(--black-coral);
  font-size: var(--fs-5);
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.card {
  scroll-snap-align: center;
  min-width: 300px;
  max-width: 320px;
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  opacity: 0.6;
  transform: scale(0.95);
  transition: all var(--transition);
}

.card.active {
  opacity: 1;
  transform: scale(1);
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.info h3 {
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
  color: var(--jet);
}

.info p {
  color: var(--spanish-gray);
  font-size: var(--fs-6);
}

.stars {
  color: gold;
  margin: 5px 0;
}

.text {
  font-size: var(--fs-5);
  color: var(--black-coral);
  margin-top: 10px;
}

.quote {
  font-size: 24px;
  color: var(--bright-navy-blue);
  margin-top: 15px;
}

.carousel-btn {
  background: var(--bright-navy-blue);
  color: white;
  border: none;
  width: 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-25);
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: var(--blue-ncs);
}

.carousel-indicators {
  margin-top: 20px;
}

.dot {
  height: 10px;
  width: 10px;
  background: var(--gainsboro);
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}

.dot.active {
  background: var(--bright-navy-blue);
}


/* //Visa Servides page */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  padding: 0 20px;
  max-width: 1100px;
  margin: auto;
}

.country-card {
  background-color: var(--white);
  border-radius: var(--radius-15);
  box-shadow: 0 2px 8px hsla(0, 0%, 0%, 0.05);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.country-card:hover {
  box-shadow: 0 6px 16px hsla(0, 0%, 0%, 0.1);
  transform: translateY(-4px);
}

.country-card h3 {
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  color: var(--gunmetal);
  margin-bottom: 10px;
}

.country-card button {
  background-color: var(--bright-navy-blue);
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-15);
  cursor: pointer;
  transition: var(--transition);
}

.country-card button:hover {
  background-color: var(--yale-blue);
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.country-card {
  background-color: var(--white);
  border-radius: var(--radius-15);
  box-shadow: 0 2px 8px hsla(0, 0%, 0%, 0.05);
  text-align: center;
  padding: 24px 16px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flag-img {
  width: 48px;
  height: auto;
  margin: 0 auto 12px;
}

.country-card h3 {
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-bottom: 10px;
  color: var(--gunmetal);
}

.country-card button {
  background-color: var(--bright-navy-blue);
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-15);
  cursor: pointer;
  font-weight: var(--fw-600);
  transition: var(--transition);
}

.country-card button:hover {
  background-color: var(--yale-blue);
}
/* Visa Page Banner Style */



.visa-hero .hero-title {
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 800;
}

.visa-hero .hero-subtitle {
  font-size: 20px;
  font-weight: 400;
}

/* Country Grid and Card */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.country-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.2s ease;
}

.country-card:hover {
  transform: translateY(-5px);
}

.flag-wrapper {
  width: 80px;
  height: 60px;
  margin: 0 auto 15px;
}

.flag-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.country-name {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}


/* ─── Hero Banner + Slogan ────────────────────────────────────── */
.banner-container {
  position: relative;
  width: 100%;
  height: 300px;          /* adjust as needed */
  overflow: hidden;
}
.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-slogan {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.banner-slogan h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin: 0;
}

/* ─── Section Title ───────────────────────────────────────────── */
.section-title {
  text-align: center;
  margin: 2rem 0;
  color: var(--bright-navy-blue);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

/* ─── Country Grid ────────────────────────────────────────────── */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}
.country-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  padding: 1rem;
}
.country-card .flag-img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}
.country-card .country-name {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ─── Button Primary (kept same) ─────────────────────────────── */
.inner-header .btn-primary {
  /* your inverted-theme styling from earlier */
}
/* ─── Inquiry Section Layout ───────────────────────────────────── */
.inquire-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* ─── Cards ─────────────────────────────────────────────────────── */
.inquire-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1.5rem;
}
.inquire-info {
  text-align: center;
}
.inquire-flag {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.inquire-title {
  font-family: 'Montserrat', sans-serif;
  color: #3b7ac9;
  margin-bottom: 0.75rem;
}
.inquire-desc {
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-size: 0.95rem;
}

/* ─── Form Styles ───────────────────────────────────────────────── */
.inquire-form .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.inquire-form input,
.inquire-form select {
  flex: 1;
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
}
.inquire-form input::placeholder {
  color: #999;
}
.inquire-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20...");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.8rem;
}

/* ─── Apply Button ─────────────────────────────────────────────── */
.btn-apply {
  width: 100%;
  background: #3b7ac9;
  color: #fff;
  font-weight: 600;
  padding: 0.85rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-apply:hover {
  background: #345f9e;
}
/*  Formmdialogue 
 */
.submission-dialog .dialog-content {
  display: flex;
  flex-direction: column;
  align-items: center;       /* center horizontally */
  justify-content: center;   /* center vertically */
  text-align: center;        /* center text and children */
  padding: 2rem;
  border-radius: 8px;
  background: #fff;
  max-width: 90%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  margin: auto;
}
.submission-dialog #dialog-ok {
  margin-top: 1.5rem;        /* give it some breathing room */
  align-self: center;        /* ensure the button stays centered */
}
/* inquriy form css */
/* make 2-col layout that automatically wraps on mobile */
.inquire-form .form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem 1.5rem;              /* row-gap, column-gap */
  margin-bottom: 1.5rem;         /* space before submit button */
}

/* unify input & select appearance */
.inquire-form input,
.inquire-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.2;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* placeholder color */
.inquire-form input::placeholder {
  color: #aaa;
}

/* focus state */
.inquire-form input:focus,
.inquire-form select:focus {
  border-color: #3b7ac9;
  box-shadow: 0 0 6px rgba(59,122,201,0.3);
  outline: none;
}

/* error state */
.inquire-form .error {
  border-color: #e60000 !important;
}

/* selects get same padding & remove default arrow */
.inquire-form select {
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg fill='%23999' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}


/* error message placement */
.inquire-form .error-message {
  margin-top: 0.25rem;
  font-size: 0.85rem;
}

/* larger, full-width submit */
.btn-apply {
  width: 100%;
  padding: 0.85rem;
  font-size: 1.1rem;
  border-radius: 6px;
}

/* ensure mobile friendliness */
@media (max-width: 600px) {
  .inquire-form .form-grid {
    grid-template-columns: 1fr;
  }
}
/* 1) Prevent the two‐column grid from stretching items equally */
.inquire-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start; /* <-- this makes items align at top, not stretch */
}

/* 2) Make the image fit the current div size, but reduce its size */
.inquire-card.inquire-info img {
  width: 70%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}
/* Ensure all inputs, selects, & textareas stay within their grid cell */
.inquire-form .field-group textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  resize: vertical;   /* allow only vertical resizing */
}

/* If your form-grid cell for textarea spans two columns, make sure it's defined */
.inquire-form .form-grid > .field-group[style*="grid-column: span 2"] {
  grid-column: span 2;
}

/* footer form */
/* error message */
#error, .error-message { display: none; }
#error.active, .error-message.active {
  display: block;
  color: #e60000;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
/* ─── Footer Newsletter Pills ─────────────────────────────────────────── */
/* Footer newsletter pills, equal‐width input + button */
.newsletter-fields {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.newsletter-fields input[type="email"],
.newsletter-fields button {
  /* each takes equal space, min 250px, max 400px */
  flex: 1 1 250px;
  max-width: 400px;
  min-width: 250px;
}

/* Email input styling */
.newsletter-fields input[type="email"] {
  background: #fff;
  color: #333;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.2s, border 0.2s;
}
.newsletter-fields input[type="email"]::placeholder {
  color: #999;
}
.newsletter-fields input[type="email"]:focus {
  box-shadow: 0 2px 8px rgba(59,122,201,0.4);
  border: 1px solid #3b7ac9;
}

/* Subscribe button styling */
.newsletter-fields button {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.newsletter-fields button:disabled {
  opacity: 0.6;
  cursor: default;
}
.newsletter-fields button:hover:not(:disabled) {
  background: #fff;
 
  color: #3b7ac9;
}

/* ─── FORCE ALL .submission-dialog MODALS TO CENTER ────────────────────── */
.submission-dialog {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(0,0,0,0.6) !important;
  z-index: 9999 !important;
  padding: 1rem !important;
  box-sizing: border-box !important;
}

.submission-dialog .dialog-content {
  width: 100% !important;
  max-width: 400px !important; /* never exceed this */
  margin: 0 auto !important;
  background: #fff !important;
  padding: 2rem !important;
  border-radius: 8px !important;
  text-align: center !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
}

/* ─── Terms & Conditions Styling (blue theme) ───────────────────────────── */

.terms-section {
  padding: 2rem 0 4rem;
}

.terms-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.terms-section .section-title {
  text-align: center;
  color: #3b7ac9;      /* your theme blue */
  margin-bottom: 2rem;
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
}

.terms-content h3 {
  color: #3b7ac9;      /* subheading in blue */
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.terms-content h4 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}

.terms-content p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.terms-content a {
  color: #3b7ac9;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .terms-content {
    padding: 0 1rem;
  }
}
/* ───────────────────────────────────────────────────────────────────────── */
.terms-intro {
  margin-top: 2rem;    /* ← Add this */
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1.5rem;
}
/* ─── About Us Page Enhancements ─────────────────────────────────────── */

/* Make the banner taller and crop it */
.about-banner {
  overflow: hidden;
}
.about-banner .banner-img {
  width: 100%;
  height: 350px;           /* increase height as desired */
  object-fit: cover;
  display: block;
}

/* About Us section spacing */
.about-section {
  padding: 3rem 0 4rem;
}

/* Section title in theme blue, centered */
.about-section .section-title {
  text-align: center;
  color: #3b7ac9;
  margin-bottom: 2rem;
}

/* Constrain and style the body copy */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #444;
  font-family: 'Poppins', sans-serif;
}
.about-content p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.about-content h3 {
  color: #3b7ac9;
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.about-content ul {
  list-style: disc inside;
  margin-bottom: 1.25rem;
}
.about-content li {
  margin-bottom: 0.75rem;
}
.about-content a {
  color: #3b7ac9;
  text-decoration: underline;
}

/* Responsive tweak */
@media (max-width: 600px) {
  .about-content {
    padding: 0 1rem;
  }
  .about-banner .banner-img {
    height: 200px;
  }
}
/* ─── Responsive tweaks for inner header ───────────────────────────── */

/* Optional: extra small screens, shrink logo */
@media (max-width: 480px) {
  .inner-header .logo img {
    max-width: 120px;
  }
}
/* //popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 1rem;
}

.popup-content {
  background-color: var(--white);
  color: var(--gunmetal);
  font-family: var(--ff-poppins);
  border-radius: var(--radius-15);
  padding: 2rem 2.5rem;
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: popupFadeIn 0.3s ease-in-out;
}

@keyframes popupFadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-content h2 {
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  margin-bottom: 0.2rem;
}

.popup-content .highlight {
  color: var(--bright-navy-blue);
}

.deal-subtitle {
  color: var(--yale-blue);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-bottom: 0.5rem;
}

.deal-note {
  font-size: var(--fs-5);
  margin-bottom: 1rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.contact-options p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--cultured);
  border: 1px solid var(--gainsboro);
  border-radius: var(--radius-15);
  padding: 0.6rem;
  font-weight: var(--fw-600);
  font-size: var(--fs-5);
}

.contact-options ion-icon {
  color: var(--bright-navy-blue);
  font-size: 18px;
}

.contact-options a {
  color: var(--gunmetal);
  text-decoration: none;
}

.popup-btn {
  background-color: var(--bright-navy-blue);
  color: white;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: var(--radius-15);
  font-weight: var(--fw-600);
  font-size: var(--fs-5);
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%; /* 👈 same width as the contact boxes */
}


.popup-btn:hover {
  background-color: var(--yale-blue);
}

.close-popup {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--onyx);
}

/* //Inquire us fom on index  page*/
/* ------- Inquiry Section (scoped) ------- */
.inquire-section {
  padding: 1rem;
  display: flex;
  justify-content: center;
}
.inquire-section .inquire-card.inquire-forms {
  background: var(--white);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-25);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* Tabs */
.inquire-section .inquire-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.inquire-section .inquire-tab-btn {
  padding: 0.7rem 1.5rem;
  margin: 0 0.5rem;
  background: var(--cultured);
  border: none;
  border-radius: var(--radius-25);
  font-weight: var(--fw-600);
  font-size: var(--fs-5);
  cursor: pointer;
  transition: background 0.3s;
}
.inquire-section .inquire-tab-btn.active {
  background: var(--bright-navy-blue);
  color: var(--white);
}

/* ─── Slide transition for the two forms ───────────────────── */
.inquire-section .inquire-forms {
  display: grid;           /* turn it into a grid container */
  /* you no longer need position:relative here */
}

/* 1) Turn .inquire-forms into a 1-column, 2-row grid */
.inquire-section .inquire-forms {
  display: grid;
  grid-template-columns: 1fr;
  /* first row = tabs, second row = forms */
  grid-template-rows: auto auto;
}

/* 2) Force the tabs into row 1, col 1 */
.inquire-section .inquire-tabs {
  grid-row: 1;
  grid-column: 1;
  z-index: 2; /* keep them on top when overlapping */
}

/* 3) Force each form into row 2, col 1 */
.inquire-section .inquire-form-tab {
  grid-row: 2;
  grid-column: 1;

  /* your slide/fade setup */
  transform: translateX(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform  0.4s ease,
    opacity    0.4s ease,
    visibility 0s linear 0.4s;
}

/* 4) And your “active” state stays the same */
.inquire-section .inquire-form-tab.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform  0.4s ease,
    opacity    0.4s ease,
    visibility 0s linear 0s;
}


.inquire-section .inquire-form-tab.active {
  transform: translateX(0);            /* slide back in */
  opacity: 1;                          /* fade in */
  visibility: visible;                 /* make it interactive */
  pointer-events: auto;
  transition:
    transform 0.4s ease,
    opacity   0.4s ease,
    visibility 0s linear 0s;           /* make visibility immediate when activating */
}
/* ─── Sliding background indicator ────────────────────────── */
.inquire-section .inquire-tabs {
  position: relative;    /* create positioning context */
}

/* The “slider” behind the active pill */
.inquire-section .inquire-tabs .tab-indicator {
  position: absolute;
  top: 2px;              /* adjust to sit neatly inside the border */
  bottom: 2px;
  left: 0;
  width: 0;              /* will be set by JS */
  background: var(--bright-navy-blue);
  border-radius: var(--radius-25);
  transition: left 0.3s ease, width 0.3s ease;
  z-index: 1;            /* behind the buttons */
}

/* ensure our buttons sit above the indicator */
.inquire-section .inquire-tab-btn {
  position: relative;
  z-index: 2;
}


/* Grid Layout */
.inquire-section .inquire-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
}
/* For flights, ensure up to 4 columns on wide screens */
.inquire-section .flights-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Field Groups */
.inquire-section .inquire-field-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: var(--fw-600);
  color: var(--gunmetal);
}
.inquire-section .inquire-field-group input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--gainsboro);
  border-radius: var(--radius-15);
  font-size: var(--fs-5);
  font-family: var(--ff-poppins);
  transition: border-color 0.2s;
}
.inquire-section .inquire-field-group input:focus {
  outline: none;
  border-color: var(--bright-navy-blue);
  box-shadow: 0 0 5px rgba(59,122,201,0.25);
}
.inquire-section .inquire-field-group input.error {
  border-color: #e60000;
}
.inquire-section .inquire-field-group .error-message {
  color: #e60000;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

/* Primary Buttons */
.inquire-section .inqu-btn-primary {
  display: block;
  padding: 0.75rem 2rem;
  background: var(--bright-navy-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-15);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  cursor: pointer;
  margin: 0 auto;
  transition: background 0.3s;
}
.inquire-section .inqu-btn-primary:hover {
  background: var(--yale-blue);
}

/* Submission Dialog */
.inquire-section .submission-dialog {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.inquire-section .submission-dialog .dialog-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.inquire-section .submission-dialog ion-icon {
  font-size: 3rem;
  color: #28a745;
  margin-bottom: 1rem;
}
.inquire-section .submission-dialog h2 {
  margin: 0.5rem 0;
  font-family: var(--ff-montserrat);
  color: var(--bright-navy-blue);
}
.inquire-section .submission-dialog p {
  font-family: var(--ff-poppins);
  color: #555;
}
.inquire-section .submission-dialog #dialog-ok {
  margin-top: 1.5rem;
  padding: 0.5rem 1.5rem;
  background: var(--bright-navy-blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}
/* ── Tabs Container (Neutral White with Border) ── */
.inquire-section .inquire-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  background: var(--white);
  border: 1px solid var(--gainsboro);
  padding: 0.25rem;
  border-radius: var(--radius-25);
}

/* ── Individual Pills ── */
.inquire-section .inquire-tab-btn {
  position: relative;
  padding: 0.6rem 1.5rem;
  margin: 0 0.25rem;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius-15);
  color: var(--oxford-blue);
  font-weight: var(--fw-700);
  cursor: pointer;
  transition: 
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

/* ── Active Pill ── */
.inquire-section .inquire-tab-btn.active {
  background: var(--bright-navy-blue);
  color: var(--white);
  border-color: var(--bright-navy-blue);
}

/* ── Hover States ── */
.inquire-section .inquire-tab-btn:hover:not(.active) {
  background: var(--cultured);
  border-color: var(--gainsboro);
}



/* top values for you section */
/* -------------------------------
   #values — Redesigned 3D Cards
   ------------------------------- */
#values.values-section {
  background: var(--cultured);
  padding: calc(var(--section-padding) * 1.5) 0 4rem;
}

#values .values-title {
  text-align: center;
  font-family: var(--ff-montserrat);
  font-size: 2.5rem;           /* bigger! */
  font-weight: var(--fw-700);
  color: var(--white); /* primary color */
  margin-bottom: 0.5rem;
}

#values .values-subtitle {
  text-align: center;
  font-family: var(--ff-poppins);
  font-size: 1.125rem;         /* larger subtitle */
  color: var(--white);
  margin-bottom: 2rem;
}

/* Grid layout */
#values .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  perspective: 800px;
}

/* Card base */
#values .value-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-25);
  overflow: hidden;
  min-height: 400px;           /* taller cards */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
}

#values .value-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Fake shadow layer for depth */
#values .value-card__shadow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--onyx);
  filter: blur(30px);
  opacity: 0.05;
  transform: translateY(8px) scale(0.98);
  border-radius: inherit;
  z-index: -1;
}

/* Icon wrapper & colored circle */
#values .value-card__icon-wrapper {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
#values .value-card__circle {
  display: inline-block;
  width: 80px;
  height: 80px;
  background: var(--bright-navy-blue);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#values .value-card__icon {
  position: relative;
  width: min(100px, 18vw);

  z-index: 1;
}

/* Content */
#values .value-card__content {
  padding: 0 1.5rem 2rem;
  text-align: center;
  flex: 1;
}

/* Heading & text */
#values .value-card__heading {
  font-family: var(--ff-montserrat);
  font-size: 1.375rem;         /* larger heading */
  font-weight: var(--fw-700);
  color: var(--oxford-blue);
  margin-bottom: 0.75rem;
}
#values .value-card__text {
  font-family: var(--ff-poppins);
  font-size: 1rem;             /* larger body text */
  color: var(--black-coral);
  line-height: 1.6;
}

/* Responsive stack */
@media (max-width: 576px) {
  #values .values-grid {
    grid-template-columns: 1fr;
  }
}
/* Center the icon */
#values .value-card__icon-wrapper,
#values .value-card__icon {
  /* if you have an icon-wrapper, center it */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ensure the circle + icon are truly on top */
#values .value-card__circle {
  margin: 0 auto;
}



/* If you didn’t use the wrapper, just center the img directly: */
#values .value-card img {
  display: block;
  margin: 1rem auto;    /* centers and adds top spacing */
}
/* Top Values bg override */
#values.values-section {
  background: var(--bright-navy-blue);
}



/* making header responsive */
/* Responsive Navbar */
.header .navbar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 80vw;
  height: 100vh;
  background: var(--white, #fff);
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.07);
  transition: right 0.25s cubic-bezier(.4,0,.2,1);
  z-index: 100;
  visibility: hidden;
  pointer-events: none;
  padding-top: 40px;
  display: block;
}
.header .navbar.active {
  right: 0;
  visibility: visible;
  pointer-events: auto;
}

/* Show/hide overlay for mobile menu */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.33);
  z-index: 99;
  transition: opacity 0.18s;
}
.overlay.active {
  display: block;
}

/* Hamburger and close icons - only on mobile */
.nav-open-btn, .nav-close-btn {
  display: block;
}

/* Navbar list for mobile */
.navbar-list {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

/* Desktop mode */
@media (min-width: 900px) {
  .header .navbar {
    position: static;
    right: auto;
    width: auto;
    max-width: none;
    height: auto;
    background: none;
    box-shadow: none;
    visibility: visible;
    pointer-events: auto;
    padding-top: 0;
    z-index: auto;
  }
  .nav-open-btn, .nav-close-btn, .overlay {
    display: none !important;
  }
  .navbar-list {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .navbar-link {
    padding: 15px 20px;
  }
  .dropdown-menu {
    position: absolute;
    left: 0;
    min-width: 220px;
    background: var(--white, #fff);
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
    border: 1px solid var(--spanish-gray, #e6e6e6);
    border-radius: 10px;
    z-index: 200;
    padding: 10px 0;
  }
}

/* Mobile dropdown: show inline, no shadow */
@media (max-width: 899px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: none;
    min-width: 100%;
    border-radius: 0;
    padding: 0;
  }
  .dropdown-menu li a {
    padding: 12px 32px;
    background: #f4f6fa;
    color: var(--black-coral, #353b48);
    font-size: 1em;
  }
  .dropdown-menu li a:hover {
    background: var(--bright-navy-blue, #297ef6);
    color: #fff;
  }
}




/* //inner heade> */
.heroinner {
background-image: url("../images/visa-banner.jpg");
background-repeat: no-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: 250px;
text-align: center;
padding-top: 125px;
}

/* ─── Refund Policy Section Styling ─────────────────────────────────── */
.refund-section {
  padding: 4rem 1rem;
  background-color: #fff;
}

.refund-section .section-title {
  /* match “About Us” heading */
  font-family: 'Montserrat', sans-serif;
  font-size: 2.25rem;        /* ~36px */
  font-weight: 700;
  color: var(--bright-navy-blue);
  text-align: center;
  margin-bottom: 2rem;
}

.refund-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.refund-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;           /* ~16px */
  line-height: 1.75;         /* comfortable line spacing */
  color: var(--black-coral);
  margin-bottom: 1rem;
}

.refund-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;         /* ~24px */
  font-weight: 600;
  color: var(--bright-navy-blue);
  margin: 2rem 0 1rem;
}

.refund-section ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  color: var(--black-coral);
}

.refund-section ul li {
  margin-bottom: 0.75rem;
}

.refund-section strong {
  font-weight: 600;  /* slightly heavier than normal text */
}

.refund-section a {
  color: var(--bright-navy-blue);
  text-decoration: none;
}

.refund-section a:hover {
  text-decoration: underline;
}

/* ─── 1) Restore real bullets ───────────────────────────────────── */
.refund-section ul {
  /* undo any “no bullets” reset */
  list-style: disc !important;
  list-style-position: outside !important;
  margin: 0 0 1rem 1.5rem !important;
  padding: 0 !important;
}

/* ─── 2a) If your browser supports ::marker, color the real bullet ─ */
.refund-section ul li::marker {
  color: var(--bright-navy-blue) !important;
  /* font-size: inherit; */   /* usually not needed, but you can adjust */
}

/* ─── 2b) Fallback using a pseudo-element (for older browsers) ───── */
.refund-section ul {
  /* if ::marker still fails, comment out the above and use this instead */
  /* list-style: none !important; */
}

.refund-section ul li {
  position: relative;
  padding-left: 1.5rem;
}

.refund-section ul li::before {
  content: "\2022";               /* Unicode bullet */
  position: absolute;
  left: 0;
  top: 0.2em;                     /* tweak to vertically center */
  color: var(--bright-navy-blue);
  font-size: 1rem;
  line-height: 1;
}



/* 1) Make the toggle buttons themselves full-pill shape */
.inquire-section .inquire-tab-btn {
  border-radius: 100px;              /* same as .btn-primary */
}

/* 2) Make the sliding indicator match that pill shape & height */
.inquire-section .inquire-tabs .tab-indicator {
  top: 0;                            /* cover entire tab-container height */
  bottom: 0;
  border-radius: 100px;              /* identical corners */
  /* background already set to var(--bright-navy-blue) */
  transition: left 0.3s ease, width 0.3s ease;
}


/* smooth‐sticky + show/hide the favicon
 */
 /* ─── 1) Animate the lower header sliding into place ───────── */
/* ─── Smooth sticky header without the white line ───────────── */
.header-bottom {
  /* remove the white divider */
  border-bottom: none;

  /* softer, slower animation */
  transition:
    margin-top 0.5s ease-in-out,
    background 0.5s ease-in-out,
    box-shadow 0.5s ease-in-out;
}

/* initial (not-stuck) offset */
.header:not(.active) .header-bottom {
  margin-top: 20px;
}

/* sticky state — slides into place smoothly */
.header.active .header-bottom {
  margin-top: 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 2px 5px hsla(0,0%,0%,0.08);
}


/* ─── 2) Show the favicon only when sticky ───────────────── */
.social-list .favicon-icon {
  display: none;        /* hide by default */
}

.header.active .social-list .favicon-icon {
  display: flex;        /* slide in with the bar */
  align-items: center;
  margin-right: 8px;    /* give a bit of breathing room */
}


/* making vismate lgogo bigger in mobile mode */
/* ─── Enlarge VisaMate logo on mobile ───────────────────────── */
/* ─── Force-grow VisaMate logo on mobile ───────────────────── */
@media (max-width: 768px) {
  .header-top .logo img,
  .navbar-top .logo img {
    /* kill the old max-width */
    max-width: none !important;
    /* set your desired width */
    width: 220px !important;
    height: auto !important;
  }
}


/* ----- 1. Mobile menu/side bar overlay from right ----- */
@media (max-width: 991px) {
  .header .navbar {
    position: fixed !important;
    top: 0 !important;
    right: -100vw !important;
    left: auto !important;
    width: 80vw !important;      /* 100vw for full screen */
    max-width: 350px !important;
    height: 100vh !important;
    background: var(--white, #fff);
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
    z-index: 2000 !important;
    transition: right 0.38s cubic-bezier(.44,.13,.48,.87);
    display: block !important;
    will-change: right;
  }
  .header .navbar.active {
    right: 0 !important;
  }
  .overlay, .overlay.active {
    z-index: 1900 !important;
  }
  .nav-open-btn, .nav-close-btn {
    z-index: 2100 !important;
  }
  /* HEADER-BOTTOM: Remove forced white background in mobile! */
  .header-bottom, .header.active .header-bottom {
    position: static !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    z-index: 1 !important;
    /* DO NOT SET background here! */
  }
}

/* ----- 2. Desktop sticky header ----- */
@media (min-width: 992px) {
  .header-bottom {
    position: relative;
    z-index: 1400;
    background: transparent;
    margin-top: 0;
  }
  .header.active .header-bottom {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1499;
    background: var(--white);
    box-shadow: 0 2px 5px hsla(0,0%,0%,0.08);
  }
}

/* animation */
/* ----- Section Reveal Animations ----- */
.reveal-section {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: 
    opacity 0.65s cubic-bezier(.33,1.08,.53,.96),
    transform 0.7s cubic-bezier(.33,1.08,.53,.96);
  will-change: opacity, transform;
}

/* Fade & slide in */
.reveal-section.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* OPTIONAL: Add different animations for hero, packages, values, cta, etc */
.reveal-section[data-anim="left"]    { transform: translateX(-60px) scale(0.96); }
.reveal-section[data-anim="right"]   { transform: translateX(60px) scale(0.96); }
.reveal-section[data-anim="up"]      { transform: translateY(60px) scale(0.96); }
.reveal-section[data-anim="down"]    { transform: translateY(-60px) scale(0.96); }
.reveal-section[data-anim="scale"]   { transform: scale(0.85); }

.reveal-section.visible[data-anim] {
  transform: translateX(0) translateY(0) scale(1);
  opacity: 1;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden !important;
}
.deal-subtitle {
  margin-bottom: 1.2em; /* or use px, e.g., 24px */
}



/* Style for holday package section */
/* ─── Holiday Packages Overrides ──────────────────────────────────── */
.holiday-packages {
  padding: 80px 0;                 /* vertical spacing */
}
.holiday-packages .section-title {
  margin-bottom: 40px;
}

/* ─── Swiper Container ───────────────────────────────────────────── */
.holiday-swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 600px;               /* fixed height to prevent jumps */
  padding-bottom: 40px;            /* room under cards */
}
.holiday-swiper::before,
.holiday-swiper::after {
  content: "";
  position: absolute;
  top: 0; height: 100%;
  width: 30%;
  pointer-events: none;
  z-index: 5;
}
.holiday-swiper::before {
  left: 0;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}
.holiday-swiper::after {
  right: 0;
  background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

/* ─── Slide & Card Layout ───────────────────────────────────────── */
.holiday-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.holiday-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* Base card */
.holiday-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  transition: max-width 0.4s ease, opacity 0.4s ease;
}

/* Center pop‐out */
.holiday-swiper .swiper-slide-active .holiday-card {
  max-width: 360px;
  opacity: 1;
  z-index: 2;
}
/* Neighbors fade/small */
.holiday-swiper .swiper-slide-prev .holiday-card,
.holiday-swiper .swiper-slide-next .holiday-card {
  max-width: 300px;
  opacity: 0.6;
}

/* Image + tag */
.holiday-card__image {
  position: relative;
}
.holiday-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.holiday-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bright-navy-blue);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: var(--fw-600);
}

/* Body content */
.holiday-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.holiday-card__rating {
  color: var(--bright-navy-blue);
  margin-bottom: 8px;
}
.holiday-card__title {
  font-size: 1.15rem;
  color: var(--oxford-blue);
  margin: 0 0 4px;
}
.holiday-card__location {
  font-size: 0.9rem;
  color: var(--spanish-gray);
  margin: 0 0 12px;
}
.holiday-card__reviews {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.holiday-card__reviews img {
  width: 18px;
  height: 18px;
}
.holiday-card__pricing {
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.original-price {
  color: var(--spanish-gray);
  text-decoration: line-through;
  margin-right: 8px;
}
.discounted-price {
  color: var(--bright-navy-blue);
  font-weight: var(--fw-700);
}
.holiday-card__actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.holiday-card__save {
  background: var(--oxford-blue);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: var(--fw-600);
}
.holiday-card__btn {
  background: var(--bright-navy-blue);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: var(--fw-600);
  transition: background 0.25s;
}
.holiday-card__btn:hover {
  background: var(--yale-blue);
}

/* ─── Navigation Arrows ─────────────────────────────────────────── */
/* ─── Swiper Prev/Next: Classic with Hover & Tap Feedback ───────────────── */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--bright-navy-blue);
  font-size: 2rem;
  padding: 8px;                     /* touch target */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.1s ease, color 0.18s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* keep them inside the carousel bounds */
.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }

/* hover = accent color */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--united-nations-blue);
}

/* active/tap = slight click feedback */
.swiper-button-prev:active,
.swiper-button-next:active {
  transform: translateY(-50%) scale(0.9);
}

/* glyph size unchanged */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 2rem;
  line-height: 1;
}


/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 991px) {
  .holiday-swiper .swiper-slide-active .holiday-card {
    max-width: 340px;
  }
  .holiday-swiper .swiper-slide-prev .holiday-card,
  .holiday-swiper .swiper-slide-next .holiday-card {
    max-width: 280px;
  }
}
@media (max-width: 767px) {
  .holiday-swiper {
    min-height: 600px;            /* keep lock on mobile too */
    padding-bottom: 20px;
  }
  .holiday-swiper .swiper-slide-active .holiday-card {
    max-width: 280px;
  }
  .holiday-swiper .swiper-slide-prev .holiday-card,
  .holiday-swiper .swiper-slide-next .holiday-card {
    max-width: 240px;
    opacity: 0.5;
  }
  /* arrows remain visible on mobile */
}
/* ─── Inquiry Form Tabs ─────────────────────────────────────────── */
.inquire-form-tab {
  max-height: 0;
  overflow: hidden;
}

.inquire-form-tab.active {
  max-height: none;
  overflow: visible;
}


/* Fix large vertical gap between holiday and inquire section */
.holiday-packages {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}


