:root {
  --gold: #c89d18;
  --navy: #0f1f45;
  --text: #0f172a;
  --muted: #64748b;
  --border: #dbe2ea;
  --bg: #f8fafc;
  --footer: #000a36;
  --green: #78c67a;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); background: linear-gradient(to bottom, #fff, var(--bg)); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.95); border-bottom: 1px solid var(--border); backdrop-filter: blur(10px); }
.nav-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { font-size: 12px; font-weight: 700; letter-spacing: .45em; text-transform: uppercase; color: var(--gold); }
.brand-sub { margin-top: 6px; color: var(--muted); font-size: 14px; }
.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; }
.nav-links > a, .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 6px;
  background: none;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}
.nav-links > a:hover, .nav-trigger:hover { color: var(--navy); }
.nav-links > a.book-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  min-width: 96px;
  height: 48px !important;
  padding: 0 24px !important;
  margin-left: 6px;
  border-radius: 999px;
  background: #16213f !important;
  color: #ffffff !important;
  white-space: nowrap;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  box-shadow: 0 10px 24px rgba(15,23,42,.14);
}
.nav-links > a.book-btn:hover {
  background: #0f1f45 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}
.dropdown { position: relative; }
.nav-trigger .caret { font-size: 12px; color: var(--gold); transition: transform .2s ease; }
.dropdown:hover .caret, .dropdown:focus-within .caret { transform: rotate(180deg); }
.dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  width: 330px;
  background: linear-gradient(180deg, #4f6174, #44576c);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(15,23,42,.22);
  z-index: 100;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 13px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.dropdown-menu a:hover {
  background: rgba(255,255,255,.12);
  transform: translateX(2px);
}
.hero-section { padding-top: 24px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-block; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; font-weight: 700; color: var(--gold); background: rgba(200,157,24,.1); border: 1px solid rgba(200,157,24,.2); border-radius: 999px; padding: 10px 14px; }
.eyebrow.small { font-size: 11px; }
h1 { font-size: 58px; line-height: 1.05; margin: 22px 0 0; color: #10234e; }
.lead { max-width: 720px; font-size: 18px; line-height: 1.8; color: var(--muted); margin-top: 24px; }
.hero-actions { display: flex; gap: 16px; margin-top: 30px; }
.gold-btn, .ghost-btn { padding: 18px 28px; border-radius: 999px; font-weight: 700; display: inline-flex; align-items: center; gap: 10px; }
.gold-btn { background: #cfa00d; color: #000; }
.ghost-btn { border: 1px solid var(--border); background: #fff; }
.hero-card, .info-card, .service-card, .detail-card, .booking-card { border: 1px solid var(--border); background: #fff; border-radius: 32px; box-shadow: 0 10px 34px rgba(15,23,42,.05); }
.hero-card { padding: 20px; }
.hero-card img { height: 300px; width: 100%; object-fit: cover; border-radius: 24px; }
.hero-card-copy { padding: 22px 8px 8px; }
.hero-card-copy h3 { margin: 12px 0 10px; font-size: 30px; }
.hero-card-copy p { margin: 0; color: var(--muted); line-height: 1.7; }
.hero-video-block { display: block; }
.hero-video-player { margin-top: 22px; display: grid; gap: 14px; }
.hero-video-frame { position: relative; width: 100%; padding-top: 56.25%; border-radius: 28px; overflow: hidden; border: 1px solid var(--border); background: #0b1228; box-shadow: 0 16px 40px rgba(15,23,42,.12); }
.hero-video-frame .youtube-player,
.hero-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-video-playlist { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.hero-video-item { display: grid; gap: 8px; padding: 10px; border: 1px solid var(--border); border-radius: 20px; background: #fff; cursor: pointer; text-align: left; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.hero-video-item:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(15,23,42,.08); }
.hero-video-item.is-active { border-color: rgba(200,157,24,.65); box-shadow: 0 12px 26px rgba(200,157,24,.12); }
.hero-video-item img { width: 100%; height: 88px; object-fit: cover; border-radius: 14px; }
.hero-video-item span { font-size: 13px; font-weight: 700; color: var(--navy); }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; padding: 40px 0 10px; }
.info-card { padding: 28px; }
.info-card h3 { margin: 0 0 14px; font-size: 22px; }
.info-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.section-pad { padding: 80px 0; }
.section-head { margin-bottom: 28px; }
.section-head.center { text-align: center; }
.section-head h2, .section-head h1 { max-width: 860px; font-size: 44px; margin-top: 18px; margin-bottom: 0; }
.section-head p { color: var(--muted); font-size: 18px; line-height: 1.8; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { padding: 28px; }
.service-card h3 { margin: 0 0 12px; font-size: 26px; }
.service-card p { margin: 0 0 18px; color: var(--muted); line-height: 1.7; }
.service-card a { font-weight: 700; color: var(--gold); }
.detail-wrap, .detail-page { padding: 16px 0 28px; }
.detail-card { display: grid; grid-template-columns: 1.02fr .98fr; gap: 32px; padding: 30px; }
.detail-copy h2, .detail-copy h1 { margin: 18px 0 12px; font-size: 40px; color: #10234e; }
.detail-copy p { color: var(--muted); line-height: 1.85; font-size: 17px; }
.subhead { color: var(--gold); font-weight: 700; }
.green { color: var(--green); }
.feature-list { margin: 20px 0 0; padding-left: 20px; color: var(--text); }
.feature-list li { margin: 10px 0; }
.detail-image img { height: 300px; width: 100%; object-fit: cover; border-radius: 24px; border: 1px solid var(--border); }
.detail-image h3 { margin: 18px 0 8px; font-size: 28px; color: var(--green); }
.detail-image p { margin: 0; color: var(--muted); line-height: 1.7; }
.fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.fleet-image { border: 1px solid var(--border); border-radius: 24px; height: 260px; width: 100%; object-fit: cover; }
.booking-wrap { padding: 80px 0; }
.booking-card { padding: 30px; display: grid; grid-template-columns: 1fr .95fr; gap: 32px; background: linear-gradient(180deg, rgba(212,175,55,.08), #fff); }
.booking-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.booking-form input { width: 100%; border: 1px solid var(--border); border-radius: 18px; padding: 15px 16px; background: #f8fafc; font-size: 14px; }
.booking-form input:nth-child(3), .booking-form input:nth-child(4), .booking-form button { grid-column: span 2; }
.booking-form button { border: 0; border-radius: 18px; padding: 16px 18px; background: #16213f; color: #fff; font-weight: 700; cursor: pointer; }
.site-footer { background: var(--footer); color: #fff; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; padding: 54px 0; }
.site-footer h3 { margin: 0 0 20px; font-size: 18px; }
.site-footer p, .site-footer a { display: block; margin: 0 0 10px; color: #fff; line-height: 1.7; }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-grid, .detail-card, .booking-card, .footer-grid, .trust-grid, .card-grid, .fleet-grid, .hero-video-playlist { grid-template-columns: 1fr; }
  h1 { font-size: 42px; }
  .section-head h2, .section-head h1, .detail-copy h2, .detail-copy h1 { font-size: 34px; }
}

.location-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}
.location-card,
.map-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 10px 34px rgba(15,23,42,.05);
}
.location-card {
  padding: 32px;
}
.location-card h2 {
  margin: 0 0 14px;
  font-size: 34px;
  color: #10234e;
}
.location-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}
.location-link-card {
  margin-top: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
  background: #f8fafc;
  border-radius: 22px;
  padding: 18px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.location-link-card:hover {
  border-color: rgba(200,157,24,.45);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15,23,42,.06);
}
.location-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,157,24,.12);
  font-size: 20px;
  flex: 0 0 auto;
}
.location-link-card strong,
.location-link-card span {
  display: block;
}
.location-link-card strong {
  font-size: 18px;
  margin-bottom: 6px;
}
.location-link-card span {
  color: var(--muted);
}
.location-contact-list {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}
.location-contact-item {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
}
.location-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.location-contact-item a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.map-card {
  padding: 18px;
}
.map-frame-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 460px;
  background: #eef2f7;
}
.map-frame {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}
.map-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.map-card-copy {
  padding: 18px 8px 6px;
}
.map-card-copy h3 {
  margin: 14px 0 10px;
  font-size: 30px;
  color: #10234e;
}
.map-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
@media (max-width: 960px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-card h2,
  .map-card-copy h3 {
    font-size: 28px;
  }
  .map-frame-wrap,
  .map-frame {
    min-height: 340px;
    height: 340px;
  }
}

.section-tight-top {
  padding-top: 24px;
}
.about-hero {
  padding-top: 36px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 38px;
  align-items: center;
}
.about-showcase-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 14px 40px rgba(15,23,42,.06);
  overflow: hidden;
}
.about-showcase-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.about-showcase-copy {
  padding: 24px 26px 28px;
}
.about-showcase-copy h3 {
  margin: 14px 0 10px;
  font-size: 32px;
  color: #10234e;
}
.about-showcase-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.about-stat-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 24px;
  padding: 22px 20px;
  box-shadow: 0 10px 28px rgba(15,23,42,.04);
}
.about-stat-card strong {
  display: block;
  font-size: 28px;
  color: #10234e;
  margin-bottom: 8px;
}
.about-stat-card span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}
.about-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.about-info-panel {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(15,23,42,.04);
}
.about-info-panel h3 {
  margin: 0 0 14px;
  font-size: 28px;
  color: #10234e;
}
.about-info-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}
.clean-list {
  padding-left: 20px;
  margin-bottom: 0;
}
.about-value-grid {
  grid-template-columns: repeat(3, 1fr);
}
.about-value-card {
  min-height: 100%;
}
.about-band-card {
  border: 1px solid rgba(200,157,24,.22);
  background: linear-gradient(180deg, rgba(212,175,55,.08), #fff);
  border-radius: 34px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  box-shadow: 0 16px 38px rgba(15,23,42,.06);
}
.about-band-card h2 {
  margin: 16px 0 12px;
  font-size: 40px;
  color: #10234e;
}
.about-band-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 17px;
}
.about-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}
@media (max-width: 960px) {
  .about-hero-grid,
  .about-content-grid,
  .about-band-card,
  .about-value-grid,
  .about-stat-grid {
    grid-template-columns: 1fr;
  }
  .about-showcase-copy h3,
  .about-info-panel h3,
  .about-band-card h2 {
    font-size: 28px;
  }
}
.booking-form textarea, .admin-form textarea, .admin-form input, .admin-form select {
  width: 100%; border: 1px solid var(--border); border-radius: 18px; padding: 15px 16px; background: #f8fafc; font-size: 14px;
}
.booking-form textarea { grid-column: span 2; min-height: 120px; }
.admin-body { background: #f4f7fb; }
.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: #0f1f45; color: #fff; padding: 24px; display: grid; align-content: start; gap: 14px; }
.admin-sidebar a { color: #fff; padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.06); }
.admin-sidebar form { margin-top: 10px; }
.admin-sidebar .gold-btn { width: 100%; justify-content: center; border: 0; cursor: pointer; }
.admin-main { padding: 30px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 24px; }
.admin-form { display: grid; gap: 14px; max-width: 900px; }
.admin-form button, .admin-table button { border: 0; border-radius: 14px; padding: 13px 16px; background: #16213f; color: #fff; font-weight: 700; cursor: pointer; }
.admin-alert { background: #eaffea; border: 1px solid #9dd89d; color: #1b5e20; padding: 14px 16px; border-radius: 16px; margin-bottom: 16px; }
.admin-alert.error, .form-error { background: #fff1f1; border: 1px solid #efb2b2; color: #9f1c1c; padding: 14px 16px; border-radius: 16px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 20px; overflow: hidden; }
.admin-table th, .admin-table td { border-bottom: 1px solid var(--border); padding: 14px; text-align: left; vertical-align: top; }
.admin-login-body { min-height: 100vh; display: grid; place-items: center; background: linear-gradient(to bottom, #fff, #eef3fb); }
.admin-login-card { width: min(500px, calc(100% - 32px)); background: #fff; border: 1px solid var(--border); border-radius: 28px; padding: 30px; box-shadow: 0 10px 34px rgba(15,23,42,.07); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
@media (max-width: 960px) {
  .admin-shell, .admin-stats, .gallery-grid { grid-template-columns: 1fr; }
}


.hero-slider {
    position: relative;
    min-height: 320px;
    border-radius: 30px;
    overflow: hidden;
    background: #e5e7eb;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slider img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.65);
    color: #fff;
    cursor: pointer;
    font-size: 22px;
}

.hero-prev { left: 14px; }
.hero-next { right: 14px; }

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: rgba(255,255,255,0.55);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #d4a10d;
    width: 26px;
}

.price-stack {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 16px;
}
.price-stack strong {
  font-size: 24px;
  color: #10234e;
}
.price-stack .old-price {
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 700;
}
.price-stack .discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(120,198,122,.18);
  color: #2e7d32;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-brand-block p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  font-size: 14px;
}
.admin-nav {
  display: grid;
  gap: 12px;
}
.admin-sidebar a.is-active {
  background: rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.admin-page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.admin-page-head h1 {
  margin: 8px 0 10px;
  font-size: 54px;
}
.admin-page-head p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.8;
}
.admin-kicker {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
}
.admin-primary-link,
.admin-secondary-link,
.admin-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 12px 16px;
  font-weight: 700;
}
.admin-primary-link {
  background: #16213f;
  color: #fff;
  box-shadow: 0 12px 30px rgba(15,31,69,.18);
}
.admin-secondary-link {
  border: 1px solid var(--border);
  background: #fff;
}
.admin-action-link {
  color: #10234e;
  background: rgba(15,31,69,.06);
}
.admin-table-card,
.admin-form-card,
.admin-image-preview-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 12px 34px rgba(15,23,42,.05);
}
.admin-table-card {
  padding: 8px;
}
.admin-form-card {
  padding: 24px;
}
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.admin-form-grid label {
  display: grid;
  gap: 8px;
}
.admin-form-grid label span {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}
.admin-form-full {
  grid-column: 1 / -1;
}
.admin-section-title {
  margin: 24px 0 16px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.admin-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}
.admin-thumb {
  width: 90px;
  height: 58px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.admin-table-sub {
  color: var(--muted);
  font-size: 13px;
}
.admin-image-preview-card {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 20px;
  align-items: center;
}
.admin-image-preview-card h3 {
  margin: 8px 0 10px;
  font-size: 28px;
  color: #10234e;
}
.admin-image-preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.admin-image-preview {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
}
@media (max-width: 960px) {
  .admin-page-head,
  .admin-image-preview-card,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }
  .admin-form-actions {
    justify-content: stretch;
    flex-direction: column;
  }
}

.price-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 20px 0 8px;
}
.price-stack strong {
  font-size: 24px;
  color: #10234e;
}
.old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 700;
}
.discount-badge, .status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.discount-badge { background: rgba(200,157,24,.16); color: #8a6700; }
.status-pill.success { background: rgba(48, 171, 85, .12); color: #16763b; }
.status-pill.muted { background: #edf2f7; color: #475569; }
.detail-actions { margin-bottom: 14px; }
.booking-card-wide { grid-template-columns: .9fr 1.1fr; }
.booking-form-rich { align-items: start; }
.booking-field { display: grid; gap: 8px; }
.booking-field span { font-size: 13px; font-weight: 700; color: #10234e; }
.booking-field-full { grid-column: span 2; }
.booking-form-rich select,
.booking-form-rich textarea,
.booking-form-rich input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 15px 16px;
  background: #f8fafc;
  font-size: 14px;
}
.booking-form-rich textarea { min-height: 120px; resize: vertical; }
.booking-price-preview {
  border: 1px solid rgba(200,157,24,.25);
  background: rgba(200,157,24,.08);
  border-radius: 20px;
  padding: 16px 18px;
  display: grid;
  gap: 6px;
}
.booking-price-preview strong { font-size: 20px; color: #10234e; }
.booking-price-preview span { color: var(--muted); }
.booking-info-panel {
  margin-top: 24px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  border-radius: 24px;
  padding: 24px;
}
.booking-info-panel h3 { margin: 0 0 12px; font-size: 22px; }
.feature-list.compact { margin-top: 0; }
.admin-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.admin-summary-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(15,23,42,.05);
}
.admin-summary-card h3 { margin: 10px 0 12px; font-size: 28px; color: #10234e; }
.admin-summary-card p { margin: 6px 0 0; color: var(--muted); }
.admin-page-head.slim { margin-bottom: 12px; }
.booking-admin-form { display: grid; gap: 10px; min-width: 220px; }
.booking-admin-form textarea,
.booking-admin-form input,
.booking-admin-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
.admin-checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 12px;
  grid-column: span 2;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #f8fafc;
}
.admin-checkbox-row input { width: 18px; height: 18px; }
.admin-table-bookings td { min-width: 150px; }
@media (max-width: 960px) {
  .booking-card-wide,
  .admin-summary-grid { grid-template-columns: 1fr; }
  .booking-field-full,
  .booking-form-rich button { grid-column: span 2; }
}
.site-alert {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(200,157,24,.25);
  background: rgba(200,157,24,.08);
  color: #10234e;
  font-weight: 600;
}
.admin-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.admin-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 720px);
}
.admin-search-form input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
.admin-search-form button,
.admin-clear-link {
  border: 0;
  border-radius: 14px;
  padding: 12px 16px;
  background: #10234e;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.admin-clear-link {
  background: #eef2ff;
  color: #10234e;
}
.booking-financial-fields {
  display: grid;
  gap: 10px;
}
.booking-due-box {
  display: none;
  gap: 4px;
  border: 1px solid rgba(200,157,24,.28);
  border-radius: 16px;
  background: rgba(200,157,24,.08);
  padding: 12px 14px;
}
.booking-due-box span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #8a6b0a;
}
.booking-due-box strong {
  font-size: 22px;
  color: #10234e;
}
@media (max-width: 960px) {
  .admin-toolbar,
  .admin-search-form { flex-direction: column; align-items: stretch; }
}


.hero-video-block-only {
  width: 100%;
}
.hero-video-block-only .hero-video-player {
  margin-top: 0;
}
.hero-video-block-only .hero-video-frame {
  padding-top: 62%;
}
.hero-video-block-only .hero-video-playlist {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 960px) {
  .hero-video-block-only .hero-video-frame {
    padding-top: 56.25%;
  }
}


.hero-grid-balanced { align-items: start; }
.hero-copy-column { display: grid; align-content: start; }
.hero-title-compact { font-size: 46px; line-height: 1.08; margin-top: 18px; }
.hero-lead-compact { font-size: 15px; line-height: 1.7; max-width: 640px; margin-top: 18px; }
.hero-actions-compact { margin-top: 22px; }
.hero-video-inline { margin-top: 24px; }
.hero-video-frame-compact { padding-top: 52%; border-radius: 24px; }
.hero-video-picker-label { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.hero-video-playlist-small { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.hero-video-item-small { gap: 6px; padding: 8px; border-radius: 16px; }
.hero-video-item-small img { height: 58px; border-radius: 10px; }
.hero-video-item-small span { font-size: 11px; }
.hero-card-tall { align-self: start; }
.hero-card-tall .hero-slider img { height: 255px; }
.hero-side-stack { display: grid; gap: 22px; align-content: start; }
.hero-slogan-card {
  padding: 18px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(209,163,26,.22), transparent 34%),
    linear-gradient(135deg, #102554 0%, #162f67 58%, #1b3776 100%);
}
.hero-slogan-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.14);
  pointer-events: none;
}
.hero-slogan-card::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -52px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 68%);
}
.hero-slogan-inner {
  position: relative;
  z-index: 1;
  min-height: 214px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  backdrop-filter: blur(2px);
}
.hero-slogan-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 700;
  color: #e7bd47;
}
.hero-slogan-kicker::before,
.hero-slogan-kicker::after {
  content: '';
  width: 26px;
  height: 1px;
  background: rgba(231,189,71,.6);
}
.hero-slogan-inner h3 {
  margin: 18px 0 10px;
  font-size: 44px;
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ffffff;
  text-shadow: 0 8px 22px rgba(0,0,0,.22);
}
.hero-slogan-inner p {
  margin: 0;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(255,255,255,.96);
}
.hero-slogan-line {
  width: 120px;
  height: 4px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(209,163,26,0), rgba(231,189,71,1), rgba(209,163,26,0));
}

@media (max-width: 960px) {
  .hero-title-compact { font-size: 36px; }
  .hero-video-playlist-small { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-card-tall .hero-slider img { height: 240px; }
  .hero-slogan-card { min-height: 220px; }
  .hero-slogan-inner { min-height: 184px; }
  .hero-slogan-inner h3 { font-size: 34px; }
  .hero-slogan-inner p { font-size: 20px; }
}


.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
}
.footer-logo {
  width: 170px;
  max-width: 100%;
  margin-bottom: 16px;
}
.admin-brand-logo {
  width: 180px;
  max-width: 100%;
  margin: 0 auto 18px;
}
@media (max-width: 920px) {
  .brand-wrap {
    gap: 10px;
  }
  .brand-logo {
    width: 66px;
    height: 66px;
  }
}
@media (max-width: 760px) {
  .nav-row {
    align-items: flex-start;
    gap: 14px;
  }
  .brand-logo {
    width: 56px;
    height: 56px;
  }
  .footer-logo {
    width: 140px;
  }
}


.hero-luxury-home {
  padding: 42px 0 10px;
}
.hero-grid-luxury {
  align-items: center;
  gap: 48px;
}
.luxury-hero-copy {
  display: grid;
  align-content: center;
}
.luxury-eyebrow {
  width: fit-content;
  box-shadow: 0 10px 24px rgba(200,157,24,.12);
}
.hero-title-shell {
  margin-top: 18px;
  padding: 26px 28px;
  border: 1px solid rgba(15,31,69,.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  box-shadow: 0 24px 60px rgba(15,23,42,.08);
}
.hero-title-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title-luxury {
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -.03em;
  color: #0f2552;
}
.hero-title-luxury span,
.hero-title-luxury strong {
  display: block;
}
.hero-title-luxury strong {
  margin-top: 10px;
  color: #102e6b;
  text-transform: uppercase;
  letter-spacing: .04em;
  position: relative;
}
.hero-title-luxury strong::after {
  content: '';
  display: block;
  width: 150px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c89d18, rgba(200,157,24,.18));
}
.hero-lead-luxury {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.85;
  color: #56657f;
}
.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero-feature-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(15,31,69,.05);
  border: 1px solid rgba(15,31,69,.08);
  color: #10234e;
  font-size: 14px;
  font-weight: 700;
}
.hero-actions-luxury {
  margin-top: 28px;
}
.hero-visual-luxury {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(15,31,69,.08);
  box-shadow: 0 24px 60px rgba(15,23,42,.14);
}
.hero-visual-luxury img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.hero-visual-luxury::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,20,48,.02), rgba(9,20,48,.35));
}
.hero-visual-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(9,20,48,.74);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  color: #fff;
}
.hero-visual-badge span {
  display: block;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(231,189,71,.95);
  font-weight: 700;
}
.hero-visual-badge strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.4;
}
@media (max-width: 960px) {
  .hero-luxury-home {
    padding-top: 24px;
  }
  .hero-title-shell {
    padding: 22px 20px;
    border-radius: 24px;
  }
  .hero-title-luxury {
    font-size: 40px;
  }
  .hero-lead-luxury {
    font-size: 16px;
    line-height: 1.75;
  }
  .hero-visual-luxury img {
    min-height: 320px;
  }
  .hero-visual-badge strong {
    font-size: 18px;
  }
}

