:root {
  --bg: #050b07;
  --bg-soft: #0b1710;
  --card: #ffffff;
  --text: #102015;
  --muted: #2f4639;
  --brand: #80d63f;
  --brand-dark: #5dae24;
  --light: #f4fbf2;
  --border: #d9e8d7;
  --focus: #ff9100;
  --text-soft: #22382d;
  --text-soft-2: #2a4134;
  --text-on-dark-soft: #e3f3dc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(246, 251, 244, 0.94), rgba(238, 248, 236, 0.94)),
    url("pcb-pattern.svg");
  background-repeat: repeat, repeat;
  background-size: auto, 320px 320px;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Orbitron", "Inter", sans-serif;
  letter-spacing: 0.03em;
}

body.cursor-fx-enabled {
  cursor: none;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 145, 0, 0.9) 0%, rgba(255, 145, 0, 0) 70%);
  box-shadow:
    0 0 18px rgba(255, 145, 0, 0.65),
    0 0 32px rgba(255, 145, 0, 0.42);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.cursor-fx-enabled .cursor-glow {
  opacity: 0.9;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(9, 20, 13, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.btn-header-book {
  font-family: "Audiowide", "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.52rem 0.95rem;
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #0d1f0a !important;
  font-weight: 800;
  border: 1px solid rgba(128, 214, 63, 0.55);
  box-shadow:
    0 0 0 1px rgba(255, 145, 0, 0.35),
    0 0 14px rgba(255, 145, 0, 0.28);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.btn-header-book:hover,
.btn-header-book:focus-visible {
  box-shadow: 0 0 16px rgba(255, 145, 0, 0.45);
  transform: translateY(-1px);
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 82px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 14px rgba(128, 214, 63, 0.25));
}

.nav {
  display: flex;
  gap: 1.2rem;
}

.nav a {
  font-family: "Audiowide", "Inter", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #d8f7c4;
  font-weight: 500;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #ffd199;
  text-shadow: 0 0 10px rgba(255, 145, 0, 0.35);
}

.menu-btn {
  font-family: "Audiowide", "Inter", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: none;
  border: 1px solid rgba(128, 214, 63, 0.35);
  background: rgba(128, 214, 63, 0.12);
  color: #eaffdc;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, var(--bg), #173321);
  padding: 4rem 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 80%, rgba(128, 214, 63, 0.24), transparent 35%),
    radial-gradient(circle at 90% 15%, rgba(128, 214, 63, 0.2), transparent 28%),
    url("pcb-pattern.svg");
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: auto, auto, 300px 300px;
  opacity: 0.42;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background:
    repeating-linear-gradient(
      100deg,
      transparent 0 24px,
      rgba(128, 214, 63, 0.18) 24px 26px,
      transparent 26px 90px
    );
  opacity: 0.2;
  animation: circuitFlow 24s linear infinite;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-logo {
  width: min(520px, 95%);
  height: auto;
  display: block;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 0 24px rgba(128, 214, 63, 0.35));
}

.tag {
  font-family: "Audiowide", "Inter", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-block;
  background: rgba(255, 255, 255, 0.24);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #ffffff;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(128, 214, 63, 0.2);
}

.hero-text {
  max-width: 60ch;
  color: #f0f7ef;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.btn {
  font-family: "Orbitron", "Inter", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.18s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-primary {
  color: #102015;
  background: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 0 0 1px rgba(255, 145, 0, 0.3), 0 8px 20px rgba(255, 145, 0, 0.28);
  transform: translateY(-1px);
}

.btn-primary:focus-visible {
  box-shadow: 0 0 0 2px rgba(16, 32, 21, 0.35), 0 0 0 5px rgba(255, 145, 0, 0.45);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-small {
  background: #e8f8dc;
  color: #153823;
}

.btn-small:hover,
.btn-small:focus-visible {
  box-shadow: 0 0 0 1px rgba(255, 145, 0, 0.35), 0 6px 16px rgba(255, 145, 0, 0.24);
  filter: saturate(1.05);
  transform: translateY(-1px);
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 1.2rem;
}

.section {
  position: relative;
  padding: 4rem 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(128, 214, 63, 0.06), rgba(128, 214, 63, 0.06)),
    url("pcb-pattern.svg");
  background-repeat: no-repeat, repeat;
  background-size: auto, 340px 340px;
  opacity: 0.2;
  pointer-events: none;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 0 35%,
      rgba(128, 214, 63, 0.12) 45%,
      transparent 55% 100%
    );
  background-size: 220% 220%;
  animation: signalSweep 18s ease-in-out infinite;
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--light);
}

