/* 
   FROSTED PEARL - GLOBAL PREMIUM LIGHT GLASS THEME
   Replaces the 'too dark' theme with a bright, spacious, and highly legible luxury aesthetic.
*/

body.home-page {
  background-color: #f4f6f9 !important; /* Soft, premium light silver/blue */
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(255, 87, 34, 0.03), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.8), transparent 40%) !important;
  color: #2c3e50 !important;
}

/* Strip hardcoded white backgrounds and reduce excessive section padding */
section:not([class*="hero"]),
div[class*="-section"]:not([class*="hero"]),
.home-quick-routes,
.tour-list,
.fleet-wrapper,
.service-row,
.how-it-works,
.home-help,
.home-help-card,
.trustpilot-section,
.reviews-footer {
  background: transparent !important;
  background-color: transparent !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

@media (max-width: 768px) {
  section:not([class*="hero"]),
  div[class*="-section"]:not([class*="hero"]),
  .home-quick-routes,
  .tour-list,
  .fleet-wrapper,
  .service-row,
  .how-it-works,
  .home-help,
  .home-help-card,
  .trustpilot-section,
  .reviews-footer {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

/* Global Typography - Light Theme */
body.home-page h1, 
body.home-page h3, 
body.home-page h4 {
  color: #1a202c !important; /* Deep slate */
  text-shadow: none !important;
  font-weight: 700 !important;
}

/* Decreased section title size */
body.home-page h2, 
body.home-page .section-title {
  color: #1a202c !important;
  text-shadow: none !important;
  font-weight: 700 !important;
  font-size: 28px !important; /* Reduced font size */
  margin-bottom: 25px !important; /* Tighter spacing below titles */
}

body.home-page p, 
body.home-page .section-subtitle {
  color: #4a5568 !important; /* Premium grey */
  font-weight: 400 !important;
  text-shadow: none !important;
}

/* Apply Frosted Pearl Glass to Quick Routes */
.home-page .qr-card {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  border: 1px solid rgba(255, 255, 255, 1) !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02) !important;
  color: #2c3e50 !important;
  transition: all 0.4s ease !important;
}

.home-page .qr-card:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 87, 34, 0.3) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 20px rgba(255, 87, 34, 0.05) !important;
}

.home-page .qr-card .qr-label { color: #1a202c !important; }
.home-page .qr-card .qr-tag { background: rgba(255,87,34,0.1) !important; color: #ff5722 !important; border: 1px solid rgba(255,87,34,0.2) !important;}
.home-page .qr-card-title { color: #1a202c !important; font-weight: 700 !important; }
.home-page .qr-card-features li { color: #4a5568 !important; }

/* Apply Frosted Pearl to Tours / Fleet / Services Cards */
.home-page .tour-card, 
.home-page .vehicle-item .thumbnail, 
.home-page .service-card {
  background: rgba(255, 255, 255, 0.90) !important; 
  backdrop-filter: blur(25px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(25px) saturate(140%) !important;
  border: 1px solid rgba(255, 255, 255, 1) !important;
  border-radius: 24px !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05) !important;
  overflow: hidden !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
  display: flex !important;
  flex-direction: column !important;
}
.home-page .tour-card:hover, 
.home-page .vehicle-item .thumbnail:hover, 
.home-page .service-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1) !important;
  border-color: rgba(255, 87, 34, 0.2) !important;
}

/* Fleet & Tours Text */
.home-page .vehicle-item .thumbnail h4,
.home-page .tour-card-title, 
.home-page .service-title {
  color: #1a202c !important;
  font-weight: 700 !important;
  white-space: normal !important;
  word-wrap: break-word !important;
  text-shadow: none !important;
}
.home-page .vehicle-item .thumbnail p,
.home-page .tour-card-desc, 
.home-page .service-desc {
  color: #4a5568 !important;
  white-space: normal !important;
  word-wrap: break-word !important;
  text-shadow: none !important;
}

/* Apply Popüler Rotalar (Quick Routes) Style to Highlights / How It Works */
.home-page .home-highlight, 
.home-page .how-step {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  border: 1px solid rgba(255, 255, 255, 1) !important;
  border-radius: 20px !important;
  padding: 30px 24px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02) !important;
  color: #1a202c !important;
  display: flex !important;
  flex-direction: column !important; /* Stack vertically for better alignment */
  align-items: center !important;
  text-align: center !important;
  min-height: 120px !important; /* Reduced from 200px to avoid excessive whitespace */
  height: 100% !important;
  justify-content: center !important;
  gap: 15px !important; /* Tighter spacing between icon and text */
  transition: all 0.4s ease !important;
}
.home-page .home-highlight:hover, 
.home-page .how-step:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 87, 34, 0.3) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 20px rgba(255, 87, 34, 0.05) !important;
}
.home-page .home-highlight-title, .home-page .how-step h3, .home-page .how-step h5 { 
  color: #1a202c !important; 
  font-weight: 700 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Premium Icon styling for Highlights / How It Works */
.home-page .home-highlight-icon i,
.home-page .how-step i,
.home-page .service-col i {
  color: #ff5722 !important;
  font-size: 24px !important;
}

.home-page .home-highlight-icon {
  width: 56px !important;
  height: 56px !important;
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.1), rgba(255, 87, 34, 0.2)) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5) !important;
} 
.home-page .home-highlight-title, .home-page .how-step h3, .home-page .how-step h5 {
  white-space: normal !important;
  word-wrap: break-word !important;
  line-height: 1.4 !important;
}
.home-page .home-highlight p, .home-page .how-step p { color: #4a5568 !important; }

/* How It Works Desktop Alignment Fix */
.home-page .how-it-works .row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important; /* Forces equal height columns */
  justify-content: center !important;
  gap: 20px !important;
  margin: 0 !important;
}

