/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background-color: #fff; /* White background */
  color: #111; /* Default text color black */
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('images/hero.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.7); /* Stronger black overlay */
  z-index: 1;
  pointer-events: none; /* ✅ Allows clicking through overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffd600; /* Yellow title */
}

.hero-title .highlight {
  color: #fff;
  background: #ffd600;
  padding: 0 8px;
  border-radius: 5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #fff;
}

.hero-buttons {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive adjustments for .btn to prevent overflow */
@media (max-width: 700px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn {
    min-width: 0;
    width: 90vw;
    max-width: 340px;
    margin: 0;
    text-align: center;
    box-sizing: border-box;
  }
}

/* Extra small screens protection */
@media (max-width: 400px) {
  .btn {
    width: 98vw;
    max-width: 99vw;
    font-size: 1rem;
    padding-left: 0;
    padding-right: 0;
  }
}

.btn {
  padding: 12px 25px;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #111;
  color: #ffd600;
  border: 2px solid #ffd600;
}

.btn-primary:hover {
  background: #ffd600;
  color: #111;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 214, 0, 0.5);
}

.btn-secondary {
  background: #ffd600;
  color: #111;
  border: 2px solid #111;
}

.btn-secondary:hover {
  background: #111;
  color: #ffd600;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(17, 17, 17, 0.5);
}

.badges {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  background: #111;
  color: #ffd600;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin: 5px;
  border: 2px solid #ffd600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge i {
  margin-right: 8px;
  font-size: 1.2rem;
}

.badge:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 214, 0, 0.5);
  background: #ffd600;
  color: #111;
  border: 2px solid #111;
}

.hero-search {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(17, 17, 17, 0.2);
}

.hero-search input {
  border: none;
  outline: none;
  font-size: 1rem;
  padding: 10px;
  border-radius: 50px;
  flex: 1;
  background: #fff;
  color: #111;
}

.hero-search button {
  background: #ffd600;
  color: #111;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 600;
}

.hero-search button:hover {
  background: #111;
  color: #ffd600;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 214, 0, 0.5);
}



/* About Us Section */
.about-us {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  color: #111;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.about-text {
  flex: 1;
  max-width: 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffd600;
}

.about-text .highlight {
  color: #111;
  background: #ffd600;
  padding: 0 8px;
  border-radius: 5px;
}

.about-image {
  flex: 1;
  max-width: 400px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(17, 17, 17, 0.3);
}

/* Counters */
.counters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.counter {
  text-align: center;
  background: #ffd600;
  color: #111;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(17, 17, 17, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 214, 0, 0.3);
  background: #111;
  color: #ffd600;
}

.counter:hover .counter-number,
.counter:hover p {
  color: #ffd600;
}

.counter-number {
  font-size: 3rem;
  color: #111;
  margin-bottom: 10px;
}

.counter p {
  font-size: 1.2rem;
  font-weight: 500;
  color: #111;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-image {
    max-width: 100%;
  }

  .counters {
    flex-direction: column;
  }
}

/* Places We Serve Section */
.places-we-serve {
  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;
}

.places-we-serve::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255, 0.88);
  z-index: 0;
  pointer-events: none;
}

.places-we-serve > * {
  position: relative;
  z-index: 1;
}

.places-we-serve h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #111;
  font-weight: bold;
  position: relative;
}

.places-we-serve h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 5px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #ffd600, #111);
  border-radius: 5px;
}

.places-we-serve p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #111;
  font-weight: bold;
}

/* Grid Layout */
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.place-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(17, 17, 17, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  background: #fff;
  border: 2px solid #ffd600;
}

