/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f5f7fb;
  color: #222;
  scroll-behavior: smooth;
}

/* ===== TOP BAR ===== */
.top-contact-bar {
  background: linear-gradient(90deg,#007bff,#00c6ff);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.top-contact-bar a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
}

.brand-name {
  font-size: 20px;
  font-weight: bold;
}

/* NAV DESKTOP */
nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  .logo-container {
    margin-bottom: 8px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  nav a {
    font-size: 14px;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* Background images */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background: url('bg1.jpeg') no-repeat center center/cover;
}
/* Dark overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* Text above images */
.hero h1,
.hero p,
.cta-buttons {
  position: relative;
  z-index: 3;
}


/* ===== BUTTONS ===== */
.cta-buttons a {
  padding: 14px 30px;
  border-radius: 40px;
  margin: 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp { background: #25D366; }
.call { background: #007bff; }

/* ===== SECTION ===== */
section {
  padding: 70px 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

/* ===== SERVICES ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

/* ===== PACKAGES ===== */
.packages-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 20px;
  scroll-snap-type: x mandatory;
}

.packages-scroll::-webkit-scrollbar {
  display: none;
}

.car-card {
  min-width: 340px;   /* 🔥 increased size */
  scroll-snap-align: start;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.car-card:hover {
  transform: translateY(-10px);
}

/* 🔥 BIGGER IMAGE FIX */
.car-card img {
  width: 100%;
  height: 260px;   /* 🔥 increased from 220 */
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.car-card h3 {
  padding: 12px;
}

.car-card p {
  padding: 0 12px;
}

.enquire-btn {
  display: block;
  margin: 15px;
  padding: 12px;
  text-align: center;
  background: #25D366;
  color: white;
  border-radius: 30px;
  text-decoration: none;
}

/* ===== TOURIST ===== */
.points-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
}

.point {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.point img {
  width: 100%;
  height: 220px;   /* 🔥 increased */
  object-fit: cover;
}

.point p {
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

.reviews-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
}

.reviews-container::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 300px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.review-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ===== FORM ===== */
.container-form {
  max-width: 450px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.container-form input,
.container-form button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.container-form button {
  background: #007bff;
  color: white;
  border: none;
}

/* ===== SEO ===== */
.seo-section {
  background: linear-gradient(135deg,#007bff,#00c6ff);
  color: white;
  border-radius: 20px;
  text-align: center;
  padding: 50px;
  max-width: 1100px;
  margin: auto;
}

/* ===== WHY US ===== */
.why-us ul {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 20px;
  list-style: none;
}

.why-us li {
  background: white;
  padding: 22px;
  border-radius: 15px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== TRUST ===== */
.trust-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.trust-grid div {
  background: white;
  padding: 25px;
  border-radius: 15px;
}

/* ===== FLOAT BUTTONS ===== */
.float-btn {
  position: fixed;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-btn { bottom: 90px; background: #28a745; }
.whatsapp-btn { bottom: 20px; background: #25D366; }

.float-btn img { width: 30px; }

/* ===== MOBILE FIX ===== */
@media(max-width:768px){

  header {
    position: relative;  /* 🔥 FIX FREEZE */
    flex-direction: column;
    padding: 15px;
  }

  .top-contact-bar {
    display: none;   /* 🔥 cleaner mobile */
  }

  .hero h1 {
    font-size: 28px;
  }

  .car-card {
    min-width: 280px;
  }

  .car-card img {
    height: 240px;
  }

}
/* ===== MOBILE PERFECT FIX ===== */
@media(max-width:768px){

  /* HEADER FIX */
  header {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .brand-name {
    font-size: 22px;
    margin: 5px 0;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 5px 10px;
    font-size: 14px;
  }

  /* HERO TEXT FIX */
  .hero h1 {
    font-size: 26px;
    padding: 0 10px;
  }

  .hero p {
    font-size: 14px;
  }

  /* BUTTON FIX (VERY IMPORTANT) */
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons a {
    width: 80%;
    text-align: center;
    margin: 8px 0;
    padding: 12px;
    font-size: 15px;
  }

  /* FLOAT BUTTON FIX */
  .float-btn {
    width: 50px;
    height: 50px;
  }

  .call-btn {
    bottom: 80px;
  }

  .whatsapp-btn {
    bottom: 20px;
  }

}
/* ===== PREMIUM MODAL FIX ===== */
#packageModal {
  display: none; /* 🔥 THIS FIXES AUTO OPEN ISSUE */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* IMAGE PERFECT FIT */
.modal-content {
  max-width: 90%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s ease;
}

/* CLOSE BUTTON */
.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

/* ANIMATION */
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===== MOBILE OPTIMIZATION ===== */
@media(max-width:768px){
  
  .modal-content {
    max-width: 95%;
    max-height: 85vh;
    border-radius: 12px;
  }

  .close-modal {
    font-size: 28px;
    top: 15px;
    right: 15px;
  }
}
.package-modal {
  backdrop-filter: blur(6px);
}
.modal-box {
  text-align: center;
}

#modalBtn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #25D366;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}
.dev-credit {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
  color: #888;
  opacity: 0.7;
}

.dev-credit a {
  color: #888;
  text-decoration: none;
}

.dev-credit:hover {
  opacity: 1;
  color: #555;
}
.popup {
  display: none; /* THIS IS IMPORTANT */
}
/* Improve text readability */
.card p {
  line-height: 1.7;
  margin-bottom: 10px;
  color: #555;
}

/* Spacing between lines */
.card {
  padding: 25px;
}

.card h3 {
  margin-bottom: 12px;
}

/* Make bullets/icons look clean */
.card p br {
  margin-bottom: 8px;
}

/* Better spacing for all sections */
section p {
  line-height: 1.7;
}
.card p {
  font-size: 15px;
  letter-spacing: 0.3px;
}
.hero {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 90%;
  margin: auto;
}

.hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  .cta-buttons a {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero h1 {
  margin-top: -10px;
}

.hero p {
  margin-top: -5px;
}

.cta-buttons {
  margin-top: 20px; /* 👈 pushes buttons slightly down */
}
@media (max-width: 768px) {
  .hero h1 {
    margin-top: -5px;
  }

  .cta-buttons {
    margin-top: 25px;
  }
}
.review-btn-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.review-btn, .insta-btn, .youtube-btn {
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.review-btn {
  background: #4285F4;
  color: white;
}

.insta-btn {
  background: #E1306C;
  color: white;
}

.youtube-btn {
  background: #FF0000;
  color: white;
}

.review-btn:hover,
.insta-btn:hover,
.youtube-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.location-btn {
  background: #000;
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.location-btn:hover {
  background: #333;
  transform: translateY(-3px);
}
/* COMMON FLOAT BUTTON */
.float-btn {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.float-btn img {
  width: 26px;
}

/* CALL BUTTON */
.call-btn {
  bottom: 150px;
  background: #000;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  bottom: 80px;
  background: #25D366;
}

/* LOCATION BUTTON (NEW) */
.location-btn {
  bottom: 220px; /* 👈 above call button */
  background: #ff4d4d;
}

/* HOVER EFFECT */
.float-btn:hover {
  transform: scale(1.1);
}
.hero-content {
  background: rgba(0, 0, 0, 0.45); /* dark glass */
  padding: 20px 25px;
  border-radius: 15px;
  backdrop-filter: blur(6px);
  max-width: 90%;
}
.hero h1 {
  font-size: 38px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  margin-top: 5px;
}
@media (max-width: 768px) {
  .hero-content {
    padding: 15px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }
}
/* Hide initially */
.float-btn {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.4s ease;
}

/* Show when active */
.float-btn.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-btn {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.logo {
  height: 55px; /* desktop */
  width: auto;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .logo {
    height: 45px;
  }
}
.logo {
  height: 90px;
}
header {
  padding: 10px 20px;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}