h2 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(128, 214, 63, 0.15);
}

#services h2::before,
#shop h2::before,
#sim-only h2::before,
#gallery h2::before,
#faq h2::before,
#reviews h2::before,
#about h2::before,
#contact h2::before {
  display: inline-block;
  margin-right: 0.55rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(128, 214, 63, 0.45);
  background: linear-gradient(135deg, rgba(128, 214, 63, 0.24), rgba(128, 214, 63, 0.1));
  color: #2f6b19;
  font-family: "Audiowide", "Inter", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  vertical-align: middle;
}

#services h2::before {
  content: "REPAIR ZONE";
}

#shop h2::before {
  content: "SHOP ZONE";
}

#sim-only h2::before {
  content: "SIM ZONE";
}

#gallery h2::before {
  content: "GALLERY ZONE";
}

#faq h2::before {
  content: "SEO ZONE";
}

#reviews h2::before {
  content: "REVIEW ZONE";
}

#about h2::before {
  content: "TRUST ZONE";
}

#contact h2::before {
  content: "BOOKING ZONE";
  color: #dfffcf;
  border-color: rgba(128, 214, 63, 0.55);
}

.card h3,
.product-card h3,
.hero-card h3,
.about-box h3 {
  display: inline-block;
  transform: rotate(-1deg);
  margin-top: 0.2rem;
  margin-bottom: 0.55rem;
  color: #173321;
  text-shadow:
    -1px -1px 0 rgba(128, 214, 63, 0.35),
    1px 1px 0 rgba(128, 214, 63, 0.35);
}

.hero-card h3 {
  color: #eaffdc;
  text-shadow:
    -1px -1px 0 rgba(128, 214, 63, 0.3),
    1px 1px 0 rgba(128, 214, 63, 0.3);
}

.section-intro {
  margin-top: 0;
  color: var(--text-soft);
}

.seo-copy {
  margin-top: -0.2rem;
  margin-bottom: 1rem;
  color: var(--text-soft);
}

