:root {
  --primary: #ff6b35;
  --secondary: #ff8f50;
  --dark: #0f172a;
  --text-muted: #6c757d;
  --bg-soft: #f8faff;
  --light: #ffffff;
  --text: #475569;
  --gradient: linear-gradient(135deg, #ff6b35, #ff9f43);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background-color: #f8fafc;
  margin: 0;
  padding: 0;
}

/* =========================================
         GLOBAL HEADER WRAPPER (SOLID)
      ========================================= */
.site-header {
  transition: all 0.4s ease;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.top-section-wrapper {
  transition: all 0.4s ease;
  overflow: hidden;
  max-height: 100px;
  opacity: 1;
}

.site-header.scrolled .top-section-wrapper {
  max-height: 0;
  opacity: 0;
}

/* =========================================
         OFFER BAR (TICKER) & TOPBAR
      ========================================= */
.offer-bar {
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
  display: flex;
  white-space: nowrap;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
}
.ticker {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 25s linear infinite;
}
.ticker:hover {
  animation-play-state: paused;
  cursor: pointer;
}
.ticker-item {
  padding: 0 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.topbar {
  background: #1e293b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
}

.topbar a,
.topbar span {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: 0.3s ease;
  font-weight: 500;
}

.topbar a:hover {
  color: var(--primary);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-left: 8px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* =========================================
         MAIN NAVBAR
      ========================================= */
.navbar {
  padding: 15px 0;
  transition: all 0.4s ease;
  background: #ffffff;
}

.site-header.scrolled .navbar {
  padding: 10px 0;
}

.navbar-brand {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark) !important;
}
.navbar-brand span {
  color: var(--primary);
}

.nav-link {
  font-weight: 600;
  color: var(--text) !important;
  margin: 0 12px;
  position: relative;
  transition: 0.3s;
  padding: 8px 0 !important;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--primary) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  border-radius: 10px;
  background: var(--gradient);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  width: 100%;
}

.dropdown-menu {
  border: none;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-top: 15px;
}

.dropdown-item {
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: #fff3ee;
  color: var(--primary);
  transform: translateX(6px);
}

.btn-search {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: var(--text);
  margin-right: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.btn-book {
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.btn-book::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.7s ease;
  z-index: -1;
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  color: #fff;
}

.btn-book:hover::before {
  left: 100%;
}

.navbar-toggler i {
  color: var(--dark);
  transition: 0.3s;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    margin-top: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  }
  .nav-link {
    padding-left: 15px !important;
    margin: 8px 0;
    border-left: 3px solid transparent;
  }
  .nav-link:hover {
    background: #f8fafc;
    border-left: 3px solid var(--primary);
  }
  .nav-link::after {
    display: none;
  }
  .btn-search {
    display: none;
  }
}
/* =========================================
   CALL TO ACTION SECTION
========================================= */
.cta-section {
  padding: 80px 0;
  background: var(--dark);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1920&q=80")
    center/cover no-repeat fixed;
  opacity: 0.15;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-weight: 800;
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 3.5rem);
}

.newsletter-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 50px;
  display: flex;
  max-width: 600px;
  margin: 30px auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  flex: 1;
  padding: 10px 20px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.btn-cta {
  background: var(--primary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  transition: 0.3s;
}

.btn-cta:hover {
  background: var(--secondary);
  transform: scale(1.05);
  color: #fff;
}

/* ==========================================================================
       PAGE HEADER STYLING
       ========================================================================== */
.page-header {
  position: relative;
  /* Background image with Parallax effect */
  background: url("https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80")
    center center / cover fixed;
  height: 60vh; /* Takes up 60% of the viewport height */
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  margin-top: 6rem;
}

/* Elegant dark overlay */
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Deep slate overlay with a subtle hint of the brand gradient */
  background:
    linear-gradient(135deg, rgba(30, 41, 59, 0.85), rgba(30, 41, 59, 0.7)),
    linear-gradient(to right, rgba(255, 126, 95, 0.1), rgba(254, 180, 123, 0.1));
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2; /* Keeps content above the overlay */
}

/* -- Breadcrumb Navigation -- */
.header-breadcrumb {
  background: transparent;
  padding: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.header-breadcrumb .breadcrumb-item {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-breadcrumb .breadcrumb-item a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-breadcrumb .breadcrumb-item a:hover {
  color: var(--primary);
}

.header-breadcrumb .breadcrumb-item.active {
  color: #ffffff;
  opacity: 0.8;
}

.header-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "›"; /* Cleaner separator */
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  line-height: 1;
}

/* -- Typography -- */
.page-header h1 {
  font-size: 4rem;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-header p.lead {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* -- Scroll Down Indicator -- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 1.5rem;
  z-index: 2;
  opacity: 0.7;
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
  animation: bounce 2s infinite;
  text-decoration: none;
}

.scroll-indicator:hover {
  opacity: 1;
  color: var(--secondary);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -15px);
  }
  60% {
    transform: translate(-50%, -7px);
  }
}

/* -- On-Load Animations -- */
.load-hidden {
  opacity: 0;
  transform: translateY(30px);
}

/* Triggered by JS */
.load-animate {
  animation: slideFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation Delays */
.d-1 {
  animation-delay: 0.1s;
}
.d-2 {
  animation-delay: 0.3s;
}
.d-3 {
  animation-delay: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.8rem;
  }
  .page-header p.lead {
    font-size: 1.1rem;
  }
}

/* ************************************************ */
/* Footer Styling */
.custom-footer {
  background-color: var(--dark);
  color: #cbd5e1; /* Slightly muted white for better readability */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  border-top: 4px solid var(--primary);
  position: relative;
}

.custom-footer .footer-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.custom-footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Social Icons */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: 50%;
  margin-right: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

/* Footer Links & Lists */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.footer-list a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--primary);
}

.footer-list i {
  color: var(--primary);
  margin-top: 4px;
  margin-right: 12px;
  font-size: 0.9rem;
}

/* QR Code & Payment */
.qr-card {
  background: var(--light);
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  width: fit-content;
}

.qr-card img {
  max-width: 150px;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
}

.qr-card span {
  display: block;
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 8px;
}

.secure-badge {
  background-color: #0f8a4f; /* Green secure color */
  color: var(--light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 15px;
}

/* Bottom Copyright Bar */
.footer-bottom {
  background-color: #0a0f1c; /* Slightly darker than var(--dark) */
  padding: 15px 0;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* Floating Action Buttons (FAB) */
.scroll-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  background-color: #64748b; /* Neutral gray */
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  border: none;
  transition: background 0.3s ease;
  display: none; /* Hidden by default via JS */
}

.scroll-top:hover {
  background-color: var(--text);
}

.fab-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.25rem;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.fab-btn:hover {
  transform: scale(1.1);
  color: var(--light);
}

.fab-email {
  background-color: var(--primary);
}
.fab-phone {
  background-color: #0ea5e9;
} /* Blue */
.fab-whatsapp {
  background-color: #25d366;
} /* WhatsApp Green */
