:root {
  --primary: #0d5568;
  --primary-light: #1a7a92;
  --accent: #20b2aa;
  --accent-dark: #168f88;
  --gold: #4fa3a0;        /* teal-infused premium gold */
  --gold-light: #7fc9c6;  /* lighter teal-gold highlight */

  --dark: #0f172a;
  --darker: #ffffff;
  --light: #f8fafc;
  --glow: rgba(32, 178, 170, 0.25);
}
#bookingModal .modal-body {
  padding-bottom: 120px !important;
}

* {margin: 0; padding: 0; box-sizing: border-box;}

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #0f172a;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 1px;
  color: #0f172a;
}

/* GLASSMORPHIC NAV */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(32, 178, 170, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
  border-bottom: 1px solid rgba(32, 178, 170, 0.35);
}

.nav-logo {
  height: 60px;
  width: auto;
  filter: none;
}

.nav-link {
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  width: 100%;
}

/* IMMERSIVE HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f1f5f9 50%,
    #e2e8f0 100%
  );
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(32, 178, 170, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  animation: float 20s infinite ease-in-out;
}

.shape:nth-child(1) {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: 10%;
  right: -5%;
  animation-delay: 5s;
}

.shape:nth-child(3) {
  width: 350px;
  height: 350px;
  background: var(--accent);
  top: 50%;
  right: 20%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -40px) scale(1.15); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 100px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #0f172a;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: #334155;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* PREMIUM BOOKING CARD */
.booking-glass {
  background: #ffffff;
  backdrop-filter: blur(30px) saturate(180%);
  border-radius: 28px;
  border: 1px solid rgba(32, 178, 170, 0.25);
  padding: 45px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
  animation: fadeInUp 1s ease-out 0.4s backwards;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(32, 178, 170, 0.25);
  border-color: rgba(32, 178, 170, 0.4);
}

.form-control, .form-select {
  background: #ffffff;
  border: 1px solid rgba(32, 178, 170, 0.3);
  border-radius: 16px;
  padding: 14px 18px;
  color: #0f172a;
  font-size: 15px;
  transition: all 0.3s;
}

.form-control:focus, .form-select:focus {
  background: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(32, 178, 170, 0.2);
  color: #0f172a;
  outline: none;
}

.form-control::placeholder {
  color: #64748b;
}

.form-select option {
  background: #ffffff;
  color: #0f172a;
}

/* Mobile date/time labels */
.form-label-mobile {
  display: none;
  font-size: 13px;
  color: var(--accent-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .form-label-mobile {
    display: block;
  }
}

/* YES/NO TOGGLE - ENHANCED VISIBILITY */
.toggle-group {
  display: flex;
  gap: 12px;
}

.toggle-btn {
  flex: 1;
  background: #ffffff;
  border: 2px solid rgba(32, 178, 170, 0.35);
  border-radius: 16px;
  padding: 16px;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

.toggle-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  opacity: 0;
  transition: opacity 0.4s;
}

.toggle-btn:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  background: rgba(32, 178, 170, 0.12);
  box-shadow: 0 8px 20px rgba(32, 178, 170, 0.2);
}

.toggle-btn.active {
  background: rgba(32, 178, 170, 0.22);
  border-color: var(--accent);
  border-width: 3px;
  box-shadow: 0 0 0 4px rgba(32, 178, 170, 0.25),
              0 8px 30px rgba(32, 178, 170, 0.25);
  transform: scale(1.02);
}

.toggle-btn.active::before {
  opacity: 0.12;
}

.toggle-btn i,
.toggle-btn span {
  position: relative;
  z-index: 1;
}

/* COUNTER CONTROLS */
.counter-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid rgba(32, 178, 170, 0.3);
  border-radius: 16px;
  padding: 12px 18px;
  transition: all 0.3s;
}

.counter-control:hover {
  border-color: var(--accent);
  background: rgba(32, 178, 170, 0.08);
}

.counter-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(32, 178, 170, 0.15);
  border: 2px solid rgba(32, 178, 170, 0.35);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 20px;
  font-weight: 700;
}

.counter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(32, 178, 170, 0.35);
  transform: scale(1.1);
}

