/* ============================================================
   OTELSAT THEME — otelsat.css
   ============================================================ */

:root {
  --ot-primary:    #1a2b4a;
  --ot-primary-l:  #243860;
  --ot-gold:       #c9a96e;
  --ot-gold-d:     #a8864d;
  --ot-gold-l:     #f0e4cc;
  --ot-dark:       #0f1a2e;
  --ot-gray:       #6b7280;
  --ot-gray-l:     #e5e7eb;
  --ot-light:      #f8f9fb;
  --ot-white:      #ffffff;
  --ot-radius:     10px;
  --ot-radius-lg:  20px;
  --ot-shadow:     0 4px 24px rgba(26,43,74,.10);
  --ot-shadow-lg:  0 12px 48px rgba(26,43,74,.18);
  --ot-transition: .3s cubic-bezier(.4,0,.2,1);
  --ot-navbar-h:   76px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html { scroll-padding-top: calc(var(--ot-navbar-h) + 16px); }
body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  color: #333;
  background: var(--ot-white);
  overflow-x: hidden;
}
a { color: var(--ot-gold); text-decoration: none; transition: color var(--ot-transition); }
a:hover { color: var(--ot-gold-d); }
img { max-width: 100%; height: auto; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }

/* ── Typography ── */
.ot-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ot-primary);
  line-height: 1.2;
}
.ot-section-subtitle {
  color: var(--ot-gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: .6rem auto 0;
}
.ot-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--ot-gold), var(--ot-gold-l));
  border-radius: 2px;
  margin: 1rem 0;
}
.ot-divider.mx-auto { margin-left: auto; margin-right: auto; }
.badge-gold {
  background: linear-gradient(135deg, var(--ot-gold), var(--ot-gold-d));
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3em .7em;
  border-radius: 4px;
}

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
#otNavbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  height: var(--ot-navbar-h);
  background: transparent;
  transition: background var(--ot-transition), box-shadow var(--ot-transition);
}
#otNavbar.scrolled,
#otNavbar.is-solid {
  background: var(--ot-white);
  box-shadow: 0 2px 20px rgba(26,43,74,.12);
}
#otNavbar .ot-logo img {
  height: 44px;
  transition: filter var(--ot-transition);
}
#otNavbar:not(.scrolled):not(.is-solid) .ot-logo img { filter: brightness(0) invert(1); }
#otNavbar .navbar-toggler {
  border: 2px solid rgba(255,255,255,.7);
  padding: .35rem .55rem;
}
#otNavbar.scrolled .navbar-toggler,
#otNavbar.is-solid .navbar-toggler { border-color: var(--ot-primary); }
#otNavbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#otNavbar.scrolled .navbar-toggler-icon,
#otNavbar.is-solid .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826,43,74,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Desktop nav links */
#otNavbar .nav-link {
  color: rgba(255,255,255,.9) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: .4rem .75rem !important;
  position: relative;
}
#otNavbar.scrolled .nav-link,
#otNavbar.is-solid .nav-link { color: var(--ot-primary) !important; }
#otNavbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--ot-gold);
  border-radius: 1px;
  transition: left var(--ot-transition), right var(--ot-transition);
}
#otNavbar .nav-link:hover::after,
#otNavbar .nav-link.active::after { left: .5rem; right: .5rem; }

/* Dropdown */
#otNavbar .dropdown-menu {
  border: none;
  border-radius: var(--ot-radius);
  box-shadow: var(--ot-shadow-lg);
  min-width: 200px;
  animation: fadeInDown .2s ease;
}
#otNavbar .dropdown-item:hover { background: var(--ot-gold-l); color: var(--ot-primary); }
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-8px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Rezervasyon btn */
.ot-nav-reserve {
  background: linear-gradient(135deg, var(--ot-gold), var(--ot-gold-d));
  color: #fff !important;
  border-radius: 50px;
  padding: .45rem 1.2rem !important;
  font-weight: 600;
  font-size: .85rem;
  border: none;
  white-space: nowrap;
}
.ot-nav-reserve:hover { background: linear-gradient(135deg,var(--ot-gold-d),var(--ot-primary)); color:#fff !important; }
.ot-nav-reserve::after { display:none !important; }

/* Phone link */
.ot-nav-phone {
  color: rgba(255,255,255,.85) !important;
  font-size: .85rem;
  font-weight: 500;
}
#otNavbar.scrolled .ot-nav-phone,
#otNavbar.is-solid .ot-nav-phone { color: var(--ot-primary) !important; }

/* ════════════════════════════════════
   MOBILE OFFCANVAS
════════════════════════════════════ */
#mobileMenu .offcanvas-header { background: var(--ot-primary); }
#mobileMenu .offcanvas-title { color: var(--ot-white); font-weight: 700; }
#mobileMenu .btn-close { filter: invert(1); }
#mobileMenu .mob-nav-link {
  display: block;
  padding: .85rem 1.25rem;
  color: var(--ot-primary);
  font-weight: 500;
  border-bottom: 1px solid var(--ot-gray-l);
  font-size: .95rem;
}
#mobileMenu .mob-nav-link:hover { background: var(--ot-gold-l); color: var(--ot-gold-d); }
#mobileMenu .mob-nav-child {
  padding-left: 2rem;
  font-size: .9rem;
  color: var(--ot-gray);
  border-bottom: 1px solid var(--ot-gray-l);
  display: block;
  padding-top: .6rem;
  padding-bottom: .6rem;
}
#mobileMenu .mob-nav-child:hover { color: var(--ot-gold-d); background: var(--ot-light); }

