* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Montserrat, sans-serif;
}

html, body {
  height: 100%;
  /* font-family: Arial, sans-serif; */
  /* font-family: Roboto, sans-serif; */
  font-family: Montserrat, sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Enhanced Toolbar */
.toolbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(0px);
}

.toolbar.scrolled {
  backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(0);
}

.toolbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease;
}

.toolbar.scrolled .toolbar-container {
  padding: 8px 20px;
}

/* Enhanced Logo */
.logo {
  font-size: 30px;
  font-weight: bold;
  color: #222;
  font-family: Anton, sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.logo:hover {
  transform: scale(1.05);
  color: #D4AF37;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, #B8941F);
  transition: width 0.4s ease;
}

.logo:hover::after {
  width: 100%;
}

/* Enhanced Menu */
.menu {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Enhanced Navigation Buttons */
.btn-toolbar {
  font-size: 16px;
  border: none;
  background-color: transparent;
  color: #222;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  overflow: hidden;
}

.btn-toolbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.btn-toolbar:hover::before {
  left: 100%;
}

.btn-toolbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #D4AF37, #B8941F);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.btn-toolbar:hover {
  color: #D4AF37;
  background-color: rgba(212, 175, 55, 0.08);
  transform: translateY(-1px);
}

.btn-toolbar:hover::after {
  width: 80%;
}

.btn-toolbar:active {
  transform: translateY(0);
}

/* Active State for Current Page */
.btn-toolbar.active {
  color: #D4AF37;
  background-color: rgba(212, 175, 55, 0.12);
  font-weight: 600;
}

.btn-toolbar.active::after {
  width: 80%;
}

/* Enhanced Book Now Button */
.book-now button {
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #222;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.book-now button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.book-now button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #E5C965, #D4AF37);
}

.book-now button:hover::before {
  left: 100%;
}

.book-now button:active {
  transform: translateY(0);
}

/* Enhanced Mobile Menu Icon */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #222;
  background: transparent;
}

.menu-icon:hover {
  background-color: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  transform: scale(1.1);
}

.menu-icon:active {
  transform: scale(0.95);
}

