/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: #f4f8fb;
  color: #333;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(3, 30, 71, 0.95);
  color: #fff;
  position: fixed; /* Changed to fixed for reliable mobile sticking */
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;

  /* Glass effect */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar .logo {
  font-size: 22px;
  font-weight: 600;
}

.navbar nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #ffc107;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 2001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hide desktop nav by default */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80vw;
    max-width: 350px;
    background: rgba(3, 30, 71, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 20px 20px;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 3001;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  /* Desktop nav hidden on mobile */
  .navbar > nav {
    display: none;
  }
  
  body.menu-open {
    padding-top: 80px;
    overflow: hidden;
  }
  
  .navbar {
    padding: 1rem;
    z-index: 3000;
  }
  
  .mobile-menu-toggle {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
  }
  
  /* Menu links - IMMEDIATE VISIBILITY */
  .nav-menu > a {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    font-size: 1.2rem;
    padding: 1.2rem 2rem;
    color: #fff !important;
    text-decoration: none;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    margin: 0;
  }
  
  /* Phone button - immediate visibility */
  .nav-menu .nav-phone {
    margin-top: 1.5rem !important;
    background: rgba(255,255,255,0.15) !important;
    border-radius: 25px !important;
    padding: 1rem 2rem !important;
    opacity: 1 !important;
    transform: none !important;
    position: relative !important;
    margin-left: 0 !important;
    display: block !important;
    width: auto;
  }
  
  /* Stagger animation for links */
  .nav-menu.active a:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.active a:nth-child(2) { transition-delay: 0.15s; }
  .nav-menu.active a:nth-child(3) { transition-delay: 0.2s; }
  .nav-menu.active a:nth-child(4) { transition-delay: 0.25s; }
  .nav-menu.active a:nth-child(5) { transition-delay: 0.3s; }
  .nav-menu.active a:nth-child(6) { transition-delay: 0.35s; }
  
  /* Phone button in menu */
  .nav-menu .nav-phone {
    margin-top: 1rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease 0.4s;
  }
  
  .nav-menu.active .nav-phone {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Hamburger X animation */
  .mobile-menu-toggle span:nth-child(1) {
    transform-origin: left center;
  }
  .mobile-menu-toggle span:nth-child(3) {
    transform-origin: left center;
  }
  
  .nav-menu.active ~ .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-menu.active ~ .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-menu.active ~ .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  /* Overlay */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  
  body.menu-open.nav-menu.active::before {
    opacity: 1;
    visibility: visible;
  }


}


/* PHONE NUMBER STYLE */
.nav-phone {
  margin-left: 30px;
  padding: 6px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fffafa, #fcfcfc);
  color: #000000 !important;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

/* ICON */
.nav-phone i {
  font-size: 12px;
}

/* HOVER EFFECT */
.nav-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 115, 0, 0.5);
  color: #000000 !important;
}
/* HERO SECTION */
.hero {
  height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('../images/cars.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero button {
  padding: 12px 25px;
  background: #ffc107;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.hero button:hover {
  background: #e0a800;
}

/* SECTION */

/* Main About Section Background */
.about-section {
  position: relative;
  padding: 80px 10%;
  background: #c3dfff; /* soft, professional light blue-gray */
  overflow: hidden;
  border-radius: 20px; /* rounded edges for modern feel */
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
/* Container inside About Section */
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease;
  z-index: 1;
}
/* Image on the left */
.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.8s ease;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.about-image:hover {
  transform: scale(1.03);
}

/* Content on the right */
.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0d3b66;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

.about-content ul {
  list-style: none;
  padding: 0;
}

.about-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: #0d3b66;
}

.about-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0d6efd; /* subtle accent */
}

/* Scroll-in animation */
.about-section.scroll-in .about-container {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content ul li {
    text-align: center;
  }
}

/* AI-style background shapes */
.bg-shape {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
  animation: float 20s infinite linear;
}

.bg-shape.circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #0d6efd;
  top: 20%;
  left: 5%;
  animation-duration: 25s;
}

.bg-shape.triangle {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid #6c757d;
  top: 60%;
  right: 10%;
  animation-duration: 30s;
}

.bg-shape.hexagon {
  width: 100px;
  height: 55px;
  background: #0d3b66;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  bottom: 10%;
  left: 30%;
  animation-duration: 35s;
}

@keyframes float {
  0% { transform: translateY(0) translateX(0) rotate(0deg); }
  50% { transform: translateY(-30px) translateX(20px) rotate(180deg); }
  100% { transform: translateY(0) translateX(0) rotate(360deg); }
}

