/* ===== SaCoiff - Premium Styling ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A07B28;
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --black-medium: #2A2A2A;
  --white: #FAFAFA;
  --white-warm: #F5F0E8;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --gray-dark: #444444;
  --success: #2ECC71;
  --danger: #E74C3C;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: var(--gold); transition: var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
}

.nav-logo img { height: 45px; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.7rem 1.8rem !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.nav-cta::after { display: none !important; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ===== HERO SLIDER ===== */
@keyframes kenburns {
  0%   { transform: scale(1)    translateX(0)      translateY(0); }
  100% { transform: scale(1.10) translateX(-1.5%)  translateY(-1%); }
}
@keyframes kenburns-alt {
  0%   { transform: scale(1)    translateX(0)     translateY(0); }
  100% { transform: scale(1.10) translateX(1.5%)  translateY(1%); }
}
@keyframes slideTextIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes progressRun {
  from { width: 0%; }
  to   { width: 100%; }
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--black);
  cursor: grab;
  user-select: none;
}
.hero-slider:active { cursor: grabbing; }

/* ── Track & Slides ── */
.slider-track {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.slider-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}

/* Gradient overlay on each photo */
.slider-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,.50) 0%,
      rgba(0,0,0,.55) 40%,
      rgba(0,0,0,.75) 100%);
}

/* Ken Burns: alternate direction each slide */
.slider-slide.active {
  opacity: 1;
  animation: kenburns 9s ease-out forwards;
}
.slider-slide.active.alt {
  animation: kenburns-alt 9s ease-out forwards;
}

/* Gradient-only fallback (no photo uploaded yet) */
.slider-slide.fallback {
  background: linear-gradient(135deg,
    #0a0a0a 0%, #1a1a1a 40%,
    #1e1609 70%, #0a0a0a 100%);
  opacity: 1 !important;
  animation: none !important;
}
.slider-slide.fallback::after {
  background: none;
}
/* Decorative dot pattern on fallback */
.slider-slide.fallback::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,168,76,.07) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* ── Overlay (always on top of slides) ── */
.slider-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem 5rem;
  pointer-events: none;
}

.slider-logo {
  width: 300px;
  max-width: 75vw;
  margin-bottom: 1.5rem;
  pointer-events: auto;
  animation: slideTextIn .9s ease both;
}

.slider-divider {
  width: 70px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.4rem;
  animation: slideTextIn .9s ease .15s both;
}

.slider-tagline {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: .75rem;
  animation: slideTextIn .9s ease .25s both;
}

.slider-subtitle {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 2.2rem;
  animation: slideTextIn .9s ease .38s both;
}

.slider-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: auto;
  animation: slideTextIn .9s ease .5s both;
}

/* ── Nav Buttons ── */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(201,168,76,.55);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: .95rem;
  transition: background .3s, border-color .3s, transform .2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.slider-btn:hover {
  background: rgba(201,168,76,.28);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* ── Dots ── */
.slider-dots {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: .65rem;
  align-items: center;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.55);
  background: transparent;
  cursor: pointer;
  transition: all .35s;
  padding: 0;
}
.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 22px;
  border-radius: 4px;
}
.slider-dot:hover:not(.active) {
  background: rgba(201,168,76,.5);
  border-color: var(--gold);
}

/* ── Progress bar ── */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  width: 0%;
  z-index: 20;
  opacity: .85;
}
.slider-progress.running {
  animation: progressRun var(--slide-duration, 5s) linear forwards;
}

/* ── Slide counter ── */
.slider-counter {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  z-index: 20;
  font-family: var(--font-heading);
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  letter-spacing: 2px;
  pointer-events: none;
}
.slider-counter span { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, var(--black) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(var(--gold) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  text-align: center;
  z-index: 2;
  padding: 2rem;
}

.hero-logo {
  width: 320px;
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-divider {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.7s both;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark { background: var(--black); }
.section-darker { background: var(--black-light); }

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.service-category {
  background: var(--black-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2.5rem;
  transition: var(--transition);
}

.service-category:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.service-category h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.service-item:last-child { border-bottom: none; }

.service-item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, padding-left 0.2s;
  border-radius: 4px;
}

.service-item-link:hover {
  background: rgba(201, 168, 76, 0.06);
  padding-left: 0.5rem;
}

.service-item-link:last-child { border-bottom: none; }

.service-name {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white);
  flex: 1;
  margin-right: 1rem;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* Gender tabs */
.gender-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}

.gender-tab {
  padding: 1rem 3rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.gender-tab:first-child { border-right: none; }

.gender-tab.active,
.gender-tab:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.feature {
  text-align: center;
  padding: 2.5rem 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
}

.feature h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.feature p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ===== ABOUT ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, var(--black-medium), var(--black-light));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.about-image-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold);
  opacity: 0.3;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--gray-light);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.about-highlight {
  color: var(--gold) !important;
  font-style: italic;
}

/* ===== BOOKING ===== */
.booking-container {
  max-width: 800px;
  margin: 0 auto;
}