/* ════════════════════════════════════
   HERO SLIDER
════════════════════════════════════ */
.ot-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.ot-hero .swiper { height: 100%; }
.ot-hero-slide {
  position: relative;
  background: var(--ot-dark);
}
.ot-hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .7;
}
/* Video background (mp4 + youtube iframe) */
.ot-hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ot-dark);
}
.ot-hero-video-wrap video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  opacity: .8;
}
.ot-hero-video-wrap iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh; /* 16:9 */
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw; /* 16:9 */
  border: 0;
  opacity: .85;
  pointer-events: none;
}
.ot-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,26,46,.75) 0%,
    rgba(15,26,46,.35) 60%,
    transparent 100%
  );
}
.ot-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--ot-navbar-h);
}
.ot-hero-tagline {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ot-gold);
  margin-bottom: .8rem;
}
.ot-hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.ot-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  margin-top: 1rem;
  max-width: 480px;
}
/* Hero nav bullets */
.ot-hero .swiper-pagination-bullet {
  width: 30px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,.5);
  opacity: 1;
  transition: background var(--ot-transition), width var(--ot-transition);
}
.ot-hero .swiper-pagination-bullet-active {
  background: var(--ot-gold);
  width: 44px;
}
.ot-hero .swiper-button-next,
.ot-hero .swiper-button-prev {
  color: #fff;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  width: 48px; height: 48px;
  border-radius: 50%;
  transition: background var(--ot-transition);
}
.ot-hero .swiper-button-next:hover,
.ot-hero .swiper-button-prev:hover { background: rgba(201,169,110,.8); }
.ot-hero .swiper-button-next::after,
.ot-hero .swiper-button-prev::after { font-size: 1.1rem; font-weight: 800; }

/* ════════════════════════════════════
   BOOKING FORM
════════════════════════════════════ */
.ot-booking-bar {
  background: var(--ot-white);
  border-radius: var(--ot-radius-lg);
  box-shadow: var(--ot-shadow-lg);
  padding: 1.25rem 1.5rem;
}
.ot-booking-anchor {
  scroll-margin-top: calc(var(--ot-navbar-h) + 16px);
}
.ot-booking-bar.floating {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1000px, calc(100% - 2rem));
  z-index: 10;
}
.ot-booking-field {
  border: 1.5px solid var(--ot-gray-l);
  border-radius: var(--ot-radius);
  padding: .55rem 1rem;
  cursor: pointer;
  transition: border-color var(--ot-transition);
  min-width: 0;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ot-booking-field:hover,
.ot-booking-field:focus-within { border-color: var(--ot-gold); }
.ot-booking-field .field-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ot-gray);
  margin-bottom: .1rem;
  white-space: nowrap;
}
.ot-booking-field input,
.ot-booking-field select {
  border: 0; padding: 0; width: 100%;
  font-size: .93rem; font-weight: 600;
  color: var(--ot-primary);
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  line-height: 1.3;
}
.ot-booking-field input:focus,
.ot-booking-field input:focus-visible,
.ot-booking-field select:focus {
  outline: none !important;
  box-shadow: none !important;
}
/* altInput: hide original, show alt */
.ot-booking-field input.flatpickr-input:not(.flatpickr-alt-input) { display: none !important; }
.ot-booking-field input.flatpickr-alt-input { display: block; }
.ot-booking-field input::placeholder { color: var(--ot-gray); font-weight: 400; }
.ot-booking-btn {
  background: linear-gradient(135deg,var(--ot-gold),var(--ot-gold-d));
  color: #fff;
  border: none;
  border-radius: var(--ot-radius);
  padding: 0 1.8rem;
  height: 64px;
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform var(--ot-transition), box-shadow var(--ot-transition);
  cursor: pointer;
}
.ot-booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.4);
  color: #fff;
}