/* SERVICES SECTION */
.services-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #ff9a3c, #ffd54f, #4facfe, #00f2fe);
  background-size: 400% 400%;
  animation: vibrantFlow 15s ease infinite;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #1f2937; /* dark text for contrast */
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Gradient animation */
@keyframes vibrantFlow {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
.services-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 10px;
}

.services-section .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* CARD CONTAINER */
.services-section .cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* INDIVIDUAL CARD */
.services-section .card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  width: 250px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.services-section .card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ICON */
.services-section .card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #4f46e5;
  animation: float 3s ease-in-out infinite;
}

/* CARD HEADINGS */
.services-section .card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1b1b1b;
}

/* CARD PARAGRAPH */
.services-section .card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* FLOATING ICON ANIMATION */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-section .cards {
    flex-direction: column;
    align-items: center;
  }
}
/* Section styling remains the same */
#our-trips {
  background: #e1f6ff;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden; /* Important for bubbles */
}

#our-trips h2 {
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.section-subtitle1 {
  font-size: 20px;
  color: #02134e;
  margin-bottom: 50px;
  font-weight: bold;
}

/* Bubbles animation */
.bubbles span {
  position: absolute;
  bottom: -50px;
  width: 20px;
  height: 20px;
  background: rgba(0, 89, 255, 0.3);
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
}

.bubbles span:nth-child(1) { left: 10%; animation-duration: 8s; width: 15px; height: 15px; }
.bubbles span:nth-child(2) { left: 25%; animation-duration: 12s; width: 20px; height: 20px; }
.bubbles span:nth-child(3) { left: 40%; animation-duration: 10s; width: 25px; height: 25px; }
.bubbles span:nth-child(4) { left: 55%; animation-duration: 14s; width: 18px; height: 18px; }
.bubbles span:nth-child(5) { left: 70%; animation-duration: 11s; width: 22px; height: 22px; }
.bubbles span:nth-child(6) { left: 85%; animation-duration: 13s; width: 17px; height: 17px; }
.bubbles span:nth-child(7) { left: 15%; animation-duration: 9s; width: 19px; height: 19px; }
.bubbles span:nth-child(8) { left: 60%; animation-duration: 15s; width: 23px; height: 23px; }

@keyframes rise {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  20% { opacity: 0.5; }
  50% {
    transform: translateY(-400px) rotate(180deg);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-800px) rotate(360deg);
    opacity: 0;
  }
}

/* Trips Grid & Cards stay the same */
.trips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: auto; }
.trip-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; position: relative; z-index: 1; }
.trip-card:hover { transform: translateY(-10px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }
.trip-card img { width: 100%; height: 200px; object-fit: cover; }
.trip-content { padding: 20px; }
.trip-content h3 { font-size: 22px; margin-bottom: 10px; color: #1a1a1a; }
.trip-content p { font-size: 14px; color: #555; margin-bottom: 15px; }
.trip-info { display: flex; justify-content: space-between; font-size: 14px; color: #777; margin-bottom: 15px; }
.trip-info i { color: #ff9407; margin-right: 5px; }
.btn { display: inline-block; background: #ffa600; color: #fff; padding: 10px 20px; border-radius: 50px; text-decoration: none; font-weight: 500; transition: background 0.3s; }
.btn:hover { background: #ff4757; }


/* GALLERY */
#travel-gallery {
  background: #b9d3df;
  padding: 80px 60px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
/* Animated Gradient Background for Travel Gallery */
#travel-gallery {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #a6ccdd, #cafbff, #fcd1d1);
  background-size: 600% 600%;
  animation: gradientShift 20s ease infinite;
}

/* Floating soft circles / travel vibe particles */
#travel-gallery::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 20%, transparent 20%);
  background-size: 50px 50px;
  animation: floatParticles 30s linear infinite;
  z-index: 0;
}

/* Gradient shift animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating particles animation */
@keyframes floatParticles {
  0% { transform: translate(0,0); }
  50% { transform: translate(50px, 20px); }
  100% { transform: translate(0,0); }
}

/* Ensure gallery content stays above animation */
#travel-gallery .container {
  position: relative;
  z-index: 1;
}
#travel-gallery h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

#travel-gallery .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* Grid Layout - 4 per row */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  justify-content: center;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* Lightbox */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

#lightbox img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 10px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Scroll Animation */
.gallery-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


/*feedback*/

/* Testimonials Section */
#testimonials {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f3f7, #e0e8f7);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

#testimonials h2 {
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

#testimonials .section-subtitle {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  position: relative;
  z-index: 2; /* Keep cards above floating shapes */
}

.testimonial-card {
  background: rgba(255,255,255,0.95);
  width: 280px;
  padding: 25px 15px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12);
}

.client-photo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid #ff7b00;
  transition: transform 0.3s ease;
}

.client-photo img:hover {
  transform: rotate(-5deg) scale(1.05);
}

.testimonial-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #1a1a1a;
}