.home-page .how-it-works .how-step {
  float: none !important; /* Disable bootstrap floats */
  flex: 1 1 calc(25% - 20px) !important;
  min-width: 250px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 24px !important;
  padding: 35px 25px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  justify-content: flex-start !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
  transition: all 0.4s ease !important;
  height: auto !important;
}

.home-page .how-it-works .how-step:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08) !important;
  border-color: rgba(255, 87, 34, 0.2) !important;
}

.home-page .how-it-works .how-step i {
  width: 64px !important;
  height: 64px !important;
  background: rgba(255, 87, 34, 0.08) !important;
  border-radius: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
  color: #ff5722 !important;
  font-size: 28px !important;
}

.home-page .how-it-works .how-step h5 {
  font-size: 20px !important;
  font-weight: 800 !important;
  margin-bottom: 12px !important;
  color: #1a202c !important;
}

.home-page .how-it-works .how-step p {
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Specific overrides for Services Section (.service-col) */
.home-page .service-row .row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
}
.home-page .service-col {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  border: 1px solid rgba(255, 255, 255, 1) !important;
  border-radius: 20px !important;
  padding: 30px 20px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  height: calc(100% - 20px) !important; /* Compensate for margin-bottom */
  min-height: 150px !important; /* Reduced to eliminate excess whitespace */
  gap: 10px !important;
  transition: all 0.4s ease !important;
}
.home-page .service-col:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 87, 34, 0.3) !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08), 0 0 20px rgba(255, 87, 34, 0.05) !important;
}
.home-page .service-col h4 {
  color: #1a202c !important;
  font-weight: 700 !important;
  margin-top: 15px !important;
  margin-bottom: 10px !important;
  white-space: normal !important;
  word-wrap: break-word !important;
}
.home-page .service-col p {
}

/* =========================================================================
   REVIEWS & TRUSTPILOT PREMIUM REDESIGN
   ========================================================================= */
.reviews-section-premium {
  padding: 60px 0;
  background: #fdfdfd;
}

.reviews-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 5px;
}

.reviews-title-line {
  width: 60px;
  height: 4px;
  background: #ff5722;
  margin: 0 auto 30px;
  border-radius: 2px;
}

/* Trustpilot Mini Bar */
.tp-mini-bar {
  max-width: 900px;
  margin: 0 auto;
}

.tp-mini-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 25px 35px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.02);
}

.tp-mini-left {
  border-right: 1px solid rgba(0,0,0,0.05);
  padding-right: 40px;
}

.tp-mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 20px;
  color: #1a202c;
  margin-bottom: 5px;
}

.tp-mini-star {
  color: #00b67a;
  font-size: 24px;
}

.tp-mini-stars {
  display: flex;
  gap: 3px;
  color: #00b67a;
  font-size: 14px;
}

.tp-mini-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.tp-mini-right p {
  margin: 0;
  font-size: 14px;
  color: #718096;
  font-weight: 500;
}

.btn-tp-mini {
  background: #00b67a;
  color: #fff;
  padding: 12px 28px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-tp-mini:hover {
  background: #009e6a;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 182, 122, 0.2);
}

/* Review Masonry Grid */
.reviews-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.premium-review-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  transition: all 0.4s ease;
  height: fit-content;
}

.premium-review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: rgba(255, 87, 34, 0.1);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.reviewer-avatar {
  position: relative;
  width: 55px;
  height: 55px;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.google-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #4285F4;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.reviewer-name {
  font-size: 17px;
  font-weight: 800;
  color: #1a202c;
  margin: 0;
}

.review-date {
  font-size: 12px;
  color: #a0aec0;
  font-weight: 500;
}

.review-rating {
  color: #f6ad55;
  font-size: 14px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
  font-style: italic;
}

