:root {
  --navy: #10233f;
  --navy-2: #071526;
  --turquoise: #08a6a7;
  --coral: #ff6b35;
  --gold: #f8c14a;
  --paper: #ffffff;
  --mist: #f4f8fb;
  --line: #d8e2ea;
  --text: #172436;
  --muted: #64758a;
  --danger: #b42318;
  --success: #18794e;
  --shadow: 0 18px 48px rgba(12, 30, 54, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--mist);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  color: rgba(255, 255, 255, 0.86);
  background: var(--navy-2);
  font-size: 0.88rem;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.language-switcher {
  display: flex;
  align-items: center;
  margin-left: 0;
}

.language-select {
  height: 30px;
  width: 48px;
  min-width: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  padding: 0 6px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  outline: none;
  cursor: pointer;
  text-align: center;
  text-align-last: center;
}

.language-select option {
  color: var(--text);
  background: #fff;
}

.topbar-social {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.topbar-social:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.38);
}

.topbar-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.topbar-social-facebook:hover {
  background: #1877f2;
}

.topbar-social-instagram:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 226, 234, 0.9);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 8px 20px rgba(16, 35, 63, 0.18);
  background: var(--navy);
}

.brand-fallback {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--turquoise), var(--coral));
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(16, 35, 63, 0.18);
}

.brand-name {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.brand-line {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 3px;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #26384c;
  font-size: 0.95rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--turquoise);
}

.nav-cta,
.small-btn,
.social-card a,
.admin-button,
.quick-form button,
.reservation-form button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 16px;
  color: #fff;
  background: var(--coral);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.hero {
  min-height: calc(100vh - 116px);
  color: #fff;
  display: grid;
  align-items: end;
  background-image:
    linear-gradient(90deg, rgba(7, 21, 38, 0.9) 0%, rgba(16, 35, 63, 0.66) 48%, rgba(16, 35, 63, 0.2) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-inner {
  padding: 86px 0 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffe2a1;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  max-width: 810px;
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 1.02;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.hero p {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
}

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

.btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
}

.quick-form {
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr 0.7fr 1fr auto;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.quick-form label,
.reservation-form label,
.admin-field {
  display: grid;
  gap: 7px;
  color: #34485d;
  font-size: 0.9rem;
  font-weight: 900;
}

.quick-form label {
  color: #435569;
  font-size: 0.78rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #ccd8e3;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--text);
  background: #fff;
  font: inherit;
}

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

.quick-form button {
  align-self: end;
}

.notice {
  padding: 14px 16px;
  border-radius: 8px;
  margin: 18px 0;
  font-weight: 800;
}

.notice-success {
  color: var(--success);
  background: #eaf7f0;
  border: 1px solid #bfe7d1;
}

.notice-error {
  color: var(--danger);
  background: #fff0ed;
  border: 1px solid #ffd0c7;
}

.trust-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.trust-item {
  min-height: 124px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.trust-item span {
  color: var(--muted);
  font-weight: 700;
}

section {
  padding: 76px 0;
  scroll-margin-top: 120px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--turquoise);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.section-head h2,
.reservation-copy h2 {
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-head p {
  max-width: 470px;
  color: var(--muted);
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.category-card img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-content {
  position: absolute;
  inset: auto 0 0;
  padding: 20px;
  background: linear-gradient(rgba(7, 21, 38, 0), rgba(7, 21, 38, 0.88));
}

.category-content h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.category-content span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  font-size: 0.92rem;
}

.offers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.offer-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.offer-media {
  position: relative;
}

.offer-media img {
  height: 230px;
  object-fit: cover;
}

.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: #071526;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offer-body {
  padding: 22px;
}

.offer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--turquoise);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.offer-body h3 {
  color: var(--navy);
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.offer-body p {
  color: var(--muted);
  margin-bottom: 18px;
}

.offer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.offer-footer strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.small-btn {
  min-height: 38px;
  background: var(--navy);
}

.process-band {
  color: #fff;
  background:
    linear-gradient(rgba(16, 35, 63, 0.96), rgba(16, 35, 63, 0.96)),
    url("https://images.unsplash.com/photo-1526772662000-3f88f10405ff?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.process-band .section-head h2,
.process-band .section-head p {
  color: #fff;
}

.process-band .section-head p {
  color: rgba(255, 255, 255, 0.76);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step {
  min-height: 210px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.step p {
  color: rgba(255, 255, 255, 0.76);
}

.social-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(12, 30, 54, 0.08);
}

.social-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.12rem;
  margin-bottom: 5px;
}

.social-card .social-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.social-card .social-card-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 10px 22px rgba(16, 35, 63, 0.14);
}

.social-card .social-card-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-card-icon-facebook {
  background: #1877f2;
}

.social-card-icon-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-card-icon-youtube {
  background: #ff0033;
}

.social-card-icon-tiktok {
  background: #111827;
}

.social-card span {
  color: var(--muted);
  font-weight: 700;
}

.social-card a {
  background: var(--turquoise);
}

.reservation-section {
  padding-bottom: 82px;
}

.reservation-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.reservation-copy {
  padding: 36px;
  color: #fff;
  background:
    linear-gradient(rgba(7, 21, 38, 0.82), rgba(7, 21, 38, 0.82)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1000&q=80") center/cover;
}

.reservation-copy h2 {
  color: #fff;
  margin-bottom: 14px;
}

.reservation-copy p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.reservation-list {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 36px;
  align-content: start;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-2);
  padding: 34px 0;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.1fr 2fr 0.7fr;
  gap: 26px;
  align-items: start;
}

.footer-brand {
  display: block;
  color: #fff;
  font-weight: 900;
  margin-bottom: 8px;
}

.footer-note {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.footer-menu a,
.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-menu a:hover,
.footer-links a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
  color: #fff;
  background: var(--coral);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.page-shell {
  padding: 72px 0;
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 21, 38, 0.94), rgba(16, 35, 63, 0.7)),
    var(--service-image, url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80")) center/cover;
}

.page-hero-inner {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 74px 0 48px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  font-weight: 750;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.seo-link-card {
  min-height: 198px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 20px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(12, 30, 54, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.seo-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 166, 167, 0.36);
  box-shadow: 0 18px 42px rgba(12, 30, 54, 0.12);
}

.seo-link-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.24;
}

.seo-link-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}

.seo-link-card em {
  display: block;
  color: var(--turquoise);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 900;
}

.service-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 24px;
  align-items: start;
}

.service-stack {
  display: grid;
  gap: 18px;
}

.service-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(12, 30, 54, 0.08);
}

.service-box h2,
.service-box h3 {
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 10px;
}

.service-box p {
  color: #2d4054;
  font-weight: 650;
}

.service-box ul {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-left: 18px;
}

.service-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.service-chip-list span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--navy);
  background: #eef7f8;
  font-size: 0.86rem;
  font-weight: 900;
}