.client-location {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}

.client-feedback {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  font-style: italic;
}

/* Fade-in animation for cards */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* AI-style floating background shapes */
.background-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.shape1 {
  width: 150px;
  height: 150px;
  background: #ff7b00;
  top: 10%;
  left: 15%;
  animation-duration: 25s;
}

.shape2 {
  width: 100px;
  height: 100px;
  background: #007bff;
  top: 30%;
  left: 70%;
  animation-duration: 30s;
}

.shape3 {
  width: 120px;
  height: 120px;
  background: #ff3b7f;
  top: 60%;
  left: 20%;
  animation-duration: 35s;
}

.shape4 {
  width: 80px;
  height: 80px;
  background: #00d1ff;
  top: 80%;
  left: 60%;
  animation-duration: 28s;
}

@keyframes float {
  0% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-20px) translateX(15px) scale(1.05); }
  100% { transform: translateY(0) translateX(0) scale(1); }
}
/* CONTACT FORM */
/* ===== CONTACT SECTION BACKGROUND ===== */
/* ===== CONTACT SECTION BACKGROUND ===== */
#contact {
  position: relative;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
              url('../images/car-contact1.jpeg');
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* ===== CONTAINER ===== */
.contact-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* ===== HEADINGS ===== */
#contact h2 {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

#contact .section-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

/* ===== GRID ===== */
.contact-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===== LEFT FORM ===== */
.contact-left {
  flex: 1 1 45%;
}

/* WHITE FORM CARD */
.contact-form {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== FORM FIELDS ===== */
.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  color: #333;
  outline: none;
  font-size: 16px;
  transition: 0.3s;
  resize: none;
}

/* LABEL */
.form-group label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #777;
  pointer-events: none;
  transition: 0.3s;
  background: #fff;
  padding: 0 5px;
}

/* FLOAT LABEL */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: #ff9100;
}

/* INPUT FOCUS */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff9100;
  box-shadow: 0 0 8px rgba(255,126,95,0.3);
}

/* ===== BUTTON ===== */
.contact-form button {
  padding: 14px;
  background: linear-gradient(135deg, #ff9100, #ff6f00);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,126,95,0.6);
}

/* ===== RIGHT CONTACT INFO ===== */
.contact-right {
  flex: 1 1 45%;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== INFO ITEMS ===== */
.info-item {
  text-align: center;
  transition: 0.3s;
}

/* TITLE */
.info-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* ICON */
.info-item h3 i {
  color: #ff9100;
  font-size: 16px;
}

/* TEXT */
.info-item p {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}

/* HOVER */
.info-item:hover {
  transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
  }
}
/* FOOTER */
.footer {
  background:  #031e47;
  color: #fff;
  text-align: center;
  padding: 15px;
  /* margin-top: 40px; */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar nav {
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .gallery img {
    width: 100%;
  }
}


/*famous pilgrams */


#famous-places {
  text-align: center; /* center all text inside the section */
  padding: 40px 20px; /* optional padding */
  background: linear-gradient(135deg, #abcfff, #d1fcff);
}

#famous-places h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

#famous-places .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}
#famous-places .top-banner {
  text-align: center; /* center the div content */
  margin-bottom: 25px;
}

#famous-places .top-banner img {
  width: 650px; /* small width */
  height: auto;  /* maintain aspect ratio */
  border-radius: 12px;
  display: inline-block; /* make it behave like inline element for centering */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* optional shadow */
}

.cards-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.info-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  text-align: center;
}

.info-card ul {
  list-style: inside disc;
  padding-left: 0;
  margin: 0;
}


/*our cars*/
/* ================= Our Cars Section ================= */
.cars-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f1c2c, #1a2a3c);
  overflow: hidden;
  color: #fff;
}

/* Animated floating particles background */
.cars-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.cars-bg-animation::before,
.cars-bg-animation::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.cars-bg-animation::before {
  width: 200px;
  height: 200px;
  background: rgba(255, 223, 186, 0.15);
  top: 10%;
  left: 5%;
  animation: float1 30s linear infinite;
}

