:root {
  --navy: #0b0e14;
  --navy-2: #10141d;
  --navy-3: #151a25;
  --gold: #c9a15a;
  --gold-light: #e8caa0;
  --bronze: #9c7a45;
  --gold-grad: linear-gradient(135deg, #e8caa0, #c9a15a 55%, #9c7a45);
  --text-light: #f2efe9;
  --text-muted: #a3a9b8;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

body {
  background: var(--navy);
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, .brand-text { font-family: var(--font-head); }

.text-gold { color: var(--gold-light) !important; }
.text-muted-light { color: var(--text-muted); }

/* ===== SCROLL-REVEAL ANIMACIJE ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.21,.6,.35,1), transform .7s cubic-bezier(.21,.6,.35,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-fade-in {
  opacity: 0;
  animation: heroFadeIn .9s cubic-bezier(.21,.6,.35,1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-fade-in { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
}

/* ===== NAVBAR ===== */
.navbar-custom {
  background: rgba(11, 14, 20, 0.75);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  transition: background .3s, padding .3s;
  border-bottom: 1px solid rgba(201,161,90,0.15);
}
.navbar-custom.scrolled { background: rgba(11, 14, 20, 0.97); padding: 8px 0; }

.brand-mark {
  display: inline-flex;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-light);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  margin-right: 10px;
}
.brand-mark-accent { color: var(--gold-light); }
.brand-logo-img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--gold); }
.brand-text { color: var(--text-light); font-weight: 700; font-size: 1.25rem; letter-spacing: .5px; }

.navbar-nav .nav-link {
  color: var(--text-light); font-weight: 400; font-size: .95rem; letter-spacing: .3px;
  position: relative;
}
.navbar-nav .nav-link:hover { color: var(--gold-light); }
.navbar-nav .nav-link::after {
  content: '';
  position: absolute; left: 50%; bottom: 2px;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width .25s ease, left .25s ease;
}
.navbar-nav .nav-link:hover::after { width: 70%; left: 15%; }

.btn-gold {
  background: var(--gold-grad);
  background-size: 200% auto;
  border: none;
  color: #16120a;
  font-weight: 600;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background-position .5s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201,161,90,.3);
  color: #16120a;
  background-position: right center;
}

.btn-outline-light { border-radius: 50px; border-width: 1.5px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  background: radial-gradient(ellipse at 25% 15%, rgba(201,161,90,.12), transparent 55%),
              radial-gradient(ellipse at 85% 85%, rgba(156,122,69,.10), transparent 55%),
              var(--navy);
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.012) 0 2px, transparent 2px 60px);
  pointer-events: none;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,14,20,.94) 0%, rgba(11,14,20,.78) 42%, rgba(11,14,20,.55) 70%, rgba(11,14,20,.75) 100%);
  z-index: 1;
}
.hero .container { z-index: 2; }
.hero-sound-toggle {
  position: absolute; right: 24px; bottom: 24px; z-index: 3;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(11,14,20,.6); border: 1px solid rgba(201,161,90,.4);
  color: var(--gold-light); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s ease; backdrop-filter: blur(4px);
}
.hero-sound-toggle:hover { background: rgba(11,14,20,.85); border-color: var(--gold); transform: scale(1.08); }
.hero-sound-toggle.unmuted { background: var(--gold-grad); color: #16120a; border-color: transparent; }
.eyebrow {
  display: inline-block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 18px;
  border: 1px solid rgba(201,161,90,.4);
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
}

/* ===== HERO TEAM GRID ===== */
.hero-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-team-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201,161,90,.25);
  background: var(--navy-3);
  transition: transform .35s ease, border-color .35s ease;
}
.hero-team-item:hover { transform: translateY(-4px); border-color: rgba(201,161,90,.55); }
.hero-team-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.hero-team-item:hover img { transform: scale(1.06); }
.hero-team-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: rgba(201,161,90,.35);
  background: linear-gradient(160deg, var(--navy-3), var(--navy-2));
}
.hero-team-name {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  color: var(--text-light);
  font-size: .72rem;
  font-weight: 600;
  text-align: center;
  padding: 16px 4px 6px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .hero-team-grid { max-width: 420px; margin: 0 auto; }
}

