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

/* DARK BACKGROUND */
body {
  background-image: url(./taxi.avif);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  position: relative;
}

/* OVERLAY */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.70);
  z-index: -1;
}

/* HEADER */
header {
  text-align: center;
  padding: 1.5rem 1rem;
  color: #ffcc00;
  font-size: 2.3rem;
  font-weight: 900;
}

/* TRAVEL MENU */
.travel-info {
  background: rgba(0,0,0,0.55);
  padding: 1.5rem;
  border-radius: 12px;
}

.travel-info li {
  background: rgba(255,255,255,0.2);
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  transition: 0.3s;
}

.travel-info li:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.05);
}

/* TRAVEL TEXT */
.travel-message {
  text-align: center;
  padding: 1rem;
  background: transparent;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.5);
}
.travel-message p {
  font-size: 40px;
}

/* FIXED WORDS */
.fixed-words {
  margin-top: 1.5rem;
  text-align: center;
}

.fixed-words h2 {
  font-size: 40px;
  font-weight: 900;
  color: #ffcc00;
  margin-bottom: 10px;
}

/* PAGE WIDTH */
main.content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* IMAGE GRID 2×2 */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin: 20px auto;
}
.car-desc {
  font-size: 2rem;
}

.grid-img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .3s ease;
}

/* VIDEO */
.responsive-video {
  width: 100%;
  border-radius: 12px;
  margin: 1rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* BOOK NOW */
.big-book-btn {
  width: 50%;
  margin: 2rem auto;
  padding: 15px;
  font-size: 22px;
  font-weight: 900;
  background: #ffcc00;
  color: black;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  display: block;
}

.big-book-btn:hover {
  background: white;
}

/* BOOKING FORM */
.booking-form {
  background: rgba(0,0,0,0.6);
  padding: 2rem;
  border-radius: 20px;
}

input {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
}

button {
  width: 100%;
  padding: 12px;
  background: #0033ff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  margin-bottom: 10px;
}
button:hover {
  background: #ffcc00;
  color: black;
  transform: scale(1.03);
}
.book {
  text-align: center;
  font-family: sans-serif;
  font-size: 2rem;
  color: #ffcc00;
  font-weight: 2.5rem;
}

/* MORE IMAGES (hidden) */
#moreImages {
  display: none;
  margin-top: 1rem;
}

/* ----------- UNIVERSAL ZOOM SYSTEM (MATCHES YOUR JS) ----------- */

/* All zoomable images */
.section-img,
.gallery img {
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Zoomed (enlarged) */
.zoomed {
  transform: scale(2.2) !important;
  z-index: 9999 !important;
  position: relative;
  cursor: zoom-out;
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

/* Close button for zoom */
.zoom-close-btn {
  position: absolute;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 20px;
  z-index: 10000;
  display: none;
}

/* Prevent sideways scroll */
html, body {
  overflow-x: hidden;
}

/* MORE INFO GALLERY — 3×3 */
.gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 10px;
}

.gallery img {
  width: 100%;
  height:100%;
  object-fit: cover;
  border-radius: 8px;
}

/* PHONE FIX — 1 column */
@media (max-width: 600px) {
  .image-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}
.zoom-controls {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 99999;
}

.zoom-btn {
  font-size: 22px;
  padding: 8px 14px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.65);
  color: white;
  cursor: pointer;
}

.zoom-btn:active {
  transform: scale(0.9);
}
