/* Public pages styling based on mockup */

/* Dark Theme Color Variables */
:root {
  --background-color: #1a2028;
  /* Dark background color for the entire website */
  --background-color-light: #1e2630;
  /* Lighter variant of background color */
  --default-color: #e5e7eb;
  /* Default color for text content */
  --heading-color: #ffffff;
  /* Color for headings */
  --accent-color: #ACA53C;
  /* Accent color for buttons, links, etc. - gold/olive tone */
  --accent-color-hover: #BFB84D;
  /* Hover state for accent color - lighter gold */
  --accent-color-secondary: #8A8431;
  /* Secondary accent color for gradients and highlights - darker gold */
  --surface-color: #2a3441;
  /* Background for cards and boxed elements */
  --surface-color-light: #3d4d61;
  /* Lighter variant of surface color */
  --contrast-color: #ffffff;
  /* Text color for contrast against dark backgrounds */
  --success-color: #10b981;
  /* Success color */
  --warning-color: #f59e0b;
  /* Warning color */
  --danger-color: #ef4444;
  /* Danger color */
  --info-color: #D4CE7F;
  /* Info color - lighter gold */

  /* Typography */
  --font-primary: 'Poppins', 'Roboto', sans-serif;
  --font-secondary: 'Raleway', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 30px;
  --font-size-4xl: 36px;
  --font-size-5xl: 48px;

  /* Spacing */
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 15px;
  --spacing-lg: 20px;
  --spacing-xl: 30px;
  --spacing-2xl: 40px;
  --spacing-3xl: 60px;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 15px;
  --border-radius-xl: 20px;
  --border-radius-full: 9999px;
}

/* Override light theme classes */
.light-background {
  --background-color: #273240;
  --surface-color: #334152;
}

.dark-background {
  --background-color: #1a212b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #273240;
}

/* Apply dark theme to body */
body.public-page {
  background-color: var(--background-color);
  color: var(--default-color);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: var(--font-size-5xl);
  letter-spacing: -0.5px;
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-color-hover);
  text-decoration: none;
}

.text-accent {
  color: var(--accent-color);
}

.text-white {
  color: var(--contrast-color);
}

.text-muted {
  color: rgba(255, 255, 255, 0.7);
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.fs-sm {
  font-size: var(--font-size-sm);
}

.fs-base {
  font-size: var(--font-size-base);
}

.fs-lg {
  font-size: var(--font-size-lg);
}

.fs-xl {
  font-size: var(--font-size-xl);
}

.fs-2xl {
  font-size: var(--font-size-2xl);
}

.fs-3xl {
  font-size: var(--font-size-3xl);
}

.fs-4xl {
  font-size: var(--font-size-4xl);
}

.fs-5xl {
  font-size: var(--font-size-5xl);
}

/* Main content padding for fixed header */
.main {
  padding-top: 80px;
  /* Adjust based on header height */
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(172, 165, 60, 0.3),
      0 0 0 1px rgba(172, 165, 60, 0.3);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(172, 165, 60, 0),
      0 0 0 15px rgba(172, 165, 60, 0);
  }
}

/* Animation Classes */
.animate-fadeIn {
  animation: fadeIn 1s ease forwards;
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease forwards;
}

.animate-fadeInDown {
  animation: fadeInDown 1s ease forwards;
}

.animate-fadeInLeft {
  animation: fadeInLeft 1s ease forwards;
}

.animate-fadeInRight {
  animation: fadeInRight 1s ease forwards;
}

.animate-pulse {
  animation: pulse 2s infinite ease-in-out;
}

.animate-float {
  animation: float 3s infinite ease-in-out;
}

.animate-ripple {
  animation: ripple 1.5s infinite;
}

/* Animation Delays */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-700 {
  animation-delay: 0.7s;
}

.delay-1000 {
  animation-delay: 1s;
}

/* Brand chips inside the card: ensure sufficient contrast for dark theme */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
}