/* ===== CHAT WIDGET (virtuelni asistent) ===== */
.chat-widget { position: fixed; right: 20px; bottom: 20px; z-index: 1500; }
.chat-toggle {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--gold-grad); border: none; color: #16120a;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.4); cursor: pointer; position: relative;
  animation: chatPulse 2.4s ease-in-out infinite;
}
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 0 rgba(201,161,90,.5); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 10px rgba(201,161,90,0); }
}
.chat-badge {
  position: absolute; top: -2px; right: -2px;
  background: #e6543f; color: #fff; font-size: .68rem; font-weight: 700;
  width: 19px; height: 19px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--navy);
}
.chat-panel {
  position: absolute; right: 0; bottom: 74px;
  width: 340px; max-width: calc(100vw - 40px);
  height: 480px; max-height: 70vh;
  background: var(--navy-2); border: 1px solid rgba(201,161,90,.25);
  border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,.5);
  display: none; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(.97);
  transition: opacity .25s ease, transform .25s ease;
}
.chat-panel.open { display: flex; opacity: 1; transform: translateY(0) scale(1); }
.chat-header {
  background: var(--navy); padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(201,161,90,.2);
}
.chat-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--gold-grad); color: #16120a;
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.chat-header-title { color: var(--text-light); font-weight: 600; font-size: .92rem; }
.chat-header-sub { color: var(--text-muted); font-size: .72rem; display: flex; align-items: center; gap: 5px; }
.chat-online-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; display: inline-block; }
.chat-close { background: none; border: none; color: var(--text-muted); font-size: 1.1rem; cursor: pointer; }
.chat-close:hover { color: var(--gold-light); }

.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-msg { max-width: 82%; padding: 9px 13px; border-radius: 14px; font-size: .86rem; line-height: 1.5; }
.chat-msg-bot { align-self: flex-start; background: var(--navy-3); color: var(--text-light); border-bottom-left-radius: 4px; }
.chat-msg-user { align-self: flex-end; background: var(--gold-grad); color: #16120a; border-bottom-right-radius: 4px; font-weight: 500; }
.chat-msg a { color: inherit; text-decoration: underline; }

.chat-quick-replies { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 10px; }
.chat-chip {
  background: transparent; border: 1px solid rgba(201,161,90,.4); color: var(--gold-light);
  font-size: .74rem; padding: 5px 12px; border-radius: 50px; cursor: pointer; transition: all .2s;
}
.chat-chip:hover { background: rgba(201,161,90,.15); }

.chat-input-row { display: flex; gap: 8px; padding: 12px; border-top: 1px solid rgba(201,161,90,.15); }
.chat-input-row input {
  flex: 1; background: var(--navy-3); border: 1px solid rgba(201,161,90,.25);
  color: var(--text-light); border-radius: 50px; padding: 9px 16px; font-size: .86rem;
}
.chat-input-row input:focus { outline: none; border-color: var(--gold); }
.chat-input-row button {
  width: 38px; height: 38px; border-radius: 50%; border: none;
  background: var(--gold-grad); color: #16120a; flex-shrink: 0;
}

@media (max-width: 420px) {
  .chat-panel { right: -12px; width: calc(100vw - 24px); }
}

/* ===== 3D BARBER POLE (CSS animacija, bez slika) ===== */
.barber-pole {
  position: relative;
  display: inline-block;
  overflow: hidden;
  box-shadow: inset -5px 0 10px rgba(0,0,0,.4), inset 4px 0 8px rgba(255,255,255,.18), 0 3px 10px rgba(0,0,0,.35);
  flex-shrink: 0;
}
.barber-pole::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.4) 0%, transparent 20%, transparent 78%, rgba(0,0,0,.4) 100%);
  z-index: 3;
  pointer-events: none;
}
.barber-pole-stripes {
  position: absolute; inset: -30% -10%;
  background: repeating-linear-gradient(45deg,
    #b5342a 0 12%,
    #f4f1ea 12% 24%,
    #1f4e8c 24% 36%
  );
  z-index: 1;
}
.barber-pole-cap {
  position: absolute; left: -5%; right: -5%; height: 10%;
  background: linear-gradient(180deg, var(--gold-light), var(--bronze, #9c7a45));
  z-index: 2;
}
.barber-pole-cap-top { top: 0; border-radius: 50% 50% 0 0 / 70% 70% 0 0; }
.barber-pole-cap-bottom { bottom: 0; border-radius: 0 0 50% 50% / 0 0 70% 70%; }

.barber-pole-sm {
  width: 28px; height: 28px;
  border-radius: 50%;
}
.barber-pole-sm .barber-pole-stripes {
  background-size: 140% 140%;
  animation: barberSpinSmall .9s linear infinite;
}
.barber-pole-sm .barber-pole-cap { display: none; }
@keyframes barberSpinSmall {
  from { background-position: 0 0; }
  to { background-position: 26px 26px; }
}

.barber-pole-lg {
  width: 58px; height: 230px;
  border-radius: 30px;
  margin: 0 auto;
}
.barber-pole-lg .barber-pole-stripes {
  background-size: 100% 220%;
  animation: barberSpinLarge 1.3s linear infinite;
}
@keyframes barberSpinLarge {
  from { background-position: 0 0; }
  to { background-position: 0 -110px; }
}

@media (prefers-reduced-motion: reduce) {
  .barber-pole-stripes { animation: none !important; }
}

/* ===== PRIJE / POSLIJE SLIDER ===== */
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,161,90,.2);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.ba-slider .ba-after { clip-path: inset(0 0 0 50%); }
.ba-tag {
  position: absolute; top: 12px;
  background: rgba(11,14,20,.7); color: var(--gold-light);
  font-size: .68rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 50px; z-index: 3;
}
.ba-tag-left { left: 12px; }
.ba-tag-right { right: 12px; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; background: var(--gold-light);
  transform: translateX(-50%);
  z-index: 4; pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  color: #16120a; box-shadow: 0 4px 14px rgba(0,0,0,.4);
  pointer-events: none;
}

/* ===== 360 SPIN VIEWER ===== */
.spin-viewer {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,161,90,.25);
  background: var(--navy-3);
  cursor: grab;
  touch-action: pan-y;
}
.spin-viewer:active { cursor: grabbing; }
.spin-viewer img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; user-select: none; }
.spin-hint {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  background: rgba(11,14,20,.75); color: var(--gold-light);
  font-size: .78rem; padding: 7px 16px; border-radius: 50px;
  pointer-events: none; transition: opacity .4s;
}
.spin-viewer.spun .spin-hint { opacity: 0; }

