

   button {
      border: none;
      cursor: pointer;
      font-family: inherit;
      transition: all 0.3s ease;
    }
    
    button:hover {
      transform: translateY(-2px);
      /* box-shadow: 0 4px 12px rgba(0,0,0,0.15); */
    }
    
    /* Hero Section */
    .hero {
      /* background: linear-gradient(0deg, #141414 0%, #0000008e 50%, #00000000 100%); */
      padding: 50px 0 45px;
      text-align: center;
      color: #ffffff;
      background-image: url(../images/hero/hero.png);
      width:100%;
      height: 100vh;
      background-size: cover;
      /* padding-bottom: 200px; */
      padding-top:150px;
      display: flex;
      justify-content: flex-end;
    }
    
    .hero-content {
      max-width: 1080px;
      margin: 0 auto;
    }
    
    .hero-subtitle {
      font-size: 18px;
      font-weight: 400;
      line-height: 29px;
      margin-bottom: 16px;
    }
    
    @media (min-width: 768px) {
      .hero-subtitle {
        font-size: 22px;
      }
    }
    
    .hero-title {
      font-size: 28px;
      font-weight: 900;
      line-height: 36px;
      text-transform: capitalize;
      margin-bottom: 24px;
    }
    
    @media (min-width: 640px) {
      .hero-title {
        font-size: 32px;
        line-height: 42px;
      }
    }
    
    @media (min-width: 1024px) {
      .hero-title {
        font-size: 40px;
        line-height: 61px;
      }
    }
    
    .hero-title .highlight {
      color: #ffc250;
    }
    
    .hero-image {
      width: 100%;
      max-width: 1080px;
      height: auto;
      margin: 24px auto;
    }
    
 .cta-button {
    background-color: #f74c4d;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    width: 466px;
    height: 66px;
    line-height: 29px;
    padding: 15px 35px;
    border-radius: 32px;
    display: inline-block;
    margin-top: 16px;
}
    
    @media (min-width: 768px) {
      .cta-button {
        /* font-size: 22px; */
      }
    }
    

    /* Stats Section */
    .stats-section {
      background-color: #14130f;
      padding: 40px 0;
    }
    
    .stats-container {
      display: flex;
      /* flex-wrap: wrap; */
      gap: 32px;
      padding-top: 50px;
      justify-content: center;
      align-items: center;
    }
    
    @media (min-width: 768px) {
      .stats-container {
        /* gap: 50px; */
      }
    }
    
    .stat-item {
      display: flex;
      align-items: center;
      gap: 16px;
      color: #ffffff;
    }
    
    .stat-icon {
      width: 56px;
      height: 56px;
      background-color: #656565;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .stat-icon img {
      width: 30px;
      height: 30px;
    }
    
    .stat-content h3 {
      font-size: 25px;
      font-weight: 600;
      line-height: 40px;
      margin-bottom: 4px;
      text-align: left;
    }
    
    @media (min-width: 768px) {
      .stat-content h3 {
        /* font-size: 30px; */
      }
    }
    
    .stat-content p {
      font-size: 15px;
      font-weight: 400;
      line-height: 24px;
      color: #fff;
    }
    
    @media (min-width: 768px) {
      .stat-content p {
        /* font-size: 18px; */
      }
    }

    .contain-hero{
        display: flex;
        flex-flow: column;
        justify-content: flex-end;
        height: 100%;
    }



    
    /* What Makes Us Section */
    .what-makes-us {
      padding: 60px 0;
    }
    
    .section-header {
      text-align: left;
      margin-bottom: 40px;
    }
    
    .section-subtitle {
      font-size: 18px;
      font-weight: 400;
      line-height: 29px;
      color: #111;
      margin-bottom: 8px;
    }
    
    @media (min-width: 768px) {
      .section-subtitle {
        font-size: 22px;
      }
    }
    
    .section-title {
      font-size: 24px;
      font-weight: 600;
      line-height: 45px;
      color: #34384c;
    }
    
    @media (min-width: 768px) {
      .section-title {
        font-size: 30px;
      }
    }
    
    .section-title .highlight {
      color: #f74c4d;
    }
    
    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      /* margin-bottom: 40px; */
    }
    
    @media (min-width: 640px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }
    
    @media (min-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
      }

       .dubai-packages .features-grid {
        grid-template-columns: repeat(3, 1fr)!important;
        gap: 25px;
      }
    }
    
    .feature-card {
      background-color: #ffffff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }
    
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
    }
    
    .feature-image {
      width: 100%;
      /* aspect-ratio: 9 / 16; */
      height: 640px;
      background: linear-gradient(180deg, #00000000 0%, #0000007f 100%);
      position: relative;
      border-radius: 10px 10px 0px 0px;
    }
    
    @media (min-width: 768px) {
      .feature-image {
        /* height: auto; */
      }
    }
    
    .feature-content {
      padding: 20px;
      background: linear-gradient(180deg, #00000000 0%, #000000 100%);
      border-radius: 10px 10px 0px 0px;
      color: #ffffff;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
    }
    
    .feature-stat {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 0px;
    }
    
    .feature-stat img {
      width: 27px;
      height: 27px;
    }
    
    .feature-stat h4 {
      font-size: 24px;
      font-weight: 600;
      line-height: 40px;
    }
    
    @media (min-width: 768px) {
      .feature-stat h4 {
        font-size: 30px;
      }
    }
    
    .feature-stat p {
      font-size: 14px;
      font-weight: 500;
      line-height: 21px;
    }
    
    @media (min-width: 768px) {
      .feature-stat p {
        font-size: 16px;
      }
    }

    .what-makes-us .feature-image{
      background-image: linear-gradient(180deg, #00000000 0%, #0000007f 100%);
      /* aspect-ratio: 9 / 16; */
    }

    .feature-content p {
    text-align: left;
    font-size: 16px;
    margin-bottom: 0;
}


.what-makes-us .feature-card{
  /* height: 508px; */
  padding:0;
}

.what-makes-us .wm-mute-btn{
  background: transparent!important;
}

.what-makes-us .wm-mute-btn svg{
  font-size: 21px;
}


 /* Benefits Section */
    .benefits-section {
      /* padding: 40px 0; */
    }
    
    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }
    
    @media (min-width: 640px) {
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }
    
    @media (min-width: 1024px) {
      .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
      }
    }
    
    .benefit-item {
      display: flex;
      align-items: center;
      gap: 16px;
      justify-content: center;
    }
    
    .benefit-icon {
      width: 60px;
      height: 60px;
      background-color: #eff3ff;
      border-radius: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    
    .benefit-icon img {
      width: 38px;
      height: 38px;
    }
    
    .benefit-text {
      font-size: 16px;
      font-weight: 500;
      line-height: 20px;
      color: #34384c;
    }
    
    @media (min-width: 768px) {
      .benefit-text {
        font-size: 18px;
      }
    }
    


     /* Promo Section */
    .promo-section {
      /* background: linear-gradient(90deg, #121212 0%, #ffffff 100%);
       */
      background-image: url("/assets/images/hero/cta.svg");
      background-repeat: no-repeat;
      background-size: cover;
      border-radius: 10px 0px 10px 0px;
      padding: 40px;
      margin: 60px 0;
      color: #ffffff;
      border-radius: 10px;
      height: 224px;
      display: flex;
      flex-flow: column;
      justify-content: center;
      align-items: flex-start;
    }
    
    .promo-title {
      font-size: 32px;
      font-weight: 800;
      /* line-height: 66px; */
      text-transform: uppercase;
      margin-bottom: 0px;
    }
    
    @media (min-width: 768px) {
      .promo-title {
        font-size: 42px;
      }
    }
    
    .promo-subtitle {
      font-size: 18px;
      font-weight: 400;
      line-height: 29px;
      margin-bottom: 20px;
    }
    
    @media (min-width: 768px) {
      .promo-subtitle {
        /* font-size: 22px; */
      }
    }
    
    .promo-button {
      background-color: #ff9838;
      color: #ffffff;
      font-size: 16px;
      font-weight: 600;
      line-height: 24px;
      padding: 5px 35px;
      border-radius: 18px;
      display: inline-block;
    }
    
    @media (min-width: 768px) {
      .promo-button {
        /* font-size: 18px; */
      }
    }

     .contact-icons {
      display: flex;
      gap: 17px;
    }
    
    .contact-icon {
      width: 35px;
      height: 35px;
    }
    

       .package-button {
      background-color: #f74c4d;
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      line-height: 21px;
      text-align: center;
      text-transform: capitalize;
      padding: 11px 35px;
      border-radius: 5px;
      width: 100%;
    }
    
    @media (min-width: 768px) {
      .package-button {
        font-size: 16px;
      }
    }


     /* Interactive states */
    .interactive:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .interactive:active {
      transform: translateY(0);
    }
    
    .interactive:focus {
      outline: 2px solid #f74c4d;
      outline-offset: 2px;
    }



    /* Reviews Section */
    .reviews-section {
      /* padding: 60px 0; */
    }
    
    .reviews-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    @media (min-width: 768px) {
      .reviews-grid {
        display: flex;
        gap: 30px;
        align-items: center;
      }
    }
    
    .reviews-summary {
      text-align: center;
      width: 30%;
    }
    
   .rating-display {
    margin-bottom: 24px;
    border-right: 1px solid #EFF3FF;
}
    
    .rating-stars {
      width: 138px;
      height: 77px;
      /* margin: 0 auto 16px; */
    }
    
    .rating-number {
      font-size: 40px;
      font-weight: 700;
      line-height: 66px;
      color: #34384c;
      margin-bottom: 8px;
    }
    
    @media (min-width: 768px) {
      .rating-number {
        font-size: 50px;
        margin-top: -25px;
      }
    }
    
    .rating-text {
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      color: #111;
      margin-bottom: 10px;
    }
    
    @media (min-width: 768px) {
      .rating-text {
        font-size: 18px;
      }
    }
    
    .rating-source {
      font-size: 18px;
      font-weight: 400;
      line-height: 29px;
      color: #34384c;
    }
    
    @media (min-width: 768px) {
      .rating-source {
        font-size: 22px;
      }
    }
    
    .rating-source .highlight {
      font-weight: 600;
    }
    
    .review-cards {
      /* display: flex; */
      /* gap: 20px; */
      /* overflow-x: auto; */
      /* padding-bottom: 16px; */
    }
    
    @media (min-width: 768px) {
      .review-cards {
        overflow-x: visible;
        width: 70%;
      }
    }
    
    .review-card {
      background-color: #ffffff;
      border: 1px solid #eff3ff;
      border-radius: 16px;
      padding: 24px;
      /* min-width: 280px; */
      flex-shrink: 0;
    }
    
    @media (min-width: 768px) {
      .review-card {
        /* min-width: 320px; */
        width: 100%;
      }
    }
    
    .review-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }
    
    .reviewer-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .reviewer-avatar {
      width: 40px;
      height: 40px;
      border-radius: 20px;
    }
    
    .reviewer-details h4 {
      font-size: 16px;
      font-weight: 600;
      line-height: 21px;
      color: #34384c;
      margin-bottom: 4px;
    }
    
    .reviewer-details p {
      font-size: 12px;
      font-weight: 400;
      line-height: 16px;
      color: #34384c;
      margin-bottom: 0;
    }
    
    .review-rating {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    
    .review-rating img {
      width: 18px;
      height: 18px;
    }
    
    .review-rating span {
      font-size: 16px;
      font-weight: 600;
      line-height: 21px;
      text-transform: capitalize;
      color: #34384c;
    }
    
    .review-text {
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      color: #111;
    }
    
    .review-text .read-more {
      color: #0088ff;
      font-weight: 600;
    }


     /* FAQ Section */
    .faq-section {
      padding-bottom: 80px;
      background-color: #ffffff;
    }
    
    .faq-container {
      /* max-width: 1080px; */
      margin: 0 auto;
    }
    
    .faq-title {
      font-size: 24px;
      font-weight: 600;
      line-height: 40px;
      text-transform: capitalize;
      color: #34384c;
      margin-bottom: 40px;
    }
    
    @media (min-width: 768px) {
      .faq-title {
        font-size: 30px;
      }
    }
    
    .faq-list {
      display: flex;
      flex-direction: column;
      /* gap: 20px; */
    }
    
    .faq-item {
      border-radius: 8px;
      overflow: hidden;
    }
    
    .faq-question {
      background-color: #ffffff;
      padding: 15px 35px 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s ease;
    }
    
    .faq-question:hover {
      background-color: #f8f9fa;
    }
    
    .faq-question.active {
      background-color: #e4fcff;
    }
    
    .faq-question h3 {
      font-size: 14px;
      font-weight: 600;
      line-height: 25px;
      color: #34384c;
      margin: 0;
    }
    
    @media (min-width: 768px) {
      .faq-question h3 {
        font-size: 16px;
      }
    }
    
    .faq-question.active h3 {
      color: #26828d;
    }
    
    .faq-icon {
      width: 24px;
      height: 24px;
      transition: transform 0.3s ease;
    }
    
    .faq-question.active .faq-icon {
      transform: rotate(180deg);
    }
    
    .faq-answer {
      background-color: #e4fcff;
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .faq-answer.active {
      max-height: 200px;
      padding: 20px;
      padding-top: 0;
    }
    
    .faq-answer p {
      font-size: 14px;
      font-weight: 400;
      line-height: 18px;
      color: #111;
      margin: 0;
    }
    
    .faq-divider {
      height: 1px;
      background: linear-gradient(90deg, #ffffff 0%, #15848f 50%, #ffffff 100%);
      margin: 10px 0;
    }
    


    
    /* Google Reviews Section */
    .google-reviews {
      padding: 0px 0;
    }
    
    .google-reviews-header {
      font-size: 24px;
      font-weight: 600;
      line-height: 45px;
      text-transform: capitalize;
      color: #34384c;
      margin-bottom: 40px;
    }
    
    @media (min-width: 768px) {
      .google-reviews-header {
        font-size: 30px;
      }
    }
    
    .reviews-overview {
      display: flex;
      grid-template-columns: 1fr;
      gap: 40px;
      /* justify-content: space-between; */
      margin-bottom: 60px;
    }
    
    @media (min-width: 768px) {
      .reviews-overview {
        grid-template-columns: 1fr 2fr;
      }
    }
    
    .rating-breakdown {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 40%;
    }
    
    .rating-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    
    .rating-label {
      font-size: 16px;
      font-weight: 400;
      line-height: 19px;
      color: #111;
      width: 20px;
    }
    
    .rating-star {
      width: 13px;
      height: 12px;
    }
    
    .rating-bar {
      flex: 1;
      height: 10px;
      background-color: #eff3ff;
      border-radius: 4px;
      overflow: hidden;
    }
    
    .rating-fill {
      height: 100%;
      background-color: #26828D;
    }
    
    .rating-count {
      font-size: 16px;
      font-weight: 400;
      line-height: 19px;
      color: #111;
      width: 60px;
      text-align: right;
    }
    
    .customer-reviews {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    
    .customer-review {
      background-color: #ffffff;
      border: 1px solid #eff3ff;
      border-radius: 10px;
      padding: 24px;
    }
    
    .customer-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 16px;
      flex-wrap: wrap;
      gap: 16px;
    }
    
    .customer-info h4 {
      font-size: 16px;
      font-weight: 600;
      line-height: 21px;
      color: #111;
      margin-bottom: 4px;
    }
    
    .customer-info .date {
      font-size: 12px;
      font-weight: 400;
      line-height: 18px;
      color: #111;
      margin-bottom: 0;
    }
    
    .customer-rating {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    
    .customer-rating img {
      width: 16px;
      height: 16px;
    }
    
    .customer-rating span {
      font-size: 14px;
      font-weight: 400;
      line-height: 19px;
      color: #26828d;
    }
    
    .booking-info {
      font-size: 15px;
      font-weight: 400;
      line-height: 19px;
      color: #111;
      margin-bottom: 16px;
    }
    
    .booking-info .booked {
      font-weight: 500;
    }
    
    .customer-review-text {
      font-size: 15px;
      font-weight: 400;
      line-height: 19px;
      color: #111;
    }
    
    .customer-review-text .read-more {
      font-weight: 500;
      color: #111;
    }
    
    .load-more-button {
      background-color: transparent;
      border: 1px solid #f74c4d;
      border-radius: 5px;
      color: #f74c4d;
      font-size: 14px;
      font-weight: 400;
      line-height: 21px;
      text-align: center;
      padding: 11px 35px;
      box-shadow: 0px 0px 10px rgba(244,118,37,0.3);
      margin: 40px auto;
      display: block;
      margin-bottom: 0;
    }
    

    .customer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.customer-profile {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    overflow: hidden;
}

.customer-profile img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* Blogs Section */
    .blogs-section {
      padding: 60px 0;
      margin-bottom: 100px;
    }
    
    .blogs-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    @media (min-width: 640px) {
      .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }
    
    @media (min-width: 1024px) {
      .blogs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
    }
    
    .blog-card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0px 0px 13px rgba(163,163,163,0.25);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 8px 25px rgba(163,163,163,0.35);
    }
    
    .blog-image {
      width: 100%;
      height: 150px;
      background-size: cover;
      background-position: center;
      position: relative;
    }
    
    @media (min-width: 768px) {
      .blog-image {
        height: 160px;
      }
    }
    
    .blog-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(0deg, #141414 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
      padding: 20px 15px;
      color: #ffffff;
    }
    
    .blog-category {
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      margin-bottom: 4px;
    }
    
    @media (min-width: 768px) {
      .blog-category {
        font-size: 22px;
      }
    }
    
    .blog-subcategory {
      font-size: 14px;
      font-weight: 500;
      line-height: 16px;
      color: #eff3ff;
      margin-bottom: 8px;
    }
    
    .blog-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(270deg, rgba(255,255,255,0.05) 0%, #e0e0e0 50%, rgba(224,224,224,0.05) 100%);
      margin-bottom: 8px;
    }
    
    .blog-price {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .price-label {
      font-size: 14px;
      font-weight: 500;
      line-height: 16px;
      color: #ffc250;
    }
    
    .price-value {
      font-size: 12px;
      font-weight: 500;
      line-height: 16px;
      color: #ffc250;
    }

    .blog-image {
  background-size: cover;
  background-position: center;
  position: relative;
}




  /* Footer */
    .footer {
      background-color: #f74c4d;
      color: #ffffff;
      /* position: relative; */
    }
    
    .footer-content {
      background-color: #ffffff;
      border-radius: 22px;
      padding: 60px 80px;
      z-index: 2;
      /* display: block; */
      box-shadow: 6px -6px 9px rgba(0,0,0,0.06);
      transform: translate(0px, -70px);
    }
    
    .footer-links {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    @media (min-width: 640px) {
      .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }
    }
    
    @media (min-width: 1024px) {
      .footer-links {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        display: flex;
        justify-content: space-between;
      }
    }
    
    .footer-column {
      display: flex;
      flex-direction: column;
    }
    
    .footer-column h3 {
      /* font-size: 16px; */
      font-weight: 600;
      line-height: 24px;
      color: #f74c4d;
      margin-bottom: 24px!important;
    }
    
    @media (min-width: 768px) {
      .footer-column h3 {
        font-size: 18px;
      }
    }
    
    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    
    .footer-column li a {
      font-size: 14px;
      font-weight: 400;
      line-height: 21px;
      color: #34384c;
      transition: color 0.3s ease;
    }
    
    @media (min-width: 768px) {
      .footer-column li a {
        font-size: 16px;
      }
    }
    
    .footer-column li a:hover {
      color: #f74c4d;
    }
    
    .footer-divider {
      width: 1px;
      height: 225px;
      background: linear-gradient(270deg, rgba(255,255,255,0.05) 0%, #e0e0e0 50%, rgba(224,224,224,0.05) 100%);
      margin: 0 20px;
    }
    
    .footer-bottom {
      padding: 60px 0 40px;
      text-align: center;
      padding-top: 0;
    }
    
    .footer-copyright-divider {
      width: 362px;
      height: 1px;
      background: linear-gradient(90deg, #f74c4d 0%, #ffffff 50%, #f74c4d 100%);
      margin: 0 auto 0px;
    }
    
    .footer-copyright {
      font-size: 16px;
      margin-top: 15px;
      font-weight: 400;
      line-height: 24px;
      margin-bottom: 60px;
    }
    
    @media (min-width: 768px) {
      .footer-copyright {
        /* font-size: 18px; */
      }
    }
    
    .footer-copyright .brand {
      font-weight: 800;
    }
    
    .footer-social {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-bottom: 32px;
    }
    
    .footer-social img {
      width: 27px;
      height: 27px;
      transition: transform 0.3s ease;
    }
    
    .footer-social img:hover {
      transform: scale(1.2);
    }
    
    .footer-legal {
      font-size: 12px;
      font-weight: 400;
      line-height: 19px;
      margin-bottom: 15px;
    }
    
    @media (min-width: 768px) {
      .footer-legal {
        font-size: 14px;
      }
    }
    
    .footer-disclaimer {
      font-size: 12px;
      font-weight: 400;
      line-height: 18px;
      max-width: 800px;
      margin: 0 auto 60px;
    }
    
    @media (min-width: 768px) {
      .footer-disclaimer {
        font-size: 14px;
      }
    }
    
    .footer-policies {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    
    .policy-button {
      background-color: #ffffff;
      border: 0 solid #f74c4d;
      border-radius: 3px;
      color: #f74c4d;
      font-size: 14px;
      font-weight: 600;
      line-height: 21px;
      text-align: center;
      padding: 4px 25px;
      transition: all 0.3s ease;
    }
    
    @media (min-width: 768px) {
      .policy-button {
        font-size: 16px;
        padding: 4px 35px;
      }
    }
    
    .policy-button:hover {
      background-color: #f74c4d;
      color: #ffffff;
    }
    

    
    /* Hero Section */
    .dubai-hero {
      /* background: linear-gradient(0deg, #141414 0%, #0000008e 50%, #00000000 100%); */
      padding: 50px 0 45px;
      text-align: center;
      color: #ffffff;
      background-image: url(../images/dubai/dubai-hero.webp);
      width:100%;
      height: 100vh;
      background-size: cover;
      /* padding-bottom: 200px; */
      padding-top:150px;
      display: flex;
      justify-content: flex-end;
    }


    .mini-container1{
      max-width: 1080px;
      max-width: 1246px;

      margin:auto;
    }

    .dubai-packages .benefits-grid {
    margin-bottom: 100px;
}

    .dubai-packages .what-makes-us {
    padding: 60px 0;
    padding-bottom: 100px;
}

.dubai-packages .what-makes-us {
    padding: 60px 0;
    padding-bottom: 100px;
}


.family-dubai-row{
  display: flex;
  justify-content: space-between;
}

.family-dubai-row > div{
  width: calc(33.33% - 10px);
  height: 501px;
}


.family-dubai-row .new-desti-card .price-section{
  border:none;
}
.family-dubai-row .new-desti-card .icons {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    color: #9ca3af;
    /* font-size: 1.25rem; */
    padding-top: 13px;
    padding-bottom: 15px;
    margin-bottom: 0;
    border-top: 1px solid #ddd;
}

.family-dubai-row .amenities-icons {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.family-dubai-row .new-desti-card .price-section {
        justify-content: flex-end;
    align-items: center;
    text-align: right;
}

.family-dubai-row .new-desti-card .header h2 {
    font-size: 30px;
}

.family-dubai-row .f-dubai-card{
  background-image: url(../images/dubai/f-dubai1.png);
  background-size: cover;

  background-repeat: no-repeat;

}

.family-dubai-row .f-dubai-card1{
  background-image: url(../images/dubai/f-dubai2.png);
  background-size: cover;

  background-repeat: no-repeat;

}


.family-dubai-row .f-dubai-card2{
  background-image: url(../images/dubai/f-dubai3.png);
  background-size: cover;

  background-repeat: no-repeat;

}
.f-dubai-main-card {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    height: 501px;
    padding: 15px;
}

.family-dubai-row .new-desti-card .duration-badge {
    color: #ffffff;
    border: 1px solid #fafcff;
}

.family-dubai-row .share-area a img {
    filter: brightness(0) invert(1);
}

.family-dubai-row .new-desti-card {
    border-radius: 5px;
}

.family-dubai-row .new-desti-card .header h2 {
    color: #ffffff;
    font-size: 30px;
}

.family-dubai-row .new-desti-card .price-section .price-info .old-price {
    color: #ffffff;
}

.family-dubai-row .new-desti-card .price-section .price-info .new-price {
    color: #ffffff;
}

.family-dubai-row .new-desti-card .oldcut {
    color: #EE8A88;
    margin-left: 5px;
}

.family-dubai-row .new-desti-card .location span {
    color: #ffffff;
    font-size: 12px;
}



.family-dubai-row .new-desti-card .header {
    margin-bottom: 0;
}

.family-dubai-row .amenities-icons li img {
    width: auto;
    filter: brightness(0) invert(1);
}

.family-dubai-row .package-button {
    width: 100%;
    display: block;
}

.family-dubai-row .package-button:hover{
  color:white;
}
.couple-dubai-packages {
    padding-top: 80px;
    padding-bottom: 80px;
}

.dubai-packages .promo-section{
  margin-top: 0;
}

.dubai-packages .blogs-section {
    padding: 80px 0;
    margin-bottom: 0;
    padding-top: 0;
}




/* Parent scope */
.dubai-family-notes {
  --card-bg: #fff;
  --accent: #f0eef8;       /* pale purple used for pill bg */
  --pill-text: #2f2b3a;
  --muted: #6b6b78;
  --border: rgba(80,70,150,0.12);
  padding-bottom: 80px;
  box-sizing: border-box;
  padding-top: 20px;
}

/* Container card */
.dubai-family-notes .dfn-accordion {
  /* max-width: 1080px; */
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(36,30,90,0.08);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* Each section */
.dubai-family-notes .dfn-section + .dfn-section {
  border-top: 1px solid rgba(80,70,150,0.05);
}

/* Header (pill + chevron) */
.dubai-family-notes .dfn-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  padding-left: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.dubai-family-notes .dfn-pill {
  display: inline-block;
  background: #F2F4FC;
  color: #373B51;
  padding: 12px 25px;
  border-radius: 0px 50px 50px 0px;
  font-weight: 600;
  box-shadow: none;
  font-size: 16px;
  line-height: 1;
}

/* small chevron to right */
.dubai-family-notes .dfn-chevron {
  color: #4b4b5a;
  font-size: 18px;
  margin-left: 12px;
}

/* Panel area */
.dubai-family-notes .dfn-panel {
  padding: 18px 24px 26px;
  color: #33323a;
  font-size: 14px;
  line-height: 1.6;
  background: transparent;
}

/* About panel special layout */
.dubai-family-notes .dfn-about {
  position: relative;
  display: block;
  padding-left: 36px; /* space for left dotted line */
  padding-right: 24px;
  box-sizing: border-box;
}

/* left dotted vertical line */
.dubai-family-notes .dfn-left-line {
  position: absolute;
  left: 51px;
  top: 48px;
  bottom: 12px;
  width: 1px;
  background-image: linear-gradient(to bottom, rgba(120,110,170,0.25) 33%, rgba(255,255,255,0) 33%);
  background-size: 1px 10px;
  border-radius: 1px;
  pointer-events: none;
  height: 50%;
}

/* Intro block with icon */
.dubai-family-notes .dfn-content {
  position: relative;
  z-index: 2;
}

/* Intro top row */
.dubai-family-notes .dfn-intro {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  align-items: flex-start;
}

.dubai-family-notes .dfn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f2f2f8;
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* headings within about */
.dubai-family-notes h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #4B4F63;
  font-weight: 700;
}

.dubai-family-notes h4 {
  margin: 18px 0 6px;
  font-size: 14px;
  color: #2b2a3a;
  font-weight: 700;
}

/* sections paragraphs */
.dubai-family-notes section p,
.dubai-family-notes .dfn-intro p {
  margin: 0 0 12px 0;
  color: #555467;
  font-size: 13px;
  line-height: 1.55;
}

/* Highlights title row */
.dubai-family-notes .dfn-highlights-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #4B4F63;
  font-weight: 400;
  font-size: 14px;
}

/* small icon style */
.dubai-family-notes .dfn-small-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: transparent;
  border-radius: 4px;
}

/* thumbnails grid */
.dubai-family-notes .dfn-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 8px;
  padding-left: 37px;
}

.dubai-family-notes .dfn-thumb {
  width: 100%;
  height: 110px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 10px rgba(25,20,60,0.05);
  border: 1px solid rgba(30,20,80,0.04);
}

/* small responsive tweaks */
@media (max-width: 760px) {
  .dubai-family-notes .dfn-highlights {
    grid-template-columns: 1fr;
  }

  .dubai-family-notes .dfn-panel {
    padding: 14px 16px 18px;
  }
}

/* Basic list styles for other panels */
.dubai-family-notes ul {
  margin: 0;
  padding-left: 20px;
  color: #555467;
}
.dubai-family-notes li {
  margin: 6px 0;
  font-size: 14px;
}
.dfn-content section{
  padding-left: 45px;;
}


.dubai-family-notes .info-icon{
      margin-left: 4px;
}

.dfn-highlights img {
    width: 100%;
    object-fit: cover;
}

.dubai-packages .google-reviews {
    padding: 0px 0;
    margin-bottom: 150px;
}

/* ----------------------- dubai itinary ------------------- */

/* Parent wrapper so styles never leak */
.dubai-gallery-section {
    width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
    padding-top: 127px;
}

/* Outer grid: 2 columns */
.dubai-gallery-section .dgs-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
    align-items: stretch;
}

/* Left big image */
.dubai-gallery-section .dgs-big img {
    width: 100%;
    height: 540px;
    border-radius: 14px 0px 0px 14px;
    object-fit: cover;
    display: block;
}

/* Right side 2x2 mini grid */
.dubai-gallery-section .dgs-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dubai-gallery-section .dgs-small-grid img {
  width: 100%;
  height: 100%;
  /* border-radius: 14px; */
  object-fit: cover;
  display: block;
}

/* Responsive behavior */
@media (max-width: 850px) {
  .dubai-gallery-section .dgs-grid {
    grid-template-columns: 1fr;
  }

  .dubai-gallery-section .dgs-small-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .dubai-gallery-section .dgs-small-grid {
    grid-template-columns: 1fr;
  }
}


.dubai-family-package .menus .nav-link {
    color: #000000;
}

.dubai-family-package .dropdown-main img {
    filter: brightness(0);
}

.dubai-family-package .dropdown-items {
    background: #eeeeee14;
    border: 1px solid #000000;
}

.dubai-family-package .dropdown-items li a {
    color: #000000;
}
img.top-right-img {
    border-radius: 0px 14px 0px 0px;
}

img.top-bottom-img {
    border-radius: 0px 0px 14px 0px;
}




/* ======================================== itereary details section ============================ */

/* Unique parent scope: .package-details-tabs */
.package-details-tabs {
  --bg: #0b0b0b;
  --card-bg: #0f1720;
  --muted: #9aa0a6;
  --accent: #ff5a58;
  --pill-bg: #0b1220;
  color: #e6eef6;
  padding-top: 80px;
  box-sizing: border-box;
}

/* Tabs row */
.package-details-tabs .pdt-tabs-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 80px;
}

.package-details-tabs .pdt-tab {
  background: #fff;
  color: #373B51;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  font-family: inter;
  height: 46px;
  width: 160px;
  cursor: pointer;
  position: relative;
}
.package-details-tabs .pdt-tab.is-active {
  background: #1877F2;
  color: #fff;
}

/* Best badge */
.package-details-tabs .pdt-best {
  display: inline-block;
  background: #DFF3FE;
  color: #1877F2;
  font-size: 7px;
  padding: 3px 6px;
  border-radius: 4px;
  margin-left: 0;
  width: 100%;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: -13px;
  z-index: -100;
}

/* Main content grid */
.package-details-tabs .pdt-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
  margin-top: 8px;
}

/* LEFT column */
.package-details-tabs .pdt-left {
  color: #dfe7ef;
}

/* Header and locations */
.package-details-tabs .pdt-header {
  display: flex;
  gap: 12px;
  align-items: center;
}
.package-details-tabs .pdt-title {
  margin: 0;
  font-size: 40px;
  color: #111; /* slight cyan accent to mimic screenshot header glow */
  font-weight: 800;
}
.package-details-tabs .pdt-tag {
  /* margin-left: auto; */
  background: #D0F4F9;
  color: #515151;
  padding: 3px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
}

/* location list */
.package-details-tabs .pdt-locations {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Banner image */
.package-details-tabs .pdt-banner {
  position: relative;
  margin-top: 16px;
  border-radius: 15px;
  overflow: hidden;
  /* box-shadow: 0 8px 22px rgba(0,0,0,0.6); */
  height: 260px;
}
.package-details-tabs .pdt-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* overlay chips */
.package-details-tabs .pdt-banner-chips {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}
.package-details-tabs .pdt-banner .chip {
  background: #3e3e3e69;
  padding: 6px 15px;
  border-radius: 50px;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 600;
  font-size: 15px;
  /* backdrop-filter: blur(4px); */
}
.package-details-tabs .pdt-banner .chip.right {
  text-align: right;
  display: flex;
  align-items: center;
}

/* amenities row */
.package-details-tabs .pdt-amenities {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  color: #495560;
  flex-wrap: wrap;
}
.package-details-tabs .pdt-amenities .amenity {
  background: rgba(255,255,255,0.02);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #495560;
}

/* separator */
.package-details-tabs .pdt-sep {
  border: none;
  border-top: 1px solid #000000;
  margin: 30px 0;
}

/* section title */
.package-details-tabs .pdt-section-title {
  margin: 8px 0 14px;
  color: #18191F;
  font-size: 22px;
  margin-bottom: 20px!important;
  font-weight: 700;
}

/* Itinerary: each day card */
.package-details-tabs .pdt-itinerary .it-day {
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.03);
  background: white;
  box-shadow: 2px 2px 5px 0px #00000029;
}
.package-details-tabs .it-day-header {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding-left: 0px;
}
.package-details-tabs .it-day-pill {
  background: #F2F4FC;
  color: #373B51;
  padding: 8px 12px;
  border-radius: 0px 20px 20px 0px;
  font-weight: 700;
  min-width: 72px;
  text-align: center;
  font-size: 16px;
}
.package-details-tabs .it-day-title {
  color: #373B51;
  font-weight: 600;
  font-size: 14px;
  flex: 1;
}
.package-details-tabs .it-day-arrow {
  color: #373B51;
  font-size: 20px;
  font-family: monospace;
}

/* open body */
.package-details-tabs .it-day-body {
  padding: 12px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
}
.package-details-tabs .it-day-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.package-details-tabs .it-day-body li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  color: #373B51;
  font-size: 15px;
}
.package-details-tabs .it-icon {
  color: #373B51;
  margin-top: 2px;
}

/* RIGHT column (sticky) */
.package-details-tabs .pdt-right {
  position: relative;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Price card */
.package-details-tabs .price-card {
  background: rgba(255,255,255,0.03);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 5px 0px #00000029;
  /* border:  1px solid #E0E0E0; */
}
.package-details-tabs .pc-top {
  font-size: 12px;
  color: #495560;
}
.package-details-tabs .pc-old {
  text-decoration: line-through;
  color: #F74C4D;
  display: inline-block;
  margin-left: 6px;
}
.package-details-tabs .pc-price {
  margin-top: 0px;
  display:flex;
  flex-direction: column;
  gap: 2px;
}
.package-details-tabs .pc-amount {
  font-size: 36px;
  font-weight: 800;
  color: #293347;
  font-family: 'Inter';
  line-height: normal;
}
.package-details-tabs .pc-note {
  font-size: 12px;
  color: #495560;
}
.package-details-tabs .pc-cta {
  margin-top: 15px;
  width: 100%;
  background: #F74C4D;
  color: #fff;
  border: none;
  padding: 12px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
}

/* Enquiry card */
.package-details-tabs .enquiry-card {
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
  border: 1px solid #E0E0E0;
  box-shadow: 2px 2px 5px 0px #00000029;
}
.package-details-tabs .enq-badge {
  /* background: linear-gradient(90deg,#eaf8ff,#fff); */
  color: #515151;
  padding: 6px 8px;
  border-radius: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
}
.package-details-tabs .enq-title {
    margin-bottom: 25px !important;
    font-size: 17px;
    color: #202020;
    margin-top: 0px !important;
    text-align: center;
    font-weight: bold;
}
.package-details-tabs .enq-form input,
.package-details-tabs .enq-form select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #E0E0E0;
  background: rgba(255,255,255,0.02);
  color: #9C9FAF;
  box-sizing: border-box;
  font-size: 14px;
}
.package-details-tabs .enq-phone {
  display:flex;
  gap:8px;
  font-size: 14px;
}
.package-details-tabs .enq-phone select {
  width: 90px;
}
.package-details-tabs .enq-submit {
  width: 100%;
  padding: 10px;
  background: #F74C4D;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1000px) {
  .package-details-tabs .pdt-content {
    grid-template-columns: 1fr;
  }
  .package-details-tabs .pdt-right {
    order: 2;
  }
}



span.offer {
    background: #D0F5F9;
    margin-right: 5px;
    padding: 4px 8px;
    border-radius: 4px;
}
.pdt-left .location {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #495560;
    margin-bottom: 30px;
    margin-top: 10px;
    gap: 0.25rem;
}


.pdt-left .location svg {
    color: #ef4444;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

span.chip.left > img {
    margin-right: 10px;
}


.package-details-tabs .pdt-banner .chip.right img{
     margin-left: 13px;
    width:75px;
}

.query-form-heading {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color: black;
}



/* UNIQUE PARENT WRAPPER (does not affect anything else) */
.tw-why-tourwatchout {
  padding: 80px 0;
  text-align: center;
  padding-top: 0;
}

.tw-why-tourwatchout .tw-container {
  max-width: 1200px;
  margin: 0 auto;
}

.tw-why-tourwatchout .tw-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #18191F;
  text-align: left;
}

/* Row of features */
.tw-why-tourwatchout .tw-features-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Each feature */
.tw-why-tourwatchout .tw-feature-box {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.tw-why-tourwatchout .tw-feature-box img {
  width: 90px;
  height: 90px;
  margin-bottom: 12px;
}

.tw-why-tourwatchout .tw-feature-box p {
  font-size: 16px;
  color: #656565;
  margin: 0;
}


.prices-row {
    display: flex;
    justify-content: space-between;
}

.dubai-family-package .light-pages{
  display: none!important;


}

.dubai-family-package img.dark-pages.d-none {
    display: block !important;
}


button.pdt-tab img {
    margin-right: 7px;
}

.package-details-tabs .pdt-tab.is-active img{
  filter: brightness(0)invert(1);
}