header {
    height:400px;
    z-index:10;
}


.headline-hero-section{
    font-family: 'DM Sans', sans serif;
    font-size:80px;
    line-height: 90px;
    color:#FFFFFF;
    font-weight: 400;
  }

  /* ======= 1. General Styles ======= */
:root {
    --primary-color: #3661EB;
    --secondary-color: #E76A40;
    --dark-color: #051036;
    --light-color: #FFFFFF;
    --text-color: #333333;
    --text-muted: #666666;
    --heading-font: 'DM Sans', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --transition-speed: 0.3s;
  }
  
  /* ======= 2. Hero Section Styles ======= */
  .masthead.-type-7 {
    position: relative;
    padding-top:0px;
  }
  
  .masthead__content-wrapper {
    padding-inline: 150px;
    transform: translateY(0%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: -6%;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
    padding-top: 50px;
  }
  
  .masthead__button-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }
  
  .masthead__button {
    border: none;
    position: absolute;
    transform: translateX(-50%);
    top: 25px;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }
  
  .masthead-slider__nav {
    position: absolute;
    z-index: 20;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .masthead-slider__nav.-prev {
    left: 40px;
  }
  
  .masthead-slider__nav.-next {
    right: 40px;
  }
  
  .masthead-slider__nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

    .tagline-container {
        margin-bottom:16px;
        -webkit-backdrop-filter: blur(2.5px);
        align-content: center;
        align-items: center;
        backdrop-filter: blur(2.5px);
        background: linear-gradient(93.88614594864868deg, rgba(255, 255, 255, .4) 0%, rgba(255, 255, 255, .10000000149011612) 100%);
        border-radius: 50px;
        display: flex;
        flex: none;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        height: min-content;
        justify-content: center;
        overflow: visible;
        padding: 11px 24px;
        position: relative;
        width: min-content;
    }

    .tagline-text{
        white-space: nowrap;
        color:#FFFFFF;
        font-size:15px;
        font-weight:600;
        text-transform: capitalize;
    }
  
  /* ======= 3. Section Styles ======= */
  .section-container{
      padding-inline:100px;
      padding-top:50px;
      padding-bottom:50px;
    }
    .section-header-container{
      justify-content: space-between;
      display: flex;
    }

    .section-btn-container {
        display:flex ;
        justify-content:center;
        align-items:center;
    }
  
    .section-title-sm{
      font-family: 'DM Sans', sans-serif;
      font-size:18px;
      color:#F66524;
      font-weight: 700;
    }
  
    .section-headline{
      font-family: 'DM Sans', sans-serif;
      font-size:40px;
    }
  
  /* ======= 4. Destination Card Styles ======= */
  .destinations-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
  }
  
  .destination-item {
    flex: 0 0 16%;
    max-width: 16%;
    padding: 0 10px;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .destCard.-type-1 {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  
  .destCard.-type-1:hover {
    transform: translateY(-5px);
  }
  
  .destCard__image {
    width: 100%;
    height: 100%;
  }
  
  .destCard__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* ======= 5. Package Card Styles ======= */
  .package-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .package-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .package-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

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

  .location-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #E76A40;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .package-card__content {
    padding: 15px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .package-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #333333;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .package-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666666;
    font-size: 14px;
  }

  .package-description {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 68px;
  }

  .package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }

  .price {
    display: flex;
    flex-direction: column;
  }

  .price-label {
    font-size: 12px;
    color: #888;
  }

  .price-amount {
    font-size: 20px;
    font-weight: 700;
    color: #3661EB;
  }

  .btn-book {
    background-color: #3661EB;
    color: white;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }

  .btn-book:hover {
    background-color: #2A4CC1;
  }

  /* ======= 6. Gallery Styles ======= */
  .gallery-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
  }

  .row-container {
    position: relative;
    overflow: hidden;
    height: 280px;
    margin-bottom: 8px;
    width: 100%;
  }

  .image-row {
    position: absolute;
    display: flex;
    width: fit-content;
  }

  .image-item {
    margin: 0 4px;
    overflow: hidden;
  }

  .image-item img {
    height: 350px;
    width: 35vw;
    max-width: 450px;
    object-fit: cover;
  }
  
  /* ======= 7. Review Card Styles ======= */
  .review-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    padding-top: 40px;
  }
  
  .review-card {
    border: 1px solid #E2E2E2;
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .reviewer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
  }
  
  .reviewer-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333333;
  }
  
    a:hover {
        color: #FFFFFF;
    }

  .reviewer-info p {
    font-size: 14px;
    color: #777;
  }
  
  .rating {
    color: #f39c12;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .package-name {
    color: #3661EB;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .review-text {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .review-date {
    color: #999;
    font-size: 14px;
  }
  
  /* ======= 8. FAQ Styles ======= */
  .faq-container {
    margin: 40px auto;
  }
  
  .faq-item {
    border:1px solid #e2e2e2;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
  }
  
  .faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    position: relative;
  }
  
  .faq-question::after {
    content: '';
    position: absolute;
    right: 30px;
    width: 14px;
    height: 14px;
    border-right: 2px solid #333333;
    border-bottom: 2px solid #333333;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-question::after {
    transform: rotate(-135deg);
  }
  
  .faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    line-height: 1.6;
    color: #666666;
    font-size: 16px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 300px;
  }
  
  /* ======= 9. Responsive Media Queries ======= */

  @media (max-width: 1200px) {
    .masthead__content-wrapper {
      padding-inline: 80px;
    }
    
    .sectionTitle__title {
      line-height: 90px;
      font-family: 'DM Sans', sans-serif;
      color: #FFFFFF;
      font-size: 50px;
      font-weight: 400;
    }
  }
  
  @media (max-width: 992px) {
    .masthead.-type-7 {
      padding-top: 300px;
      padding-bottom: 0px;
    }
    
    .destination-item {
      flex: 0 0 33.333%;
      max-width: 33.333%;
    }
    
    .review-container {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .sectionTitle__title {
      line-height: 90px;
      font-family: 'DM Sans', sans-serif;
      color: #FFFFFF;
      font-size: 50px;
      font-weight: 400;
    }
  }
  
  @media (max-width: 768px) {
    .masthead.-type-7 {
      padding-top: 0px;
      padding-bottom: 180px;
    }
    
    .masthead__content-wrapper {
      padding-inline: 40px;
      top: 0;
    }
  
    .masthead-slider__nav {
      top: auto;
      bottom: 20px;
      transform: none;
    }
    
    .masthead-slider__nav.-prev {
      left: 30%;
    }
    
    .masthead-slider__nav.-next {
      right: 30%;
    }
    
    .image-item img {
      width: 50vw;
      height: 280px;
    }
    
    .review-container {
      grid-template-columns: 1fr;
    }
    
    .sectionTitle__title {
      line-height: 90px;
      font-family: 'DM Sans', sans-serif;
      color: #FFFFFF;
      font-size: 50px;
      font-weight: 400;
    }
  }
  
  @media (max-width: 576px) {
    .masthead.-type-7 {
      padding-top: 0px !important;
      padding-bottom: 0px;
      padding-inline: 0px !important;
    }
    .masthead__button{
      white-space: nowrap;
      font-size:14px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
    }
    .masthead__button-container{
      margin-top:0px !important;
    }
    .masthead__subtitle.is-in-view{
      margin-bottom:0px;
    }
  
    .layout-pt-md.layout-pb-md{
      padding-inline: 0px !important;
  
    }
    
    .masthead__content-wrapper {
      padding-inline: 20px;
    }
    
    .destination-item {
      flex: 0 0 50%;
      max-width: 50%;
    }
    
    .package-info {
      flex-direction: column;
      gap: 10px;
    }
    
    .faq-question {
      font-size: 16px;
      padding: 20px 25px;
    }
    
    .faq-question::after {
      right: 20px;
    }
    
    .faq-answer {
      font-size: 14px;
    }
    
    .sectionTitle__title {
      line-height: 90px;
      font-family: 'DM Sans', sans-serif;
      color: #FFFFFF;
      font-size: 50px;
      font-weight: 400;
    }
    
    .sectionTitle__text {
      font-size: 14px;
    }

    .section-container{
        padding-inline:20px;
        padding-top:50px;
        padding-bottom:50px;
      }

      .section-header-container{
        flex-direction: column;
      }

      .section-title-sm{
        font-size:14px;

      }

      .section-headline{
        font-size:26px;
        line-height: 27px;
      }

      .section-btn-container {
        margin-top:25px;
        display:flex ;
        justify-content:start;
        align-items:start;
      }

      .section-cta{
        font-size: 15px !important;
        padding: 10px 20px !important;
        height: 42px !important;
        min-width: 100px !important;
      }

      .headline-hero-section{
        font-size:28px;
        font-weight:600 !important;
        line-height: 40px !important;
      }

        footer.footer.-type-2 > .container {
            padding-inline: 0px !important;
        }

        .tagline-container {
            -webkit-backdrop-filter: blur(2.5px);
            align-content: center;
            align-items: center;
            backdrop-filter: blur(2.5px);
            background: linear-gradient(93.88614594864868deg, rgba(255, 255, 255, .4) 0%, rgba(255, 255, 255, .10000000149011612) 100%);
            border-radius: 50px;
            display: flex;
            flex: none;
            flex-direction: row;
            height: min-content;
            justify-content: center;
            overflow: visible;
            padding: 11px 24px;
            position: relative;
            width: min-content;
        }

        .tagline-text{
            white-space: nowrap;
            color:#FFFFFF;
            font-size:15px;
            font-weight:600;
            text-transform: capitalize;
        }

        .masthead-slider.js-masthead-slider-7.swiper-initialized{
            height: 500px;
        }

        .masthead.-type-7 .masthead-slider__nav.-prev{
            /* bottom:800px !important; */
            top:auto;
            left: 8%;
            bottom: 0px;
        }

        .masthead.-type-7 .masthead-slider__nav.-next{
            /* bottom:800px !important; */
            top:auto;
            left: 25%;
            bottom: 0px;
        }

        .masthead__content-wrapper{
            margin-top: -30px;
        }

        header {
            padding-inline: 0px !important;
        }

        .header .header-menu .menu__nav > li > a {
            width:100%;
        }

        .package-footer {
          align-items: baseline;
          flex-direction: column;
        }

        .btn-book{
          margin-top:10px;
          width:100%;
          display: flex;
          justify-content: center;
          background-color: #1554E2;
          color: white;
          font-family: 'Roboto', sans-serif;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          border-radius: 10px;
          font-weight: 500;
          cursor: pointer;
          transition: all 0.3s ease;
          border: none;
          outline: none;
          text-decoration: none;
          margin: 0.25rem;
        }

  }

