/* ======================================================
   PERFECT MOBILE VIEW – TRUST WHEEL HOLIDAY
   Target: Phones & small tablets
   ====================================================== */

@media (max-width: 768px) {

  /* ---------- GLOBAL ---------- */
* {
  box-sizing: border-box;
}

  body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* ---------- NAVBAR ---------- */
  .navbar {
    width: 100%;
    padding: 12px 16px;
    height: auto;
    right: 0;
    left: 0;
  }

  .tab {
    display: none;
  }

  #menu-icon {
    position: relative;
    margin-left: auto;
    display: block;
    color: #fff;
    font-size: 26px;
  }

  .logo {
    position: relative;
    left: 0;
    font-size: 18px;
    line-height: normal;
    white-space: nowrap;
  }
 .logo span {
    font-size: 16px;
  }


  /* ---------- MOBILE MENU ---------- */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #0f172af2;
    z-index: 9999;
    padding-top: 98px;
    text-align: center;
    height:fit-content
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu-content a {
    display: block;
    padding: 16px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .mobile-menu-content a:hover {
    background: rgba(255,255,255,0.1);
  }

  .mobile-menu .btn-primary {
    width: 30%;
    margin: 25px auto;
    height: 50px;
    display: block;
    background-color: #ff6b6b;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.5);

  }

  /* ---------- HERO ---------- */
  .hero-content {
    padding: 10px 18px 40px;
    text-align: center;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-content h1 span {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons button {
    width: 100%;
  }

  /* ---------- DESTINATIONS ---------- */
  .destinations {
    padding: 60px 16px;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .destination-image {
    height: 230px;
  }

  /* ---------- SERVICES ---------- */
  .services {
    padding: 50px 15px;
    overflow: hidden;
  }
  
  .services-wrapper {
    overflow: visible;

  }
/* Disable horizontal carousel on mobile */
  .services-carousel {
    display: flex;
    flex-direction: column;
    gap: 25px;
    transform: none !important;
  }


  .service-card {
    width: 100%;
    height: auto;
    min-height: auto;
    border-radius: 16px;
  }
  
/* Service Image */
  .service-card jpg {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  
/* Fix Book Now button */
  .service-card .btn-serv {
    position: static;
    margin: 12px auto;
    display: block;
  }


 /*Text spacing */
  .service-card h3 {
    margin-top: 10px;
    font-size: 19px;
  }
  
.service-card p {
    font-size: 14px;
    padding: 0 16px;
  }

  
.service-card h4 {
    margin-left: 16px;
    font-size: 15px;
  }


.service-card ul {
    padding: 0 50px 20px;
  }

  .service-card ul li {
    margin-left: 0;
    font-size: 14px;
  }


  .service-nav {
    display: none;
  }

  
/* =====================================================
     ✅ VEHICLE SERVICES — FIXED PROPERLY
     ===================================================== */

  .vehicle-services {
    padding: 50px 16px;
    background-attachment: scroll !important; /* ✅ FIX */
  }

  .vehicle-row,
  .vehicle-row.reverse {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }

  .vehicle-image,
  .vehicle-row.reverse .vehicle-image {
    margin: 0;
    text-align: center;
  }

  .vehicle-image img,
  .vehicle-row.reverse .vehicle-image img {
    width: 100%;
    height: auto;
    border: none !important; /* ✅ REMOVE DESKTOP BORDER TRICK */
    border-radius: 10px;
  }

  .vehicle-content,
  .vehicle-row.reverse .vehicle-content {
    text-align: center;
  }

  .vehicle-content p {
    width: 100%;
    font-size: 14px;
  }

  .vehicle-row .car-details,
  .vehicle-row.reverse .car-details {
    padding-left: 0;
    left: 0;
    text-align: left;
  }

  .btn-car,
  .btn-car-r {
    position: static !important;
    left: auto !important;
    right: auto !important;
    margin: 12px auto !important;
    display: block;
    text-align: center;

  }


  /* ---------- ABOUT ---------- */
  .about-main {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
  }

  /* ---------- REVIEWS ---------- */
  .reviews-section {
    flex-direction: column;
  }

  /* ---------- FOOTER ---------- */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  /* ---------- FIXED ENQUIRY (HIDE) ---------- */
  #enqFixed {
    display: none;
  }

  /* ---------- BOOKING POPUPS ---------- */
  #bookingPopup,
  .booking-form,
  .enq-box {
    width: 95%;
    height: auto;
    padding: 20px;
  }

  .submit-btn {
    width: 100%;
    position: static;
  }
}