.cars-bg-animation::after {
  width: 300px;
  height: 300px;
  background: rgba(163, 206, 245, 0.15);
  bottom: 10%;
  right: 5%;
  animation: float2 45s linear infinite reverse;
}

@keyframes float1 {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(50vw, 50vh) rotate(180deg); }
  100% { transform: translate(-50vw, 100vh) rotate(360deg); }
}

@keyframes float2 {
  0% { transform: translate(0,0) rotate(0deg); }
  50% { transform: translate(-50vw, 60vh) rotate(180deg); }
  100% { transform: translate(50vw, 120vh) rotate(360deg); }
}

/* Section Titles */
.section-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  color: #fefefe;
  text-shadow: 0 2px 15px rgba(255,255,255,0.2);
}

.section-subtitle {
  font-size: 18px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  color: #dcdcdc;
}

/* Cars Grid */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Car Card */
.car-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.4s ease, border 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.car-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.4);
}

.car-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.car-card:hover .car-image img {
  transform: scale(1.07);
}

/* Car Info */
.car-info {
  padding: 20px;
}

.car-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.car-info p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.5;
}

.car-info a .nav-phone{
  text-decoration: none;
}

/* Responsive */
@media(max-width: 1024px){
  .cars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 768px){
  .cars-grid { grid-template-columns: 1fr; }
  .car-image img { height: 160px; }
}


/* ================= Floating Contact Buttons ================= */
/* ================= Floating Contact Buttons ================= */
.contact-buttons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 9999;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid orange; /* default border, can be overridden per type */
  background: rgba(255,255,255,0.05); /* optional semi-transparent bg */
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.contact-btn.whatsapp {
  border-color: orange;
}

.contact-btn.call {
  border-color:orange; /* blue border for call */
}

.contact-btn img {
  width: 30px;
  height: 30px;
}

.contact-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}


/*popular rides*/
.popular-rides-section {
  position: relative;
  padding: 60px 20px;
  width: 100%;
  min-height: 100vh; /* full viewport */
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* vertically center content */
  background: #a4ccfc; /* fallback color */
  z-index: 1;
}

/* Animated Background Layer */
.popular-rides-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    rgba(107, 46, 46, 0.05) 0px,
    rgba(255,255,255,0.05) 2px,
    transparent 2px,
    transparent 10px
  );
  animation: moveBg 30s linear infinite;
  z-index: 0;
}

/* Animate the background diagonally */
@keyframes moveBg {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Section Title */
.popular-rides-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 50px;
  color: #0a264b;
  z-index: 2;
  position: relative;
}

.popular-rides-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #ff6600, #ffeb99);
  margin: 10px auto 0;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}

/* Grid Layout – Force 4 cards per row */
.popular-rides-section .places-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 2;
  
  max-width: 1400px;   /* ✅ LIMIT WIDTH */
  width: 100%;
  margin: 0 auto;      /* ✅ CENTER GRID */
}

/* Cards */
.popular-rides-section .place-card {
  background: rgba(255, 255, 255, 0.95); /* slightly transparent for bg shine */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 350px;
}

.popular-rides-section .place-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

/* Image Styling */
.popular-rides-section .place-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
  
}

.popular-rides-section .place-card:hover .place-image {
  transform: scale(1.08);
}

/* Info Section */
.popular-rides-section .place-info {
  padding: 10px 15px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popular-rides-section .place-info h3 {
  margin: 5px 0 3px;
  font-size: 1rem;
  color: #031e47;
}

.popular-rides-section .place-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #555;
}

/* Responsive – 2 cards per row on tablets, 1 on mobile */
@media (max-width: 1024px) {
  .popular-rides-section .places-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .popular-rides-section {
    padding: 40px 15px;
  }

  .popular-rides-section .places-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .popular-rides-section .place-image {
    height: 200px;
  }

  .popular-rides-section .place-card {
    height: auto;
  }
}


/* Basic Footer Styling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
}

/* Footer Styling */
.footer {
  background: linear-gradient(135deg, #1e3c72, #102447);
  color: #fff;
  padding: 60px 20px 20px 20px;
}

/* Two Column Container */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* Left Section */
.footer-left {
  flex: 1 1 45%;
  margin: 20px 0;
}

.footer-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ff9100;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  color: #f0f0f0;
}

.footer-left .social-icons {
  margin-top: 20px;
}