/* Enhanced Mobile Menu */
@media (max-width: 956px) {
  .menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 20px 0;
    gap: 0;
    border-radius: 0 0 16px 16px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .menu.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    animation: mobileMenuSlide 0.4s ease-out;
  }

  @keyframes mobileMenuSlide {
    0% {
      opacity: 0;
      transform: translateY(-30px);
    }
    50% {
      opacity: 0.5;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .btn-toolbar {
    width: 100%;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
  }

  .btn-toolbar::before {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
  }

  .btn-toolbar:first-child {
    border-top: none;
  }

  .btn-toolbar::after {
    display: none;
  }

  .book-now {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  /* Mobile menu icon animation */
  .menu-icon.active {
    transform: rotate(90deg);
    color: #D4AF37;
  }
}

/* Toolbar entrance animation */
.toolbar {
  animation: toolbarSlideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual menu items animation */
.btn-toolbar {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.btn-toolbar:nth-child(1) { animation-delay: 0.1s; }
.btn-toolbar:nth-child(2) { animation-delay: 0.2s; }
.btn-toolbar:nth-child(3) { animation-delay: 0.3s; }
.btn-toolbar:nth-child(4) { animation-delay: 0.4s; }
.btn-toolbar:nth-child(5) { animation-delay: 0.5s; }
.btn-toolbar:nth-child(6) { animation-delay: 0.6s; }
.btn-toolbar:nth-child(7) { animation-delay: 0.7s; }

.logo {
  opacity: 0;
  animation: logoEntry 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.book-now button {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

@keyframes toolbarSlideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes logoEntry {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  50% {
    transform: scale(1.1) translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Micro-interactions for better feedback */
.btn-toolbar:focus-visible,
.book-now button:focus-visible,
.menu-icon:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* Loading state for toolbar */
.toolbar.loading {
  pointer-events: none;
  opacity: 0.8;
}

/* Toolbar hover effect for the entire bar */
.toolbar:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Smooth transitions for all interactive elements */
.toolbar * {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Menu Icon Hidden by Default */
.menu-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 956px) {
  .menu {
    display: none; /* hide menu by default */
    flex-direction: column;
    width: 100%;
    background-color: white;
    position: absolute;
    top: 60px;
    left: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 10px 0;
    gap: 0px;
  }

  .menu.open {
    display: flex; /* show when menu is open */
  }

  .btn-toolbar {
    width: 100%;
    text-align: center;
    padding: 25px 20px;
    border-top: 1px solid #eee;
  }

  .book-now {
    display: none; /* Hide book now button separately */
  }

  .menu-icon {
    display: block; /* Show menu icon on mobile */
  }
}

/* .menu a {
  text-decoration: none;
  color: #222;
  font-size: 16px;
  padding: 8px 12px;
  transition: background 0.3s;
}

.menu a:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
} */



/* Parallax */
.parallax {
  perspective: 1px;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding-top: 58px;
  background-color: #222;
  /* space for toolbar */

  /* background-image: url('src/bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  

}

/* Section and Background Video */
.section-1 {
  position: relative;
  overflow: hidden;
  min-height: calc(var(--vh, 1vh) * 100); /* better than height for mobile */
  background-color: black;
  padding-bottom: 0; /* remove extra space at bottom */
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none; /* just in case */
  filter: brightness(0.7) contrast(1.1);
  transform: scale(1.05);
  animation: videoZoom 20s ease-in-out infinite alternate;
}

@keyframes videoZoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Container Above Video */
.section-1 .container {
  position: relative;
  z-index: 1;
  will-change: transform;
  padding: 2rem;
  color: white;
}

/* Hero Content Animations */
.hero-box {
  max-width: 700px;
  text-align: center;
  opacity: 0;
  animation: heroFadeIn 1.2s ease-out 0.3s forwards;
}

.hero-box h2 {
  font-size: 72px;
  font-family: Anton, sans-serif;
  padding: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUpFade 1s ease-out 0.5s forwards;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-box h4 {
  font-size: 24px;
  margin-bottom: 32px;
  font-family: Anton, sans-serif;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 1s ease-out 0.7s forwards;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-description{
  font-size: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 1s ease-out 0.9s forwards;
  line-height: 1.6;
}

.button-row {
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFade 1s ease-out 1.1s forwards;
}

/* Enhanced Button Animations */
.primary-btn,
.secondary-btn {
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.primary-btn {
  background-color: gold;
  color: black;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.primary-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.primary-btn:hover::before {
  left: 100%;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
}

.secondary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: white;
  transition: width 0.3s ease;
  z-index: -1;
}

.secondary-btn:hover {
  color: #222;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.secondary-btn:hover::before {
  width: 100%;
}

/* Enhanced Scroll Down Animation */
.scroll-down {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  z-index: 2;
  will-change: transform;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  animation: bounceScroll 2s ease-in-out infinite;
  opacity: 0;
  animation: fadeInBounce 1.5s ease-out 1.3s forwards;
}

.scroll-down:hover {
  cursor: pointer;
  color: #D4AF37;
  transform: translateY(-5px);
}

.scroll-down .arrow {
  font-size: 24px;
  margin-top: 5px;
  display: block;
  animation: arrowBounce 2s ease-in-out infinite;
}

/* Keyframe Animations */
@keyframes heroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceScroll {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Parallax effect for scroll */
.parallax-content {
  transform: translateZ(0);
  will-change: transform;
}

/* Loading state for smooth transitions */
.section-1.loading {
  opacity: 0.8;
}

.section-1.loading .hero-box {
  animation: none;
  opacity: 0.5;
}

/* Mobile Optimizations */
@media (max-width: 650px) {
  .hero-box h2 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
  
  .hero-box h4 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .button-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .background-video {
    animation: none;
    transform: scale(1.02);
  }
  
  .hero-box,
  .hero-box h2,
  .hero-box h4,
  .hero-description,
  .button-row,
  .scroll-down {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .primary-btn:hover,
  .secondary-btn:hover {
    transform: none;
  }
}

section {
  /* position: relative; */
  /* height: calc(100vh - 58px); */
  /* min-height: 100vh; */
  display: block;
  align-items: center;
  justify-content: center;
  /* font-weight: bold; */
  /* transform-style: preserve-3d; */
  transform: translateZ(0);
  text-align: center;
}

.container{
  display: flex;
  justify-content: center;
}

.dark {
  /* background-color: #222; */
  background-color: rgba(0,0,0,0);
  color: white;
}

.light {
  background-color: #eee;
  color: #222;
}

.gold {
  background-color: #D4AF37;
  color: #222;
}

/* Content container inside each section */
.content-container {
  max-width: 1400px;
  width: 100%;
  padding: 96px 32px;
  min-height: calc(100vh - 58px);
  /* padding: 0 20px; */
}

/* Hero Content */
.hero-box-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-box {
  max-width: 700px;
  text-align: center;
}

.hero-description {
  display: block;
  margin-top: 1rem;
  font-size: 1.1rem;
}

@media (max-width: 650px) {
  .hero-box {
    text-align: center;
    max-width: 600px;
  }
}

.hero-box h2 {
  font-size: 72px;
  /* margin-bottom: 16px; */
  font-family: Anton, sans-serif;
  padding: 0;
}

.hero-box h4 {
  font-size: 24px;
  margin-bottom: 32px;
  font-family: Anton, sans-serif;
}

.hero-description{
  font-size: 18px;
}

.hero-box p {
  margin-bottom: 1em;
  line-height: 1.5;
}

/* Buttons */
.button-row {
  margin-top: 1.5rem;
}


@media (max-width: 650px) {
  .button-row {
    justify-content: center;
  }
}

.primary-btn,
.secondary-btn {
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
}

.primary-btn {
  background-color: gold;
  color: black;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.primary-btn:hover {
  background-color: #e6c200;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.secondary-btn:hover {
  background-color: white;
  color: hsl(0, 0%, 13%);
}

.highlight-gold-effect {
  font-family: Anton, sans-serif;
  color: #D4AF37;
  font-weight: bold;
  text-shadow:
    0 0 5px gold,
    0 0 10px gold,
    0 0 20px gold,
    0 0 40px orange,
    0 0 80px orange;
}

.highlight-gold {
  color: gold;
  font-family: Anton, sans-serif;
}



/* Section 2 Layout */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 48px;
  font-family: Anton, sans-serif;
}

.section-header p {
  font-size: 18px;
  margin-top: 10px;
  color: #555;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 10px;
}

.tab {
  width: 140px;
  padding: 10px;
  color: #ccc;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
  transition: left 0.5s;
}

.tab:hover::before {
  left: 100%;
}

.tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(92, 64, 51, 0.2);
  color: #fff;
}

.tab.active {
  background-color: #5c4033; /* darker brown */
  color: gold;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 64, 51, 0.3);
}

.tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: gold;
  border-radius: 2px;
  animation: tabIndicator 0.3s ease-out;
}

@keyframes tabIndicator {
  0% {
    width: 0;
  }
  100% {
    width: 30px;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 20px;
  justify-content: center;
  padding: 20px;
  transition: all 0.3s ease;
  min-height: 400px; /* Prevents layout jump during filtering */
}

.cards.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Loading state for cards container */
.cards-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.cards-loading::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid gold;
  border-radius: 50%;
  animation: cardsSpinner 1s linear infinite;
}

@keyframes cardsSpinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.card {
  background-color: white;
  width: 100%;
  border-radius: 10px;
  overflow: hidden; /* add this so the image and contents clip to card rounded border */
  text-align: left;
  color: #222;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Enhanced smooth transition */
  opacity: 0;
  transform: translateY(50px) scale(0.9);
  animation: cardEnter 0.6s ease-out forwards;
}

/* Intersection Observer Animations */
.card.animate-in,
.benefit-card.animate-in,
.step.animate-in,
.contact-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cardEnter {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  60% {
    opacity: 0.8;
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive: 2 cards per row under 840px */
@media (max-width: 840px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive: 1 card per row under 540px */
@media (max-width: 540px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card:hover {
  transform: translateY(-15px) scale(1.03); /* Enhanced float effect with scale */
  box-shadow: 0px 12px 30px rgba(0,0,0,0.15);
}

.card:active {
  transform: translateY(-5px) scale(0.98);
  transition: all 0.1s ease;
}

.card-image {
  background-color: #ccc;
  height: 200px;
  background-size: contain; /* fit image fully, no crop */
  background-repeat: no-repeat;
  background-position: center;
  position: relative; /* add for absolute status positioning */
}

.card-container{
  padding: 24px;
}

.price-detail{
  margin-top: 10px;
  color: #222;
  text-align: center;
}

/* Status "Toring" (on image) */
.card-image::after {
  content: attr(data-status); /* use data-status attribute */
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: gold;
  color: #222;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: bold;
}

/* About text contents */
.highlight-font {
  font-size: 24px;
  font-weight: bold;
}

/* Specs grid */
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 cols */
  grid-template-rows: 1fr 1fr;    /* 2 rows */
  gap: 10px;
  margin-top: 16px;
  /* margin: 10px 0; */
}

.specs .spec {
  text-align: center;
  background-color: #F3F4F6;
  border-radius: 5px;
  padding: 8px;
  transition: all 0.3s ease;
}

.card:hover .specs .spec {
  background-color: #E5E7EB;
  transform: translateY(-2px);
}

.card:hover .specs .spec:nth-child(odd) {
  animation: specPulse 1.5s ease-in-out infinite;
}

.card:hover .specs .spec:nth-child(even) {
  animation: specPulse 1.5s ease-in-out infinite 0.3s;
}

@keyframes specPulse {
  0%, 100% {
    transform: translateY(-2px) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
  }
}

.specs .spec .spec-title {
  color: #6B7280;
  font-size: 12px;
  transition: color 0.3s ease;
}

.card:hover .specs .spec .spec-title {
  color: #374151;
}

.specs .spec .spec-value {
  color: gold;
  text-shadow: 1px 1px 1px rgb(103, 103, 103);
  transition: all 0.3s ease;
}

.card:hover .specs .spec .spec-value {
  color: #d4a724;
  text-shadow: 1px 1px 3px rgba(212, 167, 36, 0.3);
}

/* Helmet Status */
.status {
  display: inline-block;
  background-color: #d4edda;
  color: #155724;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 16px;
  width: auto; /* fit text */
}

.button-box{
  margin-top: 16px;
}

/* Book button */
.book-btn {
  margin-top: auto;
  background-color: transparent;
  border: 1px solid gold;
  color: gold;
  padding: 10px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  text-shadow: 1px 1px 1px rgb(173, 173, 173);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
  transition: left 0.6s;
}

.book-btn:hover::before {
  left: 100%;
}

.book-btn:hover {
  background-color: gold;
  color: #222;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.book-btn:active {
  transform: translateY(0);
  transition: all 0.1s ease;
}

/* === OUR PRICING SECTION === */
.section-template {
  background-color: #222;
  /* color: gold; */
  padding: 60px 20px;
}

.section-3 .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-3 .section-header h2 {
  font-size: 48px;
  margin-bottom: 10px;
  font-family: Anton, sans-serif;
}

.section-3 .section-header p {
  font-size: 18px;
  color: #ccc;
}

.pricing-table {
  width: 100%;
  margin-bottom: 30px;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead th {
  background-color: gold;
  color: white;
  font-weight: bold;
  padding: 15px;
  font-size: 18px;
  text-align: center;
  text-shadow: 1px 1px 2px black;
}

.pricing-table tbody td {
  padding: 15px;
  font-size: 16px;
  text-align: center;
  color: #D1D5DB;
}

.pricing-table tbody td:first-child {
  color: gold;
  font-weight: bold;
  text-align: left;
}

@media (max-width: 420px) {
  .pricing-table table {
    font-size: 12px;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 8px;
  }

  .pricing-table tbody td:first-child {
    font-size: 13px;
  }
}


.pricing-note {
  background-color: #896900;
  color: #D1D5DB;
  font-weight: bold;
  padding: 16px;
  margin-bottom: 40px;
  border-radius: 8px;
  text-align: left;
}

.benefits-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.benefit-card {
  background-color: #333;
  color: white;
  width: calc(33% - 9px);
  /* max-width: 430px; */
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
}

@media (max-width: 840px) {
  .benefit-card {
    width: 100%;
  }
}

.benefit-card h3 {
  color: gold;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #ccc;
  margin-bottom: 10px;
}

.benefit-card .detail {
  color: gold;
  font-weight: bold;
}

/* === HOW IT WORKS SECTION === */
/* .section-4 {
  background-color: gold;
  color: #222;
  padding: 60px 20px;
} */

.section-4 .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-4 .section-header h2 {
  font-size: 48px;
  margin-bottom: 10px;
  font-family: Anton, sans-serif;
}

.section-4 .section-header p {
  font-size: 18px;
}

.steps {

  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 20px;
  justify-content: center;

  /* display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; */
  margin-top: 40px;
  margin-bottom: 60px;
  color: white;
}


@media (max-width: 680px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.steps .step-content{
  display: flex;
  justify-content: center;
}

.step {
  /* background-color: white; */
  /* width: 250px; */
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  color: white;

  /* box-shadow: 0px 4px 8px rgba(0,0,0,0.2); */
}

.step .highlight-font2 {
  font-size: 24px;
  color: #FFFFFF;
  font-family: Anton, sans-serif;
  margin-bottom: 10px;
}

.step .circle {
  width: 96px;
  height: 96px;
  background-color: rgb(255, 255, 255);
  color: #D4AF37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
  margin: 0 auto 15px auto;
  font-family: Anton, sans-serif;
  /* box-shadow: 0px 2px 6px rgba(0,0,0,0.3); */
}

/* .step h4 {
  margin-bottom: 10px;
} */

.step p {
  font-size: 16px;
  color: #FFFFFFCC;
}

/* What You'll Need Subsection */
.section-subheader {
  text-align: center;
  margin-bottom: 16px;
  font-family: Anton, sans-serif;

}

.section-subheader h3 {
  font-size: 28px;
  font-weight: bold;
  color: #222;
}

.requirements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  text-align: left;
}

.requirement {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  width: 350px;
}

.requirement-icon {
  width: 50px;
  height: 50px;
  background-color: gold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin-right: 15px;
  color: #222;
}

.requirement h5 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #222;
}

.requirement p {
  font-size: 16px;
  color: #555;
}





/* --- OUR LOCATION Section --- */

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.map-column {
  flex: 1 1 400px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
  /* border-radius: 10px; */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.map-column .map-style {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  height: 100%;
  min-height: 500px;
}


.info-card {
  flex: 1 1 0;
  background-color: #f5f5f5;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  text-align: left;
  color: #374151;
  font-size: 16px;
}

.info-card h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.gold-text {
  color: #D4AF37;
  /* font-weight: bold; */
  font-family: Anton, sans-serif;
  font-size: 18px;
}

.hours-table {
  width: 100%;
  margin-bottom: 20px;
}

.hours-table td {
  padding: 5px 10px;
  text-align: left;
  border: none;
}

.nearby-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.nearby-list li {
  margin-bottom: 5px;
}

.get-directions-btn {
  background-color: gold;
  color: #222;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  /* width: 100%; */
  width: 180px;
  transition: background 0.3s;
}

.get-directions-btn:hover {
  background-color: #e6c200;
}


/* --- OUR GALLERY --- */
.section-gallery {
  /* background-color: #222; */
  color: white;
  padding: 60px 20px;
}

.gallery-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

/* === Booking Form Styling === */
.booking-form-card {
  flex: 1 1 50%;
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  color: #D4AF37;
  text-align: left;
}

.form-title {
  font-family: Anton, sans-serif;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.booking-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.form-section{
  margin-bottom: 32px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="date"],
.booking-form textarea {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: white;
  font-size: 16px;
}

.form-row input::placeholder,
.booking-form textarea::placeholder  {
  color: rgb(105, 105, 105);
}

input, textarea  {
  color: gold;
}

#fullName, #whatsappNumber, #email, #startDate, #endDate, #additionalInfo{
  background-color: #2F2622;
}

/* .form-row div div{
  text-align: left;
} */

.book-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.book-field label {
  font-size: 14px;
  color: gray;
  margin-bottom: 5px;
  text-align: left;
}

.section-label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-group label {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

textarea {
  width: 100%;
  min-height: 128px;
  resize: vertical;
}

.submit-btn {
  background-color: gold;
  color: #222;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
  font-size: 16px;
}

.submit-btn:hover {
  background-color: #e6c200;
}

.confirmation-message {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}


.contact-cards {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
}

.contact-card {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

.contact-card h3{
  font-size: 24px;
  font-family: Anton, sans-serif;
}

.contact-card h4{
  font-size: 24px;
  font-family: Anton, sans-serif;
  color: #D4AF37;
}

.contact-val {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.contact-val span {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contact-val .contact-val-title {
  font-size: 18px;
  font-family: Anton, sans-serif;
}

.contact-follow-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
  gap: 10px;
  justify-content: center;
  text-align: left;
}

@media (max-width: 680px) {
  .contact-follow-cards {
    grid-template-columns: 1fr;
  }
}

.contact-follow-card {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 15px;
  background-color: white;
  color: #6B7280;
}

.contact-follow-card:hover {
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-follow-card span {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.contact-follow-card .contact-follow-card-title {
  color: #D4AF37;
}

.contact-follow-card .need-title {
  font-size: 18px;
  font-family: Anton, sans-serif;
}

.logo-icon {
  width: 30px;   /* control size */
  height: 30px;
  object-fit: contain; /* keep the logo's aspect ratio */
}

.gold-card {
  background-color: #D4AF37;
  font-weight: bold;
}

/* --- CONTACT SECTION --- */
/* .section-contact {
  background-color: #eee;
  padding: 60px 20px;
} */

.subscribe-card {
  background-color: gold;
  color: #222;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 50px;
}

.subscribe-card h2{
  font-size: 30px;
  font-family: Anton, sans-serif;
}

.subscribe-form {
  margin-top: 20px;
  display: flex;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  gap: 10px;
}

.subscribe-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.subscribe-btn {
  padding: 10px 20px;
  border: none;
  background-color: #222;
  color: gold;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  color: #FFFFFFB3;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column p {
  /* font-size: 14px; */
  color: #FFFFFFB3;
}

.copyright {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  color: #555;
}

.center-subtitle{
  display: flex;
  justify-content: center;
  color: #9CA3AF
}

.max-subtitle{
  max-width: 36rem;
}

.max-subtitle2{
  max-width: 36rem;
  color: #FFFFFFCC
}

.highlight-font {
  font-size: 24px;
  color: gold;
  font-family: Anton, sans-serif;
  text-shadow: 2px 2px 2px rgb(149, 149, 149);
}


.footer-title {
  font-size: 20px;
  color: white;
  font-family: Anton, sans-serif;
}


.tabs {
  display: flex;
  background-color: #6C5337;
  border-radius: 5px;
  overflow: hidden;
}

.tab {
  flex: 1;
  padding: 15px;
  text-align: center;
  background-color: #6C5337;
  color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.tab.active {
  background-color: #2F2622; /* darker brown for active */
  color: gold; /* active text color */
}

.image-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.image-grid img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s;

}

.image-grid img:hover {
  transform: scale(1.05);
}


.loading-spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #555;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.foreground-image{
  display: flex;
  justify-content: center;
}