.btn-load-more {
  background: #1a202c;
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-load-more:hover {
  background: #ff5722;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 87, 34, 0.2);
}

@media (max-width: 1100px) {
  .reviews-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tp-mini-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }
  .tp-mini-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 20px;
    width: 100%;
  }
  .tp-mini-brand { justify-content: center; }
  .tp-mini-stars { justify-content: center; }
  .tp-mini-right {
    flex-direction: column;
    gap: 20px;
  }
  .reviews-masonry-grid {
    grid-template-columns: 1fr;
  }
  .reviews-main-title { font-size: 32px; }
}

.home-page .tp-widget-wrap {
  margin-top: 25px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(0,0,0,0.05) !important;
}

.home-help-cta .btn {
  background: #1a202c !important; /* Premium Dark */
  color: #ffffff !important;
  border: none !important;
  border-radius: 99px !important;
  height: 56px !important;
  padding: 0 45px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 900 !important;
  font-size: 16px !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.home-help-cta .btn:hover {
  background: #ff5722 !important; /* Switch to orange on hover */
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 35px rgba(255, 87, 34, 0.3) !important;
}
.home-help-card {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(40px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(180%) !important;
  border: 1px solid rgba(255, 255, 255, 1) !important;
  border-left: 10px solid #ff5722 !important; /* Premium thick orange accent line */
  border-radius: 40px !important;
  padding: 60px 40px !important;
  box-shadow: 0 40px 100px rgba(0,0,0,0.08) !important;
  text-align: center !important;
}

.home-help-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 20px !important;
  margin-top: 40px !important;
  width: 100% !important;
}

.home-help-item {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 24px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02) !important;
  color: #1a202c !important;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
  display: flex !important;
  align-items: center !important;
  padding: 24px !important;
  margin-bottom: 5px !important;
  text-decoration: none !important;
  flex: 1 1 320px !important;
  max-width: 400px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home-help-item:hover {
  transform: translateY(-5px) scale(1.02) !important;
  border-color: rgba(255, 87, 34, 0.2) !important;
  box-shadow: 0 20px 40px rgba(255, 87, 34, 0.1) !important;
}

.home-help-ico {
  width: 60px !important;
  height: 60px !important;
  background: #fcfdfe !important;
  border-radius: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 20px !important;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02) !important;
}

.home-help-ico i {
  color: #ff5722 !important;
  font-size: 26px !important;
}

.home-help-label { 
  color: #718096 !important; 
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: block !important;
  margin-bottom: 2px !important;
}

.home-help-value { 
  color: #1a202c !important; 
  font-weight: 900 !important; 
  font-size: 18px !important;
}

.home-help-go i { 
  color: #ff5722 !important; 
  opacity: 0.3 !important;
  transition: all 0.3s !important;
  font-size: 20px !important;
}

.home-help-item:hover .home-help-go i {
  opacity: 1 !important;
  transform: translateX(5px) !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .home-help-card {
    padding: 40px 20px !important;
    border-left-width: 6px !important;
    border-radius: 30px !important;
  }
  .home-help-item { 
    padding: 18px !important; 
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
  .home-help-ico { width: 50px !important; height: 50px !important; margin-right: 15px !important; }
  .home-help-value { font-size: 16px !important; }
}

.home-help-item:hover .home-help-go i {
  opacity: 1 !important;
  transform: translateX(5px) !important;
}

.home-help-title { 
  color: #1a202c !important; 
  font-weight: 800 !important; 
  font-size: 28px !important;
  margin-bottom: 10px !important;
}

.home-help-subtitle { 
  color: #4a5568 !important; 
  margin-bottom: 30px !important;
}

/* Keep Map slightly adjusted but not inverted for light theme */
#map {
  border-radius: 24px !important;
  border: 1px solid rgba(0,0,0, 0.05) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
  filter: saturate(1.2) contrast(1.05) !important; 
}