.place-card.animate {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.place-card:hover {
  box-shadow: 0 8px 20px rgba(255, 214, 0, 0.4);
  border: 2px solid #111;
}

.place-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.place-card:hover img {
  transform: scale(1.1);
}

/* Overlay Text ("belt") */
.place-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, #ffd600 60%, #111 100%);
  color: #111;
  text-align: center;
  padding: 12px 0 11px 0;
  transition: transform 0.5s ease, background 0.2s;
  transform: translateY(100%);
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  letter-spacing: 0.5px;
  opacity: 0.97;
}

.place-card:hover .place-overlay {
  transform: translateY(0);
  background: linear-gradient(90deg, #111 0%, #ffd600 100%);
  color: #ffd600;
}

.place-name {
  font-size: 1.18rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: inherit;
}

.place-name i {
  color: #ffd600;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .places-we-serve h2 {
    font-size: 2rem;
  }

  .places-we-serve p {
    font-size: 1rem;
  }

  .places-grid {
    grid-template-columns: 1fr;
  }
}

/* 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;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 60px 20px;
  background: #111;
  color: #ffd600;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gallery-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffd600;
}

.gallery-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;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  background: rgba(255, 214, 0, 0.10);
  border-radius: 50%;
  animation: float 12s linear infinite;
  opacity: 0.5;
}

@keyframes float {
  0% {
    transform: translateY(110%);
    opacity: 0.7;
  }
  50% {
    opacity: 0.95;
  }
  100% {
    transform: translateY(-120%);
    opacity: 0.2;
  }
}

/* Bubble individual placement (example, can change as needed) */
.bubble.b1 { left: 10%; width: 80px; height: 80px; animation-delay: 0s; }
.bubble.b2 { left: 25%; width: 50px; height: 50px; animation-delay: 5s; }
.bubble.b3 { left: 55%; width: 100px; height: 100px; animation-delay: 2s; }
.bubble.b4 { left: 70%; width: 65px; height: 65px; animation-delay: 7s; }
.bubble.b5 { left: 85%; width: 40px; height: 40px; animation-delay: 1s; }

/* Gallery Carousel */
.gallery-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  overflow: visible;
  min-height: 220px;
  perspective: 900px;
}

.gallery-card {
  width: 300px;
  height: 200px;
  border-radius: 15px;
  background: rgba(255, 214, 0, 0.11);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(30, 40, 60, 0.13);
  position: absolute;
  left: 50%;
  top: 0;
  transform-style: preserve-3d;
  transition: 
    transform 0.6s cubic-bezier(.68,-0.55,.27,1.55), 
    opacity 0.5s, 
    box-shadow 0.4s;
  opacity: 0;
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s, transform 0.4s;
  filter: grayscale(0.1) brightness(0.93) contrast(1.1);
}

.gallery-card.active {
  transform: translate(-50%, 0) scale(1.07) translateZ(120px);
  opacity: 1;
  z-index: 3;
  box-shadow: 0 12px 36px #ffd60044, 0 2px 8px #0002;
  pointer-events: auto;
}
.gallery-card.active img {
  filter: grayscale(0) brightness(1.05) contrast(1.22);
  transform: scale(1.04);
}
.gallery-card.prev {
  transform: translate(-70%, 0) scale(0.95) rotateY(14deg) translateZ(0);
  opacity: 0.5;
  z-index: 2;
  pointer-events: auto;
}
.gallery-card.next {
  transform: translate(-30%, 0) scale(0.95) rotateY(-14deg) translateZ(0);
  opacity: 0.5;
  z-index: 2;
  pointer-events: auto;
}

/* Hide cards far from the center */
.gallery-card:not(.active):not(.prev):not(.next) {
  opacity: 0;
  pointer-events: none;
}

/* Controls */
.controls {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 30px;
  z-index: 3;
  position: relative;
}

.control-button {
  background: #ffd600;
  color: #111;
  border: none;
  padding: 10px 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s, transform 0.3s;
  box-shadow: 0 2px 8px #ffd60022;
}

.control-button:hover:not(:disabled),
.control-button:focus-visible:not(:disabled) {
  background: #111;
  color: #ffd600;
  transform: scale(1.12);
}