/* ===== AI ALAT: KOJA FRIZURA MI STOJI ===== */
.ai-tool-card {
  background: var(--navy-3);
  border: 1px solid rgba(201,161,90,.2);
  border-radius: 20px;
  padding: 40px;
}
.ai-upload-zone {
  border: 2px dashed rgba(201,161,90,.35);
  border-radius: 16px;
  min-height: 240px;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 24px;
  text-align: center;
  transition: border-color .25s;
  box-sizing: border-box;
}
.ai-upload-zone:hover { border-color: rgba(201,161,90,.6); }
.ai-upload-inner { width: 100%; max-width: 420px; margin: 0 auto; }
.ai-upload-inner i { font-size: 2.6rem; color: var(--gold-light); margin-bottom: 16px; display: block; }
.ai-upload-inner p { color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; word-wrap: break-word; }
.ai-upload-inner .btn { padding: 10px 22px; white-space: nowrap; }
#aiCameraVideo, #aiPhotoPreview {
  max-width: 100%; max-height: 360px; border-radius: 12px; display: block; margin: 0 auto;
}
.ai-result-inner { text-align: center; padding-top: 20px; border-top: 1px solid rgba(201,161,90,.15); }
.ai-result-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #16120a;
  margin: 0 auto 16px;
}
.chat-chip-link { color: var(--gold-light); font-size: .85rem; text-decoration: underline; }
.chat-chip-link:hover { color: var(--gold); }
.ai-quiz { background: var(--navy-2); border: 1px solid rgba(201,161,90,.2); border-radius: 14px; padding: 24px; }
.ai-quiz-q { margin-bottom: 18px; }
.ai-quiz-q:last-of-type { margin-bottom: 0; }
.ai-quiz-label { display: block; color: var(--gold-light); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.ai-quiz-options { display: flex; flex-wrap: wrap; gap: 8px; }
.ai-quiz-chip {
  background: var(--navy-3); border: 1px solid rgba(201,161,90,.3); color: var(--text-light);
  font-size: .85rem; padding: 8px 18px; border-radius: 50px; cursor: pointer; transition: all .2s;
}
.ai-quiz-chip:hover { border-color: var(--gold); }
.ai-quiz-chip.selected { background: var(--gold-grad); color: #16120a; border-color: transparent; font-weight: 600; }

/* ===== SECTIONS ===== */
.section-dark, .section-darker { padding: 110px 0; }
.section-darker { background: var(--navy-2); }
.section-eyebrow {
  display: block;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; margin-bottom: 20px; }
.section-text { color: var(--text-muted); font-size: 1.02rem; line-height: 1.8; }

.about-frame {
  border: 1.5px solid rgba(201,161,90,.35);
  border-radius: 20px;
  padding: 14px;
}
.about-frame-inner {
  background: linear-gradient(145deg, var(--navy-3), var(--navy-2));
  border-radius: 14px;
  min-height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.about-icon { font-size: 5rem; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.stat-box {
  background: var(--navy-3);
  border: 1px solid rgba(201,161,90,.2);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.stat-box:hover { border-color: rgba(201,161,90,.5); transform: translateY(-3px); }
.stat-number { font-family: var(--font-head); font-size: 2.1rem; font-weight: 800; color: var(--gold-light); }
.stat-label { font-size: .85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ===== PRICE TABS ===== */
.price-tabs .nav-link {
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(201,161,90,.3);
  border-radius: 50px;
  padding: 10px 26px;
  margin: 0 6px 10px;
  font-weight: 500;
  transition: all .25s ease;
}
.price-tabs .nav-link.active {
  background: var(--gold-grad);
  color: #16120a;
  border-color: transparent;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navy-3);
  border: 1px solid rgba(201,161,90,.15);
  border-radius: 12px;
  padding: 16px 22px;
  transition: border-color .3s, transform .3s;
}
.price-row:hover { border-color: rgba(201,161,90,.4); transform: translateX(4px); }
.price-name { font-weight: 500; font-size: 1.02rem; }
.price-duration { color: var(--text-muted); font-size: .8rem; margin-top: 2px; }
.price-amount { font-family: var(--font-head); font-weight: 700; color: var(--gold-light); font-size: 1.2rem; }

/* ===== TEAM ===== */
.team-card {
  background: var(--navy-3);
  border: 1px solid rgba(201,161,90,.15);
  border-radius: 18px;
  padding: 34px 24px;
  text-align: center;
  height: 100%;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-6px); border-color: rgba(201,161,90,.5); box-shadow: 0 16px 32px rgba(0,0,0,.35); }
.team-photo {
  width: 110px; height: 110px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--gold-grad);
  padding: 3px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.team-photo i { font-size: 2.4rem; color: var(--navy); background: var(--text-light); width: 100%; height: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.team-name { font-family: var(--font-head); font-weight: 700; margin-bottom: 2px; color: var(--text-light); }
.team-title { color: var(--gold-light); font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.team-bio { color: var(--text-muted); font-size: .92rem; margin: 0; }
.team-view-link {
  display: inline-block;
  margin-top: 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .3px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
}
.team-card:hover .team-view-link { opacity: 1; transform: translateY(0); }

/* ===== BARBER PROFILE PAGE ===== */
.barber-hero { padding: 150px 0 90px; background: var(--navy); }
.back-link { color: var(--text-muted); font-size: .9rem; display: inline-block; }
.back-link:hover { color: var(--gold-light); }
.barber-hero-photo {
  width: 220px; height: 220px;
  border-radius: 50%;
  margin: 0 auto;
  background: var(--gold-grad);
  padding: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.barber-hero-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.barber-hero-placeholder {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--navy-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: rgba(201,161,90,.4);
}

/* ===== GALLERY ===== */
.gallery-item {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid rgba(201,161,90,.15);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* ===== BOOKING FORM ===== */
.booking-form { background: var(--navy-3); border: 1px solid rgba(201,161,90,.2); border-radius: 18px; padding: 34px; }
.booking-form .form-label { color: var(--text-muted); font-size: .85rem; margin-bottom: 6px; }
.booking-form .form-control, .booking-form .form-select {
  background: var(--navy-2);
  border: 1px solid rgba(201,161,90,.25);
  color: var(--text-light);
  border-radius: 10px;
  padding: 10px 14px;
  transition: border-color .2s;
}
.booking-form .form-control:focus, .booking-form .form-select:focus {
  background: var(--navy-2);
  color: var(--text-light);
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(201,161,90,.18);
}
.booking-form .form-control::placeholder { color: #6b7385; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy-2); padding: 80px 0 26px; border-top: 1px solid rgba(201,161,90,.15); }
.footer-heading { font-family: var(--font-head); color: var(--gold-light); margin-bottom: 18px; font-size: 1.1rem; }
.footer-divider { border-color: rgba(201,161,90,.15); margin: 50px 0 22px; }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-grad);
  color: #16120a; margin-top: 16px; font-size: 1.1rem;
  transition: transform .25s ease;
}
.social-btn:hover { color: #16120a; transform: translateY(-3px) rotate(-6deg); }

.back-to-top {
  position: fixed; left: 24px; bottom: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-grad);
  color: #16120a; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s; z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { color: #16120a; transform: translateY(-4px); }

@media (max-width: 991px) {
  .navbar-collapse { background: var(--navy-2); margin-top: 14px; padding: 18px; border-radius: 12px; }
}