/* Bookings page refresh */
.bookings-head {
  align-items: center;
}
.bookings-head-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.admin-summary-grid-bookings {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.admin-summary-card.is-warning {
  border-color: rgba(200,157,24,.35);
  background: linear-gradient(180deg, rgba(200,157,24,.1), #fff);
}
.summary-amount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(219,226,234,.9);
}
.summary-amount-row span {
  color: var(--muted);
  font-size: 13px;
}
.summary-amount-row strong {
  color: #10234e;
}
.summary-amount-row.due strong {
  color: #8a6700;
}
.bookings-card-shell {
  padding: 18px;
}
.bookings-toolbar {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(219,226,234,.9);
}
.bookings-filter-form {
  width: 100%;
  max-width: none;
  flex-wrap: wrap;
}
.bookings-filter-form select {
  min-width: 170px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}
.bookings-table-wrap {
  overflow-x: auto;
}
.bookings-table-modern {
  border-collapse: separate;
  border-spacing: 0;
}
.bookings-table-modern thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #475569;
  background: #f8fafc;
}
.bookings-table-modern tbody tr {
  transition: background .2s ease;
}
.bookings-table-modern tbody tr:hover {
  background: #fbfdff;
}
.bookings-table-modern td,
.bookings-table-modern th {
  padding: 18px 16px;
}
.booking-client-cell,
.booking-trip-cell,
.booking-schedule-cell,
.payment-stack,
.status-stack,
.booking-actions-cell {
  display: grid;
  gap: 6px;
}
.booking-client-cell strong,
.booking-trip-cell strong,
.booking-schedule-cell strong {
  font-size: 15px;
  color: #10234e;
}
.payment-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.payment-line span {
  color: var(--muted);
  font-size: 13px;
}
.payment-line strong {
  font-size: 14px;
}
.payment-line.small strong {
  color: #334155;
}
.status-pill.warning {
  background: rgba(200,157,24,.16);
  color: #8a6700;
}
.status-pill.info {
  background: rgba(59,130,246,.12);
  color: #1d4ed8;
}
.status-pill.danger {
  background: rgba(239,68,68,.12);
  color: #b91c1c;
}
.booking-actions-cell {
  min-width: 148px;
}
.booking-edit-trigger {
  border: 0;
  cursor: pointer;
}
.booking-modal {
  width: min(820px, calc(100% - 32px));
  max-width: 820px;
  border: 0;
  padding: 0;
  background: transparent;
}
.booking-modal::backdrop {
  background: rgba(15,23,42,.54);
  backdrop-filter: blur(3px);
}
.booking-modal-panel {
  position: relative;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 30px 90px rgba(15,23,42,.26);
  padding: 26px;
}
.booking-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.booking-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-right: 52px;
}
.booking-modal-header h2 {
  margin: 8px 0 10px;
  font-size: 34px;
  color: #10234e;
}
.booking-modal-header p {
  margin: 0;
  color: var(--muted);
}
.booking-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.booking-modal-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #fbfcff;
}
.booking-modal-card strong {
  color: #10234e;
}
.booking-modal-card span {
  color: var(--muted);
  font-size: 14px;
}
.booking-modal-form {
  margin-top: 22px;
}
.booking-modal-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.booking-modal-fields label {
  display: grid;
  gap: 8px;
}
.booking-modal-fields label span {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}
.booking-modal-fields input,
.booking-modal-fields select,
.booking-modal-fields textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px 14px;
  background: #fff;
  font: inherit;
}
.booking-modal-notes {
  grid-column: 1 / -1;
}
.booking-modal-notes textarea {
  min-height: 120px;
  resize: vertical;
}
.booking-due-box-static {
  display: grid;
  background: rgba(200,157,24,.08);
}
.booking-due-box.is-hidden {
  display: none;
}
.booking-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}
.booking-modal-actions button {
  border: 0;
  border-radius: 16px;
  padding: 13px 18px;
  background: #10234e;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .admin-summary-grid-bookings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .bookings-head,
  .booking-modal-header,
  .booking-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-summary-grid-bookings,
  .booking-modal-grid,
  .booking-modal-fields {
    grid-template-columns: 1fr;
  }
  .booking-modal {
    width: calc(100% - 16px);
  }
  .booking-modal-panel {
    padding: 18px;
  }
  .bookings-filter-form select,
  .bookings-filter-form input,
  .bookings-filter-form button,
  .bookings-filter-form .admin-clear-link {
    width: 100%;
  }
}