/* Flatpickr overrides */
.flatpickr-calendar { font-family: inherit; border-radius: var(--ot-radius); box-shadow: var(--ot-shadow-lg); z-index: 9999 !important; }
.flatpickr-day.selected,
.flatpickr-day.selected:hover { background: var(--ot-gold); border-color: var(--ot-gold); }
.flatpickr-day.inRange { background: var(--ot-gold-l); border-color: var(--ot-gold-l); color: var(--ot-primary); }
.flatpickr-months { background: #fff; border-bottom: 1px solid #eee; border-radius: var(--ot-radius) var(--ot-radius) 0 0; }
.flatpickr-month { background: transparent; color: var(--ot-primary); }
.flatpickr-prev-month, .flatpickr-next-month { color: var(--ot-primary) !important; fill: var(--ot-primary) !important; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: var(--ot-primary) !important; }
.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg { fill: var(--ot-gold) !important; }
.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent;
  color: var(--ot-primary);
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  font-weight: 700;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover,
.flatpickr-current-month .flatpickr-monthDropdown-months:focus {
  background: transparent !important;
  color: var(--ot-primary) !important;
  outline: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months option { background: #fff; color: var(--ot-primary); }
.flatpickr-current-month input.cur-year { color: var(--ot-primary); font-weight: 700; }
.flatpickr-current-month input.cur-year:hover,
.flatpickr-current-month input.cur-year:focus { background: transparent; outline: none; }
.numInputWrapper:hover { background: transparent !important; }
.numInputWrapper input { color: var(--ot-primary); }
.numInputWrapper span { border-color: #ddd; }
.numInputWrapper span svg { fill: var(--ot-primary) !important; }
.flatpickr-weekdays { background: #f8f9fa; }
.flatpickr-weekday { background: #f8f9fa; color: var(--ot-gray); font-weight: 600; font-size: .78rem; }
.flatpickr-day.today { border-color: var(--ot-gold); color: var(--ot-gold); font-weight: 700; }
.flatpickr-day.today:hover { background: var(--ot-gold); color: #fff; }

/* ════════════════════════════════════
   ODALAR LİSTESİ — ALTERNATİNG LAYOUT
════════════════════════════════════ */
.ot-odalar-list { padding: 0; }

.ot-oda-row {
  display: flex;
  min-height: 480px;
  border-bottom: 1px solid var(--ot-gray-l);
}
/* Even row: text left, image right (default) */
.ot-oda-row__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 5%;
}
.ot-oda-row__img {
  flex: 0 0 50%;
  max-width: 50%;
  overflow: hidden;
  position: relative;
}
.ot-oda-row__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.ot-oda-row:hover .ot-oda-row__img img { transform: scale(1.04); }

/* Odd row: image left, text right */
.ot-oda-row.reverse { flex-direction: row-reverse; }
.ot-oda-row.reverse .ot-oda-row__text { align-items: flex-start; }

/* Tag */
.ot-oda-row__tag {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ot-gray);
  margin-bottom: .9rem;
}
/* Title */
.ot-oda-row__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ot-primary);
  margin-bottom: .8rem;
  line-height: 1.2;
}
/* Divider */
.ot-oda-row__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--ot-gold), var(--ot-primary));
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
/* Meta */
.ot-oda-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}
.ot-oda-row__meta span {
  font-size: .83rem;
  color: var(--ot-gray);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.ot-oda-row__meta i { color: var(--ot-gold); }
/* Description */
.ot-oda-row__desc {
  font-size: .95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1.4rem;
  max-width: 480px;
}
/* Features */
.ot-oda-row__features {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.8rem;
}
/* Button */
.ot-oda-row__btn {
  display: inline-block;
  padding: .7rem 2rem;
  border: 2px solid var(--ot-primary);
  color: var(--ot-primary);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background var(--ot-transition), color var(--ot-transition);
}
.ot-oda-row__btn:hover {
  background: var(--ot-primary);
  color: #fff;
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
  .ot-oda-row,
  .ot-oda-row.reverse { flex-direction: column; }
  .ot-oda-row__img { flex: 0 0 260px; max-width: 100%; height: 260px; }
  .ot-oda-row__text { padding: 2.5rem 1.5rem; align-items: flex-start; }
  .ot-oda-row__desc { max-width: 100%; }
}

/* ── Brand Buttons ── */
.btn-brand {
  background: var(--ot-gold);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  transition: background .2s, transform .15s;
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--ot-gold-d);
  color: #fff;
}
.btn-brand-primary {
  background: var(--ot-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background .2s, transform .15s;
}
.btn-brand-primary:hover, .btn-brand-primary:focus {
  background: var(--ot-dark);
  color: #fff;
}
.btn-brand-outline {
  background: transparent;
  color: var(--ot-primary);
  border: 2px solid var(--ot-primary);
  border-radius: 50px;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.btn-brand-outline:hover, .btn-brand-outline:focus {
  background: var(--ot-primary);
  color: #fff;
}
.btn-brand-ghost {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50px;
  font-weight: 600;
  transition: background .2s;
}
.btn-brand-ghost:hover, .btn-brand-ghost:focus {
  background: rgba(255,255,255,.25);
  color: #fff;
}
.btn-brand-light {
  background: var(--ot-light);
  color: var(--ot-primary);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  transition: background .2s;
}
.btn-brand-light:hover, .btn-brand-light:focus {
  background: #e0e4ea;
  color: var(--ot-primary);
}
.btn-brand-wa {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  transition: background .2s;
}
.btn-brand-wa:hover, .btn-brand-wa:focus {
  background: #1ebe5a;
  color: #fff;
}

/* ── Oda Detail Sidebar ── */
.ot-oda-sidebar {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: var(--ot-radius);
  padding: 2rem 1.75rem;
  position: sticky;
  top: calc(var(--ot-navbar-h) + 1.5rem);
}
.ot-oda-sidebar__row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: .9rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.ot-oda-sidebar__row:first-child { padding-top: 0; }
.ot-oda-sidebar__row:last-of-type { border-bottom: none; }
.ot-oda-sidebar__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ot-light);
  border-radius: 10px;
  font-size: 1.5rem;
  color: var(--ot-primary);
}
.ot-oda-sidebar__label {
  font-size: .78rem;
  color: #999;
  margin-bottom: .15rem;
  letter-spacing: .02em;
}
.ot-oda-sidebar__value {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ot-primary);
}
.ot-oda-sidebar__hr {
  border-color: #e8e8e8;
  margin: 1.25rem 0;
}
.ot-oda-sidebar__note {
  font-size: .82rem;
  color: #777;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.ot-oda-sidebar__times {
  display: flex;
  gap: 2rem;
}
.ot-oda-sidebar__time-label {
  font-size: .75rem;
  color: #aaa;
  margin-bottom: .15rem;
}
.ot-oda-sidebar__time {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ot-primary);
  letter-spacing: -.03em;
  line-height: 1;
}

