/* ===================== BASE RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
}

/* ===================== MAIN HEADER ===================== */
.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  width: 100%;
}
.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 36px;
}

/* Centered Nav Menu */
.nav-menu {
  flex: 1;
  text-align: center;
}
.nav-menu ul {
  display: inline-flex;
  gap: 24px;
  list-style: none;
}
.nav-menu a {
  text-decoration: none;
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

/* Mobile Menu Button */
.S-mobile-menu-btn {
  display: none; /* Hide by default */
  background-color: #facc15;
  border: none;
  padding: 8px 14px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  color: #000;
}

/* ===================== MOBILE DRAWER ===================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: left 0.3s ease;
  padding: 20px;
}
.mobile-drawer.active {
  left: 0;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-header img {
  height: 40px;
}
.drawer-header button {
  background: #000;
  color: #fff;
  border: none;
  font-size: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
}
.drawer-links {
  list-style: none;
  margin-top: 30px;
  padding: 0;
}
.drawer-links li {
  border-bottom: 1px solid #ddd;
  padding: 14px 0;
}
.drawer-links a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
.drawer-footer {
  margin-top: 40px;
  font-size: 14px;
  color: #333;
  text-align: center;
}

/* ===================== RESPONSIVE RULES ===================== */
@media (max-width: 1024px) {
  .nav-menu {
    display: none !important; /* Hide navigation on mobile */
  }
  .S-mobile-menu-btn {
    display: inline-flex !important; /* Show menu button on mobile */
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1025px) {
  .S-mobile-menu-btn {
    display: none !important; /* Hide menu button on desktop */
  }
}



/* Hero Section */
/* Travel Gallery Section CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .gallery-section {
    width: 100%;
    position: relative;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
  }
  
  /* Gallery Container */
  .gallery-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
  }
  
  /* Main Image */
  .main-image {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Gallery Text Overlay */
  .gallery-text {
    position: absolute;
    top: 22%;
    left: 10%;
    z-index: 2;
    color: #000;
    max-width: 600px;
  }
  
  .discovery-tag {
    display: inline-block;
    background-color: #ffeb3b;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .gallery-text h1 {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.1;
  }
  
  .gallery-text h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 20px;
  }
  
  .gallery-text p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 500px;
  }
  
  /* Thumbnails */
  .gallery-thumbnails {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 3;
  }
  
  .thumbnail {
    width: 150px;
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .thumbnail:hover {
    transform: scale(1.05);
  }
  
  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Navigation Arrows - Updated to match design */
  .gallery-nav {
    position: absolute;
    bottom: 110px;
    left: 10%;
    display: flex;
    gap: 15px;
    z-index: 4;
  }
  
  .nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .nav-arrow:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
  }
  
  .prev-arrow, .next-arrow {
    position: relative;
    padding: 0;
  }
  
  /* Search Container */
  .search-container {
    position: relative;
    max-width: 1200px;
    margin: -50px auto 0;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 10;
  }
  
  /* Search Tabs */
  .search-tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .tab-button {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .tab-button.active {
    color: #fff;
    font-weight: 600;
    background-color: #000;
    border-radius: 30px;
  }
  
  .help-button {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
  }
  
  /* Search Form */
  .search-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .search-field {
    flex: 1;
    min-width: 180px;
  }
  
  .search-field label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
  }
  
  .field-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .field-input span {
    flex: 1;
    font-size: 14px;
  }
  
  .dropdown-arrow {
    color: #888;
  }
  
  .search-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
  }
  
  .search-button:hover {
    background-color: #333;
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .gallery-text {
      left: 5%;
      max-width: 500px;
    }
    
    .gallery-text h1, .gallery-text h2 {
      font-size: 42px;
    }
    
    .thumbnail {
      width: 120px;
      height: 80px;
    }
  }
  
  @media (max-width: 992px) {
    .gallery-container {
      height: 500px;
    }
    
    .gallery-text {
      max-width: 400px;
    }
    
    .gallery-text h1, .gallery-text h2 {
      font-size: 36px;
    }
    
    .gallery-text p {
      font-size: 14px;
    }
    
    .gallery-nav {
      bottom: 100px;
    }
  }
  
  @media (max-width: 768px) {
    .gallery-container {
      height: 450px;
    }
    
    .gallery-text {
      top: 15%;
      max-width: 350px;
    }
    
    .gallery-text h1, .gallery-text h2 {
      font-size: 32px;
    }
    
    .gallery-thumbnails {
      right: 3%;
      gap: 15px;
    }
    
    .thumbnail {
      width: 100px;
      height: 70px;
    }
    
    .search-form {
      flex-wrap: wrap;
    }
    
    .search-field {
      width: calc(50% - 5px);
      flex: none;
    }
    
    .search-button {
      width: 100%;
      justify-content: center;
      margin-top: 10px;
    }
    
    .gallery-nav {
      bottom: 90px;
      left: 5%;
    }
  }
  
  @media (max-width: 576px) {
    .gallery-container {
      height: 400px;
    }
    
    .gallery-text {
      top: 10%;
      left: 5%;
      max-width: 90%;
    }
    
    .gallery-text h1, .gallery-text h2 {
      font-size: 28px;
    }
    
    .discovery-tag {
      font-size: 12px;
      padding: 6px 15px;
    }
    
    .gallery-thumbnails {
      display: none;
    }
    
    .search-container {
      margin-top: -30px;
      padding: 15px;
    }
    
    .search-tabs {
      overflow-x: auto;
      padding-bottom: 10px;
      gap: 5px;
    }
    
    .tab-button {
      padding: 8px 15px;
      font-size: 14px;
      white-space: nowrap;
    }
    
    .help-button {
      display: none;
    }
    
    .search-field {
      width: 100%;
    }
    
    .gallery-nav {
      bottom: 80px;
      left: 5%;
    }
  }    

