
:root {

  /**
   * colors
   */

  --united-nations-blue: hsl(214, 56%, 58%);
  --bright-navy-blue: hsl(214, 57%, 51%);
  --spanish-gray: hsl(0, 0%, 60%);
  --black-coral: hsl(225, 8%, 42%);
  --oxford-blue: hsl(208, 97%, 12%);
  --yale-blue: hsl(214, 72%, 33%);
  --blue-ncs: hsl(197, 100%, 36%);
  --gunmetal: hsl(206, 34%, 20%);
  --gainsboro: hsl(0, 0%, 88%);
  --cultured: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 25%);
  --jet: hsl(0, 0%, 20%);

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;

  --fs-1: calc(20px + 3.5vw);
  --fs-2: calc(18px + 1.6vw);
  --fs-3: calc(16px + 0.45vw);
  --fs-4: 15px;
  --fs-5: 14px;
  --fs-6: 13px;
  --fs-7: 12px;
  --fs-8: 11px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * border-radius
   */

  --radius-15: 15px;
  --radius-25: 25px;

}





/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
label,
ion-icon { display: block; }

input,


input { width: 100%; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body { background: var(--white); }




/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --united-nations-blue: hsl(214, 56%, 58%);
  --bright-navy-blue: hsl(214, 57%, 51%);
  --spanish-gray: hsl(0, 0%, 60%);
  --black-coral: hsl(225, 8%, 42%);
  --oxford-blue: hsl(208, 97%, 12%);
  --yale-blue: hsl(214, 72%, 33%);
  --blue-ncs: hsl(197, 100%, 36%);
  --gunmetal: hsl(206, 34%, 20%);
  --gainsboro: hsl(0, 0%, 88%);
  --cultured: hsl(0, 0%, 98%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 25%);
  --jet: hsl(0, 0%, 20%);

  /**
   * typography
   */

  --ff-poppins: "Poppins", sans-serif;
  --ff-montserrat: "Montserrat", sans-serif;

  --fs-1: calc(20px + 3.5vw);
  --fs-2: calc(18px + 1.6vw);
  --fs-3: calc(16px + 0.45vw);
  --fs-4: 15px;
  --fs-5: 14px;
  --fs-6: 13px;
  --fs-7: 12px;
  --fs-8: 11px;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * transition
   */

  --transition: 0.25s ease-in-out;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * border-radius
   */

  --radius-15: 15px;
  --radius-25: 25px;

}






/*-----------------------------------*\
 * #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
label,
button,
ion-icon { display: block; }

input{
  background: none;
  border: none;
  font: inherit;
}


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

/* Standard White Button */
/* Premium White Button */
.btn-white {
  background: #fff;
  color: #222;
  padding: 0.7rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.btn-white:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.btn-white:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(180, 180, 180, 0.4);
}



.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);
}
.h4,
.h5 {
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
}
.section-subtitle {
  color: var(--bright-navy-blue);
  font-size: var(--fs-5);
  text-transform: uppercase;
  font-family: var(--ff-montserrat);
  margin-bottom: 8px;
}

.section-title { margin-bottom: 15px; }

.section-text {
  color: var(--black-coral);
  margin-bottom: 30px;
}

.card-text {
  color: var(--black-coral);
  font-size: var(--fs-5);
}


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

.header-top .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: flex-start;
  align-items: center;
  background: #ffffff;
  color:#f4a435;
  border-radius: 100px;
}

.helpline-box .wrapper { display: none; }

.helpline-box .icon-box {
  background:#f4a435;
  padding: 6px;
  border-radius: 50%;
  color: var(--white);
}

.helpline-box .icon-box ion-icon { --ionicon-stroke-width: 40px; }
.helpline-title {
  color:#f4a435;
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-left: 10px;
  
}
.helpline-number{
  color:#144c63;
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-left: 10px;
}

.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: #f4a435;
}

.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 #e9f0ef;
  color: #144c63;
  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: #ffffff;
  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: #144c63;
}

.nav-close-btn ion-icon { --ionicon-stroke-width: 80px; }