.counter-btn:active {
  transform: scale(0.95);
}

.counter-value {
  font-size: 22px;
  font-weight: 700;
  min-width: 50px;
  text-align: center;
  color: var(--accent);
}

/* CHILD AGE INPUTS */
.child-ages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.age-input-wrapper {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* LUXURY ACCOMMODATION SELECTOR */
.stay-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.stay-option {
  background: #ffffff;
  border: 2px solid rgba(32, 178, 170, 0.3);
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.stay-option::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.stay-option:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: rgba(32, 178, 170, 0.12);
  box-shadow: 0 6px 20px rgba(32, 178, 170, 0.2);
}

.stay-option.active {
  transform: scale(1.05);
  border-width: 3px;
}

/* Budget - Teal Green */
.stay-option[data-value="Budget"] {
  border-color: rgba(16, 185, 129, 0.4);
}
.stay-option[data-value="Budget"].active {
  background: rgba(16, 185, 129, 0.18);
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2),
              0 8px 25px rgba(16, 185, 129, 0.25);
}

/* Home Stay - Coral */
.stay-option[data-value="Home Stay"] {
  border-color: rgba(255, 127, 80, 0.4);
}
.stay-option[data-value="Home Stay"].active {
  background: rgba(255, 127, 80, 0.18);
  border-color: #ff7f50;
  box-shadow: 0 0 0 4px rgba(255, 127, 80, 0.2),
              0 8px 25px rgba(255, 127, 80, 0.25);
}

/* 3-Star - Ocean Blue (Most Popular) */
.stay-option[data-value="3-Star"] {
  border-color: rgba(32, 178, 170, 0.45);
}
.stay-option[data-value="3-Star"].active {
  background: rgba(32, 178, 170, 0.22);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(32, 178, 170, 0.25),
              0 8px 25px rgba(32, 178, 170, 0.3);
}

/* 4-Star - Purple */
.stay-option[data-value="4-Star"] {
  border-color: rgba(147, 112, 219, 0.4);
}
.stay-option[data-value="4-Star"].active {
  background: rgba(147, 112, 219, 0.18);
  border-color: #9370db;
  box-shadow: 0 0 0 4px rgba(147, 112, 219, 0.2),
              0 8px 25px rgba(147, 112, 219, 0.25);
}

/* 5-Star - Gold (PREMIUM ONLY) */
.stay-option[data-value="5-Star"] {
  border-color: rgba(212, 175, 55, 0.5);
}
.stay-option[data-value="5-Star"].active {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25),
              0 8px 25px rgba(212, 175, 55, 0.35);
}

.stay-option span {
  position: relative;
  z-index: 1;
}

.premium-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #0f172a;
  margin-top: 6px;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.popular-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  margin-top: 6px;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(32, 178, 170, 0.3);
}

/* PRIMARY CTA BUTTON */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  border-radius: 16px;
  padding: 18px 32px;
  width: 100%;

  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-decoration: none;

  color: #ffffff;
  cursor: pointer;
  position: relative;
  overflow: hidden;

  box-shadow: 0 8px 25px rgba(32, 178, 170, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* overlay */
.btn-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* ensure text is above overlay */
.btn-luxury i,
.btn-luxury span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

/* hover */
.btn-luxury:hover {
  transform: translateY(-3px);
}

.btn-luxury:hover::before {
  opacity: 1;
}

/* 🔑 TEXT + ICON TURN BLACK */
.btn-luxury:hover span,
.btn-luxury:hover i {
  color: #000000 !important;
}
/* MOBILE MENU */
body.menu-open {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f1f5f9 50%,
    #e2e8f0 100%
  );

  z-index: 2000;
  padding: 40px 30px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(15, 23, 42, 0.12);
}

/* Active */
.mobile-menu.active {
  right: 0;
}

/* Logo Wrapper (WHITE BOX) */
.mobile-menu img {
  display: block;
  margin: 0 auto 40px;
  padding: 18px 22px;
  background: #ffffff;
  border-radius: 16px;

  border: 1px solid rgba(212, 175, 55, 0.6);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.25),
    0 10px 30px rgba(212, 175, 55, 0.25);

  max-width: 180px;
}

