/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

/* Cars Section */
.cars-section {
  padding: 60px 20px;
  background: #111;
  color: #ffd600;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cars-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffd600;
}

.cars-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Bubble Decorations */
.bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  background: rgba(255, 214, 0, 0.15);
  border-radius: 50%;
  animation: float 10s linear infinite;
  opacity: 0.8;
}

@keyframes float {
  0% {
    transform: translateY(100%);
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0.3;
  }
}

/* Cars Layout */
.cars-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.car-card {
  width: 300px;
  background: #fff;
  color: #111;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(17, 17, 17, 0.3);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  border: 2px solid #ffd600;
}

.car-card.visible {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.car-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(255, 214, 0, 0.4);
  border: 2px solid #111;
}

.car-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #ffd600;
}

.car-details {
  padding: 20px;
  text-align: left;
}

.car-details h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #ffd600;
}

.car-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.car-details ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.car-details ul li i {
  color: #ffd600;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ffd600;
  color: #111;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  border: 2px solid #111;
}

.whatsapp-button:hover {
  background: #111;
  color: #ffd600;
  transform: scale(1.1);
  border: 2px solid #ffd600;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .car-card {
    width: 100%;
  }
}

/* Destinations Section */
.destinations-section {
  padding: 60px 20px;
  background: #111;
  color: #ffd600;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.destinations-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffd600;
}

.destinations-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Bubble Decorations */
.bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bubble {
  position: absolute;
  background: rgba(255, 214, 0, 0.15);
  border-radius: 50%;
  animation: float 10s linear infinite;
  opacity: 0.8;
}

@keyframes float {
  0% {
    transform: translateY(100%);
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0.3;
  }
}

/* Destinations Grid */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  z-index: 2;
  position: relative;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(255, 214, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  background: #fff;
  color: #111;
  border: 2px solid #ffd600;
}

.destination-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.destination-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(255, 214, 0, 0.5);
  border: 2px solid #111;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.3s ease;
}

.destination-card:hover img {
  filter: brightness(1);
}

.destination-details {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 214, 0, 0.95);
  color: #111;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s;
}

.destination-card:hover .destination-details {
  transform: translateY(-20%);
  background: rgba(17, 17, 17, 0.97);
  color: #ffd600;
}

.destination-details h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #111;
}

.destination-details p {
  margin: 5px 0 0;
  font-size: 1rem;
}

/* View More Button */
.view-more {
  margin-top: 40px;
}

.view-more-button {
  display: inline-block;
  padding: 15px 30px;
  background: #ffd600;
  color: #111;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  border: 2px solid #111;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s;
}

.view-more-button:hover {
  background: #111;
  color: #ffd600;
  border: 2px solid #ffd600;
  transform: scale(1.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .destination-card {
    width: 100%;
  }
}

/* General media query fix for all sections */
@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}


/* Packages Section */
.packages-section {
  padding: 60px 20px;
  background: url('images/package1.jpg') center center / cover no-repeat fixed, #fff;
  color: #111;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.packages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255, 0.94);
  z-index: 0;
  pointer-events: none;
}

.packages-section > * {
  position: relative;
  z-index: 1;
}

.packages-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffd600;
  position: relative;
  font-weight: bold;
}

.packages-section h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 5px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #ffd600, #111);
  border-radius: 5px;
}

.packages-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #111;
  font-weight: bold;
}

/* Packages Carousel */
.packages-carousel {
  display: flex;
  gap: 28px;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  scroll-behavior: smooth;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
}

/* Package Card */
.package-card {
  flex: 0 0 auto;
  width: 320px;
  border-radius: 15px;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 15px rgba(17, 17, 17, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  display: flex;
  flex-direction: column;
  min-height: 390px;
  justify-content: space-between;
  z-index: 2;
  border: 2px solid #ffd600;
}

.package-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.package-card:hover {
  box-shadow: 0 12px 36px #ffd60055, 0 2px 8px #0002;
  border: 2px solid #111;
  transform: scale(1.04);
}

/* Package Card Image */
.package-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: block;
  border-bottom: 2px solid #ffd600;
}

/* Package Info */
.package-info {
  padding: 18px 18px 8px 18px;
  flex: 1 1 auto;
}

.package-info h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #111;
}

.package-info p {
  font-size: 1rem;
  color: #222;
  margin: 0;
  font-weight: 400;
}

.package-info .location {
  display: inline-block;
  margin-top: 4px;
  color: #ffd600;
  font-size: 0.98em;
  font-weight: bold;
}

.package-info .fa-map-marker-alt {
  margin-right: 3px;
}

/* Card Bottom Row - Button and Price in One Line */
.card-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px 18px;
  border-top: 1px solid #ffd60044;
  background: #fffde7;
  gap: 10px;
}