.track-booking-wrap {
  padding-top: 56px;
}
.track-booking-card {
  align-items: start;
}
.track-booking-form {
  align-content: start;
}
.track-alert {
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 600;
  border: 1px solid var(--border);
}
.track-alert-error {
  background: rgba(239,68,68,.08);
  border-color: rgba(239,68,68,.18);
  color: #b91c1c;
}
.track-alert-success {
  background: rgba(48,171,85,.08);
  border-color: rgba(48,171,85,.18);
  color: #16763b;
}
.track-results-wrap {
  display: grid;
  gap: 24px;
  padding-bottom: 70px;
}
.track-current-card,
.track-history-card,
.track-info-card {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
}
.track-current-card,
.track-history-card {
  padding: 28px;
}
.track-current-head,
.track-history-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.track-current-head h2,
.track-history-head h2 {
  margin: 6px 0 6px;
  color: #10234e;
}
.track-current-head p {
  margin: 0;
  color: var(--muted);
}
.track-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.track-info-card {
  padding: 22px;
  display: grid;
  gap: 8px;
}
.track-info-card strong {
  color: #10234e;
}
.track-info-card span {
  color: var(--muted);
}
.track-actions-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.track-table-wrap {
  margin-top: 4px;
}
.track-history-table td strong {
  color: #10234e;
}
.current-history-row {
  background: rgba(200,157,24,.06);
}
@media (max-width: 960px) {
  .track-grid {
    grid-template-columns: 1fr;
  }
  .track-current-head,
  .track-history-head {
    flex-direction: column;
  }
}

