/* =========================================================
   Muramuma — Trip Website
   Design system: Plus Jakarta Sans, ocean + coral palette
   ========================================================= */

:root {
  --ocean: #0b4f5c;
  --ocean-600: #0d5f6e;
  --ocean-700: #08454b;
  --ocean-100: #e2f2f4;
  --coral: #ff6b4a;
  --coral-dark: #e8542f;
  --gold: #ffc857;
  --ink: #1f2d33;
  --muted: #5e7078;
  --bg: #f6fafb;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(11, 79, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 79, 92, 0.12);
  --shadow-lg: 0 18px 44px rgba(11, 79, 92, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--ocean-600); text-decoration: none; }
a:hover { color: var(--ocean); }

h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4 { font-weight: 800; letter-spacing: -0.02em; }

.text-accent { color: var(--coral) !important; }
.text-ocean { color: var(--ocean) !important; }
.bg-ocean { background: var(--ocean) !important; }
.bg-soft { background: var(--bg); }

/* ---------- Buttons ---------- */
.btn { border-radius: 50px; font-weight: 700; padding: 0.65rem 1.4rem; transition: all .25s ease; }
.btn-accent { background: var(--coral); border-color: var(--coral); color: #fff; }
.btn-accent:hover, .btn-accent:focus { background: var(--coral-dark); border-color: var(--coral-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 107, 74, .35); }
.btn-ocean { background: var(--ocean); border-color: var(--ocean); color: #fff; }
.btn-ocean:hover { background: var(--ocean-700); border-color: var(--ocean-700); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(11, 79, 92, .35); }
.btn-outline-ocean { border: 2px solid var(--ocean); color: var(--ocean); background: transparent; }
.btn-outline-ocean:hover { background: var(--ocean); color: #fff; }
.btn-ghost-light { border: 2px solid rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-ghost-light:hover { background: #fff; color: var(--ocean); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ocean-700);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  padding: .45rem 0;
}
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: #fff; }
.topbar .bi { color: var(--gold); }

/* ---------- Navbar ---------- */
.navbar-mura {
  background: var(--ocean);
  padding: .7rem 0;
  transition: all .3s ease;
}
.navbar-mura .navbar-brand { display: flex; align-items: center; gap: .6rem; color: #fff; font-weight: 800; }
.navbar-mura .navbar-brand img { height: 42px; }
.navbar-mura .navbar-nav .nav-link {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .93rem;
  padding: .5rem .5rem;
  border-radius: 50px;
  transition: all .2s ease;
}
.navbar-mura .navbar-nav .nav-link:hover,
.navbar-mura .navbar-nav .nav-link.active { color: #fff; background: rgba(255,255,255,.12); }
.navbar-mura .navbar-toggler { border-color: rgba(255,255,255,.4); color: #fff; }

/* Center the main menu and keep it away from the right-side controls */
@media (min-width: 992px) {
  .navbar-mura .navbar-nav {
    flex: 1 1 auto;
    justify-content: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.lang-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  color: #fff; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: .38rem .9rem; border-radius: 50px; font-weight: 700; font-size: .85rem;
  transition: all .2s ease;
}
.lang-btn:hover { background: rgba(255,255,255,.22); color: #fff; }
.dropdown-menu.lang-menu { min-width: 190px; border: none; border-radius: 14px; box-shadow: var(--shadow-md); padding: .4rem; }
.dropdown-menu.lang-menu .dropdown-item { border-radius: 10px; padding: .55rem .8rem; font-weight: 600; }
.dropdown-menu.lang-menu .dropdown-item.active { background: var(--ocean-100); color: var(--ocean); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex; align-items: center;
  background:
    linear-gradient(120deg, rgba(5,42,50,.88) 0%, rgba(11,79,92,.55) 55%, rgba(255,107,74,.25) 100%),
    url('../images/hero.png') center/cover no-repeat,
    linear-gradient(120deg, #06262d, #0b4f5c);
}
.hero .hero-content { position: relative; z-index: 2; color: #fff; padding: 4.5rem 0; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  padding: .4rem 1rem; border-radius: 50px; font-size: .85rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  backdrop-filter: blur(4px);
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 800; margin: 1.1rem 0 .9rem; }
.hero p.lead { color: rgba(255,255,255,.9); max-width: 620px; font-size: 1.1rem; }

/* ---------- Hero slider (custom, no Bootstrap dependency) ---------- */
.hero-slider { position: relative; display: block; background: #06262d; width: 100%; max-width: 100%; overflow: hidden; }
.hero-slider .hero-slider-track { position: relative; height: 82vh; min-height: 560px; }
.hero-slider .hero-slide {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .8s ease, visibility .8s ease;
}
.hero-slider .hero-slide.active { opacity: 1; visibility: visible; z-index: 2; pointer-events: auto; }
.hero-slider .hero-slide::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(120deg, rgba(5,42,50,.88) 0%, rgba(11,79,92,.55) 55%, rgba(255,107,74,.25) 100%);
}
.hero-slider .hero-slide .container { position: relative; z-index: 2; width: 100%; }
.hero-slider .hero-slide .hero-content { padding: 4.5rem 0; }

.hero-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 48px; height: 48px; border: 0; border-radius: 50%;
  background: rgba(8,69,75,.55); color: #fff; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.hero-slider-arrow:hover { background: rgba(8,69,75,.9); }
.hero-slider-arrow.prev { left: 16px; }
.hero-slider-arrow.next { right: 16px; }

.hero-slider-dots {
  position: absolute; left: 0; right: 0; bottom: 20px; z-index: 6;
  display: flex; justify-content: center; gap: 8px;
}
.hero-slider-dots button {
  width: 26px; height: 5px; border: 0; border-radius: 4px; padding: 0;
  background: rgba(255,255,255,.45); cursor: pointer;
  transition: background .2s ease;
}
.hero-slider-dots button.active { background: var(--coral); }

.hero-search {
  margin-top: 2rem; max-width: 640px;
  background: #fff; border-radius: 60px; padding: .5rem;
  box-shadow: var(--shadow-lg); display: flex;
}
.hero-search input {
  border: none; background: transparent; flex: 1; padding: .7rem 1.2rem;
  font-weight: 600; color: var(--ink); outline: none;
}
.hero-search .btn { flex-shrink: 0; }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 2.6rem; flex-wrap: wrap;
}
.hero-stats .stat b { display: block; font-size: 1.7rem; font-weight: 800; color: var(--gold); }
.hero-stats .stat span { font-size: .85rem; color: rgba(255,255,255,.8); }

.wave-divider { display: block; width: 100%; line-height: 0; }
.wave-divider svg { width: 100%; height: 60px; }

/* ---------- Sections ---------- */
.section { padding: 4.5rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.8rem; }
.section-head .badge-pill {
  display: inline-block; background: var(--ocean-100); color: var(--ocean);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: .8rem;
}
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.section-head p { color: var(--muted); }

/* ---------- Trip cards ---------- */
.trip-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all .3s ease; height: 100%;
  display: flex; flex-direction: column; border: none;
}
.trip-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.trip-card .card-img-wrap { position: relative; overflow: hidden; height: 220px; }
.trip-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.trip-card:hover .card-img-wrap img { transform: scale(1.08); }
.trip-card .duration-chip {
  position: absolute; top: 14px; left: 14px;
  background: rgba(8,69,75,.85); color: #fff; backdrop-filter: blur(4px);
  font-size: .78rem; font-weight: 700; padding: .3rem .7rem; border-radius: 50px;
}
.trip-card .price-chip {
  position: absolute; bottom: 14px; right: 14px;
  background: var(--coral); color: #fff; font-weight: 800; font-size: .85rem;
  padding: .35rem .8rem; border-radius: 50px; box-shadow: var(--shadow-sm);
}
.trip-card .card-body { padding: 1.3rem; display: flex; flex-direction: column; flex: 1; }
.trip-card h3 { font-size: 1.15rem; font-weight: 800; }
.trip-card .trip-loc { color: var(--muted); font-size: .85rem; }
.trip-card .trip-loc .bi { color: var(--coral); }
.trip-card p { color: var(--muted); font-size: .9rem; flex: 1; }
.trip-card .btn { align-self: flex-start; }

/* ---------- Features / Why us ---------- */
.feature-card {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.6rem; height: 100%;
  box-shadow: var(--shadow-sm); transition: all .3s ease; text-align: center;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 68px; height: 68px; margin: 0 auto 1.1rem; border-radius: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-600)); color: #fff;
}
.feature-card h3 { font-size: 1.1rem; font-weight: 800; }
.feature-card p { color: var(--muted); font-size: .9rem; }

/* ---------- About teaser ---------- */
.about-teaser { background: #fff; }
.about-teaser img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.about-teaser .check-list li { list-style: none; padding: .45rem 0; font-weight: 600; }
.about-teaser .check-list .bi-check-circle-fill { color: var(--ocean); margin-right: .6rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid .g-item { position: relative; border-radius: 14px; overflow: hidden; height: 220px; cursor: pointer; }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.1); }
.gallery-grid .g-item::after {
  content: "\F33E"; font-family: "bootstrap-icons";
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff; background: rgba(11,79,92,.35); opacity: 0; transition: opacity .3s ease;
}
.gallery-grid .g-item:hover::after { opacity: 1; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff; border-radius: var(--radius); padding: 1.8rem; height: 100%;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .stars { color: var(--gold); }
.testimonial-card p { color: var(--muted); }
.testimonial-card .who { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; }
.testimonial-card .who .avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--ocean-100);
  color: var(--ocean); display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.testimonial-card .who b { display: block; }
.testimonial-card .who small { color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--ocean-700), var(--ocean) 60%, var(--ocean-600));
  color: #fff; border-radius: 24px; padding: 3.5rem; position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,107,74,.5), transparent 70%);
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-banner p { color: rgba(255,255,255,.85); }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  position: relative; color: #fff; text-align: center; padding: 5rem 0 3.5rem;
  background: linear-gradient(135deg, rgba(5,42,50,.9), rgba(11,79,92,.7)), url('../images/hero.png') center/cover no-repeat;
}
.page-header h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.page-header p { color: rgba(255,255,255,.85); max-width: 560px; margin: .6rem auto 0; }
.page-header .breadcrumb-item a, .page-header .breadcrumb-item.active { color: rgba(255,255,255,.8); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ---------- Trip detail ---------- */
.trip-hero-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.info-pill {
  display: inline-flex; align-items: center; gap: .5rem; background: #fff; border-radius: 50px;
  padding: .55rem 1.1rem; box-shadow: var(--shadow-sm); font-weight: 700; font-size: .9rem;
}
.info-pill .bi { color: var(--coral); }
.price-box {
  background: linear-gradient(135deg, var(--ocean), var(--ocean-600)); color: #fff;
  border-radius: var(--radius); padding: 1.6rem;
}
.price-box .amount { font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.booking-sidebar { position: sticky; top: 90px; }

/* ---------- Forms ---------- */
.form-control, .form-select {
  border-radius: 12px; border: 1.5px solid #dfe9ec; padding: .65rem 1rem;
  font-weight: 500; transition: all .2s ease;
}
.form-control:focus, .form-select:focus {
  border-color: var(--ocean); box-shadow: 0 0 0 .25rem rgba(11,79,92,.12);
}
.form-label { font-weight: 700; font-size: .88rem; }
.input-icon { position: relative; }
.input-icon .bi { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted); }
.input-icon .form-control, .input-icon .form-select { padding-left: 2.5rem; }
.invalid-feedback { display: block; font-weight: 600; }
.is-invalid { border-color: #dc3545 !important; }

/* ---------- Alerts ---------- */
.alert { border-radius: 14px; border: none; font-weight: 600; }
.alert-success { background: #d8f3e3; color: #14532d; }
.alert-danger { background: #fde3dc; color: #9a3412; }
.alert-warning { background: #fdf0d3; color: #78350f; }

/* ---------- Pagination ---------- */
.mura-pagination { gap: 4px; }
.mura-pagination .page-item { margin: 0; }
.mura-pagination .page-link {
  color: var(--ocean); border: none; border-radius: 12px;
  font-weight: 700; min-width: 42px; text-align: center;
  box-shadow: var(--shadow-sm); transition: all .2s ease;
}
.mura-pagination .page-link:hover { background: var(--ocean-100); color: var(--ocean); transform: translateY(-2px); }
.mura-pagination .page-item.active .page-link { background: var(--ocean); color: #fff; }
.mura-pagination .page-item.disabled .page-link { color: #b6c4c9; box-shadow: none; }

/* ---------- Auth pages ---------- */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #06262d, #0b4f5c 55%, #127486);
  padding: 2rem 1rem;
}
.auth-card {
  width: 100%; max-width: 460px; background: #fff; border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,.35); padding: 2.4rem; position: relative; overflow: hidden;
}
.auth-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
}
.auth-logo { width: 74px; height: 74px; border-radius: 20px; object-fit: cover; margin: 0 auto 1rem; display: block; box-shadow: var(--shadow-md); }

/* ---------- Footer ---------- */
.site-footer { background: #072e35; color: rgba(255,255,255,.78); }
.site-footer h5 { color: #fff; font-weight: 800; margin-bottom: 1.1rem; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--gold); }
.site-footer .footer-links li { margin-bottom: .5rem; }
.site-footer .social-btn {
  width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); color: #fff; transition: all .25s ease; margin-right: .4rem;
}
.site-footer .social-btn:hover { background: var(--coral); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.2rem 0; font-size: .88rem; }

/* ---------- Scroll to top ---------- */
#scrollTop {
  position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--coral); color: #fff; border: none; font-size: 1.2rem;
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: all .3s ease; z-index: 1050;
}
#scrollTop.show { opacity: 1; visibility: visible; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; left: 22px; bottom: 22px; z-index: 1050;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; box-shadow: var(--shadow-lg); transition: transform .25s ease;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); color: #fff; }
.wa-float::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; animation: waPulse 2s infinite;
}
@keyframes waPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }

/* ---------- FAQ ---------- */
.accordion-mura .accordion-item { border: none; box-shadow: var(--shadow-sm); border-radius: 14px !important; margin-bottom: .8rem; overflow: hidden; }
.accordion-mura .accordion-button { font-weight: 700; padding: 1.1rem 1.3rem; }
.accordion-mura .accordion-button:not(.collapsed) { background: var(--ocean-100); color: var(--ocean); box-shadow: none; }

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* =========================================================
   ADMIN
   ========================================================= */
.admin-body { background: #f0f5f7; }
.admin-wrapper { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px; background: linear-gradient(180deg, #072e35, #0b4f5c);
  color: #fff; flex-shrink: 0; position: fixed; top: 0; bottom: 0; left: 0;
  overflow-y: auto; z-index: 1040; transition: transform .3s ease;
}
.admin-sidebar .brand { padding: 1.2rem 1.4rem; border-bottom: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; gap: .7rem; }
.admin-sidebar .brand img { height: 40px; }
.admin-sidebar .brand span { font-weight: 800; font-size: 1.1rem; }
.admin-sidebar .nav-link {
  color: rgba(255,255,255,.78); font-weight: 600; padding: .7rem 1.4rem;
  border-radius: 0; display: flex; align-items: center; gap: .8rem; border-left: 3px solid transparent;
  transition: all .2s ease;
}
.admin-sidebar .nav-link .bi { font-size: 1.1rem; }
.admin-sidebar .nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.admin-sidebar .nav-link.active { color: #fff; background: rgba(255,255,255,.12); border-left-color: var(--coral); }
.admin-sidebar .nav-section { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); padding: 1.2rem 1.4rem .4rem; }
.admin-sidebar .badge-count { margin-left: auto; background: var(--coral); color: #fff; }

.admin-main { flex: 1; margin-left: 260px; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar {
  background: #fff; padding: .8rem 1.6rem; display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 1030;
}
.admin-topbar .user-chip { display: flex; align-items: center; gap: .6rem; font-weight: 700; }
.admin-topbar .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--ocean-100); color: var(--ocean); display: flex; align-items: center; justify-content: center; font-weight: 800; }
.admin-content { padding: 1.8rem; flex: 1; }

.admin-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow-sm); border: none; }
.admin-card .card-header { background: transparent; border-bottom: 1px solid #eef3f5; font-weight: 800; padding: 1.1rem 1.4rem; }
.admin-card .card-body { padding: 1.4rem; }

.stat-card {
  background: #fff; border-radius: 16px; padding: 1.4rem; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 1rem; height: 100%;
}
.stat-card .stat-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #fff; }
.stat-card b { font-size: 1.5rem; font-weight: 800; display: block; line-height: 1.1; }
.stat-card span { color: var(--muted); font-size: .85rem; font-weight: 600; }

.admin-table { margin: 0; }
.admin-table thead th { background: #f7fafb; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 800; border: none; }
.admin-table tbody td { vertical-align: middle; border-color: #eef3f5; }
.admin-table .thumb { width: 54px; height: 40px; object-fit: cover; border-radius: 8px; }

.badge-status { padding: .4rem .8rem; border-radius: 50px; font-weight: 700; font-size: .78rem; }
.badge-pending { background: #fdf0d3; color: #78350f; }
.badge-confirmed { background: #d8f3e3; color: #14532d; }
.badge-cancelled { background: #fde3dc; color: #9a3412; }
.badge-active { background: #d8f3e3; color: #14532d; }
.badge-inactive { background: #e9eef0; color: #4b5a61; }
.badge-approved { background: #d8f3e3; color: #14532d; }
.badge-unpaid { background: #fde3dc; color: #9a3412; }
.badge-waiting_confirmation { background: #fdf0d3; color: #78350f; }
.badge-paid { background: #d8f3e3; color: #14532d; }
.badge-warn { background: #fdf0d3; color: #78350f; }
.badge-ocean { background: #e2f2f4; color: #0b4f5c; }
.badge-role-admin { background: #0b4f5c; color: #fff; }
.badge-role-editor { background: #e2f2f4; color: #0b4f5c; }

.border-ocean { border-color: rgba(11,79,92,.35) !important; }
.bg-ocean-subtle { background: var(--ocean-100); }
.calendar-day { min-width: 0; }
.calendar-day .border-ocean { border-width: 2px; }

.admin-tabs .nav-link { border-radius: 12px; font-weight: 700; color: var(--muted); }
.admin-tabs .nav-link.active { background: var(--ocean); color: #fff; }

.lang-tabs .nav-link { font-weight: 700; }
.lang-tabs .nav-link.active { background: var(--ocean); color: #fff; }

/* Booking wizard */
.booking-steps { gap: .5rem; border-bottom: 2px solid #eef3f5; padding-bottom: 1rem; }
.booking-steps .nav-link { border-radius: 12px; font-weight: 800; color: var(--muted); font-size: .82rem; text-align: center; border: 2px solid #e9eef0; background: #f7fafb; }
.booking-steps .nav-link.active { background: var(--ocean); color: #fff; border-color: var(--ocean); }
.booking-step { min-height: 120px; }

/* Dashboard analytics */
.bar-chart { background: linear-gradient(180deg, #127486, #2aa3b8); border-radius: 8px 8px 0 0; min-width: 28px; }
.bar-dot { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 4px; }
.bar-dot-total { background: #2aa3b8; }
.bar-dot-paid { background: #3a9d8c; }

/* Trip itinerary */
.itinerary-wrap { position: relative; padding-left: 1.5rem; border-left: 3px dashed #cde3e6; }
.itinerary-item { position: relative; display: flex; gap: 1.25rem; margin-bottom: 1.75rem; }
.itinerary-item::before { content: ''; position: absolute; left: -1.97rem; top: .35rem; width: 14px; height: 14px; border-radius: 50%; background: var(--ocean); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--ocean); }
.itinerary-day { flex: 0 0 auto; background: var(--ocean); color: #fff; font-weight: 800; font-size: .78rem; padding: .45rem .8rem; border-radius: 50px; height: fit-content; white-space: nowrap; }
.itinerary-body h4 { font-weight: 800; margin-bottom: .35rem; }
.itinerary-body p { color: var(--muted); margin: 0; }

/* Trip reviews */
.review-card { background: #fff; border: 1px solid #eef3f5; border-radius: 16px; padding: 1.25rem; height: 100%; box-shadow: var(--shadow-sm); }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--ocean); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.review-card p { font-size: .92rem; line-height: 1.6; }
.lang-badge { font-size: .72rem; font-weight: 800; letter-spacing: .06em; }

/* ---------- Customer area (/user) ---------- */
.customer-page main .container { max-width: 1080px; }
.customer-page .navbar-brand img { height: 40px; width: 40px; object-fit: cover; border-radius: 12px; }
.customer-page .navbar-brand span { line-height: 1.15; }
.customer-page .stat-card { min-height: 104px; align-items: center; }
.customer-page .stat-card b { font-size: 1.45rem; }
.customer-page .admin-card { box-shadow: var(--shadow-sm); }
.customer-page .admin-card .card-header { font-size: 1.02rem; }
.customer-page .btn-sm { padding: .45rem 1rem; }
.customer-page .auth-logo, .auth-page .auth-logo { width: 72px; height: 72px; object-fit: cover; border-radius: 18px; }

.sidebar-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1039; display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .sidebar-overlay.show { display: block; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero slider: adapt height on tablets */
  .hero-slider .hero-slider-track { height: 68vh; min-height: 500px; }
  .hero-slider .hero-slide .hero-content { padding: 3.5rem 0 3rem; }
  .hero-stats { gap: 1.6rem; margin-top: 2rem; }
}
@media (max-width: 575.98px) {
  .hero-search { border-radius: 20px; flex-direction: column; gap: .5rem; }
  .hero-search .btn { width: 100%; }
  .cta-banner { padding: 2rem 1.4rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .admin-content { padding: 1rem; }

  /* Hero slider: compact on phones — slides stack, only active visible */
  .hero-slider .hero-slider-track { height: auto; min-height: 0; }
  .hero-slider .hero-slide {
    position: relative; inset: auto; height: auto; min-height: 0;
    padding: 1rem 0 3.5rem;
    opacity: 1; visibility: visible; pointer-events: auto; display: none;
  }
  .hero-slider .hero-slide.active { display: flex; animation: heroFadeIn .7s ease; }
  .hero-slider .hero-slide .hero-content { padding: 5.5rem 0 2rem; }
  .hero h1 { font-size: clamp(1.6rem, 8vw, 2.3rem); margin: .8rem 0 .6rem; }
  .hero p.lead { font-size: .95rem; line-height: 1.55; }
  .hero-stats { gap: .6rem 1rem; margin-top: 1.8rem; }
  .hero-stats .stat { flex: 1 1 42%; }
  .hero-stats .stat b { font-size: 1.4rem; }
  .hero-slider-arrow { display: none; }
  .hero-slider-dots { bottom: 10px; }
  @keyframes heroFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
}