/* Menu Links */
.mobile-menu a {
  display: block;
  color: #0f172a;
  text-decoration: none;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 26px;
  transition: all 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
}

.mobile-menu a:hover {
  color: var(--gold);
  transform: translateX(10px);
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  z-index: 1500;
  transition: opacity 0.35s ease;
}

.menu-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Active mobile menu item */
.mobile-menu a.active {
  color: var(--gold);
  font-weight: 600;
  position: relative;
}

/* Indicator bar */
.mobile-menu a.active::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--gold);
  border-radius: 4px;
}

/* FLOATING ACTION BAR */
.fab-bar {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: #ffffff;
  backdrop-filter: blur(20px);
  padding: 16px 0;
  z-index: 1200;
  border-top: 1px solid rgba(32, 178, 170, 0.3);
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.15);
  transition: bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-bar.show {
  bottom: 0;
}

.fab-item {
  color: #0f172a;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.fab-item i {
  font-size: 24px;
  transition: all 0.3s;
}

.fab-item span {
  font-size: 12px;
  font-weight: 500;
}

.fab-item:hover {
  color: var(--gold);
}

.fab-item:hover i {
  transform: scale(1.2);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  padding: 80px 0 140px;
  position: relative;
  color: #0f172a;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(32, 178, 170, 0.3),
    transparent
  );
  margin: 40px 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  margin: 0 8px;
  transition: all 0.4s;
  border: 2px solid rgba(32, 178, 170, 0.3);
}

.social-link:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 8px 20px rgba(32, 178, 170, 0.4);
}

.hidden {
  display: none;
}

/* FEATURE / STATS */
.feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: #f8fafc;
}

.feature-card h5 {
  color: var(--gold);
  margin-bottom: 15px;
}

.stat-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  opacity: 0.75;
}

/* ACCORDION */
.custom-accordion {
  background: transparent;
  border: none;
}

.custom-accordion .accordion-button {
  background: #ffffff;
  color: #0f172a;
  border-radius: 12px;
}

.custom-accordion .accordion-body {
  background: #f8fafc;
  color: #0f172a;
  border-radius: 12px;
}



/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-title { font-size: 3rem; }
  .booking-glass { padding: 30px; margin-top: 40px; }
  .stay-selector { grid-template-columns: repeat(3, 1fr); }
  .nav-logo { height: 50px; }
}

@media (max-width: 576px) {
  .stay-selector { grid-template-columns: repeat(2, 1fr); }
  .nav-logo { height: 45px; }
}

@media (max-width: 768px){
  body{font-size:12px}
  h1{font-size:25px}
  h5{font-size:14px}
}

/* FINAL MODAL – GOLD THEME */
#finalModal .modal-content {
  background: linear-gradient(
    135deg,
    #d4af37 0%,
    #e6c75f 50%,
    #c9a227 100%
  ) !important;
  border-radius: 20px !important;
  border: none !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35) !important;
}

#finalModal h5 {
  color: #000000 !important;
  font-weight: 600 !important;
}

#finalModal .form-control {
  background: #ffffff !important;
  color: #000000 !important;
  border-radius: 14px !important;
  border: 1px solid rgba(0,0,0,0.18) !important;
  padding: 14px 16px !important;
}

#finalModal .form-control::placeholder {
  color: rgba(0,0,0,0.6) !important;
}

#finalModal input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  filter: invert(0) !important;
}

#finalModal small {
  color: rgba(0,0,0,0.7) !important;
  font-weight: 500 !important;
}

#finalModal .book-btn {
  background: #000000 !important;
  color: #ffffff !important;
  border-radius: 30px !important;
  padding: 14px !important;
  font-weight: 600 !important;
  border: none !important;
}

#finalModal .book-btn:hover {
  background: #1a1a1a !important;
}
.footer-logo {
  height: 70px;
  margin-bottom: 20px;
}

.footer-desc {
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 30px;
}

.footer-main-link {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-main-link:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
  color: grey;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-small {
  font-size: 14px;
  opacity: 0.7;
}