.site-alert-warning{background:#fff4d6;border-color:#f2c94c;color:#6b5200;}
.booking-hint{display:block;margin-top:8px;color:#6b7280;font-size:12px;line-height:1.4;}


.whatsapp-support-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-support-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
    background: #1fbd5a;
}

.whatsapp-support-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-support-icon svg {
    width: 100%;
    height: 100%;
}

.whatsapp-support-text {
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .whatsapp-support-float {
        right: 16px;
        bottom: 16px;
        padding: 12px 14px;
    }

    .whatsapp-support-text {
        display: none;
    }
}


.support-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
.support-widget-card {
  width: min(360px, calc(100vw - 104px));
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(15,31,69,.10);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(15,23,42,.18);
}
.support-widget-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.support-agent-avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f1f45, #1f8f5f);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(15,31,69,.18);
}
.support-widget-meta {
  display: grid;
  gap: 3px;
}
.support-widget-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.support-widget-meta strong {
  font-size: 18px;
  color: #10234e;
}
.support-widget-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4b5563;
}
.support-widget-status i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22c55e;
  display: inline-block;
  box-shadow: 0 0 0 6px rgba(34,197,94,.12);
}
.support-widget-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.support-widget-cta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1f8f5f, #22c55e);
  color: #fff;
  box-shadow: 0 16px 34px rgba(34,197,94,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.support-widget-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(34,197,94,.28);
}
.support-widget-cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255,255,255,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.support-widget-cta-icon svg,
.support-widget-fab svg {
  width: 24px;
  height: 24px;
}
.support-widget-cta strong,
.support-widget-cta small {
  display: block;
}
.support-widget-cta strong {
  font-size: 16px;
}
.support-widget-cta small {
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255,255,255,.86);
}
.support-widget-fab {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1f8f5f, #22c55e);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(34,197,94,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.support-widget-fab:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 24px 48px rgba(34,197,94,.32);
}
@media (max-width: 768px) {
  .support-widget {
    right: 14px;
    left: 14px;
    bottom: 14px;
    gap: 10px;
  }
  .support-widget-card {
    width: auto;
    flex: 1 1 auto;
    padding: 14px;
    border-radius: 20px;
  }
  .support-agent-avatar {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 18px;
  }
  .support-widget-copy {
    font-size: 13px;
    line-height: 1.6;
  }
  .support-widget-cta {
    padding: 12px 14px;
    border-radius: 16px;
  }
  .support-widget-cta-icon,
  .support-widget-fab {
    width: 52px;
    height: 52px;
  }
}