/* Featured Tours Exact */
/* === Section Wrapper === */
.featured-tours-exact {
    padding: 80px 0;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
  }
  
  /* === Top Section === */
  .top-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 20px;
  }
  .top-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
  }
  .top-left p {
    font-size: 14px;
    color: #666;
    margin: 0;
  }
  .top-right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .top-right .filter {
    background: #f1f1f1;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 10px;
    color: #222;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .top-right .filter i {
    margin-left: 6px;
    font-size: 10px;
  }
  
  /* === Grid === */
  .tours-grid-exact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  /* === Card === */
  .tour-card-exact {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
  }
  .tour-card-exact:hover {
    transform: translateY(-4px);
  }
  
  /* === Image & Badge === */
  .image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
  }
  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    color: #fff;
  }
  .tag.top { background-color: #faae2b; }
  .tag.sale { background-color: #28c76f; }
  .tag.discount { background-color: #ff9f43; }
  
  /* === Heart Icon === */
  .heart {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #fff;
    font-size: 16px;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
  }
  .heart:hover {
    color: red;
  }
  
  /* === Card Body === */
  .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
  }
  
  /* === Rating Pill === */
  .rating-badge {
    background-color: #f5f5f5;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    display: inline-block;
    width: fit-content;
  }
  .rating-badge span {
    color: #777;
    font-weight: 400;
    margin-left: 4px;
  }
  
  /* === Title === */
  .card-body h3 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
    margin: 0;
  }
  
  /* === Meta Info (icon rows) === */
  .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #666;
  }
  
  /* === Price & Button Footer === */
  .card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
  }
  .price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
  }
  .price span {
    font-weight: 400;
    font-size: 12px;
    color: #888;
  }
  .card-footer button {
    background-color: #000;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 999px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }
  .card-footer button:hover {
    background-color: #333;
  }
  
  /* === Responsive === */
  @media (max-width: 992px) {
    .tours-grid-exact {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 576px) {
    .tours-grid-exact {
      grid-template-columns: 1fr;
    }
    .top-bar {
      flex-direction: column;
      align-items: flex-start;
    }
  }
    
      

/* Top Categories Section */
.tour-categories-section {
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
  }
  .section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
  }
  .section-top h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .section-top p {
    font-size: 14px;
    color: #777;
  }
  .view-more-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
  }
  .category-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    transition: box-shadow 0.3s ease;
  }
  .category-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  }
  .category-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
  }
  .category-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
  }
  .category-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
  }
  .category-card span {
    margin-top: auto;
    align-self: flex-end;
    font-size: 14px;
    color: #888;
  }
  
  /* PROMO CARDS */
  .promo-banners {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .promo-card {
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
    color: #000;
    position: relative;
    min-height: 180px;
  }
  .promo-left {
    background: linear-gradient(to right, #b2f0ff, #ffffff);
  }
  .promo-right {
    background: #fff4ef;
  }
  .promo-card img {
    width: 180px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }
  .promo-content {
    flex: 1;
  }
  .promo-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .promo-content button {
    background: #ff0;
    color: #000;
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    font-size: 13px;
  }
  .promo-badge {
    display: inline-block;
    background: red;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
  }
  .promo-badge strong {
    font-size: 16px;
  }
  

/* Top Rated Hotels Exact */
.top-rated-hotels-section {
    background: #fff6f2;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
  }
  
  .hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .hotel-header h2 {
    font-size: 32px;
    font-weight: 700;
  }
  .hotel-header p {
    font-size: 14px;
    color: #777;
  }
  .carousel-buttons {
    display: flex;
    gap: 12px;
  }
  .carousel-buttons button {
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  
  /* SCROLL AREA */
  .hotel-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }
  .hotel-carousel::-webkit-scrollbar {
    display: none;
  }
  .hotel-carousel {
    scrollbar-width: none;
  }
  
  /* CARD */
  .hotel-card {
    flex: 0 0 auto;
    width: 280px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
  }
  
  /* IMAGE */
  .image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
  }
  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .heart-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    padding: 6px;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    color: #444;
    cursor: pointer;
  }
  .rating-pill {
    position: absolute;
    bottom: -12px;
    left: 16px;
    background: #fff;
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .rating-pill i {
    color: #f7b500;
    margin-right: 4px;
  }
  
  /* CARD BODY */
  .hotel-info {
    padding: 24px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .hotel-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 0;
  }
  .hotel-info p {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .stars {
    font-size: 14px;
    color: #000;
    letter-spacing: 1px;
  }
  .price-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .price {
    font-size: 16px;
    font-weight: 700;
  }
  .price span {
    font-weight: 400;
    font-size: 12px;
    color: #888;
  }
  .price-row button {
    background: #eee;
    border: none;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
  }
        
    

/* Luxury Travel Exact */
/* Base reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
  }
  
  .luxury-travel-section {
    padding: 60px 20px;
    background: #f3f3f0;
  }
  
  .luxury-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
  }
  
  .luxury-text {
    flex: 1;
    max-width: 400px;
  }
  
  .luxury-text .pill {
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .luxury-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  
  .luxury-text p {
    color: #666;
    font-size: 16px;
  }
  
  .luxury-images {
    flex: 2;
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  
  .main-img-wrapper {
    flex: 2;
  }
  
  .main-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    object-fit: cover;
  }
  
  .side-grid {
    display: grid;
    grid-template-columns: repeat(2, 80px);
    grid-template-rows: repeat(2, 80px);
    gap: 10px;
    flex-shrink: 0;
  }
  
  .side-grid img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
  }
  
  /* ===== Responsive for tablets & mobiles ===== */
  @media (max-width: 992px) {
    .luxury-container {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .luxury-text {
      max-width: 100%;
      text-align: center;
    }
  
    .luxury-images {
      flex-direction: column;
      align-items: center;
    }
  
    .main-img-wrapper {
      width: 100%;
      max-width: 500px;
    }
  
    .side-grid {
      grid-template-columns: repeat(2, 100px);
      grid-template-rows: repeat(2, 100px);
      gap: 12px;
    }
  }
  
  @media (max-width: 576px) {
    .luxury-text h2 {
      font-size: 24px;
    }
  
    .luxury-text p {
      font-size: 14px;
    }
  
    .side-grid {
      grid-template-columns: repeat(2, 45vw);
      gap: 10px;
    }
  
    .side-grid img {
      border-radius: 12px;
    }
  }
  
    
  
  /* Why Travel With Us Section */
  .why-travel-section {
    padding: 60px 20px;
    text-align: center;
  }
  .why-travel-section h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .why-travel-section p {
    font-size: 14px;
    color: #777;
    margin-bottom: 40px;
  }
  
  /* Features Grid */
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
  }
  .feature-card {
    border-radius: 16px;
    padding: 25px;
    text-align: center;
  }
  .icon-box {
    background: #fff;
    width: 46px;
    height: 46px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
  }
  .feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .feature-card p {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
  }
  .feature-card a {
    font-size: 13px;
    color: #111;
    text-decoration: none;
    font-weight: 500;
  }
  .feature-card a i {
    margin-left: 4px;
    font-size: 11px;
  }
  
  /* Payment Logos */
  .payment-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 20px;
  }
  .payment-logos img {
    height: 28px;
    object-fit: contain;
    filter: grayscale(0);
  }
  

/* Recent Cars */
.launched-car-section {
    background: #e9fafa;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
  }
  .container {
    max-width: 1200px;
    margin: auto;
  }
  
  .car-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }
  .car-header h2 {
    font-size: 30px;
    font-weight: 700;
  }
  .car-header p {
    font-size: 14px;
    color: #555;
  }
  .carousel-buttons {
    display: flex;
    gap: 10px;
  }
  .carousel-buttons button {
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    cursor: pointer;
  }
  
  /* Scroll Container */
  .car-carousel {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }
  .car-carousel::-webkit-scrollbar {
    display: none;
  }
  .car-carousel {
    scrollbar-width: none;
  }
  
  /* Car Card */
  .car-card {
    flex: 0 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    width: 280px;
    overflow: hidden;
    position: relative;
  }
  .car-img-box {
    position: relative;
    height: 180px;
  }
  .car-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .heart {
    position: absolute;
    top: 10px;
    right: 12px;
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    font-size: 14px;
    color: #444;
  }
  .rating {
    position: absolute;
    bottom: -15px;
    left: 16px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  .rating i {
    color: #f7b500;
  }
  
  /* Card Content */
  .car-content {
    padding: 24px 16px 16px;
  }
  .car-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .car-content p {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
  }
  .car-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    font-size: 13px;
    color: #333;
  }
  .car-specs li i {
    margin-right: 6px;
  }
  .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .price {
    font-size: 16px;
    font-weight: 700;
  }
  .price span {
    font-size: 12px;
    font-weight: 400;
    color: #777;
  }
  .price-row button {
    background: #eee;
    border: none;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 999px;
    cursor: pointer;
  }
  
  /* Category Logos */
  .category-section {
    text-align: center;
    padding-top: 60px;
  }
  .category-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .category-section p {
    font-size: 14px;
    color: #777;
    margin-bottom: 30px;
  }
  
  .category-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .logo-item {
    background: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 48px;
    transition: transform 0.2s ease;
  }
  .logo-item img {
    max-height: 24px;
    max-width: 48px;
    object-fit: contain;
  }
  .logo-item:hover {
    transform: scale(1.05);
  }

