:root {
  --navy: #102a43;
  --blue: #1a73e8;
  --blue-dark: #0f5fca;
  --bg: #f3f6fa;
  --card: #fff;
  --text: #1d2939;
  --muted: #5e6b7b;
  --line: #d9e2ec;
  --green: #128c7e;
  --shadow: 0 10px 30px rgba(16, 42, 67, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Rubik", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-right: auto;
}

.nav {
  display: none;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a:hover { color: var(--blue); }

.header-actions {
  display: none;
  align-items: center;
  gap: 14px;
}

.tel { font-weight: 600; color: var(--navy); }

.burger {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='14'%3E%3Cpath fill='%23102a43' d='M0 0h20v2H0zm0 6h20v2H0zm0 6h20v2H0z'/%3E%3C/svg%3E") center no-repeat;
  border-radius: 8px;
}

.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  top: 68px;
  background: #fff;
  padding: 16px 20px 20px;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .nav { display: flex; }
  .header-actions { display: flex; }
  .burger { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-whatsapp { background: var(--green); color: #fff; }
.btn-lg { height: 52px; padding: 0 22px; }
.btn-full { width: 100%; }

.hero { padding: 36px 0 56px; }
.hero-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}

.badge {
  display: inline-block;
  background: #e8f1fd;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--navy);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 8px;
}

h3 { font-size: 1.15rem; color: var(--navy); }

.lead { margin: 14px 0 22px; color: var(--muted); font-size: 1.05rem; max-width: 52ch; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 10px; }

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 22px;
}
.trust li {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; height: 360px; object-fit: cover; }
.price-pill {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
}
.price-pill span { display: block; font-size: 0.78rem; color: var(--muted); }
.price-pill strong { font-size: 1.5rem; color: var(--navy); }

.packages, .how, .delivery, .games, .pay, .faq, .booking { padding: 64px 0; }
.packages, .delivery, .pay, .booking { background: #fff; }
.section-desc { color: var(--muted); margin-bottom: 28px; }

.package-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 800px) {
  .package-grid { grid-template-columns: repeat(4, 1fr); }
}

.pkg {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}
.pkg.popular { background: #eef5ff; border-color: #b7d2f8; }
.pkg .tag { font-size: 0.78rem; color: var(--blue); font-weight: 600; }
.pkg h3 { margin: 6px 0 4px; font-size: 1.35rem; }
.pkg .dur { color: var(--muted); font-size: 0.9rem; }
.pkg .price { font-size: 1.8rem; font-weight: 700; margin: 16px 0; color: var(--navy); }
.pkg ul { list-style: none; color: var(--muted); font-size: 0.92rem; flex: 1; }
.pkg li + li { margin-top: 6px; }
.pkg .btn { margin-top: 16px; }

.extras-note {
  margin-top: 18px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}

.steps {
  display: grid;
  gap: 14px;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.steps article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.steps span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 10px;
}

.calc {
  display: grid;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 18px;
}
@media (min-width: 700px) {
  .calc { grid-template-columns: 1fr 1fr; align-items: end; }
}
.calc label, form label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 500;
}
select, input, textarea {
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  background: #fff;
  color: var(--text);
  font-size: 1rem;
}
textarea { height: auto; padding: 10px 12px; resize: vertical; }
.calc-result {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 600;
  color: var(--navy);
  min-height: 46px;
  display: flex;
  align-items: center;
}

.search {
  width: 100%;
  margin-bottom: 12px;
}

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
th { background: var(--bg); font-size: 0.85rem; color: var(--muted); }

.game-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 700px) {
  .game-list { grid-template-columns: repeat(5, 1fr); }
}
.game {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.game small { color: var(--blue); font-weight: 600; }

.pay-grid { display: grid; gap: 24px; }
@media (min-width: 800px) {
  .pay-grid { grid-template-columns: 0.8fr 1.2fr; }
}
.pay-cards { display: grid; gap: 12px; }
@media (min-width: 700px) {
  .pay-cards { grid-template-columns: 1fr 1fr; }
}
.pay-cards article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: var(--bg);
}
.iban-box {
  margin-top: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.9rem;
  word-break: break-all;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 16px;
  margin-bottom: 10px;
}
.faq summary { cursor: pointer; padding: 12px 0; font-weight: 600; }
.faq p { color: var(--muted); padding-bottom: 12px; }

.booking-grid { display: grid; gap: 28px; }
@media (min-width: 800px) {
  .booking-grid { grid-template-columns: 0.85fr 1.15fr; }
}
.contact-list { list-style: none; color: var(--muted); margin-top: 16px; }
.contact-list li + li { margin-top: 6px; }

#bookForm {
  display: grid;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
}
.total-box {
  background: #fff;
  border-radius: 10px;
  padding: 12px;
  font-weight: 600;
  color: var(--navy);
}

.footer {
  background: var(--navy);
  color: #d9e2ec;
  padding: 36px 0;
}
.footer-inner { display: grid; gap: 16px; }
.footer a { display: inline-block; margin-right: 12px; }
.footer strong { color: #fff; font-size: 1.1rem; }
.copy { opacity: 0.7; font-size: 0.85rem; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 8px 12px;
  z-index: 30;
}
.skip:focus { left: 8px; }

.breadcrumb { padding: 16px 0 0; font-size: 0.85rem; color: var(--muted); }
.breadcrumb ol { display: flex; gap: 8px; list-style: none; flex-wrap: wrap; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: #b0b8c4; }
.breadcrumb a { color: var(--blue); }

.about-seo { padding: 8px 0 48px; }
.seo-copy p { color: var(--muted); max-width: 75ch; margin-top: 12px; }
.district-seo { margin-top: 22px; }
.district-seo p { color: var(--muted); max-width: 75ch; margin-top: 8px; }

caption {
  caption-side: bottom;
  text-align: left;
  padding: 10px 4px 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.article { padding: 24px 0 72px; max-width: 760px; }
.article h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: var(--navy); margin: 12px 0 16px; }
.article h2 { margin: 28px 0 10px; }
.article p, .article li { color: var(--muted); }
.article p + p { margin-top: 12px; }
.article a { color: var(--blue); }
.article-list { margin: 12px 0 16px 18px; }
.article-list li + li { margin-top: 8px; }
.footer-nap { margin-top: 8px; }
.footer-nap a { color: #fff; }

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--green);
  color: #fff;
  height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 600;
  box-shadow: var(--shadow);
}