.brands-grid .brand-item {
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(172, 165, 60, 0.3);
  background: rgba(172, 165, 60, 0.05);
  padding: 12px 15px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.brands-grid .brand-item:hover {
  background: rgba(172, 165, 60, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brands-grid .brand-item i {
  color: var(--accent-color);
  font-size: 14px;
}

.popular-packages .package-overlay .badge.featured {
  background-color: var(--accent-color);
}

.dive-sites .site-overlay .badge.featured {
  background-color: var(--accent-color);
}

/* Button styles */
.btn {
  border-radius: var(--border-radius-md);
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-primary,
.btn-accent,
.btn-getstarted {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-color-secondary));
}

.btn-primary:hover,
.btn-accent:hover,
.btn-getstarted:hover {
  background: linear-gradient(135deg, var(--accent-color-secondary), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(172, 165, 60, 0.4);
}

.btn-primary:active,
.btn-accent:active,
.btn-getstarted:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(172, 165, 60, 0.3);
}

.btn-getstarted {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: var(--border-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.btn-getstarted i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-getstarted:hover i {
  transform: translate(4px, -4px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.btn-outline-light:hover {
  border-color: var(--accent-color);
  color: var(--contrast-color);
  background: rgba(172, 165, 60, 0.1);
}

.btn-lg {
  padding: 12px 30px;
  font-size: 18px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-icon i {
  font-size: 1.2em;
}

.btn-floating {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 24px;
}

.package-card,
.review-card {
  background-color: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

/* Video backgrounds */
.hero,
#social-proof {
  position: relative;
  overflow: hidden;
  background: transparent !important;
}

.hero .video-bg,
#social-proof .video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero .video-bg video,
#social-proof .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .video-bg .overlay,
#social-proof .video-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.hero .image-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero .image-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero .image-bg .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .image-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.hero .container,
#social-proof .container {
  position: relative;
  z-index: 1;
}

.btn-outline-light {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.btn-outline-light:hover {
  background-color: rgba(172, 165, 60, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* Social Proof Section */
.social-proof {
  position: relative;
}

.social-proof .video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.social-proof .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-proof .video-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.social-proof .container {
  position: relative;
  z-index: 1;
}

.social-proof .section-title h2,
.social-proof .section-title span,
.social-proof .section-title .description-title {
  color: #ffffff;
}

/* Review cards */
.review-card {
  background-color: rgba(51, 65, 82, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(172, 165, 60, 0.2);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(172, 165, 60, 0.15);
  border: 1px solid rgba(172, 165, 60, 0.3);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.reviewer-info {
  display: flex;
  align-items: center;
}

.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(172, 165, 60, 0.1);
  border: 2px solid rgba(172, 165, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.reviewer-img i {
  font-size: 24px;
  color: var(--accent-color);
}

.reviewer-info h5 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 600;
}

.stars i {
  color: var(--accent-color);
  font-size: 14px;
}

.review-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.review-content p {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}

/* WhatsApp contact section */
.whatsapp-contact .package-card {
  background-color: rgba(51, 65, 82, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(172, 165, 60, 0.2);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 20px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(172, 165, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
}

.contact-info-details h5 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-info-details p {
  margin-bottom: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.qr-code-container {
  margin-bottom: 15px;
}

.qr-code-placeholder {
  width: 120px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(172, 165, 60, 0.3);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.qr-code-placeholder i {
  font-size: 48px;
  color: var(--accent-color);
}

.qr-code-container p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-details li i {
  margin-right: 10px;
  color: var(--accent-color);
}

.whatsapp-btn {
  background-color: #25D366;
  border-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
  background-color: #1fba58;
  border-color: #1fba58;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Social media preview */
.social-media-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.social-media-image {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
}

.social-media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.social-media-image:hover img {
  transform: scale(1.05);
}

/* Social icons in social proof section */
#social-proof .social-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 5px;
  transition: all 0.3s ease;
}

#social-proof .social-icon:hover {
  transform: translateY(-3px);
  background-color: #BFB84D;
  /* Updated to gold/olive */
  box-shadow: 0 5px 15px rgba(172, 165, 60, 0.3);
}

/* WhatsApp button styling */
.whatsapp-btn {
  background-color: #25D366;
  border-color: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
  background-color: #1fba58;
  border-color: #1fba58;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Trust section background image */
#trust {
  position: relative;
  overflow: hidden;
  background: transparent !important;
}

#trust .bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

#trust .bg-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

#trust .container {
  position: relative;
  z-index: 1;
}

/* Social proof ocean floor background - subtle and professional */
#social-proof.social-proof-animated-bg {
  position: relative;
  overflow: hidden;
  /* Deep ocean gradient with sandy ocean floor tones at bottom */
  background:
    linear-gradient(180deg,
      #0a1628 0%,
      #0d1f35 30%,
      #0f2540 60%,
      #112a45 80%,
      #1a3a52 100%);
}

/* Subtle vignette overlay for depth */
#social-proof.social-proof-animated-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(26, 58, 82, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 100% 40% at 50% 0%, rgba(10, 22, 40, 0.6) 0%, transparent 50%);
  opacity: 0.8;
}

/* Subtle texture overlay for ocean floor feel */
#social-proof.social-proof-animated-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: overlay;
}

#social-proof.social-proof-animated-bg .container {
  position: relative;
  z-index: 1;
}

/* Section title colors */
.section-title h2 {
  color: #a3b1c2;
}

.section-title div,
.section-title .description-title {
  color: var(--heading-color);
}

/* Accent color elements */
.feature-tag i,
.badge-icon i,
.contact-details li i,
.footer-links ul a i,
.social-icon {
  color: var(--accent-color);
}

.social-icon,
.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.stars i {
  color: var(--accent-color);
}

/* Form elements */
input,
select,
textarea {
  background-color: #273240 !important;
  border-color: #455468 !important;
  color: var(--default-color) !important;
}

/* Form check elements */
.form-check-input {
  background-color: #273240 !important;
  border-color: #455468 !important;
}

.form-check-input:checked {
  background-color: var(--accent-color) !important;
  border-color: var(--accent-color) !important;
}

.form-check-label {
  color: var(--default-color);
}

/* Form labels */
label {
  color: var(--default-color);
  font-weight: 500;
  margin-bottom: 5px;
}

/* Placeholder text */
::placeholder {
  color: #8596ab !important;
  opacity: 1;
}

/* Header styling */
.header {
  background-color: rgba(26, 33, 43, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
}

.header-scrolled {
  background-color: rgba(26, 33, 43, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.header .logo img {
  max-height: 40px;
  transition: all 0.3s;
}

.header-scrolled .logo img {
  max-height: 35px;
}

.header .navmenu ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.header .navmenu ul li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

/* Dropdown styles */
.header .navmenu .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #1a212b;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
  border-radius: 5px;
  border: 1px solid rgba(172, 165, 60, 0.15);
}

.header .navmenu .dropdown ul li {
  min-width: 200px;
  padding: 10px 20px;
}

.header .navmenu .dropdown ul a {
  padding: 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.header .navmenu .dropdown ul a:hover,
.header .navmenu .dropdown ul .active:hover,
.header .navmenu .dropdown ul li:hover>a {
  color: #fff;
}

.header .navmenu .dropdown:hover>ul,
.header .navmenu .dropdown ul.dropdown-active {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.header .navmenu .dropdown .toggle-dropdown {
  padding-left: 5px;
  font-size: 12px;
  transition: 0.3s;
}

.header .navmenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
}

.header .navmenu a:hover,
.header .navmenu .active {
  color: #fff;
}

.grecaptcha-badge {
  z-index: 99999;
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 170px;
  z-index: 99999;
  background: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: #BFB84D;
  /* Updated to gold/olive */
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  right: 15px;
  bottom: 96px;
  z-index: 99999;
  background: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: block;
  }

  .header .navmenu {
    display: block !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    bottom: 0;
    transition: 0.3s;
    z-index: 99998;
    overflow-y: auto;
    background-color: #141923;
    /* Solid dark background instead of semi-transparent */
    padding: 70px 0 0 0;
    visibility: visible;
    opacity: 1;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    border-left: 3px solid var(--accent-color);
  }

  .header .navmenu ul {
    display: block !important;
    padding: 0 15px;
    flex-direction: column;
  }

  .header .navmenu ul li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  /* Improve link visibility */
  .header .navmenu a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    margin: 2px 0;
    display: flex;
    align-items: center;
  }

  .header .navmenu a:hover,
  .header .navmenu .active {
    color: #141923;
    background-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }

  /* Mobile dropdown styles */
  .header .navmenu .dropdown ul {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    background: rgba(26, 33, 43, 0.5);
    box-shadow: none;
    border: none;
    padding: 10px 0 10px 15px;
    margin: 10px 0 0 0;
    border-radius: 0;
    width: 100%;
  }

  .header .navmenu .dropdown ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 0;
    width: 100%;
  }

  .header .navmenu .dropdown ul a {
    color: #ffffff;
    font-size: 16px;
    background-color: rgba(172, 165, 60, 0.15);
    padding: 8px 12px;
    margin: 4px 0;
    border-left: 3px solid var(--accent-color);
  }

  .header .navmenu .dropdown>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* Hide dropdown toggle icon on mobile since it's always expanded */
  .header .navmenu .dropdown .toggle-dropdown {
    display: none;
  }

  .header .navmenu.mobile-nav-active {
    right: 0;
    width: 300px;
  }

  /* Mobile nav toggle button */
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 999999;
    border: 0;
    background: rgba(26, 33, 43, 0.8);
    font-size: 28px;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  /* Style for the X close icon - supports both old (i.bi-x) and new (button > i.bi-x) structures */
  .mobile-nav-toggle.bi-x,
  .mobile-nav-toggle:has(.bi-x) {
    color: #ffffff;
    right: 15px;
    top: 15px;
    position: fixed;
    z-index: 999999;
    font-size: 32px;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    border: 1px solid #ffffff;
    animation: pulse-border 1.5s infinite;
  }

  @keyframes pulse-border {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
      box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }
}

/* Footer styling */
.footer {
  --background-color: #1a212b;
  --surface-color: #273240;
  border-top: 1px solid #334152;
  padding: 60px 0 30px 0;
}

.footer .footer-bottom {
  background-color: rgba(26, 33, 43, 0.5);
  border-top: 1px solid #334152;
  padding: 20px 0;
  margin-top: 30px;
}

.footer .social-links a {
  background-color: #273240;
  color: #8596ab;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.footer-links h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer-links ul a:hover {
  color: #fff;
}

/* .footer-brand {
  max-width: 340px;
} */

.footer-logo img {
  max-height: 42px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0 24px 0;
}

.footer-heading {
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--info-color);
  margin-bottom: 12px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(172, 165, 60, 0), rgba(172, 165, 60, 0.5), rgba(172, 165, 60, 0));
  margin: 24px 0;
}

.footer-newsletter {
  width: 100%;
}

.newsletter-field {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(172, 165, 60, 0.25);
  border-radius: var(--border-radius-full);
  padding: 6px 6px 6px 16px;
  gap: 12px;
}

.newsletter-field input {
  flex: 1;
  background: transparent !important;
  border: none;
  color: var(--contrast-color);
  font-size: 14px;
  padding: 0;
  outline: none;
}

.newsletter-field button {
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-color-secondary));
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-field button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(172, 165, 60, 0.3);
}

.newsletter-field button i {
  font-size: 1.1rem;
}

.footer-contact {
  background: rgba(39, 50, 64, 0.35);
  border: 1px solid rgba(172, 165, 60, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 24px;
  backdrop-filter: blur(6px);
}

.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-contact-list span,
.footer-contact-list a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.footer-contact-list a:hover {
  color: #fff;
}

.footer-contact-list .contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(172, 165, 60, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.footer-legal {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Section styling */
.section {
  padding: 60px 0;
}

.section-divider {
  position: relative;
  width: 100%;
  height: 80px;
  margin-top: 2rem;
  background-color: #1a2028;
  mask-image: var(--divider-image);
  -webkit-mask-image: var(--divider-image);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: cover;
  -webkit-mask-size: cover;
  pointer-events: none;
  z-index: 2;
}

.section-title {
  text-align: center;
  margin-bottom: 40px !important;
  margin-top: 40px !important;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
}

.section-title div {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
}

.section-title .description-title {
  color: var(--accent-color);
}

.section-title__heading {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-title__heading-label {
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-title__underline {
  width: 160px;
  height: auto;
}

/* Gallery Section */
.section-description {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  margin-top: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  background-color: var(--surface-color);
  height: 100%;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.gallery-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.gallery-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to top, rgba(39, 50, 64, 0.8), transparent);
  z-index: 1;
}

.gallery-img img {
  transition: transform 0.8s ease;
}

.gallery-item:hover .gallery-img img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 20px;
  background-color: var(--surface-color);
  position: relative;
}

.gallery-caption h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 600;
}

.gallery-caption p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  line-height: 1.5;
}

.gallery .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.gallery .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.gallery .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 30px;
  border-radius: 10px;
}

.gallery .swiper-button-next,
.gallery .swiper-button-prev {
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  background-color: rgba(39, 50, 64, 0.8);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery .swiper-button-next:after,
.gallery .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.gallery .swiper-button-next:hover,
.gallery .swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: #fff;
  transform: scale(1.1);
}

.gallery-slider {
  padding-bottom: 60px;
  margin-top: 30px;
}

/* Package cards */
.package-card {
  background-color: var(--surface-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (max-width: 576px) {
  .no-rounded-sm {
    border-radius: 0 !important;
  }
}

.package-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color-secondary));
  z-index: -1;
  border-radius: calc(var(--border-radius-lg) + 2px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.package-card:hover::before {
  opacity: 0.3;
}

.package-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--border-radius-full);
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge.featured {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-color-secondary));
}

.package-content {
  padding: 25px;
  flex: 1;
}

.package-rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
}

.package-rating i {
  color: var(--warning-color);
  margin-right: 2px;
}

.package-rating span {
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.7);
}

.package-content h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--contrast-color);
}