.navbar-list { border-top: 1px solid hsla(0, 0%, 0%, 0.925); }

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

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

.navbar-link:is(:hover, :focus) { color: #144c63; }

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

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("/images/bg1.webp") center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 76, 99, 0.8), rgba(20, 76, 99, 0.8));
  z-index: -1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 900px;
}

/* HEADINGS */
.hero-title {
  color: #fff;
  margin: 0 0 12px 0;
  line-height: 1.1;
}

.title-line {
  display: block;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.title-line:first-child {
  font-size: clamp(1.9rem, 6.5vw, 3rem);
}

.hero-subtitle {
  color: #ffdd99;
  font-size: clamp(1.1rem, 3.5vw, 1.6rem);
  margin-top: 6px;
  font-weight: 600;
}

/* TEXT & BUTTONS */
.hero-text {
  color: #fff;
  margin-bottom: 24px;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  max-width: 780px;
}

.btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.btn-primary {
  background: #ff9900;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #333;
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/* TOUR SEARCH */
/* TOUR SEARCH FORM STYLING */
.tour-search {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tour-search-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  align-items: end;
}

.tour-search-form div {
  display: flex;
  flex-direction: column;
}

.input-label {
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: #333;
}

.input-field {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}

.input-field:focus {
  outline: none;
  border-color: #0077b6;
  box-shadow: 0 0 0 2px rgba(0, 119, 182, 0.2);
}

.tour-search-form button {
  align-self: center;
  height: 42px;
}

/* Mobile view */
@media (max-width: 768px) {
  .tour-search-form {
    grid-template-columns: 1fr;
  }
  .tour-search-form button {
    width: 100%;
  }
}




/*-----------------------------------*\
 * #POPULAR
\*-----------------------------------*/
/* === POPULAR DESTINATIONS === */
.popular {
  padding: 60px 20px;
  background: #fff;
}

.popular-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.popular-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.popular-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: #f8f8f8;
}

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

.card-img {
  position: relative;
  aspect-ratio: 4 / 3; /* keeps perfect proportion */
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.3s ease;
}

.card-img .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.popular-card:hover .default-img {
  opacity: 0;
}

.popular-card:hover .hover-img {
  opacity: 1;
}

.popular-card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 15px;
  background: #fff;
}

.card-rating {
  color: #fff;
  background: #f4a435;
  padding: 4px 10px;
  border-radius: 15px;
  display: inline-flex;
  gap: 2px;
  margin-bottom: 10px;
}

.card-subtitle {
  font-size: 12px;
  text-transform: uppercase;
  color: #144c63;
  margin-bottom: 5px;
}

.card-title {
  font-size: 18px;
  margin-bottom: 5px;
}

.card-text {
  font-size: 14px;
  color: #666;
}

/* === LOCATION BUTTONS === */
.popular-location-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.popular-location-btn .loc-btn {
  padding: 10px 20px;
  border-radius: 25px;
  background: #144c63;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.popular-location-btn .loc-btn:hover {
  background: #f4a435;
  transform: translateY(-2px);
}