/* ════════════════════════════════════
   ROOM CARDS
════════════════════════════════════ */
.ot-room-card {
  border-radius: var(--ot-radius-lg);
  overflow: hidden;
  box-shadow: var(--ot-shadow);
  background: var(--ot-white);
  transition: transform var(--ot-transition), box-shadow var(--ot-transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.ot-room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ot-shadow-lg);
}
.ot-room-card .card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.ot-room-card .card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ot-room-card:hover .card-img img { transform: scale(1.06); }
.ot-room-card .card-img-overlay {
  position: absolute;
  top: 1rem; right: 1rem;
}
.ot-room-card .card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.ot-room-card .room-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ot-primary);
  margin-bottom: .35rem;
}
.ot-room-card .room-meta {
  display: flex;
  gap: 1.2rem;
  font-size: .82rem;
  color: var(--ot-gray);
  margin-bottom: .8rem;
  flex-wrap: wrap;
}
.ot-room-card .room-meta span { display: flex; align-items: center; gap: .3rem; }
.ot-room-card .room-meta i { color: var(--ot-gold); }
.ot-room-card .room-desc {
  font-size: .9rem;
  color: var(--ot-gray);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ot-room-card .card-footer {
  padding: 1rem 1.4rem;
  background: var(--ot-light);
  border-top: 1px solid var(--ot-gray-l);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ot-room-card .btn-reserve {
  background: var(--ot-primary);
  color: #fff;
  border-radius: 50px;
  padding: .45rem 1.2rem;
  font-size: .85rem;
  font-weight: 600;
  transition: background var(--ot-transition);
}
.ot-room-card .btn-reserve:hover { background: var(--ot-gold-d); color: #fff; }

/* ════════════════════════════════════
   BOLUM OVERLAY CARD
════════════════════════════════════ */
.ot-bolum-card {
  position: relative;
  border-radius: var(--ot-radius-lg);
  overflow: hidden;
  height: 340px;
  display: block;
  text-decoration: none;
  box-shadow: var(--ot-shadow);
}
.ot-bolum-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
}
.ot-bolum-card:hover .ot-bolum-card__img { transform: scale(1.09); }
.ot-bolum-card__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ot-primary) 0%, var(--ot-dark) 100%);
  display: flex; align-items: center; justify-content: center;
}
.ot-bolum-card__placeholder i { font-size: 4.5rem; color: rgba(255,255,255,.12); }
.ot-bolum-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8,18,35,.9) 0%,
    rgba(8,18,35,.3) 55%,
    transparent 100%
  );
  transition: background .4s ease;
}
.ot-bolum-card:hover .ot-bolum-card__overlay {
  background: linear-gradient(to top,
    rgba(8,18,35,.95) 0%,
    rgba(8,18,35,.55) 58%,
    rgba(8,18,35,.12) 100%
  );
}
.ot-bolum-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 3;
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  padding: .28rem .9rem;
  color: rgba(255,255,255,.95);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ot-bolum-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.6rem 1.5rem 1.5rem;
  z-index: 3;
}
.ot-bolum-card__body::before {
  content: '';
  display: block;
  width: 32px; height: 3px;
  background: var(--ot-gold);
  border-radius: 2px;
  margin-bottom: .75rem;
  transition: width .4s ease;
}
.ot-bolum-card:hover .ot-bolum-card__body::before { width: 56px; }
.ot-bolum-card__title {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.ot-bolum-card__extra {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height .42s ease, opacity .32s ease, margin-top .42s ease;
}
.ot-bolum-card:hover .ot-bolum-card__extra {
  max-height: 180px;
  opacity: 1;
  margin-top: .8rem;
}
.ot-bolum-card__desc {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  line-height: 1.55;
  margin-bottom: .9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ot-bolum-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem;
  margin-bottom: .9rem;
}
.ot-bolum-card__feature {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: .18rem .6rem;
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  font-weight: 500;
}
.ot-bolum-card__feature i { color: var(--ot-gold); font-size: .72rem; }
.ot-bolum-card__cta {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--ot-gold);
  color: #fff;
  border-radius: 30px;
  padding: .42rem 1.25rem;
  font-size: .83rem;
  font-weight: 600;
}