.service-cta {
  color: #fff;
  background: linear-gradient(145deg, var(--navy), #163a66);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-cta h3 {
  color: #fff;
}

.service-cta p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
}

.service-cta a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 14px;
  color: #071526;
  background: var(--gold);
  font-weight: 900;
}

.service-related {
  display: grid;
  gap: 8px;
}

.service-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
}

.service-related a::after {
  content: "›";
  color: var(--turquoise);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-hero {
  background:
    linear-gradient(135deg, rgba(7, 21, 38, 0.82), rgba(8, 166, 167, 0.42)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.faq-page {
  padding-top: 46px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(12, 30, 54, 0.08);
}

.faq-nav strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.faq-nav a {
  padding: 8px 0;
  border-bottom: 1px solid rgba(216, 226, 234, 0.7);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.faq-nav a:last-child {
  border-bottom: 0;
}

.faq-nav a:hover {
  color: var(--turquoise);
}

.faq-content {
  display: grid;
  gap: 28px;
}

.faq-group {
  scroll-margin-top: 108px;
  display: grid;
  gap: 16px;
}

.faq-group-head {
  display: grid;
  gap: 8px;
}

.faq-group-head h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.faq-group-head p {
  max-width: 760px;
  color: var(--muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(12, 30, 54, 0.07);
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 18px 48px 18px 18px;
  color: var(--navy);
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #fff;
  background: var(--turquoise);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--navy);
}

.faq-item p {
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 650;
}

.faq-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.faq-cta-strip h2 {
  margin: 6px 0 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.12;
}

.faq-cta-strip p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.page-card {
  max-width: 900px;
  min-height: 380px;
  padding: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.page-card h1 {
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: 0;
}

.page-content {
  color: #2d4054;
  font-size: 1.02rem;
  font-weight: 650;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: #22a06b;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(34, 160, 107, 0.28);
}

.mobile-action-bar {
  display: none;
}

.mobile-action {
  min-width: 0;
  display: grid;
  place-items: center;
  gap: 5px;
  color: #071526;
  font-size: 0.78rem;
  font-weight: 800;
}

.mobile-action svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.admin-body {
  min-height: 100vh;
  background: #edf3f7;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.admin-top h1 {
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-button {
  min-height: 42px;
  background: var(--navy);
}

.admin-button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.admin-delete-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 12px;
  color: #fff;
  background: var(--danger);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.admin-delete-button:hover {
  background: #8f1d15;
}

.inline-delete-form {
  display: inline-flex;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(12, 30, 54, 0.08);
  padding: 24px;
  margin-bottom: 22px;
}

.admin-card h2 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.admin-card-general {
  border-left: 6px solid #08a6a7;
  background: linear-gradient(135deg, #ffffff 0%, #eefafb 100%);
}

.admin-card-mobile {
  border-left: 6px solid #22a06b;
  background: linear-gradient(135deg, #ffffff 0%, #effaf4 100%);
}

.admin-card-hero {
  border-left: 6px solid #f8c14a;
  background: linear-gradient(135deg, #ffffff 0%, #fff8e7 100%);
}

.admin-card-categories {
  border-left: 6px solid #3b82f6;
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
}

.admin-card-offers {
  border-left: 6px solid #ff6b35;
  background: linear-gradient(135deg, #ffffff 0%, #fff1ec 100%);
}

.admin-card-footer {
  border-left: 6px solid #7c3aed;
  background: linear-gradient(135deg, #ffffff 0%, #f5f0ff 100%);
}

.admin-card-leads {
  border-left: 6px solid #b42318;
  background: linear-gradient(135deg, #ffffff 0%, #fff3f1 100%);
}

.admin-card .admin-item {
  background: rgba(255, 255, 255, 0.74);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.admin-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.admin-repeater {
  display: grid;
  gap: 14px;
}

.admin-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
}

.admin-item-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-item-title strong {
  color: var(--navy);
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 900;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
}

.login-wrap {
  width: min(460px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-items: center;
}

.login-card {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.login-card h1 {
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

.login-card p {
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 700;
}

.login-form {
  display: grid;
  gap: 14px;
}

.lead-table-wrap {
  overflow-x: auto;
}

.lead-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 960px;
}

.lead-table th,
.lead-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.lead-table th {
  color: var(--navy);
  background: #f2f7fa;
  font-size: 0.88rem;
}

.muted {
  color: var(--muted);
}

@media (max-width: 1020px) {
  .topbar-inner,
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 14px;
  }

  .quick-form,
  .trust-grid,
  .category-grid,
  .seo-link-grid,
  .offers,
  .steps,
  .reservation-panel,
  .footer-layout,
  .admin-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .quick-form button,
  .reservation-copy,
  .reservation-form {
    grid-column: 1 / -1;
  }

  .service-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 78vh;
  }

  .hero-inner {
    padding: 64px 0 42px;
  }

  .section-head,
  .social-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-form,
  .trust-grid,
  .category-grid,
  .seo-link-grid,
  .offers,
  .steps,
  .social-panel,
  .reservation-panel,
  .reservation-form,
  .footer-layout,
  .footer-menu,
  .admin-grid,
  .admin-grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .trust-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  section {
    padding: 56px 0;
  }

  .reservation-copy,
  .reservation-form,
  .page-card,
  .service-box,
  .admin-card {
    padding: 20px;
  }

  .floating-cta {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    min-height: 76px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-radius: 16px 16px 0 0;
    border-top: 1px solid rgba(216, 226, 234, 0.95);
    background: #fff;
    box-shadow: 0 -12px 34px rgba(7, 21, 38, 0.16);
  }

  body:not(.admin-body) {
    padding-bottom: 84px;
  }
}

.offer-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.offer-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.offer-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 38, 0.64);
  backdrop-filter: blur(2px);
}

.offer-popup-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(7, 21, 38, 0.3);
}

.offer-popup-close {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border-radius: 50%;
  color: #6b7787;
  background: #f1f5f8;
  font-size: 1.45rem;
  line-height: 1;
}

.offer-popup-media {
  min-height: 360px;
  background: var(--navy);
}

.offer-popup-media img {
  height: 100%;
  object-fit: cover;
}

.offer-popup-content {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 38px 34px;
  text-align: center;
}

.offer-popup-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--coral);
  border-radius: 6px;
  color: var(--coral);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.offer-popup h2 {
  max-width: 360px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.offer-popup p {
  max-width: 360px;
  color: #425269;
  font-weight: 800;
  line-height: 1.42;
  margin-bottom: 22px;
}

.offer-popup-button {
  width: min(348px, 100%);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background: #16b85f;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(22, 184, 95, 0.24);
}

.offer-popup-button:hover {
  color: #fff;
  background: #119f50;
}

.offer-popup-textbtn {
  min-height: auto;
  margin-top: 16px;
  padding: 4px 10px;
  color: #526276;
  background: transparent;
  font-weight: 800;
}

@media (max-width: 720px) {
  .offer-popup {
    padding: 16px;
  }

  .offer-popup-card {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .offer-popup-media {
    min-height: 210px;
  }

  .offer-popup-content {
    padding: 28px 22px;
  }

  .offer-popup h2 {
    font-size: 2rem;
  }

  .offer-popup-close {
    background: rgba(255, 255, 255, 0.92);
  }
}

.offer-slider {
  position: relative;
}

.offer-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: -18px 0 18px;
}

.offer-arrow {
  width: 44px;
  height: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--navy);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(16, 35, 63, 0.18);
}

.offer-arrow:hover {
  background: var(--turquoise);
}

.offers.offer-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 44px) / 3);
  grid-template-columns: none;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 18px;
  scrollbar-width: none;
}

.offers.offer-track::-webkit-scrollbar {
  display: none;
}

.offers.offer-track .offer-card {
  scroll-snap-align: start;
  min-width: 0;
}

@media (max-width: 1020px) {
  .offers.offer-track {
    grid-auto-columns: calc((100% - 22px) / 2);
  }
}

@media (max-width: 720px) {
  .offer-controls {
    justify-content: flex-start;
    margin: -10px 0 16px;
  }

.offers.offer-track {
    grid-auto-columns: 88%;
  }
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-height: 44px;
  place-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(16, 35, 63, 0.14);
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1020px) {
  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px 0;
  }

  .nav {
    position: relative;
    min-height: 68px;
    align-items: center;
    flex-direction: row;
    padding: 10px 0;
  }

  .brand {
    min-width: 0;
    flex: 1;
  }

  .brand-logo,
  .brand-fallback {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-line {
    font-size: 0.72rem;
  }

  .mobile-menu-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .site-header .nav > nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 45;
    display: none;
  }

  .site-header.is-menu-open .nav > nav {
    display: block;
  }

  .site-header .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(12, 30, 54, 0.16);
  }

  .site-header .nav-links li + li {
    border-top: 1px solid #eef3f7;
  }

  .site-header .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .site-header .nav-links .nav-cta {
    justify-content: center;
    margin-top: 8px;
    color: #fff !important;
  }
}

@media (max-width: 420px) {
  .brand-line {
    display: none;
  }

  .brand-name {
    font-size: 0.96rem;
  }
}

.mobile-menu-toggle {
  border: 1px solid rgba(16, 35, 63, 0.12);
  border-radius: 14px;
  color: var(--navy);
  background: linear-gradient(180deg, #fff, #f3f8fb);
  box-shadow: 0 12px 26px rgba(12, 30, 54, 0.13);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(8, 166, 167, 0.32);
  box-shadow: 0 16px 30px rgba(12, 30, 54, 0.18);
}

.mobile-menu-toggle span {
  height: 2.5px;
  transition: width 0.2s ease, transform 0.22s ease, opacity 0.18s ease;
}

.mobile-menu-toggle span:nth-child(1),
.mobile-menu-toggle span:nth-child(3) {
  width: 21px;
}

.mobile-menu-toggle span:nth-child(2) {
  width: 15px;
  margin-left: 6px;
}

.site-header.is-menu-open .mobile-menu-toggle {
  color: #fff;
  border-color: var(--navy);
  background: linear-gradient(135deg, var(--navy), #163a66);
  box-shadow: 0 16px 32px rgba(16, 35, 63, 0.22);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  width: 21px;
  transform: translateY(6.5px) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  width: 21px;
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1020px) {
  .mobile-menu-toggle {
    width: 48px;
    height: 48px;
    min-height: 48px;
    gap: 4px;
  }
}

.mobile-menu-toggle {
  width: 46px;
  height: 46px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #10233f, #071526);
  box-shadow: 0 10px 22px rgba(7, 21, 38, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(7, 21, 38, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.mobile-menu-toggle span {
  width: 22px !important;
  height: 2px;
  margin-left: 0 !important;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.22s ease, opacity 0.16s ease;
}

.site-header.is-menu-open .mobile-menu-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, #071526, #10233f);
  box-shadow: 0 12px 26px rgba(7, 21, 38, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.35);
}

.site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1020px) {
  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    min-height: 46px;
    gap: 5px;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    min-height: 38px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px;
    padding: 6px 0 !important;
  }

  .topbar-inner > span:first-child {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .topbar-socials {
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .language-switcher {
    flex: 0 0 auto;
    margin-left: 0;
  }

  .language-select {
    width: 44px;
    min-width: 44px;
    height: 34px;
    padding: 0 5px;
    font-size: 0.74rem;
  }

  .topbar-social {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 1020px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-nav strong {
    grid-column: 1 / -1;
  }

  .faq-cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .faq-nav {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    padding-right: 44px;
  }
}