.pe-support-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
}

.pe-support-launcher {
  position: relative;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1f8f5f 0%, #22c55e 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(34, 197, 94, 0.28);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.pe-support-launcher:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 44px rgba(34, 197, 94, 0.34);
}

.pe-support-launcher-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pe-support-launcher-icon svg,
.pe-support-primary-icon svg {
  width: 24px;
  height: 24px;
}

.pe-support-launcher-ping {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.28);
}

.pe-support-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(320px, calc(100vw - 28px));
  background: #fff;
  border: 1px solid rgba(15, 31, 69, 0.10);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  transform: translateY(10px) scale(.96);
  transform-origin: bottom right;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform .22s ease, opacity .18s ease, visibility .18s ease;
}

.pe-support-widget:not(.is-collapsed) .pe-support-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.pe-support-widget:not(.is-collapsed) .pe-support-launcher {
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
}

.pe-support-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 0;
  background: rgba(13, 34, 76, 0.06);
  color: #0d224c;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.pe-support-panel-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pe-support-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d224c 0%, #d4a30f 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pe-support-meta {
  display: grid;
  gap: 4px;
}

.pe-support-meta strong {
  font-size: 20px;
  color: #10234e;
}

.pe-support-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #526079;
  font-size: 13px;
}

.pe-support-status i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
}