.package-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.package-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 6px 12px;
  border-radius: var(--border-radius-full);
  transition: all 0.3s ease;
}

.feature-tag i {
  color: var(--accent-color);
  font-size: 14px;
}

.package-card:hover .feature-tag {
  background-color: rgba(255, 255, 255, 0.1);
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}

.max-depth {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.package-footer .btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}

/* Site cards */
.site-card {
  background-color: var(--surface-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.site-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color-secondary));
  z-index: -1;
  border-radius: calc(var(--border-radius-lg) + 2px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.site-card:hover::before {
  opacity: 0.3;
}

.site-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.site-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.site-card:hover .site-image img {
  transform: scale(1.05);
}

.site-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.site-content {
  padding: 25px;
  flex: 1;
}

.site-rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
}

.site-rating i {
  color: var(--warning-color);
  margin-right: 2px;
}

.site-rating span {
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.7);
}

.site-content h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--contrast-color);
}

.site-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.site-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.site-card:hover .feature-tag {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Condition items */
.card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.card-header h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.card-header h4 i {
  color: var(--accent-color);
}

.card-header p {
  margin-bottom: 0;
  font-size: 14px;
}

.card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  text-align: center;
}

.condition-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
}

.condition-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.condition-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(172, 165, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
}

.condition-details h5 {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 600;
}

