/* ---------------- Navbar ---------------- */
header {
  opacity: 1;
  transform: none !important;
  transition: none !important;
}

.no-animate {
  animation: none !important;
  transition: none !important;
}

.nav-btn {
  position: relative;
  padding: 8px 16px;
  font-weight: 500;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #1f2937;
  transition: color 0.3s ease;
}

.nav-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #3b82f6;
  transition: width 0.3s ease;
}

.nav-btn:hover {
  color: #1d4ed8;
}

.nav-btn:hover::after {
  width: 100%;
}

#menuToggle {
  display: none !important;
}

/* Disable unwanted animations */
[class*="animate-"],
[class*="transition-transform"],
[class*="translate-x"],
[class*="motion"],
[class*="fade"],
[class*="slide"] {
  animation: none !important;
  transform: none !important;
  transition: none !important;
}

/* ✅ Center logo + name on mobile */
@media (max-width: 768px) {
  .logo-area {
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
  }

  .logo-area img {
    margin-right: 0;
  }

  .logo-area span {
    font-size: 1.4rem;
  }

  #navLinks {
    justify-content: center;
    width: 100%;
  }
}

/* ---------------- Hero Section ---------------- */
#home {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#home .book-now-btn {
  background: #2563eb;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, background 0.3s;
  position: absolute;
  bottom: -220px;
  right: -200px;
}

#home .book-now-btn:hover {
  transform: scale(1.1);
  background: #000;
}

/* ✅ Mobile responsive positioning */
@media (max-width: 768px) {
  #home {
    height: 100vh;
  }

  #home .book-now-btn {
    position: relative;
    margin-top: 20px;
    display: inline-block;
    transform: none;
    bottom: auto;
    right: auto;
  }
}

/* ----- Cards section ----- */
.card-wrapper {
  flex: 1 1 220px;
  max-width: 220px;
  margin: 12px;
}

.card {
  background: #f3f4f6;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s, opacity 0.8s;
  opacity: 0;
  transform: translateY(40px);
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: none;
}

.card:hover .card-video {
  transform: scale(1.05);
}

/* ---------------- Hero 2 Section ---------------- */
.hero2-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.hero2-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero2-video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  background: none;
}

.hero2-video:hover {
  transform: scale(1.05);
}

.know-more-btn {
  background: #2563eb;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, background 0.3s;
  display: inline-block;
}

.know-more-btn:hover {
  transform: scale(1.1);
  background: #000;
}

/* ---------------- Stats Section ---------------- */
.stats-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.stats-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  transition: color 0.3s ease-in-out;
}

/* ---------------- Our Services ---------------- */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.1);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-radius: 0 0 12px 12px;
}

/* ---------------- Floating Buttons ---------------- */
.fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.fab-btn {
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
}

.fab-btn:hover {
  transform: scale(1.1);
  background: #f3f4f6;
}

.fab-btn img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.up-arrow-btn {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s ease;
}

.up-arrow-btn.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- Review Section ---------------- */
.reviews-section {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  padding: 70px 0;
  overflow: hidden;
  text-align: center;
}

.reviews-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.rating-summary {
  margin: 10px 0 40px;
  font-size: 1.1rem;
  color: #444;
}

.rating-summary span {
  font-weight: 600;
}

.rating-summary small {
  color: #666;
  font-size: 0.9rem;
  margin-left: 6px;
}

.reviews-wrapper {
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollLoop 25s linear infinite;
}

.review-card {
  flex: 0 0 300px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.review-card p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.review-card h4 {
  font-size: 1rem;
  color: #000;
  margin-top: 10px;
  font-weight: 600;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-top: 5px;
}

@keyframes scrollLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .review-card { flex: 0 0 250px; }
  .reviews-track { animation-duration: 30s; }
}

/* Navbar Active */
.nav-btn.active {
  color: #1d4ed8;
}

.nav-btn.active::after {
  width: 100%;
  background: #1d4ed8;
}

/* Instagram Section */
.insta-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.insta-box:hover {
  transform: translateY(-5px);
}

/* Fade Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.5s; }
.delay-3 { transition-delay: 0.7s; }

/* Theme Button */
.theme-btn {
  background: #158bfa;
  color: #1f2937;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.theme-btn:hover {
  background: #010252;
  color: #fff;
  transform: translateY(-3px);
}