.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  border-bottom: 2px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}

.booking-step.active { border-bottom-color: var(--gold); }
.booking-step.completed { border-bottom-color: var(--success); }

.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--gray-dark);
  color: var(--gray);
  transition: var(--transition);
}

.booking-step.active .step-number {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.booking-step.completed .step-number {
  background: var(--success);
  color: var(--white);
  border-color: var(--success);
}

.step-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
}

.booking-step.active .step-label { color: var(--white); }

.booking-panel {
  background: var(--black-light);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 3rem;
}

.booking-panel.hidden { display: none; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.form-control::placeholder { color: var(--gray); }

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A84C' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select.form-control option { background: var(--black-light); color: var(--white); }

textarea.form-control { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ===== TIME SLOTS ===== */
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.time-slot {
  padding: 0.8rem;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.time-slot:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.time-slot.selected {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

.time-slot.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ===== MAP ===== */
.map-container {
  height: 400px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-info-text h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.contact-info-text p {
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; display: inline-block; }

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 300px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.8rem; }

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-light);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  font-size: 0.85rem;
  color: var(--gray);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--black), var(--black-light));
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== SUMMARY CARD ===== */
.summary-card {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2rem;
  margin-top: 2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.summary-row:last-child { border-bottom: none; }

.summary-label { color: var(--gray-light); font-size: 0.9rem; }
.summary-value { color: var(--white); font-weight: 500; }

.summary-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gold);
  display: flex;
  justify-content: space-between;
}

.summary-total .summary-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.summary-total .summary-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
}

/* ===== ALERT ===== */
.alert {
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.alert-success { background: rgba(46, 204, 113, 0.1); border: 1px solid rgba(46, 204, 113, 0.3); color: var(--success); }
.alert-error { background: rgba(231, 76, 60, 0.1); border: 1px solid rgba(231, 76, 60, 0.3); color: var(--danger); }

/* ===== CONFIRMATION ===== */
.confirmation-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: var(--black-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.confirmation-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

/* ===== LOADING SPINNER ===== */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(201, 168, 76, 0.1);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ADDRESS VERIFICATION ===== */
.address-check {
  margin-top: 0.5rem;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  border-radius: 0;
}

.address-ok {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: var(--success);
}

.address-far {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: var(--danger);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    justify-content: center;
    align-items: center;
    z-index: 999;
    gap: 2rem;
  }
  .nav-toggle { display: flex; z-index: 1001; }
  .features-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 2.2rem; }
  .page-header h1 { font-size: 2.5rem; }
  .hero-logo { width: 220px; }
  .hero-tagline { font-size: 1.1rem; letter-spacing: 3px; }
  .booking-steps { flex-wrap: wrap; }
  .booking-panel { padding: 1.5rem; }
  /* Slider tablet */
  .slider-logo { width: 240px; }
  .slider-tagline { font-size: 1.1rem; letter-spacing: 3px; }
  .slider-btn { width: 42px; height: 42px; font-size: .85rem; }
  .slider-prev { left: .75rem; }
  .slider-next { right: .75rem; }
  .slider-counter { font-size: .75rem; top: 1.25rem; right: 1.25rem; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }
  .gender-tabs { flex-direction: column; }
  .gender-tab { border-right: 1px solid rgba(201, 168, 76, 0.3) !important; border-bottom: none; }
  .gender-tab:last-child { border-bottom: 1px solid rgba(201, 168, 76, 0.3); }
  /* Slider mobile */
  .slider-logo { width: 180px; }
  .slider-tagline { font-size: .9rem; letter-spacing: 2px; }
  .slider-subtitle { font-size: .85rem; margin-bottom: 1.5rem; }
  .slider-actions { flex-direction: column; align-items: center; gap: .75rem; }
  .slider-actions .btn { width: 220px; text-align: center; }
  .slider-btn { display: none; }
  .slider-dots { bottom: 1.5rem; }
}

/* ===== DATE PICKER & CALENDAR STYLING ===== */
input[type="date"] {
  color-scheme: dark;
  cursor: pointer;
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 0.95;
  transition: var(--transition);
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  filter: invert(72%) sepia(50%) saturate(600%) hue-rotate(5deg) brightness(95%) contrast(90%);
}

.date-input-wrapper {
  position: relative;
  width: 100%;
}

.date-input-wrapper .form-control {
  cursor: pointer;
  padding-right: 2.8rem;
}

.date-input-wrapper .date-input-icon {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff !important; /* Pure white icon */
  font-size: 1.15rem;
  pointer-events: none;
  transition: var(--transition);
}

.date-input-wrapper:hover .date-input-icon {
  color: var(--gold) !important;
}

/* Calendar Container (harmonious, aligned, luxury in-flow layout) */
.calendar-dropdown {
  width: 100%;
  max-width: 600px;
  margin: 1.25rem auto 0 auto;
  background: #13131b;
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  border-radius: 16px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5);
  padding: 1.75rem 1.5rem 1.25rem 1.5rem;
  position: relative;
  box-sizing: border-box;
  animation: calFadeIn 0.25s ease-out;
}