/* Price Tag */
.price-tag {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffd600;
  background: #111;
  border-radius: 7px;
  padding: 6px 16px;
  margin-right: 8px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.book-now-button {
  background: #ffd600;
  color: #111;
  padding: 10px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid #111;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px #ffd60022;
  white-space: nowrap;
}

.book-now-button:hover {
  background: #111;
  color: #ffd600;
  transform: scale(1.1);
  border: 2px solid #ffd600;
}

.book-now-button i {
  margin-right: 4px;
  font-size: 1.1em;
}

/* Responsive */
@media (max-width: 1200px) {
  .packages-carousel {
    gap: 20px;
  }
  .package-card {
    width: 360px;
    max-width: 80vw;
  }
}

@media (max-width: 990px) {
  .packages-carousel {
    flex-wrap: wrap;
    gap: 18px;
  }
  .package-card {
    width: 95vw;
    max-width: 400px;
  }
}

@media (max-width: 700px) {
  .packages-section {
    padding: 40px 2vw;
  }
  .packages-section h2 {
    font-size: 2rem;
  }
  .packages-section p {
    font-size: 1rem;
  }
  .packages-carousel {
    gap: 12px;
    padding: 10px 0;
  }
  .package-card {
    width: 98vw;
    max-width: 360px;
    min-width: 220px;
  }
  .card-bottom-row {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .book-now-button {
    justify-content: center;
    width: 100%;
  }
  .price-tag {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 4px;
  }
}

@media (max-width: 500px) {
  .packages-section {
    padding: 30px 1vw;
  }
  .packages-section h2 {
    font-size: 1.5rem;
  }
  .package-card {
    width: 100vw;
    max-width: 99vw;
    min-width: 0;
    padding: 0;
  }
  .package-info {
    padding: 12px 7px 6px 7px;
  }
  .card-bottom-row {
    padding: 10px 7px 10px 7px;
    gap: 8px;
  }
  .book-now-button {
    font-size: 0.95rem;
    padding: 9px 0;
  }
  .price-tag {
    font-size: 1rem;
    padding: 5px 0;
  }
}

@media (max-width: 375px) {
  .packages-section h2 {
    font-size: 1.15rem;
  }
  .package-card {
    font-size: 0.92rem;
    min-width: 0;
  }
}



/* Services Section */
.services-section {
  padding: 60px 20px;
  background: #fff;
  color: #111;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ffd600;
  position: relative;
}

.heading-underline {
  width: 70px;
  height: 5px;
  background: linear-gradient(90deg, #ffd600, #111);
  margin: 0 auto 20px;
  border-radius: 10px;
}

.services-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.service-card {
  position: relative;
  width: 100%;
  height: 300px;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card .card-front,
.service-card .card-back {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(255, 214, 0, 0.11);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s ease;
}

.service-card .card-front {
  background: #fff;
}

.service-card .card-back {
  background: #111;
  color: #ffd600;
  transform: rotateY(180deg);
}

.service-card:hover .card-front {
  transform: rotateY(180deg);
}

.service-card:hover .card-back {
  transform: rotateY(360deg);
}

.service-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffd600;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  font-size: 1rem;
  text-align: center;
  padding: 0 15px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .service-card {
    height: 250px;
  }

  .service-card .icon {
    font-size: 2.5rem;
  }
}

/* Footer Section */
.footer-section {
  background: linear-gradient(135deg, #1e1e1e, #333);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Headers with Underlines */
.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffcc00;
  position: relative;
}

.header-underline {
  width: 50px;
  height: 3px;
  background: #ffcc00;
  margin: 10px auto 20px auto;
}

/* Company Info */
.footer-company {
  text-align: left;
  max-width: 250px;
}

.company-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-company a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-company a:hover {
  text-decoration: underline;
}

/* Quick Links */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffcc00;
}

/* Map Section */
.footer-map iframe {
  border-radius: 10px;
  border: 2px solid #444;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-map iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 15px rgba(255, 255, 255, 0.2);
}

/* Social Links */
.footer-social .social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-link {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover {
  transform: scale(1.2);
  color: #ffcc00;
}

/* Newsletter */
.footer-newsletter .newsletter-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-input {
  padding: 10px 15px;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
  width: 250px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 5px #ffcc00;
}

.newsletter-button {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  background: #ffcc00;
  color: #333;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.newsletter-button:hover {
  transform: scale(1.1);
  background: #e6b800;
}

.newsletter-success {
  margin-top: 10px;
  display: none;
  color: #ffcc00;
  font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #555;
  padding-top: 10px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-input {
    width: 100%;
    max-width: 300px;
  }

  .footer-company,
  .footer-links,
  .footer-social,
  .footer-newsletter {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .newsletter-form {
    justify-content: center;
  }
}