/* Footer blending - keep it somewhat dark or standard */
footer, .footer-section {
  background: #11141c !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 60px 0 40px !important;
}
.footer p, body.home-page .footer p {
  line-height: 1.8 !important;
  font-size: 15px !important;
  color: #ffffff !important;
  opacity: 0.98 !important;
}
.footer h5, body.home-page .footer h5 { color: #ffffff !important; margin-bottom: 20px !important; font-size: 18px !important; font-weight: 800 !important; }
.footer strong, body.home-page .footer strong { color: #ffffff !important; font-weight: 800 !important; }
.footer a, body.home-page .footer a { color: #ffffff !important; opacity: 0.9 !important; display: block; margin-bottom: 8px; transition: all 0.3s ease !important; }
.footer a:hover { color: #ff5722 !important; opacity: 1 !important; text-decoration: none !important; transform: translateX(5px); }

.tursab-dvs {
  text-align: left !important;
}

.tursab-badge-img {
  max-width: 200px !important;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  margin: 10px 0;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .tursab-badge-img {
    max-width: 140px !important; /* Smaller on mobile */
    margin: 15px auto !important; /* Center it */
    display: block !important;
  }
}

/* --- GLOBAL TOP BAR VISIBILITY --- */
.top-bar {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #000000 !important; /* Premium Black */
  color: #ffffff !important; /* Premium White */
  border-bottom: 1px solid rgba(255,255,255, 0.1) !important;
  height: 36px !important;
  line-height: 36px !important;
  padding: 0 !important;
}

.top-bar .left-info span, 
.top-bar .right-info span {
  color: #ffffff !important;
}

.top-bar .left-info, .top-bar .right-info {
  display: flex !important;
  align-items: center !important;
}

.top-bar .left-info i {
  color: #25D366 !important; /* WhatsApp Green */
  margin-right: 8px !important;
}

@media (max-width: 768px) {
  .top-bar {
    height: 30px !important;
    line-height: 30px !important;
  }
  .top-bar .container {
    justify-content: center !important;
  }
  .top-bar .right-info {
    display: none !important;
  }
  .top-bar .left-info {
    margin: 0 !important;
  }
  .top-bar .left-info span {
    font-size: 11px !important;
  }
}

.top-bar .tursab-label {
  color: #ff5722 !important; /* Premium Orange */
  font-weight: 800 !important;
}

/* Sticky WhatsApp button (Floating) - Global */
.home-sticky-bar{
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  left: auto !important;
  display: flex !important; /* Show on all screens */
  z-index: 9999 !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  justify-content: flex-end !important;
}
.home-sticky-bar .hsb-btn{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 16px 30px rgba(18, 140, 126, 0.26);
  border: 1px solid rgba(18, 140, 126, 0.30);
}
.home-sticky-bar .hsb-btn--icon{
  width: 58px;
  height: 58px;
  min-height: 58px;
  padding: 0;
  border-radius: 999px;
}
.home-sticky-bar .hsb-btn i{
  font-size: 30px;
  line-height: 1;
}
.home-sticky-bar .hsb-btn span{
  white-space: nowrap;
}
.home-sticky-bar .hsb-btn--whatsapp:hover,
.home-sticky-bar .hsb-btn--whatsapp:focus{
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(18, 140, 126, 0.34);
}

/* ==================================================
   MAP COMPONENT SYMMETRY (MATCH SEARCH CARD)
   ================================================== */
.home-map-card {
  border-radius: 32px !important; /* Match search card radius */
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9), 0 10px 40px rgba(0, 0, 0, 0.4) !important; /* Exact match to search-card-glass shadow */
  border: 1px solid rgba(255, 255, 255, 0.2) !important; /* Subtle glass rim */
  overflow: hidden !important; /* Ensure Google Maps canvas respects border-radius */
  background: rgba(0,0,0,0.55) !important;
}

#map {
  border-radius: 32px !important;
}

/* ==================================================
   DESKTOP SEARCH CARD & MAP SIDE-BY-SIDE LAYOUT
   ================================================== */
@media (min-width: 992px) {
  .home-page .desktop-search-map-layout {
    display: flex !important;
    justify-content: center !important;
    align-items: stretch !important;
    max-width: 1400px !important;
    margin: -80px auto 60px auto !important; /* Adjusted to reveal hero slider text */
    gap: 30px !important;
    padding: 0 20px !important;
    position: relative !important;
    z-index: 10 !important;
  }
  
  /* Reset individual negative margins since the wrapper handles it */
  .home-page .search-card-glass-container {
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 420px !important; /* Fixed ideal width for search card */
    display: flex !important;
    flex-direction: column !important;
  }
  
  .home-page .search-card-glass {
    height: 100% !important; /* Forces the glass card to stretch and match the map height perfectly */
  }
  
  .home-page .home-map-section {
    margin: 0 !important;
    padding: 0 !important;
    flex: 1 !important; /* Map takes all remaining width */
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Ensure bootstrap containers inside don't restrict the flexible width */
  .home-page .search-card-glass-container,
  .home-page .home-map-container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 100% !important;
  }

  /* Ensure map expands perfectly */
  .home-page .home-map-card,
  .home-page #map {
    height: 100% !important;
    min-height: 520px !important;
  }
}

/* ==================================================
   MOBILE HORIZONTAL SCROLL (SERVICES, HOW IT WORKS, FLEET)
   ================================================== */
@media (max-width: 991px) {
  .home-page .service-row .row,
  .home-page .how-it-works .row,
  .home-page .fleet-scroll-container,
  .home-page .tours-scroll-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    padding: 20px 25px 40px !important; /* Bleed space */
    margin: 0 -25px !important; /* Counteract padding to bleed to edges */
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none;
    gap: 20px !important;
  }

  /* Quick Routes Grid: Static */
  .home-page .qr-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: visible !important;
  }
  
  .home-page .service-row .row::-webkit-scrollbar,
  .home-page .how-it-works .row::-webkit-scrollbar,
  .home-page .fleet-scroll-container::-webkit-scrollbar,
  .home-page .tours-scroll-container::-webkit-scrollbar,
  .home-page .qr-grid::-webkit-scrollbar,
  .home-page .home-highlights-grid::-webkit-scrollbar {
    display: none;
  }

  /* Make columns act as scrollable slides */
  .home-page .service-col,
  .home-page .how-step,
  .home-page .fleet-scroll-container .vehicle-item,
  .home-page .tour-item,
  .home-page .qr-card-wrapper {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .home-page .qr-card {
    width: 100% !important;
    margin: 0 !important;
    padding: 15px !important;
    text-align: left !important;
    border-radius: 18px !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .home-page .qr-card-badge {
    background: rgba(255, 87, 34, 0.08) !important;
    color: #ff5722 !important;
    padding: 4px 10px !important;
    border-radius: 8px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    display: inline-block !important;
  }

  .home-page .qr-card-title {
    font-size: 16px !important;
    margin: 12px 0 8px !important;
    font-weight: 800 !important;
  }

  .home-page .qr-card-features li {
    font-size: 12px !important;
    margin-bottom: 5px !important;
    color: #718096 !important;
  }

  .home-page .vehicle-item .thumbnail,
  .home-page .tour-item .thumbnail {
    margin: 0 !important;
    height: 100% !important;
    border-radius: 28px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
    background: #fff !important;
  }

  .home-page .vehicle-item .thumbnail img {
    height: 220px !important;
    object-fit: contain !important;
    padding: 20px !important;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  }

  .home-page .vehicle-item .thumbnail h4 {
    font-size: 22px !important;
    margin-top: 15px !important;
  }

  .home-page .vehicle-item .thumbnail p {
    font-size: 14px !important;
    margin-bottom: 20px !important;
  }

  .home-page .fleet-learn-more {
    width: 100% !important;
    padding: 15px !important;
    border-radius: 18px !important;
    font-weight: 800 !important;
  }

  .home-page .treasure-wrapper {
    flex-direction: column-reverse !important; /* Image on top, info below for mobile */
    display: flex !important;
  }

  .home-page .treasure-info {
    padding: 20px !important;
    width: 100% !important;
    border: none !important;
  }

  .home-page .treasure-image {
    width: 100% !important;
  }

  .home-page .treasure-image img {
    height: 250px !important;
    object-fit: cover !important;
    border-radius: 28px 28px 0 0 !important;
  }

  .home-page .treasure-title-block {
    font-size: 20px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  .home-page .treasure-image .btn {
    margin: 15px 20px !important;
    width: calc(100% - 40px) !important;
    padding: 15px !important;
    border-radius: 18px !important;
    font-weight: 800 !important;
  }

  /* Specific mobile enhancement: Make highlights horizontal */
  .home-page .home-highlight {
    flex-direction: row !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 20px !important;
    padding: 20px 24px !important;
    flex: 0 0 90% !important;
    max-width: 90% !important;
  }
  
  .home-page .home-highlight-icon {
    margin: 0 !important;
  }
}

/* Premium Orange Button (Hemen Teklif Al Style) */
.home-page .btn-premium-orange,
.home-page .qr-go-search {
  background: #ffb300 !important; /* Amber Orange to match Hemen Teklif Al */
  color: #1a202c !important; /* Black/Deep Slate text for high contrast */
  border: none !important;
  border-radius: 99px !important; /* Perfect Pill */
  height: 54px !important;
  padding: 0 30px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  box-shadow: 0 10px 30px rgba(255, 179, 0, 0.3) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  letter-spacing: 0.5px !important;
  margin-top: 20px !important;
}

.home-page .btn-premium-orange:hover,
.home-page .qr-go-search:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 25px 50px rgba(255, 87, 34, 0.4) !important;
  color: #000 !important;
}

.home-page .btn-premium-orange i,
.home-page .qr-go-search i {
  font-size: 20px !important;
  transition: transform 0.3s !important;
}

.home-page .btn-premium-orange:hover i,
.home-page .qr-go-search:hover i {
  transform: translateX(5px) !important;
}



/* ==================================================
   MOBILE FOOTER GRID FIX (MATCH DESKTOP FEEL)
   ================================================== */
@media (max-width: 768px) {
  .footer .container > .row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
  }
  .footer .col-sm-4.col-xs-12,
  .footer .col-sm-2.col-xs-6,
  .footer .col-sm-4.col-xs-12,
  .footer .col-sm-2.col-xs-6 {
    padding: 15px !important;
    text-align: left !important;
  }
  .footer .col-xs-6 {
    width: 50% !important;
    float: left !important;
  }
  .footer .col-xs-12 {
    width: 100% !important;
    float: left !important;
  }
  .footer h5 {
    margin-top: 10px !important;
    margin-bottom: 15px !important;
    font-size: 16px !important;
  }
  .footer .store-badges {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .footer .newsletter-form {
    margin-top: 10px !important;
  }
}

/* =========================================================================
   NEW "HOW IT WORKS" PREMIUM STATIC GRID
   ========================================================================= */
.how-it-works-new {
  padding: 50px 0;
  background: #fdfdfd;
  position: relative;
  overflow: hidden;
}

.how-header {
  margin-bottom: 60px;
}

.how-title-main {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 15px;
}

.how-title-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff5722, #ff8a65);
  margin: 0 auto;
  border-radius: 2px;
}

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