@keyframes calFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.cal-nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
}

.cal-nav-btn:hover:not(:disabled) {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
}

.cal-nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.1);
}

.cal-current-month {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: capitalize;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  text-align: center;
  margin-bottom: 0.85rem;
}

.cal-weekday {
  background: rgba(201, 168, 76, 0.09);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 8px 0;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.cal-day-cell {
  height: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 4px;
  box-sizing: border-box;
  user-select: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.cal-day-cell.empty {
  visibility: hidden;
}

.cal-day-cell .day-num {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}

.cal-day-cell .day-subtext {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 4px;
  white-space: nowrap;
}

/* Available Day Cell */
.cal-day-cell.available {
  background: rgba(201, 168, 76, 0.08);
  border: 1.5px solid rgba(201, 168, 76, 0.45);
  color: #ffffff;
  cursor: pointer;
}

.cal-day-cell.available .day-num {
  color: #ffffff;
}

.cal-day-cell.available .day-subtext {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.16);
}

.cal-day-cell.available:hover {
  background: rgba(201, 168, 76, 0.25);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.35);
}

.cal-day-cell.available.selected {
  background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%) !important;
  color: #0a0a0a !important;
  border-color: #d4af37 !important;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.7);
  transform: scale(1.04);
}

.cal-day-cell.available.selected .day-num,
.cal-day-cell.available.selected .day-subtext {
  color: #0a0a0a !important;
  background: rgba(0, 0, 0, 0.18) !important;
  font-weight: 800;
}

/* Inactive / Non-working / Past / Blocked Days */
.cal-day-cell.disabled {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.75;
}

.cal-day-cell.disabled .day-num {
  color: #777777;
}

.cal-day-cell.disabled.full .day-subtext {
  color: #e74c3c !important;
  background: rgba(231, 76, 60, 0.12);
  font-weight: 800;
}

.cal-day-cell.disabled.non-dispo .day-subtext {
  color: #f39c12 !important;
  background: rgba(243, 156, 18, 0.12);
  font-weight: 800;
}

.cal-day-cell.disabled.past {
  opacity: 0.25;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.04);
}

.cal-day-cell.disabled.past .day-num {
  color: #444444;
}

.cal-day-cell.disabled.past .day-subtext {
  color: #444444;
  background: transparent;
}

.cal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
}

.cal-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.cal-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #d0d0d0;
}

.cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.cal-legend-dot.available {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.7);
}

.cal-legend-dot.full {
  background: #e74c3c;
  box-shadow: 0 0 8px rgba(231, 76, 60, 0.6);
}

.cal-legend-dot.nondispo {
  background: #f39c12;
  box-shadow: 0 0 8px rgba(243, 156, 18, 0.6);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .calendar-dropdown {
    padding: 1.2rem 0.8rem;
  }
  .cal-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }
  .cal-current-month {
    font-size: 1.3rem;
  }
  .cal-nav-btn {
    width: 36px;
    height: 36px;
  }
  .cal-grid, .cal-weekdays {
    gap: 4px;
  }
  .cal-weekday {
    padding: 6px 0;
    font-size: 0.7rem;
  }
  .cal-day-cell {
    height: 52px;
    padding: 2px;
    border-radius: 6px;
  }
  .cal-day-cell .day-num {
    font-size: 0.95rem;
    margin-bottom: 2px;
  }
  .cal-day-cell .day-subtext {
    font-size: 0.52rem;
    padding: 1px 3px;
  }
  .cal-legend {
    gap: 12px;
  }
  .cal-legend-item {
    font-size: 0.75rem;
  }
}

/* Address Autocomplete & Real Itinerary Dropdown */
.address-suggestions-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #141414;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 8px;
  max-height: 260px;
  overflow-y: auto;
  z-index: 1050;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
}

.address-suggestion-item {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--white);
  text-align: left;
}

.address-suggestion-item:last-child {
  border-bottom: none;
}

.address-suggestion-item:hover,
.address-suggestion-item.active {
  background: rgba(201, 168, 76, 0.15);
}

.address-suggestion-item:hover .address-suggestion-label,
.address-suggestion-item.active .address-suggestion-label {
  color: var(--gold);
}

.address-suggestion-item i {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.address-suggestion-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.address-suggestion-label {
  font-weight: 500;
  color: #ffffff;
  transition: color 0.2s ease;
}

.address-suggestion-sub {
  font-size: 0.78rem;
  color: var(--gray);
}

/* Stripe Elements Custom Card Inputs */
.stripe-card-element {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.stripe-card-element.stripe-focused {
  border-color: var(--gold) !important;
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.45) !important;
  background: rgba(0, 0, 0, 0.7) !important;
}
.stripe-card-element.stripe-invalid {
  border-color: #ff5252 !important;
  box-shadow: 0 0 10px rgba(255, 82, 82, 0.35) !important;
}