/* === RESPONSIVE TWEAKS === */
@media (max-width: 768px) {
  .card-img {
    aspect-ratio: 16 / 12;
  }
}




  /* === PACKAGE SECTION === */
  /* grid */
  .package-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
  }
  @media (max-width:1024px){
    .package-grid{ grid-template-columns:1fr; }
  }

  /* flip-card (common) */
  .flip-card{
    display:flex;
    flex-direction:column;
    height:420px;               /* fixed height for smooth swap */
    border-radius:var(--radius);
    overflow:hidden;
    background:var(--card-bg);
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
    transition:transform .25s ease, box-shadow .25s ease;
    cursor:pointer;
    outline: none;
  }
  .flip-card:focus-visible{
    box-shadow:0 8px 28px rgba(20,76,99,0.18);
  }
  .flip-card:hover{ transform:translateY(-6px); box-shadow:0 12px 30px rgba(0,0,0,0.08); }

  /* 80% image / 20% content default */
  .flip-card .card-image{
    flex-basis:80%;
    transition:flex-basis .36s cubic-bezier(.2,.9,.25,1);
    min-height:0; /* ensure flex works in some browsers */
    overflow:hidden;
    background:#ddd;
  }
  .flip-card .card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform-origin:center;
    transition: transform .36s ease;
  }

  .flip-card .card-content{
    flex-basis:20%;
    transition:flex-basis .36s cubic-bezier(.2,.9,.25,1);
    padding:16px;
    background:var(--muted);
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:10px;
  }

  /* hover/active => 20% image / 80% content */
  .flip-card:hover .card-image,
  .flip-card.active .card-image{
    flex-basis:20%;
  }
  .flip-card:hover .card-content,
  .flip-card.active .card-content{
    flex-basis:80%;
  }

  /* small visual tweaks inside content */
  .card-content h3{ margin:0 0 6px; font-size:18px; }
  .card-content p{ margin:0; color:#4a4747; line-height:1.45; font-size:14px; }

  .card-actions{ margin-top:12px; display:flex; gap:10px; flex-wrap:wrap; }
  .card-actions .btn{
    border:0; padding:8px 14px; border-radius:8px; font-weight:600; cursor:pointer;
  }
  .btn-primary{ background:var(--accent); color:hsl(242, 66%, 42%); }
  .btn-secondary{ background:var(--accent-2); color:hsl(242, 66%, 42%); }

  /* subtle image zoom when content expands */
  .flip-card.active .card-image img,
  .flip-card:hover .card-image img{
    transform:scale(1.02);
  }

  /* Mobile: make height slightly smaller */
  @media (max-width:600px){
    .flip-card{ height:360px; }
  }

 

/*-----------------------------------*\
 * #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:#144c63;
  padding-block: var(--section-padding);
}

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

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






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

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


}


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



  
}


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

}






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

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1180px; }

}
.about {
  padding: 60px 20px;
  background: #f4f4f4;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.about-image:hover img {
  transform: scale(1.05);
}

.about-content .section-subtitle {
  color: #144c63;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}
.about-content .section-title {
  margin-bottom: 15px;
  font-size: 28px;
}
.about-content .section-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.about-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.about-item .icon-box {
  font-size: 24px;
  color: #f4a435;
  margin-right: 12px;
}
.about-item .about-title {
  font-size: 18px;
  margin-bottom: 4px;
}
.about-item .about-text {
  font-size: 14px;
  color: #666;
}

.about .btn {
  background-color: #144c63;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.about .btn:hover {
  background-color: #f4a435;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-list {
    text-align: left;
    max-width: 500px;
    margin: 20px auto;
  }
}


/*-----------------------------------*\
 * #BLOG
\*-----------------------------------*/

/* BLOG */
.blog {
  padding: 60px 20px;
  background: #f4f4f4;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-card .card-content {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .card-title {
  font-size: 18px;
  font-weight: bold;
  color: #144c63;
  margin-bottom: 8px;
}
.blog-card .card-text {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  flex: 1;
}
.blog-card .card-date {
  font-size: 13px;
  color: #999;
}
.blog-card .card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.blog-card .card-author img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.blog-card .author-name {
  font-size: 14px;
  font-weight: 600;
  color: #144c63;
}

/* TESTIMONIAL */
.testimonial {
  padding: 60px 20px;
  background: white;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 25px;
}
.testimonial-card {
  background: #f8f8f8;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;
}
.testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}
.testimonial-card .author-name {
  font-size: 18px;
  font-weight: bold;
  color: #144c63;
}
.testimonial-card .author-role {
  font-size: 14px;
  color: #888;
  margin-bottom: 12px;
}
.testimonial-card .testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
}
.rating ion-icon {
  color: #f4a435;
  font-size: 18px;
}
.rating {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 10px;
}
.faq {
  padding: 60px 20px;
  background: #f4f4f4;
}

