/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f8f8f8;
  }
  
  /* ===== HEADER ===== */
  .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: rgb(112, 115, 123);
    box-shadow: 0 2px 5px rgb(255, 255, 255);
  }
  
  .logo {
    height: 30px;
  }
  
  .desktop-menu {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .btn {
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 14px;
    color: #000;
    text-decoration: none;
    border: 1px solid #ccc;
  }
  
  .currency {
    font-size: 14px;
    font-weight: 500;
  }
  
  .link {
    font-size: 14px;
    text-decoration: none;
    color: #000;
  }
  
  .mobile-phone {
    color: white;
    display: none;
  }
  
  /* ===== SEARCH SECTION ===== */
  .search-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 16px;
    margin: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  
  /* Tabs */
  .tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    flex-wrap: wrap;
  }
  
  .tab {
    text-decoration: none;
    color: #000;
    font-weight: 500;
  }
  
  .tab.active {
    color: #0066ff;
    border-bottom: 2px solid #0066ff;
  }
  
  /* Search Box */
  .search-box {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }
  
  .search-box input {
    
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    min-height: 40px;
    line-height: 1.4;
  }
  
  .search-box button {
    background-color: #0066ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    min-height: 40px;
  }
  
  /* Addons */
  .addons {
    display: flex;
    gap: 20px;
    font-size: 14px;
    flex-wrap: wrap;
  }
  
  .addons label {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  /* ===== RESPONSIVE STYLING ===== */
  @media (max-width: 768px) {
    .desktop-menu {
      display: none;
    }
  
    .mobile-phone {
      display: block;
    }
  
    .mobile-phone a {
      font-size: 16px;
      color: #ffffff;
      text-decoration: none;
    }
  
    .main-header {
      flex-direction: row;
      justify-content: space-between;
    }
  
    .search-box {
      flex-direction: column;
    }
  
    .search-box input {
      width: 100%;
      font-size: 15px;
      padding: 10px 12px;
      min-height: 200%;
      line-height: 1.2;
    }
  
    .search-box button {
      width: 100%;
      font-size: 15px;
      padding: 12px;
      min-height: 44px;
      margin-top: 10px;
    }
  
    .addons {
      flex-direction: column;
      gap: 10px;
    }
  }



  .promo-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #151b3d; /* Dark blue */
    color: white;
    border-radius: 16px;
    padding: 16px 24px;
    margin: 20px;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .promo-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
  }
  
  .promo-icon {
    background-color: #fcd34d; /* Yellow circle */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  
  .promo-left p {
    font-size: 15px;
    line-height: 1.4;
  }
  
  .promo-button {
    background-color: #1a73e8;
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
  }
  
  /* ✅ Responsive */
  @media (max-width: 600px) {
    .promo-banner {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .promo-button {
      align-self: flex-end;
    }
  }

  

  .deal-banner {
    display: flex;
    background-color: #fcd34d;
    border-radius: 20px;
    overflow: hidden;
    margin: 20px;
    flex-wrap: wrap;
  }
  
  .deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 400px;
  }
  
  .deal-box {
    background-color: #fcd34d;
    padding: 24px;
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .deal-box h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Georgia', serif;
  }
  
  .deal-box p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .deal-btn {
    display: inline-block;
    background-color: #000c3f;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    width: fit-content;
  }
  
  /* ✅ Responsive */
  @media (min-width: 768px) {
    .deal-banner {
      flex-direction: row;
    }
  
    .deal-image {
      flex: 2;
    }
  
    .deal-image img {
      height: 100%;
    }
  
    .deal-box {
      flex: 1.5;
      padding: 40px;
    }
  }
  
  @media (max-width: 767px) {
    .deal-banner {
      flex-direction: column;
    }
  
    .deal-box {
      padding: 20px;
    }
  
    .deal-box h2 {
      font-size: 22px;
    }
  }

  
  .promo-box {
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
  }

  .promo-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
  }

  .promo-box p {
    font-size: 14px;
    color: #444;
  }

  .promo-box p strong {
    color: #1a1a1a;
    font-weight: 700;
  }

  @media (max-width: 600px) {
    .promo-box h2 {
      font-size: 20px;
    }

    .promo-box p {
      font-size: 13px;
    }
  }












  .angebote-slider {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
  }
  
  .angebote-slider::-webkit-scrollbar {
    display: none;
  }
  
  .angebot-karte {
    display: flex;
    flex: 0 0 300px;
    background-color: #fcd34d;
    border-radius: 14px;
    overflow: hidden;
    scroll-snap-align: start;
    min-height: 160px;
  }
  
  .angebot-text {
    padding: 16px;
    flex: 1;
  }
  
  .angebot-text h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 12px;
  }
  
  .angebot-text a {
    font-size: 14px;
    color: black;
    text-decoration: none;
    font-weight: 500;
  }
  
  .angebot-karte img {
    width: 120px;
    object-fit: cover;
    height: 100%;
  }
  
  /* ✅ Desktop enhancement */
  @media (min-width: 768px) {
    .angebote-slider {
      overflow-x: visible;
      flex-wrap: wrap;
      justify-content: space-between;
    }
  
    .angebot-karte {
      flex: 1 1 calc(33.33% - 16px);
      max-width: calc(33.33% - 16px);
    }
  }

  



  .swiper {
    padding-bottom: 50px;
  }

  .swiper-slide {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 280px;
  }

  .hotel-image {
    width: 100%;
    height: 170px;
    object-fit: cover;
    position: relative;
  }

  .rating-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1a8917;
    color: #fff;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 14px;
  }

  .card-content {
    padding: 12px 15px 18px;
  }

  .review-text {
    color: #006b2f;
    font-weight: bold;
    font-size: 14px;
    margin-top: 5px;
  }

  .hotel-name {
    font-size: 16px;
    font-weight: bold;
    margin: 8px 0 2px;
  }

  .location {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
  }

  .price {
    font-size: 16px;
    font-weight: bold;
    color: #000;
  }

  .old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
    margin-left: 8px;
  }

  .subtext {
    font-size: 13px;
    color: #666;
  }

  .member-price {
    margin-top: 10px;
    background: #ffd500;
    color: #000;
    font-weight: bold;
    border: none;
    padding: 8px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    color: #333;
  }

  @media (max-width: 768px) {
    .swiper-slide {
      max-width: 90%;
    }
  }