.stock-status {
  margin-top: -0.2rem;
  margin-bottom: 0.9rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.section-contact-btn {
  margin-top: 1rem;
}

.faq-wrap details {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  padding: 0.8rem 0.9rem;
  margin-bottom: 0.7rem;
}

.faq-wrap summary {
  cursor: pointer;
  font-family: "Orbitron", "Inter", sans-serif;
  color: #173321;
}

.faq-wrap details p {
  margin: 0.6rem 0 0;
}

.parts-badge {
  display: inline-block;
  margin: 0.2rem 0 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(128, 214, 63, 0.55);
  background: linear-gradient(135deg, rgba(128, 214, 63, 0.3), rgba(128, 214, 63, 0.15));
  color: #eaffdc;
  font-family: "Audiowide", "Inter", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 6px 18px rgba(16, 32, 21, 0.06);
}

.review-rating {
  margin: 0 0 0.35rem;
  color: #5dae24;
  letter-spacing: 0.08em;
}

.review-author {
  margin-bottom: 0;
  color: var(--text-soft-2);
  font-size: 0.92rem;
}

.review-cta {
  margin-top: 0.9rem;
  color: var(--text-soft);
}

.review-cta a {
  color: #2f6b19;
  font-weight: 600;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.small-link {
  text-decoration: none;
  color: #2f6b19;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.small-link:hover,
.small-link:focus-visible {
  color: #ffb55f;
  text-shadow: 0 0 10px rgba(255, 145, 0, 0.28);
}

.card-grid,
.product-grid {
  display: grid;
  gap: 1rem;
}

.card-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(16, 32, 21, 0.06);
}

.shop-filter {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
}

.shop-filter select {
  min-width: 10rem;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font: inherit;
  background: #fff;
  color: var(--text);
}

.shop-filter-reset {
  align-self: flex-end;
}

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

.card,
.product-card,
.about-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 6px 20px rgba(16, 32, 21, 0.06);
}

.service-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.badge {
  background: #dff5d4;
  color: #1a4d0a;
  border: 1px solid rgba(26, 77, 10, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  font-weight: 700;
}

.badge-stock {
  margin-left: 0.35rem;
}

.badge-reserved {
  background: #fff4e6;
  color: #7a3d00;
  border-color: rgba(122, 61, 0, 0.25);
}

.product-card-reserved {
  border-style: dashed;
  border-color: #c9a227;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #cfe3cb;
  box-shadow: 0 12px 24px rgba(16, 32, 21, 0.08);
}

.product-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0.65rem 0 0.5rem;
  border: 1px solid #d8e9d5;
  background: #f2f9ee;
}

.product-image-placeholder {
  background:
    linear-gradient(135deg, rgba(128, 214, 63, 0.15), rgba(93, 174, 36, 0.06)),
    repeating-linear-gradient(90deg, rgba(47, 107, 25, 0.1) 0 2px, transparent 2px 16px);
}

.admin-audit-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  display: grid;
  gap: 0.2rem;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 145, 0, 0.45);
  background: rgba(5, 11, 7, 0.92);
  color: #f8f3e8;
  box-shadow: 0 0 0 1px rgba(255, 145, 0, 0.2), 0 8px 22px rgba(0, 0, 0, 0.35);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.admin-audit-banner strong {
  color: #ffb35c;
  font-size: 0.8rem;
}

.admin-audit-hint {
  color: #ffdcb3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5dae24, #80d63f);
}

.product-meta {
  margin: 0.45rem 0 0.35rem;
  font-size: 0.78rem;
  color: #47644f;
  letter-spacing: 0.02em;
}

.product-price {
  font-size: 1.4rem;
  color: #1b4a2a;
  letter-spacing: 0.01em;
}

.product-foot {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e3efe1;
  padding-top: 0.75rem;
}

.product-foot-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.sim-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.sim-card {
  background: #ffffff;
  border: 1px solid #cfe3cb;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 20px rgba(16, 32, 21, 0.07);
}

.sim-network {
  margin: 0 0 0.35rem;
  font-family: "Audiowide", "Inter", sans-serif;
  color: #2f6b19;
  font-size: 0.85rem;
}

.sim-price {
  margin: 0.15rem 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1b4a2a;
}

.sim-card h3 {
  margin-top: 0.2rem;
  transform: none;
}

.sim-card .btn {
  margin-top: 0.35rem;
}

.sim-disclaimer {
  margin-top: 0.8rem;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-grid img:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.cta {
  position: relative;
  background: var(--bg-soft);
  color: #fff;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(128, 214, 63, 0.08), rgba(128, 214, 63, 0.08)),
    url("pcb-pattern.svg");
  background-repeat: no-repeat, repeat;
  background-size: auto, 320px 320px;
  opacity: 0.26;
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  inset: -15% -20%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 30px,
      rgba(128, 214, 63, 0.16) 30px 32px,
      transparent 32px 110px
    );
  opacity: 0.18;
  animation: circuitFlow 20s linear infinite reverse;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-inner p {
  color: #d1d5db;
}

#booking {
  scroll-margin-top: 120px;
}

.booking-form {
  margin-top: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(128, 214, 63, 0.28);
  background: rgba(7, 22, 13, 0.62);
  border-radius: 12px;
}