/* ════════════════════════════════════
   FACILITY CARDS
════════════════════════════════════ */
.ot-facility-card {
  border-radius: var(--ot-radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 320px;
  display: block;
}
.ot-facility-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ot-facility-card:hover img { transform: scale(1.08); }
.ot-facility-card .fc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,26,46,.85) 0%, rgba(15,26,46,.2) 60%, transparent 100%);
  transition: background var(--ot-transition);
}
.ot-facility-card:hover .fc-overlay {
  background: linear-gradient(0deg, rgba(15,26,46,.9) 0%, rgba(15,26,46,.4) 70%, transparent 100%);
}
.ot-facility-card .fc-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  color: #fff;
  transform: translateY(0);
}
.ot-facility-card .fc-icon {
  width: 44px; height: 44px;
  background: var(--ot-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: .7rem;
  color: #fff;
}
.ot-facility-card .fc-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .3rem;
}
.ot-facility-card .fc-sub {
  font-size: .85rem;
  opacity: .85;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, opacity .3s;
}
.ot-facility-card:hover .fc-sub { max-height: 80px; opacity: 1; }

/* Facility placeholder (no image) */
.ot-facility-placeholder {
  background: linear-gradient(135deg, var(--ot-primary) 0%, var(--ot-primary-l) 100%);
}

/* ════════════════════════════════════
   GALLERY SECTION
════════════════════════════════════ */
.ot-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: .75rem;
}
.ot-gallery-grid .g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--ot-radius);
  cursor: pointer;
}
.ot-gallery-grid .g-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.ot-gallery-grid .g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ot-gallery-grid .g-item:hover img { transform: scale(1.08); }
.ot-gallery-grid .g-item .g-overlay {
  position: absolute; inset: 0;
  background: rgba(15,26,46,.0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ot-transition);
}
.ot-gallery-grid .g-item:hover .g-overlay {
  background: rgba(15,26,46,.4);
}
.ot-gallery-grid .g-item .g-overlay i {
  color: #fff;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity var(--ot-transition);
}
.ot-gallery-grid .g-item:hover .g-overlay i { opacity: 1; }
.ot-gallery-grid .g-more {
  position: absolute; inset: 0;
  background: rgba(15,26,46,.6);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff;
}
.ot-gallery-grid .g-more .g-more-num {
  font-size: 2rem; font-weight: 800;
}

