/* 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 .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 underwater animated background */
#social-proof.social-proof-animated-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #031629 0%, #010d1a 55%, #00060d 100%);
}

#social-proof.social-proof-animated-bg::before,
#social-proof.social-proof-animated-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#social-proof.social-proof-animated-bg::before {
  background:
    radial-gradient(120% 160% at 50% -20%, rgba(38, 158, 192, 0.3), transparent 70%),
    radial-gradient(100% 120% at 15% 110%, rgba(12, 68, 102, 0.28), transparent 80%);
  mix-blend-mode: screen;
  animation: socialProofCurrentDrift 28s ease-in-out infinite alternate;
  opacity: 0.6;
}

#social-proof.social-proof-animated-bg::after {
  background:
    radial-gradient(circle at 25% 85%, rgba(170, 220, 255, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(130, 200, 240, 0.12) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='360' viewBox='0 0 180 360'%3E%3Cg fill='rgba(200, 240, 255, 0.18)'%3E%3Ccircle cx='30' cy='340' r='1.4'/%3E%3Ccircle cx='120' cy='320' r='1.2'/%3E%3Ccircle cx='70' cy='260' r='1.6'/%3E%3Ccircle cx='150' cy='210' r='1.3'/%3E%3Ccircle cx='45' cy='140' r='1.1'/%3E%3Ccircle cx='110' cy='90' r='1.4'/%3E%3Ccircle cx='170' cy='60' r='1.0'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100%, 100%, 220px 440px;
  animation: socialProofBubblesRise 30s linear infinite;
  opacity: 0.45;
}

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

@keyframes socialProofCurrentDrift {
  0% {
    transform: translate3d(-6%, -4%, 0) scale(1.05);
  }
  50% {
    transform: translate3d(4%, 3%, 0) scale(1.01);
  }
  100% {
    transform: translate3d(8%, -2%, 0) scale(1.06);
  }
}

@keyframes socialProofBubblesRise {
  0% {
    background-position: 0 440px, 0 400px, 0 360px;
    opacity: 0.25;
  }
  50% {
    background-position: 0 180px, 0 160px, 0 60px;
    opacity: 0.4;
  }
  100% {
    background-position: 0 -220px, 0 -240px, 0 -360px;
    opacity: 0.25;
  }
}

/* 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;
  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: #ffffff;
    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 */
  .mobile-nav-toggle.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;
}

.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;
}