/* Container for desktop grid */
    .image-grid {
      display: flex;
      gap: 1rem;
      padding: 1rem;
      max-width: 1200px;
      margin: auto;
    }

    /* Each image card styling with aspect ratio and round corners */
    .card {
      position: relative;
      border-radius: 1rem;
      overflow: hidden;
      flex: 1 1 0;
      min-width: 160px;
      max-width: 200px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
      transition: transform 0.3s ease;
      background: #eee;
    }
    .card:hover {
      transform: scale(1.05);
      z-index: 2;
    }

    /* Ensuring correct image sizing and covering */
    .card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block;
    }

    /* Text overlay bottom-left */
    .card-label {
      position: absolute;
      bottom: 0.75rem;
      left: 0.75rem;
      font-weight: 700;
      color: white;
      text-shadow: 0 0 5px rgba(0,0,0,0.7);
      font-size: 0.875rem;
    }

    /* Mobile slider container hidden on desktop */
    .slider-container {
      display: none;
      max-width: 100%;
      overflow: hidden;
      padding: 1rem;
      margin: auto;
      position: relative;
    }

    .slider-wrapper {
      display: flex;
      transition: transform 0.4s ease;
      will-change: transform;
    }

    .slider-card {
      flex: 0 0 80%;
      margin-right: 1rem;
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
      cursor: grab;
      position: relative;
      background: #eee;
    }

    .slider-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      display: block;
    }

    .slider-label {
      position: absolute;
      bottom: 0.75rem;
      left: 0.75rem;
      font-weight: 700;
      color: white;
      text-shadow: 0 0 5px rgba(0,0,0,0.7);
      font-size: 1rem;
    }

    /* Slider navigation buttons */
    .slider-nav {
      position: absolute;
      top: 50%;
      width: 100%;
      pointer-events: none;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 10px;
    }

    .slider-nav button {
      pointer-events: auto;
      background: rgba(0,0,0,0.4);
      border: none;
      color: white;
      font-size: 1.5rem;
      padding: 0.3rem 0.8rem;
      border-radius: 50%;
      cursor: pointer;
      user-select: none;
      transition: background 0.3s ease;
    }
    .slider-nav button:hover {
      background: rgba(0,0,0,0.7);
    }

    /* Responsive: Show grid on desktop, slider on mobile */
    @media (max-width: 768px) {
      .image-grid {
        display: none;
      }
      .slider-container {
        display: block;
      }
    }





  


  .section-title {
    font-size: 24px;
    font-weight: bold;
    color: #001f4d;
    text-align: center;
  }

  .section-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: justify;
  }

  .tab-container {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #ccc;
    overflow-x: auto;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }

  .tab-container::-webkit-scrollbar {
    display: none;
  }

  .tab {
    font-size: 14px;
    padding-bottom: 5px;
    cursor: pointer;
    color: #002f6c;
    font-weight: 500;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }

  .tab.active {
    color: #0a58ca;
    font-weight: bold;
    border-bottom: 2px solid #0a58ca;
  }

  .blue-button {
    display: block;
    margin: 20px auto;
    background-color: #1877F2;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
  }

  .blue-button:hover {
    background-color: #166fe5;
  }

  @media (min-width: 768px){
    .blue-button{
      justify-items: center;
    }
  }
  

  .dubai-section {
    max-width: 1000px;
    margin: auto;
  }

  .dubai-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    
  }

  .dubai-title-group {
    display: flex;
    flex-direction: column;
    
  }

  .dubai-logo-title {
    display: flex;
    align-items: center;
    gap: 10px;
    
  }

  .dubai-logo {
    height: 32px;
    
  }

  .dubai-heading{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    
  }

  .dubai-subtitle {
    font-size: 14px;
    color: #444;
    margin-top: 4px;
    text-align: center;
  }

  .ad-badge {
    background-color: #f1f3f5;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    color: #333;
  }

  .dubai-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }

  .dubai-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .dubai-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }

  .dubai-card-title {
    position: absolute;
    bottom: 8px;
    left: 12px;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
    font-size: 14px;
  }

  /* Desktop layout: row-wise cards */
  @media (min-width: 768px) {
    .dubai-cards {
      flex-direction: row;
    }

    .dubai-card {
      width: calc(33.333% - 10.66px); /* 3 in a row with 16px gap */
    }

    .dubai-card img {
      height: 200px;
    }

    .dubai-heading {
      font-size: 20px;
    }

    .dubai-subtitle {
      font-size: 15px;
    }
  }

  .app-promo {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    max-width: 1100px;
    margin: auto;
    background: #f9f9f9;
  }

  .app-promo-image {
    flex: 1;
  }

  .app-promo-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .app-promo-text {
    flex: 1;
    padding: 24px;
    background: white;
  }

  .app-promo-text h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .app-promo-text p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .app-promo-text strong {
    font-weight: bold;
    display: block;
    margin-top: 12px;
  }

  /* Desktop layout: row-wise */
  @media (min-width: 768px) {
    .app-promo {
      flex-direction: row;
    }

    .app-promo-image img {
      height: 100%;
    }

    .app-promo-text {
      padding: 32px;
      
    }

    .app-promo-text h2 {
      font-size: 28px;
    }

    .app-promo-text p {
      font-size: 16px;
    }
  }




  
  .travel-links-container {
    max-width: 1000px;
    margin: auto;
    
  }

  .travel-links-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    justify-items: center;
  }

  .travel-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ccc;
  }

  .travel-tab {
    padding-bottom: 8px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
  }

  .travel-tab.active {
    color: #0070e0;
    border-color: #0070e0;
  }

  .travel-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }

  .travel-column {
    min-width: 150px;
    flex: 1;
  }

  .travel-column a {
    display: block;
    text-decoration: none;
    color: #0070e0;
    margin: 6px 0;
    font-size: 14px;
  }

  /* Responsive for small devices */
  @media (max-width: 768px) {
    .travel-tabs {
      flex-direction: column;
      gap: 10px;
      border-bottom: none;
    }

    .travel-tab {
      border: none;
      margin: 0px 0px 0px 20px;
    }

    .travel-tab.active {
      border-left: 4px solid #0070e0;
      padding-left: 8px;
      
    }

    .travel-columns {
      flex-direction: row;
      margin: 0px 0px 0px 20px;
    }
    .travel-links-title {
      text-align: center;
      margin: 0px 20px 0px 20px;
    }

    
  }







































  .footer {
    background-color: #f9fbfc;
    padding: 40px 20px;
  }

  .footer .logo {
    font-size: 20px;
    font-weight: bold;
    color: #00355f;
    margin-bottom: 30px;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .footer-column {
    flex: 1 1 200px;
    min-width: 200px;
  }

  .footer h4 {
    font-size: 15px;
    color: #00355f;
    margin-bottom: 10px;
  }

  .footer a {
    display: block;
    color: #0071c2;
    text-decoration: none;
    font-size: 14px;
    margin: 6px 0;
  }

  .footer a:hover {
    text-decoration: underline;
  }

  .payment-logos, .copyright {
    text-align: center;
    font-size: 12px;
    margin-top: 30px;
    color: #666;
  }

  .payment-icons img {
    height: 30px;
    margin: 5px;
  }

  @media (max-width: 600px) {
    .footer-container {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 40px;
    }

    .footer-column {
      flex: 1 1 200px;
    }

    .footer .logo {
      text-align: center;
      margin-bottom: 20px;
    }
  }
  
  
  
  
  /* Pop-up Button */
.open-popup-btn {
  background: #007bff;
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.open-popup-btn:hover {
  background: #0056b3;
}

/* Pop-up Modal */
.popup {
  padding: 20px;
  margin-top: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 999;
}

.popup-content {
  background: rgb(255, 255, 255);
  margin-top: 60px;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  transform: scale(0.8); /* Initially small */
  transition: transform 0.3s ease-in-out;
}

.popup.show {
  opacity: 1;
  visibility: visible;
}

.popup.show .popup-content {
  transform: scale(1); /* Zoom-in effect */
}
.close-btn {
  color: black;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

/* Typography & Layout */
h2 {
  color: #003580;
  margin-bottom: 10px;
}

.subtext {
  color: #e74c3c;
  font-size: 14px;
}

.phone-number {
  font-size: 24px;
  font-weight: bold;
  color: #003580;
}

.agent-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 10px 0;
}

.note {
  font-size: 12px;
  color: gray;
}

/* Call Button */
.call-btn {
  display: block;
  width: 100%;
  background: #003580;
  color: white;
  padding: 12px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
  border: 3px solid #222;
}



  


@media (max-width: 768px) {
  .open-popup-btn {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    background-color: blue;
    color: white;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}
  .popup {
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.popup-content {
    width: 100%;  /* Adjust width for mobile */
    max-width: 370px;  /* Max limit */
    padding: 20px;
    max-height: none;
}
.popup.show .popup-content {
    transform: scale(1);
}
} 


.call-container {
    position: relative;
    display: inline-block;
}
/* Vibrating Circles */
.ring-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid rgba(0, 140, 221, 0.5);
    transform: translate(-50%, -50%);
    animation: ringEffect 1.5s infinite;
}

.ring-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    animation-delay: 0.5s;
}

.ring-circle:nth-child(3) {
    width: 140px;
    height: 140px;
    animation-delay: 1s;
}

/* Ringing Animation */
@keyframes ringEffect {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}


  