/* Swiper gallery (detail pages) */
.ot-gallery-swiper { border-radius: var(--ot-radius-lg); overflow: hidden; }
.ot-gallery-swiper .swiper-slide img {
  width: 100%; height: 420px;
  object-fit: cover;
}
.ot-gallery-thumbs .swiper-slide img {
  width: 100%; height: 80px;
  object-fit: cover;
  border-radius: 6px;
  opacity: .6;
  transition: opacity var(--ot-transition);
  cursor: pointer;
}
.ot-gallery-thumbs .swiper-slide-thumb-active img { opacity: 1; outline: 2px solid var(--ot-gold); }

/* ════════════════════════════════════
   ROOM DETAIL — FULL WIDTH SLIDER
════════════════════════════════════ */
.ot-oda-slider {
  width: 100%;
  margin-top: var(--ot-navbar-h);
  overflow: hidden;
  background: var(--ot-dark);
}
.ot-oda-slider img {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 680px;
  object-fit: cover;
  display: block;
}
.ot-oda-swiper { width: 100%; }
.ot-oda-swiper .swiper-slide img {
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 680px;
  object-fit: cover;
  display: block;
}
.ot-oda-swiper .swiper-button-prev,
.ot-oda-swiper .swiper-button-next {
  color: #fff;
  background: rgba(0,0,0,.35);
  width: 44px; height: 44px;
  border-radius: 50%;
}
.ot-oda-swiper .swiper-button-prev::after,
.ot-oda-swiper .swiper-button-next::after { font-size: 1rem; }
.ot-oda-swiper .swiper-pagination-bullet-active { background: var(--ot-gold); }

/* ════════════════════════════════════
   ROOM DETAIL PAGE
════════════════════════════════════ */
.ot-breadcrumb {
  background: var(--ot-light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--ot-gray-l);
}
.ot-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--ot-gray); }
.ot-breadcrumb .breadcrumb-item a { color: var(--ot-primary); font-size: .9rem; }
.ot-breadcrumb .breadcrumb-item.active { color: var(--ot-gray); font-size: .9rem; }

.ot-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--ot-light);
  border: 1px solid var(--ot-gray-l);
  border-radius: 6px;
  padding: .4rem .75rem;
  font-size: .85rem;
  color: var(--ot-primary);
  font-weight: 500;
}
.ot-feature-badge i { color: var(--ot-gold); font-size: 1rem; }

/* Booking sidebar */
.ot-sidebar-booking {
  background: var(--ot-white);
  border: 1.5px solid var(--ot-gray-l);
  border-radius: var(--ot-radius-lg);
  overflow: hidden;
  position: sticky;
  top: calc(var(--ot-navbar-h) + 1rem);
}
.ot-sidebar-booking .sb-header {
  background: var(--ot-primary);
  padding: 1.25rem 1.5rem;
  color: #fff;
}
.ot-sidebar-booking .sb-header h4 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.ot-sidebar-booking .sb-body { padding: 1.5rem; }
.ot-sidebar-booking .sb-field {
  border: 1.5px solid var(--ot-gray-l);
  border-radius: var(--ot-radius);
  padding: .7rem 1rem;
  margin-bottom: .75rem;
  cursor: pointer;
}
.ot-sidebar-booking .sb-field:focus-within { border-color: var(--ot-gold); }
.ot-sidebar-booking .sb-field label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ot-gray);
  display: block;
  margin-bottom: .15rem;
}
.ot-sidebar-booking .sb-field input,
.ot-sidebar-booking .sb-field select {
  border: 0; width: 100%;
  font-size: .95rem; font-weight: 600;
  color: var(--ot-primary);
  background: transparent;
  outline: none;
  cursor: pointer;
}
.ot-sidebar-booking .sb-btn {
  background: linear-gradient(135deg,var(--ot-gold),var(--ot-gold-d));
  color: #fff;
  border: none;
  border-radius: var(--ot-radius);
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--ot-transition), box-shadow var(--ot-transition);
}
.ot-sidebar-booking .sb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.4);
}
.ot-sidebar-booking .sb-contact {
  text-align: center;
  padding: 0 1.5rem 1.25rem;
  font-size: .85rem;
  color: var(--ot-gray);
}
.ot-sidebar-booking .sb-contact a { color: var(--ot-gold); font-weight: 600; }