/* testimonial section   */
.testimonial-section {
    position: relative;
    padding: 80px 20px 160px;
    background: #fff;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
  }
  
  /* HEADER */
  .testimonial-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .testimonial-pill {
    display: inline-flex;
    align-items: center;
    background: #ffeb3b;
    padding: 6px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    gap: 10px;
    margin-bottom: 14px;
  }
  .avatars {
    display: flex;
  }
  .avatars img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
  }
  .avatars img:first-child {
    margin-left: 0;
  }
  .testimonial-header h2 {
    font-size: 40px;
    font-weight: 700;
  }
  
  /* CARDS SCROLLER */
  .testimonial-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 10px;
    margin-bottom: 30px;
  }
  .testimonial-carousel::-webkit-scrollbar {
    display: none;
  }
  .testimonial-card {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    padding: 24px;
  }
  .testimonial-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .testimonial-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 24px;
  }
  
  /* USER DETAILS */
  .testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .testimonial-user img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
  }
  .testimonial-user .info {
    display: flex;
    flex-direction: column;
  }
  .testimonial-user strong {
    font-size: 14px;
  }
  .testimonial-user span {
    font-size: 12px;
    color: #777;
  }
  .stars {
    margin-left: auto;
    color: #ffc107;
    font-size: 14px;
  }
  
  /* NAVIGATION ARROWS */
  .testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .testimonial-nav button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    font-size: 14px;
    cursor: pointer;
  }
  
  /* BACKGROUND IMAGE */
  .testimonial-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    opacity: 0.3;
  }
     
  /* news tips and guide Section */
  .blog-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
    font-family: 'Poppins', sans-serif;
  }
  
  .blog-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  .blog-top-row h2 {
    font-size: 32px;
    font-weight: 700;
  }
  .blog-top-row p {
    font-size: 14px;
    color: #666;
  }
  .blog-more-btn {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
  }
  .blog-more-btn i {
    margin-left: 8px;
  }
  
  /* Cards Layout */
  .blog-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }
  .blog-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    max-width: 360px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  
  /* Image with overlay */
  .card-img {
    position: relative;
  }
  .card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
  .blog-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 999px;
    font-weight: 500;
  }
  .blog-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Card Content */
  .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #777;
  }
  .blog-meta i {
    margin-right: 5px;
  }
  .card-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
  }
  
  /* Author Row */
  .blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }
  .author {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
  }
  .author span {
    font-size: 13px;
    font-weight: 500;
  }
  .blog-footer button {
    background: #f3f3f3;
    border: none;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    cursor: pointer;
  }
    