.footer-left .social-icons a {
  display: inline-block;
  margin-right: 15px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-left .social-icons a:hover {
  background: #ff9100;
  color: #1e3c72;
  transform: scale(1.2);
}

/* Right Section */
.footer-right {
  flex: 1 1 45%;
  margin: 20px 0;
}

.footer-right h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ff9100;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right li {
  margin-bottom: 10px;
  font-size: 16px;
  text-decoration: none;
  color: white;
}

/* Footer Bottom */
.footer-bottom a {
  color: #ff9100;
  text-decoration: none;
  font-weight: 200;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ff6600;
}
/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-left, .footer-right {
    flex: 1 1 100%;
  }

  .footer-left .social-icons {
    justify-content: center;
  }
}



.visitor-counter {
  margin-top: 15px;
  font-size: 16px;
  font-weight: bold;
  color: #000000; /* adjust color to match footer */
}


/* Counter Section with Background Image */
.counter-section {
  position: relative;
  background: url('../images/car4.jpeg') center/cover no-repeat; /* Replace 'travel-bg.jpg' with your image */
  color: #000000;
  padding: 20px 0px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Dark overlay for readability */
.counter-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

/* Container above overlay */
.counter-section .container {
  position: relative;
  z-index: 2;
}

/* Section title */
.counter-section .section-title {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 1px;
}

/* Counters layout */
.counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Glass Counter Box */
.counter-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 35px 25px;
  flex: 1 1 200px;
  max-width: 250px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Icon */
.counter-box .icon {
  font-size: 42px;
  margin-bottom: 15px;
  color: #ffd700; /* Gold accent */
}

/* Count number */
.counter-box .count {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

/* Label */
.counter-box p {
  font-size: 18px;
  margin: 0;
  color: #ffffff;
}

/* ========================================
   IMPROVED MOBILE RESPONSIVE v2 - Fixed Spacing/Content
   Targeted fixes for section spacing, nav, cards
   ======================================== */

/* TABLET 1024px */
@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
  section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .hero {
    height: 60vh;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}

/* MOBILE 768px & below */
@media (max-width: 768px) {
  /* Navbar - Centered stack with spacing */
  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 0.8rem 1rem;
    text-align: center;
  }
  .navbar nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  .navbar nav a {
    margin: 0 0.3rem;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    min-width: 4rem;
  }
  .nav-phone {
    margin: 0;
    width: auto;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  /* Hero */
  .hero {
    height: 50vh;
    padding: 0 1rem;
  }
  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .hero p {
    font-size: 1rem;
  }

  /* Sections - Better spacing */
  section {
    padding: 3rem 1.5rem !important;
  }
  .about-section {
    padding: 3rem 1.5rem !important;
  }
  .services-section {
    padding: 3rem 1.5rem !important;
  }
  #travel-gallery {
    padding: 3rem 1.5rem !important;
  }

  /* Cards - Full width with margin */
  .services-section .card {
    width: 90% !important;
    max-width: 350px;
    margin: 0 auto 1.5rem;
    padding: 2rem 1.5rem;
  }
  .info-card {
    width: 90% !important;
    max-width: 350px;
    margin: 0 auto 1.5rem;
  }

  /* Grids - Explicit single column */
  .trips-grid, .gallery-grid, .cars-grid, .places-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .testimonial-grid {
    flex-direction: column !important;
    align-items: center;
  }
  .testimonial-card {
    width: 90% !important;
    max-width: 350px;
  }

  /* Cards row */
  .cards-row {
    flex-direction: column !important;
    align-items: center;
  }

  /* Contact */
  .contact-grid {
    flex-direction: column !important;
    gap: 2rem;
  }
  .contact-form, .contact-right {
    width: 100% !important;
    padding: 2rem 1.5rem !important;
  }
}

/* PHONE 480px */
@media (max-width: 480px) {
  .navbar {
    padding: 0.5rem 0.8rem;
  }
  .navbar nav a {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  section {
    padding: 2rem 1rem !important;
  }
  .services-section .card, .info-card {
    padding: 1.5rem 1rem !important;
  }
  .cars-grid .car-card, .place-card, .trip-card {
    margin-bottom: 1rem;
  }
  .contact-buttons {
    gap: 1rem;
  }
  .contact-btn {
    width: 3rem;
    height: 3rem;
  }
  .footer {
    padding: 2rem 1rem 1rem !important;
  }

  /* Famous Pilgrims Image - Mobile Optimized */
  #famous-places .top-banner img {
    width: 95% !important;
    max-width: 300px !important;
  }
}