/* ════════════════════════════════════
   FEATURES / WHY-US
════════════════════════════════════ */
.ot-feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
}
.ot-feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg,var(--ot-gold-l),#fdf8f0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: var(--ot-gold-d);
  box-shadow: 0 4px 16px rgba(201,169,110,.2);
}
.ot-feature-item h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ot-primary);
  margin-bottom: .4rem;
}
.ot-feature-item p {
  font-size: .88rem;
  color: var(--ot-gray);
  margin: 0;
  line-height: 1.6;
}

/* ════════════════════════════════════
   COUNTER STRIP
════════════════════════════════════ */
.ot-counter-strip {
  background: var(--ot-primary);
  padding: 3rem 0;
}
.ot-counter-item { text-align: center; }
.ot-counter-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--ot-gold);
  line-height: 1;
  display: block;
}
.ot-counter-label {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  margin-top: .4rem;
}

/* ════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════ */
.ot-testimonials-swiper .swiper-slide { height: auto; }
.ot-testimonial-card {
  background: var(--ot-white);
  border-radius: var(--ot-radius-lg);
  padding: 2rem;
  box-shadow: var(--ot-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ot-testimonial-card .review-text {
  font-size: .95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.2rem;
  font-style: italic;
  flex: 1;
}
.ot-testimonial-card .reviewer-name { font-weight: 700; color: var(--ot-primary); font-size: .95rem; }
.ot-testimonial-card .reviewer-sub { font-size: .8rem; color: var(--ot-gray); }
.ot-stars { color: #f59e0b; font-size: .9rem; }

/* ════════════════════════════════════
   CONTACT / INFO SECTION
════════════════════════════════════ */
.ot-info-card {
  background: var(--ot-white);
  border: 1.5px solid var(--ot-gray-l);
  border-radius: var(--ot-radius-lg);
  padding: 2rem;
}
.ot-info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.ot-info-row:last-child { margin-bottom: 0; }
.ot-info-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--ot-gold-l);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--ot-gold-d);
}
.ot-info-row .label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--ot-gray); }
.ot-info-row .value { font-size: .95rem; font-weight: 500; color: var(--ot-primary); margin-top: .1rem; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.ot-footer {
  background: var(--ot-dark);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.ot-footer h6 {
  color: var(--ot-white);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--ot-gold);
  display: inline-block;
}
.ot-footer a { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 2; }
.ot-footer a:hover { color: var(--ot-gold); }
.ot-footer .footer-logo img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.ot-footer-desc { font-size: .88rem; line-height: 1.7; }
.ot-footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.ot-footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8) !important;
  font-size: 1rem;
  transition: background var(--ot-transition);
}
.ot-footer-social a:hover { background: var(--ot-gold); color: #fff !important; }
.ot-footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}

/* ════════════════════════════════════
   WHATSAPP FAB
════════════════════════════════════ */
.ot-wa-btn {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--ot-transition), box-shadow var(--ot-transition);
  color: #fff; font-size: 1.6rem;
  text-decoration: none;
}
.ot-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
  color: #fff;
}

/* ════════════════════════════════════
   BACK TO TOP
════════════════════════════════════ */
/* ════════════════════════════════════
   SCROLL DOWN INDICATOR
════════════════════════════════════ */
.ot-scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  cursor: pointer;
}
.ot-scroll-down__mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.ot-scroll-down__dot {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: ot-scroll-dot 1.6s ease-in-out infinite;
}
.ot-scroll-down__arrow {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  animation: ot-scroll-bounce 1.6s ease-in-out infinite;
}
@keyframes ot-scroll-dot {
  0%   { opacity: 1; transform: translateY(0); }
  60%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(10px); }
}
@keyframes ot-scroll-bounce {
  0%, 100% { transform: translateY(0);   opacity: .7; }
  50%       { transform: translateY(5px); opacity: 1; }
}

#otBackTop {
  position: fixed;
  bottom: 5rem; right: 1.5rem;
  z-index: 998;
  width: 42px; height: 42px;
  background: var(--ot-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--ot-transition), transform var(--ot-transition);
  display: flex; align-items: center; justify-content: center;
}
#otBackTop.show { opacity: 1; transform: translateY(0); }
#otBackTop:hover { background: var(--ot-gold-d); }