.how-item-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  padding: 40px 30px;
  border-radius: 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}

.how-item-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  border-color: rgba(255, 87, 34, 0.15);
}

.how-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(255, 87, 34, 0.05);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  transition: all 0.4s ease;
}

.how-item-card:hover .how-icon-box {
  background: #ff5722;
  transform: scale(1.1);
}

.how-icon-box i {
  font-size: 32px;
  color: #ff5722;
  transition: all 0.4s ease;
}

.how-item-card:hover .how-icon-box i {
  color: #ffffff;
}

.how-step-num {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: #1a202c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.how-text-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 15px;
}

.how-text-box p {
  font-size: 15px;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Overrides to ensure STATIC layout */
@media (max-width: 1024px) {
  .how-grid-static {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .how-it-works-new {
    padding: 60px 0;
  }
  .how-grid-static {
    grid-template-columns: 1fr;
    gap: 20px;
    /* Force vertical stack, no scroll */
    display: flex !important;
    flex-direction: column !important;
    overflow-x: visible !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .how-item-card {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
    padding: 30px 20px;
  }
  .how-title-main {
    font-size: 32px;
  }
}

/* =========================================================================
   GOOGLE MAPS AUTOCOMPLETE ENHANCEMENTS
   ========================================================================= */
.pac-container {
  border-radius: 24px !important;
  border: 1px solid rgba(0,0,0,0.06) !important;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18) !important;
  font-family: 'Inter', sans-serif !important;
  margin-top: 8px !important;
  z-index: 999999 !important;
  padding: 10px 0 !important;
  background-color: #ffffff !important;
}

.pac-item {
  padding: 15px 20px !important;
  line-height: 1.4 !important;
  border-top: 1px solid rgba(0,0,0,0.03) !important;
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
  transition: background 0.2s ease;
}

.pac-item:first-child {
  border-top: none !important;
}

.pac-icon {
  margin-top: 2px !important;
  margin-right: 12px !important;
  opacity: 0.7;
}

.pac-item-query {
  font-size: 16px !important;
  color: #1a202c !important;
  padding-right: 6px !important;
  font-weight: 500 !important;
}

.pac-item span:not(.pac-item-query) {
  font-size: 13px !important;
  color: #718096 !important;
}

.pac-matched {
  font-weight: 800 !important;
  color: #ff5722 !important;
}

.pac-item:hover {
  background-color: #fff5f2 !important;
}

@media (max-width: 768px) {
  .pac-container {
    border-radius: 20px !important;
  }
  .pac-item {
    padding: 18px 20px !important; /* Extra large touch target for mobile */
  }
  .pac-item-query {
    font-size: 17px !important;
  }
}

/* =========================================================================
   HIGHLIGHTS SECTION PREMIUM STATIC GRID
   ========================================================================= */
.highlights-section-premium {
  padding: 50px 0;
  background: linear-gradient(180deg, #fdfdfd 0%, #f4f7f9 100%);
  position: relative;
}

.highlights-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 15px;
}

.highlights-sub-title {
  font-size: 18px;
  color: #718096;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.highlights-grid-static {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.highlight-premium-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.03);
  border-radius: 28px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
  border-color: rgba(255, 87, 34, 0.1);
}

.highlight-icon-outer {
  width: 90px;
  height: 90px;
  background: rgba(255, 87, 34, 0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.highlight-premium-card:hover .highlight-icon-outer {
  background: #ff5722;
  transform: rotate(10deg);
}

.highlight-icon-inner {
  width: 66px;
  height: 66px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
}

.highlight-premium-card:hover .highlight-icon-inner {
  background: #fff5f2;
}

.highlight-icon-inner i {
  font-size: 26px;
  color: #ff5722;
}

.highlight-card-title {
  font-size: 19px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.btn-premium-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a202c;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-premium-cta:hover {
  background: #ff5722 !important;
  color: #fff !important;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 87, 34, 0.25);
}

/* Tablet / Mobile Overrides for STATIC grid */
@media (max-width: 1024px) {
  .highlights-grid-static {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .highlights-grid-static {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .highlights-section-premium {
    padding: 40px 0;
  }
  .highlights-main-title {
    font-size: 32px;
  }
  .highlights-grid-static {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    display: grid !important;
    width: 100% !important;
    margin: 0 auto 30px !important;
  }
}

@media (max-width: 480px) {
  .highlights-grid-static {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .highlight-premium-card {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
    padding: 20px 15px;
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px;
    border-radius: 20px;
  }
  .highlight-icon-outer {
    margin-bottom: 10px !important;
    width: 60px !important;
    height: 60px !important;
  }
  .highlight-icon-inner {
    width: 44px !important;
    height: 44px !important;
  }
  .highlight-icon-inner i {
    font-size: 18px !important;
  }
  .highlight-card-title {
    font-size: 14px !important;
    line-height: 1.2;
  }
}

/* =========================================================================
   FLEET SECTION PREMIUM STATIC GRID
   ========================================================================= */
.fleet-section-new {
  padding: 50px 0;
  background: #ffffff;
}

.fleet-title-main {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 15px;
}

.fleet-title-line {
  width: 80px;
  height: 4px;
  background: #ff5722;
  margin: 0 auto 50px;
  border-radius: 2px;
}

.fleet-grid-static {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fleet-item-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
}

.fleet-item-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: rgba(255, 87, 34, 0.1);
}

.fleet-img-box {
  background: radial-gradient(circle at center, #ffffff 0%, #f4f7f9 100%);
  padding: 30px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.fleet-item-card:hover .fleet-img-box img {
  transform: scale(1.1);
}

.fleet-info-box {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-info-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 15px;
}

.fleet-info-box p {
  font-size: 15px;
  color: #718096;
  line-height: 1.6;
  margin-bottom: 25px;
}

.fleet-card-footer {
  margin-top: auto;
}

.btn-fleet-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff5722;
  color: #ffffff !important;
  padding: 14px 24px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.btn-fleet-reserve:hover {
  background: #000000 !important;
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .fleet-grid-static {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .fleet-title-main {
    font-size: 32px;
  }
  .fleet-grid-static {
    grid-template-columns: 1fr;
    gap: 20px;
    display: block !important;
    overflow-x: visible !important;
  }
  .fleet-item-card {
    margin-bottom: 20px;
    width: 100% !important;
    max-width: none !important;
  }
}

/* =========================================================================
   TOURS SECTION PREMIUM STATIC GRID
   ========================================================================= */
.tours-section-new {
  padding: 50px 0;
  background: #fdfdfd;
}

.tours-title-main {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 15px;
}

.tours-title-line {
  width: 80px;
  height: 4px;
  background: #ff5722;
  margin: 0 auto 50px;
  border-radius: 2px;
}

.tours-grid-static {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tour-premium-card {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tour-premium-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.tour-img-box {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.tour-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.tour-premium-card:hover .tour-img-box img {
  transform: scale(1.15);
}

.tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
}

.tour-premium-card:hover .tour-overlay {
  opacity: 1;
}

.btn-tour-view {
  background: #ff5722;
  color: #fff;
  padding: 12px 24px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 14px;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.tour-premium-card:hover .btn-tour-view {
  transform: translateY(0);
}

.tour-info-box {
  padding: 30px;
}

.tour-info-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 12px;
}

.tour-info-box p {
  font-size: 14px;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .tours-grid-static {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tours-title-main {
    font-size: 32px;
  }
  .tours-grid-static {
    grid-template-columns: 1fr;
    gap: 20px;
    display: block !important;
    overflow-x: visible !important;
  }
  .tour-premium-card {
    margin-bottom: 20px;
    width: 100% !important;
    max-width: none !important;
  }
  .tour-img-box {
    height: 200px;
  }
}

/* =========================================================================
   FLEET MARQUEE & HOW IT WORKS BEAUTIFICATION (Hızlı Destek Style)
   ========================================================================= */

/* --- Fleet Marquee --- */
.fleet-section-marquee {
  padding: 50px 0;
  background: #ffffff;
  overflow: hidden;
}

.fleet-marquee-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 5px;
}

.fleet-title-accent {
  width: 60px;
  height: 4px;
  background: #ff5722;
  margin: 15px auto 0;
  border-radius: 2px;
}

.fleet-marquee-container {
  width: 100%;
  padding: 40px 0;
}

.fleet-marquee-track {
  display: flex;
  width: max-content;
  animation: fleet-scroll 40s linear infinite;
}

.fleet-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes fleet-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-350px * 5 - 30px * 5)); } /* width * count + gap * count */
}

.fleet-marquee-item {
  width: 350px;
  margin-right: 30px;
  flex-shrink: 0;
}

.fleet-card-premium {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fleet-card-premium:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 87, 34, 0.2);
  box-shadow: 0 30px 60px rgba(255, 87, 34, 0.1);
}

.fleet-card-img {
  height: 180px;
  background: radial-gradient(circle at center, #ffffff 0%, #f7f9fc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.fleet-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.fleet-card-premium:hover .fleet-card-img img {
  transform: scale(1.1);
}

.fleet-card-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-card-label {
  color: #718096;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.fleet-card-title {
  font-size: 20px;
  font-weight: 900;
  color: #1a202c;
  margin-bottom: 12px;
}

.fleet-card-desc {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.8;
}

.fleet-card-action {
  margin-top: auto;
}

.btn-fleet-go {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff5722;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-fleet-go:hover {
  color: #1a202c;
  transform: translateX(5px);
}

/* --- How It Works Beautified (Horizontal Style) --- */
.how-it-works-beautified {
  padding: 50px 0;
  background: #fdfdfd;
}

.how-title-main {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 5px;
}

.how-title-line {
  width: 60px;
  height: 4px;
  background: #ff5722;
  margin: 0 auto 15px;
  border-radius: 2px;
}

.how-subtitle {
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.how-list-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 50px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.how-help-style-card {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.04) !important;
  border-radius: 24px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02) !important;
  color: #1a202c !important;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
  display: flex !important;
  align-items: center !important;
  padding: 24px !important;
  text-decoration: none !important;
  cursor: default;
}

.how-help-style-card:hover {
  transform: translateY(-5px) scale(1.02) !important;
  border-color: rgba(255, 87, 34, 0.2) !important;
  box-shadow: 0 20px 40px rgba(255, 87, 34, 0.1) !important;
}

.how-help-style-ico {
  width: 60px !important;
  height: 60px !important;
  background: linear-gradient(135deg, #fcfdfe 0%, #f7fafc 100%) !important;
  border: 1px solid rgba(0,0,0,0.02) !important;
  border-radius: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 20px !important;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02) !important;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.how-help-style-card:hover .how-help-style-ico {
  background: #ff5722 !important;
  transform: rotate(-8deg) scale(1.1) !important;
  box-shadow: 0 10px 20px rgba(255, 87, 34, 0.2) !important;
}

.how-help-style-card:hover .how-help-style-ico i {
  color: #ffffff !important;
}

.how-help-style-ico i {
  color: #ff5722 !important;
  font-size: 26px !important;
  transition: all 0.3s ease !important;
}

.how-help-style-body {
  flex: 1;
  text-align: left;
}

.how-help-style-label { 
  color: #718096 !important; 
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: block !important;
  margin-bottom: 2px !important;
}

.how-help-style-value { 
  color: #1a202c !important; 
  font-weight: 900 !important; 
  font-size: 18px !important;
  margin-bottom: 5px;
}

.how-help-style-desc {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.4;
  margin: 0;
  opacity: 0.8;
}

.how-help-style-go i { 
  color: #ff5722 !important; 
  opacity: 0.3 !important;
  transition: all 0.3s !important;
  font-size: 20px !important;
}

.how-help-style-card:hover .how-help-style-go i {
  opacity: 1 !important;
  transform: translateX(5px) !important;
}

@media (max-width: 900px) {
  .how-list-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .how-help-style-card { padding: 18px !important; }
  .how-help-style-ico { width: 50px !important; height: 50px !important; margin-right: 15px !important; }
  .how-help-style-value { font-size: 16px !important; }
}

/* =========================================================================
   HOME — MANAGE BOOKING STRIP
   ========================================================================= */
.booking-manage-strip {
  padding: 30px 0;
  background: #ffffff;
}

.booking-manage-card {
  background: #fdfdfd;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 32px;
  padding: 35px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.booking-manage-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.booking-manage-info {
  position: relative;
  z-index: 2;
}

.booking-manage-info h3 {
  color: #1a202c;
  font-weight: 800;
  font-size: 26px;
  margin: 0 0 8px 0;
}

.booking-manage-info p {
  color: #4a5568;
  font-size: 15px;
  margin: 0;
  font-weight: 500;
}

.btn-manage-booking {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8800 100%);
  color: #fff;
  padding: 15px 35px;
  border-radius: 99px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
  z-index: 2;
}

.btn-manage-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 107, 0, 0.4);
  color: #fff;
}

@media (max-width: 991px) {
  .booking-manage-card {
    padding: 30px 40px;
  }
}

@media (max-width: 768px) {
  .booking-manage-strip { padding: 20px 0; }
  .booking-manage-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
    border-radius: 40px;
  }
  .booking-manage-info h3 { font-size: 22px; }
  .btn-manage-booking { width: 100%; justify-content: center; display: inline-flex; }
}
/* =========================================================================
   TOURS MARQUEE (SIMILAR TO FLEET)
   ========================================================================= */
.tours-section-marquee {
  padding: 50px 0;
  background: #fff;
}

.tours-marquee-container {
  width: 100%;
  padding: 20px 0;
}

.tours-marquee-track {
  display: flex;
  width: max-content;
  animation: tours-scroll 45s linear infinite;
  gap: 30px;
  padding: 10px;
}

.tours-marquee-track:hover {
  animation-play-state: paused;
}

.tours-marquee-item {
  width: 400px;
  flex: 0 0 auto;
}

@keyframes tours-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-400px * 6 - 30px * 6)); } /* cardWidth * count + gap * count */
}

@media (max-width: 768px) {
  .tours-marquee-item {
    width: 300px;
  }
  @keyframes tours-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 6 - 30px * 6)); }
  }
}