/* Footer */
/* ROOT FOOTER */
.travila-footer {
  background: #000;
  color: #eee;
  font-family: 'Poppins', sans-serif;
  padding: 50px 20px;
  font-size: 13px;
}

/* TOP SUBSCRIBE BAR */
.footer-subscribe-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 30px;
  text-align: center;
}

.footer-subscribe-row h2 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  max-width: 500px;
  margin: 0;
  line-height: 1.4;
}

/* INPUT FORM */
.footer-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.input-box {
  position: relative;
}

.input-box i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 13px;
}

.input-box input {
  padding: 10px 14px 10px 36px;
  border: 1px solid #444;
  border-radius: 30px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  width: 220px;
}

.footer-form button {
  background: #ff0;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* DIVIDER */
.travila-footer hr {
  border: none;
  border-top: 1px solid #222;
  margin: 30px auto;
  width: 100%;
}

/* GRID SECTION */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  margin-top: 30px;
  text-align: left;
}

.footer-block {
  flex: 1 1 180px;
  max-width: 180px;
}

.footer-block h4 {
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block li {
  margin-bottom: 8px;
}

.footer-block a {
  color: #aaa;
  text-decoration: none;
  font-size: 13px;
}

.footer-block a:hover {
  color: #fff;
}

/* LOGO BLOCK */
.logo-block {
  max-width: 240px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.logo-icon {
  background: #ff0;
  color: #000;
  border-radius: 50%;
  font-size: 15px;
  padding: 6px;
}

.logo-text {
  font-size: 16px;
  font-weight: 600;
}

.logo-block p {
  margin: 10px 0;
  font-size: 13px;
  color: #aaa;
}

.logo-block i {
  margin-right: 6px;
  color: #888;
}

.hotline {
  color: #ffcc00;
  font-weight: bold;
  font-size: 15px;
}

/* BOTTOM COPYRIGHT */
.footer-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  color: #777;
  font-size: 13px;
  text-align: center;
}

/* ======= MOBILE RESPONSIVE ======= */
@media (max-width: 768px) {
  .footer-subscribe-row {
    flex-direction: column;
    padding: 0 20px;
    gap: 20px;
    text-align: center;
  }

  .footer-subscribe-row h2 {
    max-width: 100%;
    font-size: 15px;
  }

  .footer-form {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .input-box {
    width: 100%;
    max-width: 320px;
  }

  .input-box input {
    width: 100%;
    font-size: 14px;
    padding: 10px 14px 10px 38px;
  }

  .footer-form button {
    width: 160px;
    margin-top: 10px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    margin-top: 30px;
    padding: 0 20px;
  }

  .footer-block {
    text-align: left;
    width: 100%;
    max-width: 100%;
  }

  .logo-block {
    grid-column: span 2;
    text-align: center;
  }

  .logo {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    text-align: center;
  }
}

/* Disclaimer block style */
/* Desktop view: left-aligned */
.disclaimer-block {
  flex: 1 1 220px;
  max-width: 240px;
  font-size: 13px;
  color: #bbb;
  line-height: 1.6;
  margin-top: 12px;
  text-align: left;
}

/* Mobile view: full width & centered */
@media (max-width: 768px) {
  .disclaimer-block {
    max-width: 100%;
    padding: 0 20px;
    margin: 30px auto 0;
    text-align: center;
    line-height: 1.6;
    background: none;
    font-size: 13.5px;
  }

  .disclaimer-block p {
    margin: 0;
    color: #ccc;
    font-size: 13.5px;
  }

  .disclaimer-block strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #fff;
  }
}





  
  
    
  
  