.condition-details p {
  margin-bottom: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* Process steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.process-step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(172, 165, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.process-step-content h5 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}

.process-step-content p {
  margin-bottom: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* Bootstrap overrides */
.btn {
  border-radius: 4px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Hero section specific */
.hero {
  padding: 120px 0 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero .text-accent {
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.hero .text-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(172, 165, 60, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.hero p.lead {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge-pill {
  background-color: rgba(172, 165, 60, 0.15);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.badge-pill i {
  color: var(--accent-color);
  font-size: 16px;
}

.hero-content {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.booking-form {
  background-color: rgba(51, 65, 82, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(172, 165, 60, 0.2);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  z-index: 2;
}

.booking-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-step-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.booking-step .row {
  margin-bottom: 8px;
}

.step-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.booking-summary-container {
  background: rgba(39, 50, 64, 0.6);
  border: 1px solid rgba(172, 165, 60, 0.2);
  border-radius: 10px;
  padding: 16px;
}

.booking-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.booking-summary-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0px 0px;
  border-top: 1px solid rgba(172, 165, 60, 0.15);
}

.booking-summary-list .summary-label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

.booking-summary-list .summary-value {
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
}

.captcha-placeholder {
  padding: 16px;
  background: rgba(39, 50, 64, 0.6);
  border: 1px dashed rgba(172, 165, 60, 0.35);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.booking-form::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent-color), transparent, var(--accent-color));
  z-index: -1;
  border-radius: 17px;
  opacity: 0.3;
  filter: blur(5px);
}

.booking-form label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

.booking-form .form-control {
  background-color: rgba(39, 50, 64, 0.8) !important;
  border: 1px solid rgba(69, 84, 104, 0.5) !important;
  border-radius: 8px;
  padding: 12px 15px;
  height: auto;
  font-size: 15px;
  transition: all 0.3s ease;
}

.booking-form .form-control:focus {
  background-color: rgba(39, 50, 64, 0.95) !important;
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 3px rgba(172, 165, 60, 0.2);
}

.booking-form .form-control.is-invalid {
  border-color: var(--danger-color) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.booking-form .btn-group.is-invalid {
  outline: 2px solid var(--danger-color);
  outline-offset: 2px;
  border-radius: 4px;
}

.booking-form .invalid-feedback {
  color: var(--danger-color);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.booking-form .invalid-feedback.d-block {
  display: block !important;
}

.booking-form .btn {
  padding: 12px 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Utility classes */
.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .btn-getstarted {
    margin-right: 50px;
  }

  /* Removed overlay when mobile nav is active */
}

@media (max-width: 991px) {
  .hero {
    padding: 100px 0 60px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-title div {
    font-size: 32px;
  }

  .booking-form {
    margin-top: 40px;
  }

  .gallery-img {
    height: 240px;
  }

  .footer .footer-links {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 40px 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p.lead {
    font-size: 16px;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .hero .d-flex {
    flex-direction: column;
  }

  .section-title div {
    font-size: 26px;
  }

  .section-title h2::after {
    width: 80px;
  }

  .gallery-img {
    height: 220px;
  }

  .gallery .swiper-button-next,
  .gallery .swiper-button-prev {
    display: none;
  }

  .package-card .package-image {
    height: 180px;
  }

  .footer {
    padding: 40px 0 20px 0;
    text-align: center;
  }

  .footer .social-links {
    justify-content: center;
    margin-top: 20px;
  }

  .footer .contact-item {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-badges .badge-pill {
    font-size: 12px;
    padding: 6px 12px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title div {
    font-size: 22px;
  }

  .gallery-img {
    height: 200px;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-info-icon {
    margin: 0 auto 10px;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process-step-icon {
    margin-bottom: 10px;
  }

  .social-media-preview {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: 1fr 1fr;
  }

  .btn-floating {
    width: 48px;
    height: 48px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-top {
    right: 12px;
    bottom: 150px;
  }

  .whatsapp-float {
    right: 10px;
    bottom: 90px;
    width: 45px;
    height: 45px;
  }

  .whatsapp-float i {
    font-size: 24px;
  }
}

/* Responsive button groups - vertical on mobile, horizontal on desktop */
.btn-group-vertical.btn-group-md-horizontal {
  flex-direction: column;
}

@media (min-width: 768px) {
  .btn-group-vertical.btn-group-md-horizontal {
    flex-direction: row;
  }
}

/* Accordion Styles */
.accordion {
  --bs-accordion-bg: var(--surface-color);
  --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
  --bs-accordion-btn-bg: var(--surface-color);
  --bs-accordion-btn-color: var(--default-color);
  --bs-accordion-active-bg: rgba(172, 165, 60, 0.1);
  --bs-accordion-active-color: var(--accent-color);
  --bs-accordion-btn-focus-border-color: var(--accent-color);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(172, 165, 60, 0.25);
}

.accordion-item {
  background-color: var(--surface-color);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-button {
  background-color: var(--surface-color);
  color: var(--default-color);
  font-weight: 500;
  padding: 1rem 1.25rem;
  border: none;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(172, 165, 60, 0.1);
  color: var(--accent-color);
  box-shadow: none;
}

.accordion-button:hover {
  background-color: rgba(172, 165, 60, 0.05);
}

.accordion-button:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(172, 165, 60, 0.25);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e5e7eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  filter: brightness(1);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ACA53C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-collapse {
  border: none;
}

/* =====================================================
   Waiver Form Wizard - Mobile Responsive Styles
   ===================================================== */

/* Base waiver form styling */
.wizard-step-form .form-control,
.wizard-step-form .form-select {
  background-color: var(--surface-color);
  border-color: var(--surface-color-light);
  color: var(--default-color);
}

.wizard-step-form .form-control:focus,
.wizard-step-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(172, 165, 60, 0.25);
}

.wizard-step-form .form-label {
  color: var(--default-color);
  font-weight: 500;
}

.wizard-step-form .form-text {
  color: var(--default-color);
  opacity: 0.7;
}

.wizard-step-form .form-check-input {
  background-color: var(--surface-color);
  border-color: var(--surface-color-light);
}

.wizard-step-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.wizard-step-form .form-check-label {
  color: var(--default-color);
}

/* Waiver section styling */
.waiver-section {
  margin-bottom: 1.5rem;
}

.waiver-section h4 {
  font-size: 1.25rem;
}

.waiver-section h5 {
  font-size: 1.1rem;
}

/* Mobile-specific waiver form styles */
@media (max-width: 767.98px) {

  /* Reduce section margins on mobile */
  .waiver-section {
    margin-bottom: 1rem;
  }

  .waiver-section h4 {
    font-size: 1.1rem;
  }

  .waiver-section h5 {
    font-size: 1rem;
  }

  /* Make form inputs larger for touch */
  .wizard-step-form .form-control,
  .wizard-step-form .form-select {
    padding: 0.75rem 1rem;
    font-size: 16px;
    /* Prevents iOS zoom on focus */
  }

  /* Improve checkbox and radio touch targets */
  .wizard-step-form .form-check {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
  }

  .wizard-step-form .form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-left: -2rem;
  }

  .wizard-step-form .form-check-label {
    padding-left: 0.25rem;
  }

  /* Better spacing for alerts on mobile */
  .wizard-step-form .alert {
    padding: 0.75rem;
    font-size: 0.875rem;
  }

  .wizard-step-form .alert .bi {
    font-size: 1rem;
  }

  /* Reduce legal agreement box height on mobile */
  .waiver-section .p-4.rounded {
    max-height: 200px !important;
    padding: 0.75rem !important;
  }

  /* File upload improvements for mobile */
  .wizard-step-form input[type="file"] {
    padding: 0.5rem;
  }

  /* Badge styling adjustments */
  .waiver-section .badge {
    font-size: 0.65rem;
    padding: 0.3em 0.5em;
  }
}

/* Extra small mobile devices */
@media (max-width: 374.98px) {

  .wizard-step-form .form-control,
  .wizard-step-form .form-select {
    padding: 0.625rem 0.75rem;
  }

  .waiver-section h4 {
    font-size: 1rem;
  }

  .waiver-section p.text-muted {
    font-size: 0.875rem;
  }
}

/* Desktop enhancements for waiver form */
@media (min-width: 768px) {

  .wizard-step-form .form-control,
  .wizard-step-form .form-select {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .wizard-step-form .form-control:hover,
  .wizard-step-form .form-select:hover {
    border-color: var(--surface-color-light);
  }
}

/* Fix text readability on dark background for waiver forms */
.wizard-step-form .text-muted,
.wizard-progress-mobile .text-muted,
.wizard-progress-desktop .text-muted,
.wizard-navigation .text-muted,
.waiver-section .text-muted,
.signature-section .text-muted,
.waiver-form .text-muted {
  color: rgba(229, 231, 235, 0.75) !important;
  /* Light gray with good contrast */
}

.wizard-step-form .form-text,
.waiver-section .form-text,
.waiver-form .form-text {
  color: rgba(229, 231, 235, 0.7);
  /* Slightly softer for hint text */
}

/* Small text in medical questionnaire and similar areas */
.wizard-step-form .small.text-muted,
.waiver-section .small.text-muted,
.signature-section .small.text-muted,
.waiver-form .small.text-muted {
  color: rgba(229, 231, 235, 0.7) !important;
}

/* Progress step text */
.wizard-progress-mobile .small {
  color: rgba(229, 231, 235, 0.75);
}

/* Save & Exit link button in navigation */
.wizard-navigation .btn-link.text-muted {
  color: rgba(229, 231, 235, 0.75) !important;
}

.wizard-navigation .btn-link.text-muted:hover {
  color: var(--accent-color) !important;
}

/* Legal agreement text in completion step */
.waiver-section .p-4.rounded p,
.waiver-section .p-4.rounded ul,
.waiver-section .p-4.rounded li {
  color: var(--default-color);
}

/* Litepicker Date Range Picker - Dark Theme */
.litepicker {
  --litepicker-container-months-color-bg: var(--surface-color, #2a3441);
  --litepicker-month-header-color: var(--heading-color, #ffffff);
  --litepicker-button-prev-month-color: var(--default-color, #e5e7eb);
  --litepicker-button-next-month-color: var(--default-color, #e5e7eb);
  --litepicker-button-prev-month-color-hover: var(--accent-color, #ACA53C);
  --litepicker-button-next-month-color-hover: var(--accent-color, #ACA53C);
  --litepicker-month-weekday-color: rgba(229, 231, 235, 0.5);
  --litepicker-day-color: var(--default-color, #e5e7eb);
  --litepicker-day-color-hover: var(--heading-color, #ffffff);
  --litepicker-is-today-color: var(--accent-color, #ACA53C);
  --litepicker-is-in-range-color: rgba(172, 165, 60, 0.2);
  --litepicker-is-start-color: var(--heading-color, #ffffff);
  --litepicker-is-start-color-bg: var(--accent-color, #ACA53C);
  --litepicker-is-end-color: var(--heading-color, #ffffff);
  --litepicker-is-end-color-bg: var(--accent-color, #ACA53C);
  --litepicker-is-locked-color: rgba(229, 231, 235, 0.25);
  font-family: inherit;
}

.litepicker .container__months {
  background-color: var(--surface-color, #2a3441);
  border: 1px solid var(--surface-color-light, #3d4d61);
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.litepicker .container__months .month-item-header {
  padding: 0.75rem 0.5rem;
}

.litepicker .container__months .month-item-weekdays-row > div {
  padding: 0.25rem 0;
  font-size: 0.75rem;
}

.litepicker .container__days .day-item {
  border-radius: 0.25rem;
  transition: background-color 0.15s ease;
}

.litepicker .container__days .day-item:hover {
  background-color: var(--surface-color-light, #3d4d61);
}

@media (max-width: 768px) {
  .litepicker .container__months {
    flex-direction: column;
  }

  .litepicker .container__months .month-item {
    width: 100%;
  }
}

/* ─── Room availability cards ─── */

.room-card {
  background: var(--surface-color, #2a3441);
  border: 2px solid var(--surface-color-light, #3d4d61);
  border-radius: var(--border-radius-md, 8px);
  padding: 14px 16px;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.room-card:hover:not(.room-card--sold-out) {
  background: rgba(172, 165, 60, 0.06);
  border-color: var(--surface-color-light, #3d4d61);
}

.room-card:active:not(.room-card--sold-out) {
  transform: scale(0.985);
}

/* Selected state */
.room-card--selected {
  border-color: var(--accent-color, #ACA53C);
  box-shadow: 0 0 0 1px var(--accent-color, #ACA53C);
}

.room-card--selected:hover {
  background: rgba(172, 165, 60, 0.08);
}

/* Sold out state */
.room-card--sold-out {
  cursor: not-allowed;
  opacity: 0.5;
}

/* ─── Card header: badge + name ─── */

.room-card__header {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
}

.room-card__badge {
  align-self: flex-start;
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--border-radius-full, 9999px);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.4;
}

.room-card__name {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.room-card__icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  margin-top: 2px;
  color: var(--surface-color-light, #3d4d61);
  transition: color 0.15s ease;
}

.room-card__icon--active {
  color: var(--accent-color, #ACA53C);
}

.room-card__title {
  font-weight: 500;
  font-size: 15px;
  color: var(--heading-color, #fff);
  line-height: 1.35;
}

/* ─── Pricing ─── */

.room-card__pricing {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: var(--default-color, #e5e7eb);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 6px;
}

.room-card__rate {
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-color, #ACA53C);
}

.room-card__per-night {
  color: var(--default-color, #e5e7eb);
  opacity: 0.7;
}

.room-card__total {
  width: 100%;
  font-size: 12px;
  opacity: 0.65;
  margin-top: 2px;
}

/* ─── Wider screens: compact side-by-side ─── */

@media (min-width: 576px) {
  .room-card__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .room-card__badge {
    align-self: flex-start;
    flex-shrink: 0;
  }

  .room-card__total {
    width: auto;
    margin-top: 0;
  }

  .room-card__pricing {
    flex-wrap: nowrap;
    gap: 6px;
  }
}

/* ─── Price List Page ─── */

/* Sticky in-page navigation */
.price-nav {
  position: sticky;
  top: 60px;
  z-index: 100;
  background-color: rgba(26, 33, 43, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(172, 165, 60, 0.2);
  padding: 12px 0;
}

.price-nav__links {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.price-nav__links::-webkit-scrollbar {
  display: none;
}

.price-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--border-radius-full);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  transition: all 0.3s ease;
  text-decoration: none;
}

.price-nav__link:hover {
  color: #fff;
  background-color: rgba(172, 165, 60, 0.15);
  border-color: var(--accent-color);
  text-decoration: none;
}

.price-nav__link i {
  font-size: 14px;
  color: var(--accent-color);
}

/* Price row — flex layout replacing tables */
.price-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.price-row:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(172, 165, 60, 0.2);
  transform: translateY(-2px);
}

.price-row--course {
  padding: 20px 24px;
}

.price-row--compact {
  padding: 12px 16px;
}

.price-row__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(172, 165, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-row__icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.price-row__info {
  flex: 1;
  min-width: 0;
}

.price-row__title {
  font-weight: 600;
  font-size: 16px;
  color: var(--heading-color);
  line-height: 1.3;
}

.price-row__description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  line-height: 1.5;
}

.price-row__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

/* Price badge */
.price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-color-secondary));
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--border-radius-full);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(172, 165, 60, 0.3);
}

.price-badge--sm {
  padding: 6px 12px;
  font-size: 14px;
}

/* Category header for equipment groups */
.category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(172, 165, 60, 0.2);
}

.category-header i {
  font-size: 20px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .price-nav {
    top: 55px;
  }

  .price-nav__link {
    padding: 6px 12px;
    font-size: 13px;
  }

  .price-row {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 16px;
  }

  .price-row__icon {
    width: 36px;
    height: 36px;
  }

  .price-row__icon i {
    font-size: 16px;
  }

  .price-badge {
    margin-left: auto;
    font-size: 14px;
    padding: 6px 12px;
  }
}

@media (max-width: 576px) {
  .price-nav__links {
    gap: 6px;
  }

  .price-nav__link {
    padding: 5px 10px;
    font-size: 12px;
  }

  .price-row {
    padding: 12px;
  }

  .price-row__title {
    font-size: 15px;
  }

  .price-row__description {
    font-size: 13px;
  }

  .category-header {
    font-size: 16px;
  }
}