.faq .container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.section-subtitle {
  color: #144c63;
  font-weight: 500;
  margin-bottom: 8px;
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.section-text {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #144c63;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f4a435;
  color: white;
}

.faq-answer {
  padding: 0 20px;
  font-size: 15px;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px;
}

.faq-item.active .faq-question {
  background: #f4a435;
  color: white;
}

.faq-question ion-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question ion-icon {
  transform: rotate(180deg);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .section-title {
    font-size: 22px;
  }
  .faq-question {
    font-size: 15px;
  }
}
/* Shared Styles */
section {
  padding: 60px 20px;
}
.section-subtitle {
  color: #144c63;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-size: 28px;
  margin-bottom: 10px;
}
.section-text {
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 15px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: #144c63;
  outline: none;
  box-shadow: 0 0 0 2px rgba(20, 76, 99, 0.2);
}
.btn-primary {
  background: #fff;
  color: #144c63;
  padding: 12px 20px;
  border: 2px solid #144c63;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #144c63;
  color: white;
}

/* Contact Section */
.contact {
  background: #f9f9f9;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #555;
  display: flex;
  align-items: center;
}
.contact-info ion-icon {
  color: #f4a435;
  font-size: 20px;
  margin-right: 10px;
}
.contact-form, .booking-form {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Booking Section */
.booking {
  background: #f4f4f4;
}
.booking-form select {
  appearance: none;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 24px;
  }
}


/* FOOTER */
.footer {
  background: #144c63;
  color: white;
  padding: 50px 20px 20px;
  font-size: 15px;
}

.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f4a435;
}

.footer-brand img {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: #ccc;
}

.footer-links ul,
.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-social ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #f4a435;
}

.footer-contact p {
  margin: 5px 0;
  color: #ccc;
}

.footer-social ul {
  display: flex;
  gap: 12px;
}

.footer-social a {
  font-size: 20px;
  color: white;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #f4a435;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  color: #ccc;
}

.footer-bottom a {
  color: #f4a435;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-social ul {
    justify-content: flex-start;
  }
}