.control-button:disabled {
  background: #555;
  color: #bbb;
  cursor: not-allowed;
  transform: none;
}

/* Responsive Design */
@media screen and (max-width: 900px) {
  .gallery-card {
    width: 220px;
    height: 140px;
  }
  .gallery-section {
    padding: 36px 5px;
  }
}
@media screen and (max-width: 600px) {
  .gallery-card {
    width: 150px;
    height: 90px;
  }
  .gallery-section h2 {
    font-size: 1.5rem;
  }
  .controls {
    gap: 12px;
    margin-top: 16px;
  }
}

/* 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;
  }
}

/* Why Choose Us Section */
.why-choose-us-section {
  padding: 60px 20px;
  background: #fffde7;
  color: #111;
  text-align: center;
}

.why-choose-us-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;
}

.why-choose-us-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Cards */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.why-card {
  position: relative;
  width: 100%;
  height: 300px;
  perspective: 1000px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card .card-front,
.why-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;
}

.why-card .card-front {
  background: #fff;
}

.why-card .card-back {
  background: #111;
  color: #ffd600;
  transform: rotateY(180deg);
}

.why-card:hover .card-front {
  transform: rotateY(180deg);
}

.why-card:hover .card-back {
  transform: rotateY(360deg);
}

.why-card .icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffd600;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #111;
}

.why-card p {
  font-size: 1rem;
  text-align: center;
  padding: 0 15px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .why-card {
    height: 250px;
  }

  .why-card .icon {
    font-size: 2.5rem;
  }
}

/* How to Book Section */
.how-to-book-section {
  padding: 60px 20px;
  background: #111;
  color: #ffd600;
  text-align: center;
  position: relative;
}

.how-to-book-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffd600;
  letter-spacing: 1.5px;
}

.how-to-book-section .heading-underline {
  width: 70px;
  height: 5px;
  background: #ffd600;
  margin: 0 auto 24px;
  border-radius: 10px;
}

.steps-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  position: relative;
}

.progress-bar-container {
  position: relative;
  width: 50px;
  height: 100%;
  background: #222;
  border-radius: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-bar {
  position: absolute;
  width: 10px;
  height: 0%;
  background: linear-gradient(90deg, #ffd600 60%, #fff 100%);
  border-radius: 25px;
  transition: height 0.5s ease;
}

.step-dot {
  position: relative;
  width: 30px;
  height: 30px;
  background: #fff;
  border: 3px solid #ffd600;
  border-radius: 50%;
  margin: 20px 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 8px #ffd60022;
}

.step-dot.active {
  background: #ffd600;
  border-color: #fff;
  transform: scale(1.13);
}

.dot-icon {
  font-size: 1.2rem;
  color: #111;
  transition: color 0.3s;
}

.step-dot.active .dot-icon {
  color: #111;
}

.steps-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.step {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background: #222;
  padding: 32px 32px 24px 32px;
  margin-bottom: 10px;
  border-radius: 16px;
  box-shadow: 0 6px 20px #ffd60022;
  max-width: 480px;
  min-width: 280px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step .step-number {
  background: #ffd600;
  color: #111;
  font-weight: bold;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-right: 10px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px #ffd60044;
}

.step h3 {
  font-size: 1.4rem;
  color: #ffd600;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.step p {
  font-size: 1rem;
  color: #fffbe7;
  line-height: 1.6;
}

@media screen and (max-width: 900px) {
  .steps-content .step {
    max-width: 100%;
    min-width: 0;
    padding: 20px 10px 12px 10px;
  }
}

@media screen and (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .progress-bar-container {
    width: 10px;
    min-width: 10px;
    height: auto;
  }
  .steps-content {
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .steps-content .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 0;
    padding: 18px 8px 12px 8px;
  }
  .step .step-number {
    margin: 0 0 12px 0;
  }
}


/* 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;
  }
}