.pe-support-text {
  margin: 14px 0 0;
  color: #526079;
  line-height: 1.65;
  font-size: 14px;
}

.pe-support-actions {
  margin-top: 16px;
}

.pe-support-primary {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  padding: 13px 14px;
  background: linear-gradient(135deg, #1f8f5f 0%, #22c55e 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.22);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pe-support-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(34, 197, 94, 0.28);
}

.pe-support-primary-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.pe-support-primary strong,
.pe-support-primary small {
  display: block;
}

.pe-support-primary strong {
  font-size: 15px;
}

.pe-support-primary small {
  color: rgba(255,255,255,.86);
  font-size: 12px;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .pe-support-widget {
    right: 14px;
    bottom: 14px;
  }

  .pe-support-panel {
    right: 0;
    bottom: 74px;
    width: min(300px, calc(100vw - 28px));
    border-radius: 18px;
    padding: 16px;
  }

  .pe-support-launcher {
    width: 58px;
    height: 58px;
  }

  .pe-support-launcher-copy strong {
    font-size: 14px;
  }

  .pe-support-launcher-icon,
  .pe-support-primary-icon,
  .pe-support-avatar {
    width: 46px;
    height: 46px;
  }

  .pe-support-avatar {
    border-radius: 14px;
    font-size: 14px;
  }

  .pe-support-meta strong {
    font-size: 17px;
  }

  .pe-support-text {
    font-size: 13px;
  }
}