/*-----------------------------------*\
 * #MEDIA QUERIES
\*-----------------------------------*/
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    min-height: 600px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .hero-text {
    font-size: 1rem;
  }
  
  .tour-search-form {
    grid-template-columns: 1fr;
  }
  
  .popular-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .package-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-text {
    font-size: 0.9rem;
  }
  .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .tour-search-form {
    grid-template-columns: 1fr;
  }
  .tour-search-form button {
    width: 100%;
  }
  .popular-list {
    grid-template-columns: 1fr;
  }
  .package-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .gallery-list {
    grid-template-columns: 1fr;
  }
  .contact-form .input-field {
    font-size: 14px;
  }
  .contact-form .btn {
    font-size: 14px;
  }
  .contact-info h3 {
    font-size: 18px;
  }
  .contact-info p {
    font-size: 14px;
  }
  .contact-info ion-icon {
    font-size: 16px;
  }
  .contact-info a {
    font-size: 14px;
  }
  .about .container { 
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-list {
    text-align: left;
    max-width: 500px;
    margin: 20px auto;
  }
  .about-image img {
    width: 100%;
    height: auto;
  }
  .about-content .section-title {
    font-size: 24px;
  }
  .about-content .section-text {
    font-size: 14px;
  }
  .about-item .about-title {
    font-size: 16px;
  }
  .about-item .about-text {
    font-size: 12px;
  }
  .blog-card .card-title {
    font-size: 16px;
  }
  .blog-card .card-text {
    font-size: 14px;
  }
  .testimonial-card .author-name {
    font-size: 16px;
  }
  .testimonial-card .author-role {
    font-size: 12px;  
  }
  .testimonial-card .testimonial-text {
    font-size: 14px;
  }
  .testimonial-card .rating ion-icon {
    font-size: 16px;
  }
  .faq-question {
    font-size: 14px;
  }
  .faq-answer {
    font-size: 14px;
  }
  .faq-item.active .faq-question {
    font-size: 14px;
  }
  .faq-item.active .faq-answer {
    font-size: 14px;
  }
  .faq-question ion-icon {
    font-size: 18px;
  }
  .faq-item.active .faq-question ion-icon {
    font-size: 18px;
  }
  .contact-form .input-field {
    font-size: 14px;
  }
  .contact-form .btn {
    font-size: 14px;
  }
  .contact-info h3 {
    font-size: 18px;
  }
  .contact-info p {
    font-size: 14px;
  }
  .contact-info ion-icon {
    font-size: 16px;
  }
  .contact-info a {
    font-size: 14px;
  }
  .footer-brand img {
    width: 150px;
  }
  .footer-text {
    font-size: 14px;
  }
  .footer-contact .contact-text {
    font-size: 14px;
  }
  .footer-contact .contact-item {
    font-size: 14px;
  }
  .footer-contact .contact-link,
  .footer-contact address {
    font-size: 14px;
  }
  .footer-form .input-field {
    font-size: 14px;
  }
  .footer-form .btn {
    font-size: 14px;
  }
  .footer-bottom-list > li {
    font-size: 14px;
  }
  .footer-bottom-link {
    font-size: 14px;
  }
  .go-top {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .go-top.active {
    bottom: 10px;
    right: 10px;
  }
  .go-top:is(:hover, :focus) {
    font-size: 18px;
  }
  .flip-card { 
    height: 360px; /* Adjusted for smaller screens */
  }
  .flip-card .card-image img {  
    transform: scale(1.02); /* Slight zoom effect */
  }
  .flip-card:hover .card-image img,
  .flip-card.active .card-image img {
    transform: scale(1.05); /* More pronounced zoom on hover/active */
  }
  .flip-card .card-content h3 {
    font-size: 16px; /* Smaller title */
  }
  .flip-card .card-content p {
    font-size: 14px; /* Smaller text */
  }
  .flip-card .card-actions .btn {
    font-size: 14px; /* Smaller button text */
    padding: 8px 12px; /* Smaller button padding */
  }
  .flip-card .card-actions {
    flex-direction: column; /* Stack buttons vertically */   
    align-items: center; /* Center buttons */
  }
  .flip-card .card-actions .btn {
    width: 100%; /* Full width buttons */
    margin-bottom: 10px; /* Space between buttons */
  }
  .flip-card .card-actions .btn:last-child {
    margin-bottom: 0; /* No margin for the last button */
  }
}
 .icon-box{
      background:var(--card-bg);
      border:1px solid var(--card-border);
      border-radius:12px;
      padding:18px;
      display:flex;
      gap:14px;
      align-items:flex-start;
      transition:transform .18s ease, box-shadow .18s ease;
    }
    .icon-box:hover{ transform:translateY(-6px); box-shadow:0 10px 22px rgba(15,23,42,0.08); }
    .icon{
      flex:0 0 56px;
      height:56px;
      width:56px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:linear-gradient(180deg, rgba(14,165,164,0.12), rgba(14,165,164,0.06));
      color:var(--accent);
      font-size:20px;
    }
    .content h4{ margin:0 0 6px 0; font-size:16px; display:flex; gap:8px; align-items:center; }
    .content p{ margin:0; color:var(--muted); font-size:13px; line-height:1.45; }
    .sr-only{ position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }
    .services{
      padding:60px 20px;
      background:var(--muted);
    }
    .services .container{
      max-width:900px;
      margin:auto;
      text-align:center;
    }
    .services .section-subtitle{ color:var(--accent); }
    .services .section-title{ margin-bottom:8px; }
    .services .section-text{ max-width:60ch; margin-inline:auto; margin-bottom:40px; }
    .services-list{
      display:grid;
      grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
      gap:22px;
    }
    @media (max-width:768px){
      .services-list{ grid-template-columns:1fr; }
    }
    /*-----------------------------------*\
 * #WHATSAPP
\*-----------------------------------*/
.whatsapp {
  position: fixed;
  bottom: 60px;
  right: 15px;
  width: 35px;
  height: 35px;
  background: #25D366;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
  border-radius: 50%;
  box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.5);
  opacity: 0.8;
  transition: var(--transition);
  z-index: 5;
}
.whatsapp:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.whatsapp-icon {
  font-size: 20px;
  color: #fff;
}