.booking-form h3 {
  margin: 0 0 0.35rem;
  color: #eaffdc;
}

.booking-actions {
  margin: 0.65rem 0 0.85rem;
}

.btn-booking-launch {
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
}

.booking-launch {
  text-align: center;
}

.booking-launch .booking-actions {
  justify-content: center;
  display: flex;
}

.booking-embed {
  overflow: visible;
}

.booking-embed iframe,
.booking-iframe {
  width: 100%;
  height: clamp(620px, 82vh, 980px);
  max-width: 100%;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  display: block;
}

.booking-embed .booking-note a {
  color: #d8f7c4;
  text-decoration: underline;
}

.booking-note {
  margin-top: 0;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-on-dark-soft);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.booking-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #dfffcf;
}

.booking-grid input,
.booking-grid select,
.booking-grid textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border-radius: 8px;
  border: 1px solid rgba(128, 214, 63, 0.35);
  background: rgba(255, 255, 255, 0.95);
  color: #102015;
  font: inherit;
}

.booking-grid input:focus,
.booking-grid select:focus,
.booking-grid textarea:focus {
  outline: 2px solid rgba(128, 214, 63, 0.5);
  outline-offset: 1px;
}

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

.contact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-chips a,
.contact-chips span {
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #0b1710;
  color: #d8f7c4;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-logo {
  height: 42px;
  width: auto;
  display: block;
}

.footer-brand p {
  margin: 0;
}

.footer-wrap a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-wrap a:hover,
.footer-wrap a:focus-visible {
  color: #ffb55f;
  text-shadow: 0 0 10px rgba(255, 145, 0, 0.28);
}

@keyframes circuitFlow {
  0% {
    transform: translate3d(-6%, 0, 0);
  }
  100% {
    transform: translate3d(6%, 0, 0);
  }
}

@keyframes signalSweep {
  0% {
    background-position: 120% 0;
    opacity: 0.12;
  }
  50% {
    background-position: 0 100%;
    opacity: 0.2;
  }
  100% {
    background-position: -120% 0;
    opacity: 0.12;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .section::after,
  .cta::after,
  .cursor-glow {
    animation: none;
  }

  body.cursor-fx-enabled {
    cursor: auto;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 980px) {
  .logo-image {
    height: 68px;
  }

  .card-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sim-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 2.85rem;
  }

  body.cursor-fx-enabled {
    cursor: auto;
  }

  .cursor-glow {
    display: none;
  }

  .logo-image {
    height: 56px;
  }

  .footer-logo {
    height: 36px;
  }

  .menu-btn {
    display: inline-block;
  }

  .mobile-contact-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    justify-content: stretch;
    align-items: stretch;
    gap: 0;
    background: rgba(9, 20, 13, 0.92);
    border-top: 1px solid rgba(128, 214, 63, 0.28);
    padding: 0.32rem 0 calc(0.32rem + env(safe-area-inset-bottom, 0));
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
  }

  .mobile-contact-bar a {
    flex: 1;
    text-align: center;
    font-family: "Audiowide", "Inter", sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: #dff7d0;
    padding: 0.4rem 0.25rem;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
  }

  .mobile-contact-bar a:first-child {
    border-right: 1px solid rgba(128, 214, 63, 0.22);
  }

  .mobile-contact-bar a:hover,
  .mobile-contact-bar a:focus-visible {
    color: #ffd199;
    background: rgba(255, 145, 0, 0.1);
  }

  .admin-audit-banner {
    bottom: 3.25rem;
  }

  .nav {
    position: absolute;
    right: 4%;
    top: 84px;
    background: rgba(9, 20, 13, 0.95);
    border: 1px solid rgba(128, 214, 63, 0.35);
    border-radius: 10px;
    padding: 0.6rem;
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 30;
  }

  .nav.open {
    display: flex;
  }

  .card-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-embed iframe {
    height: 78vh;
    min-height: 680px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .sim-grid {
    grid-template-columns: 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }
}