/* ════════════════════════════════════
   PAGE HERO (non-home pages)
════════════════════════════════════ */
.ot-page-hero {
  position: relative;
  height: 340px;
  background: var(--ot-primary);
  display: flex; align-items: flex-end;
  padding-bottom: 2.5rem;
  margin-bottom: 5rem;
}
.ot-page-hero img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .35;
}
.ot-page-hero .ph-content {
  position: relative; z-index: 1;
  padding-top: var(--ot-navbar-h);
}
.ot-page-hero .ph-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}
.ot-page-hero .breadcrumb-item,
.ot-page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); font-size: .88rem; }
.ot-page-hero .breadcrumb-item.active { color: var(--ot-gold); }
.ot-page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* Section with bg */
.ot-section-dark {
  background: var(--ot-primary);
  color: #fff;
}
.ot-section-dark .ot-section-title { color: #fff; }
.ot-section-dark .ot-section-subtitle { color: rgba(255,255,255,.7); }
.ot-section-light { background: var(--ot-light); }

/* ════════════════════════════════════
   CONTENT SECTION (detail)
════════════════════════════════════ */
.ot-content-body { line-height: 1.8; font-size: .98rem; color: #444; }
.ot-content-body h2, .ot-content-body h3 { color: var(--ot-primary); margin: 1.5rem 0 .75rem; }
.ot-content-body ul { padding-left: 1.25rem; }
.ot-content-body li { margin-bottom: .4rem; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 991.98px) {
  :root { --ot-navbar-h: 64px; }
  .ot-hero { height: 85vh; }
  .ot-booking-bar.floating {
    position: relative;
    bottom: auto; left: auto;
    transform: none;
    width: 100%;
    border-radius: 0;
    margin-top: -1px;
  }
  .ot-hero-title { font-size: 2rem; }
  .ot-gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .ot-gallery-grid .g-item:first-child { grid-column: span 2; }
  .ot-facility-card { height: 240px; }
  .section-pad { padding: 55px 0; }
  .ot-page-hero { height: 240px; margin-bottom: 3rem; }
  .ot-gallery-swiper .swiper-slide img { height: 260px; }
}

@media (max-width: 575.98px) {
  .ot-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,160px); }
  .ot-gallery-grid .g-item:first-child { grid-column: span 2; grid-row: span 1; }
  .ot-booking-bar { padding: 1rem; }
  .ot-counter-num { font-size: 2rem; }
  /* Bootstrap row large gutters (g-4, g-5) overflow container on small screens */
  .row.g-4, .row.g-5 { --bs-gutter-x: 1rem; --bs-gutter-y: 1rem; }
}

/* ── Guest Picker Panel ── */
.ot-guest-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  background: #fff;
  border-radius: var(--ot-radius);
  box-shadow: 0 8px 32px rgba(26,43,74,.16);
  padding: 1.25rem 1.25rem 1rem;
  z-index: 999;
  border: 1px solid #e8e8e8;
}
.ot-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.ot-guest-row:last-of-type { border-bottom: none; }
.ot-guest-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ot-primary);
}
.ot-guest-counter {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.ot-guest-counter span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ot-primary);
  min-width: 20px;
  text-align: center;
}
.ot-cnt-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--ot-primary);
  background: transparent;
  color: var(--ot-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.ot-cnt-btn:hover {
  background: var(--ot-primary);
  color: #fff;
}
.ot-guest-ages-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ot-primary);
  margin-bottom: .5rem;
}

/* ── Galeri Page ── */
.ot-galeri-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.ot-galeri-tab {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem 1.1rem;
  border: 1.5px solid #ddd;
  border-radius: 50px;
  background: #fff;
  color: var(--ot-primary);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.ot-galeri-tab:hover {
  border-color: var(--ot-primary);
  background: var(--ot-light);
}
.ot-galeri-tab.active {
  background: var(--ot-primary);
  border-color: var(--ot-primary);
  color: #fff;
}
.ot-galeri-tab__count {
  background: rgba(255,255,255,.25);
  border-radius: 50px;
  padding: .1rem .45rem;
  font-size: .75rem;
  font-weight: 700;
}
.ot-galeri-tab.active .ot-galeri-tab__count { background: rgba(255,255,255,.25); }
.ot-galeri-tab:not(.active) .ot-galeri-tab__count {
  background: var(--ot-light);
  color: var(--ot-primary);
}

.ot-galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.ot-galeri-item {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--ot-radius) - 2px);
}
.ot-galeri-item a {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.ot-galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.ot-galeri-item:hover img { transform: scale(1.05); }
.ot-galeri-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,43,74,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.ot-galeri-item:hover .ot-galeri-item__overlay { opacity: 1; }
.ot-galeri-item__overlay i {
  font-size: 1.8rem;
  color: #fff;
}

@media (max-width: 991px) { .ot-galeri-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .ot-galeri-grid { grid-template-columns: repeat(2, 1fr); } }
