/* ======================
   Design tokens
====================== */
:root {
  --ink: #101622; /* brand navy */
  --paper: #fff;
  --rule: #ccc;
  --fs-0: clamp(14px, 1.9vw, 16px);
  --fs-1: clamp(18px, 2.6vw, 22px);
  --fs-2: clamp(22px, 3.4vw, 28px);
  --sp-1: 10px;
  --sp-2: 14px;
  --sp-3: 20px;
  --sp-4: 28px;
  --radius: 10px;
  --header-h: 72px; /* mobile header height */
  --desk-nav-h: 64px; /* default desktop nav height (updated by JS) */
}

/* ======================
   Base
====================== */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font:
    400 var(--fs-0)/1.45 system-ui,
    -apple-system,
    Segoe UI,
    Arial,
    sans-serif;
  color: #111;
  background: var(--paper);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
main {
  flex: 1;
  margin-top: var(--header-h);
}

/* Accessible skip link */
.visually-hidden-focusable {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.visually-hidden-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 6px 10px;
  background: #ffe9a8;
}

/* ======================
   Header (mobile-first)
====================== */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header-logo {
  display: block;
  margin-inline: auto;
  height: 40px;
  width: auto;
}

/* Mobile menu button */
#menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #707271;
  border: 0;
  color: #fff;
  border-radius: 6px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* Mobile slide-in sidebar */
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  z-index: 1001;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  overflow-y: auto;
  transition: left 0.3s ease;
}
.sidebar.active {
  left: 0;
}
.sidebar-logo {
  max-width: 200px;
}
.sidebar .close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.sidebar > ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sidebar a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(18px, 6vw, 20px);
  padding: 8px 0;
}
.sidebar-bottom-image {
  max-width: 80%;
  height: auto;
  margin: 8px auto 0;
}

/* Hide desktop-only bits on mobile */
.desktop.header,
.logo_d,
.navbar_menu_d,
.image-links_d {
  display: none !important;
}

/* ======================
   Intro (desktop only)
====================== */
.intro {
  display: none;
}
@media (min-width: 1024px) {
  .intro {
    display: block;
    text-align: center;
    padding: var(--sp-3) 7% var(--sp-2);
  }
  .intro p,
  .intro h3 {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    margin: 0;
  }
}

/* ======================
   Carousel
====================== */
/* Reserve aspect space so the carousel doesn't jump (CLS ≈ 0) */
#imageCarousel .carousel-item {
  aspect-ratio: 16 / 9; /* match your real slide ratio */
}

/* Your existing rules (keep as-is) */
.carousel {
  margin: 0 0 var(--sp-2);
}
#imageCarousel .carousel-item {
  background: #0b0f14;
}
#imageCarousel .carousel-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  max-height: 65vh;
}
.carousel-caption h2 {
  font-size: var(--fs-2);
  font-weight: 800;
}
.carousel-caption p {
  font-size: var(--fs-1);
}

/* responsive caps */
@media (min-width: 768px) {
  #imageCarousel .carousel-item img {
    max-height: 60vh;
  }
}
@media (min-width: 1200px) {
  #imageCarousel .carousel-item img {
    max-height: 520px;
  }
}

/* ======================
   Value Statement
====================== */
.intro2 {
  text-align: center;
  background: #fff;
  padding: var(--sp-3) 4%;
}
.intro2 p {
  margin: 6px auto;
  font-size: clamp(16px, 4.5vw, 18px);
}
.intro2 .cta {
  display: inline-block;
  margin-top: 6px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .intro2 p {
    font-size: clamp(16px, 1.6vw, 18px);
  }
}

/* ======================
   “Keep Informed” band
====================== */
.center-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #d3d3d3;
  padding: 8px 0 16px;
  border-top: 3px solid var(--rule);
  border-bottom: 3px solid var(--rule);
}
.games_1 {
  font-size: var(--fs-2);
  font-weight: 800;
  margin: 10px 0 4px;
  color: #242424;
}
.center-container p {
  margin: 6px 5% 0;
  color: #242424;
  font-size: clamp(14px, 4.2vw, 18px);
}
.games {
  width: min(92%, 420px);
  margin: 14px auto 4px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
@media (min-width: 1024px) {
  .center-container {
    background: #fff;
    border-color: transparent;
    padding: 20px 0 10px;
  }
  .content-container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0 7%;
  }
  .center-container p {
    font-size: clamp(16px, 1.8vw, 20px);
    margin: 0;
    flex: 1;
  }
  .games {
    width: 30%;
    min-width: 280px;
    margin: 0;
  }
}

/* ======================
   Promo tiles (3-up)
====================== */
.index_add_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 10px 5% 16px;
  background: #f5f5f5;
}
.index_add_container a {
  display: block;
}
.add_1,
.add_2,
.add_3 {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #cfcfcf;
}
@media (min-width: 1024px) {
  .index_add_container {
    padding: 20px 15%;
    gap: 16px;
  }
}

/* ======================
     Web Design Hero 
====================== */
.hero-webdesign {
  background: linear-gradient(180deg, #101622 0%, #0f1a26 30%, #09111b 100%);
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 4rem 1rem;
}

.hero-webdesign h1 {
  color: #fff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

.hero-webdesign p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto 1rem;
}

.hero-webdesign .btn-light {
  background: #fff;
  color: #0f1a26;
  border-color: #fff;
}

.hero-webdesign .btn-light:hover {
  background: #f4f4f4;
  border-color: #f4f4f4;
  color: #0b1220;
}

.hero-webdesign .btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-webdesign .btn-outline-light:hover {
  background: #fff;
  color: #0f1a26;
  border-color: #fff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-webdesign {
    padding: 3rem 1rem;
  }
  .hero-webdesign h1 {
    font-size: 1.25rem;
  }
  .hero-webdesign p {
    font-size: 0.95rem;
  }
  .hero-webdesign .btn {
    font-size: 0.875rem;
  }
}

/* Web Design – "Why" section */
.section-why {
  background: #f4f4f4; /* same light canvas as other sections */
}

.why-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 1rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.why-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.why-card-title {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 700;
  color: #0f1a26; /* your deep ink */
  margin: 0 0 0.5rem;
}
.why-card-title i {
  color: var(--bs-primary, #0d6efd); /* Bootstrap primary, with fallback */
  font-size: 1.05em;
}

.why-card-text {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  .why-card {
    transition: none;
  }
}

/* Web Design – Packages & Pricing */
.section-packages {
  background: #fff;
}

.package-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 1.5rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.package-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.package-title {
  font-weight: 700;
  color: #0f1a26;
  margin-bottom: 0.25rem;
}

.package-subtext {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.75rem;
}

.package-list {
  font-size: 0.85rem;
  color: #333;
  padding-left: 1rem;
  margin-bottom: 0.75rem;
}

.package-price {
  font-weight: 600;
  color: #0f1a26;
  margin-bottom: 0.75rem;
}

.package-card .btn-dark {
  background: #0f1a26;
  border: none;
}

.package-card .btn-dark:hover {
  background: #142335;
}

.package-card .btn-outline-dark {
  border-color: #0f1a26;
  color: #0f1a26;
}

.package-card .btn-outline-dark:hover {
  background: #0f1a26;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .package-card {
    padding: 1.25rem;
  }
  .package-title {
    font-size: 1rem;
  }
  .package-subtext {
    font-size: 0.85rem;
  }
}

/* Web Design – Retainers Section */
.section-retainers {
  background: #f4f4f4;
}

.section-retainers .section-subtext {
  color: #555;
}

.retainer-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 1.5rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.retainer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.retainer-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: #0f1a26;
  margin-bottom: 0.5rem;
}

.retainer-title i {
  color: var(--bs-primary, #0d6efd);
  font-size: 1.1rem;
}

.retainer-desc {
  color: #444;
  margin-bottom: 0.75rem;
}

.retainer-list {
  font-size: 0.85rem;
  color: #333;
  padding-left: 1rem;
  margin-bottom: 0.75rem;
}

.retainer-price {
  font-weight: 600;
  color: #0f1a26;
  margin-bottom: 0.75rem;
}

.retainer-card .btn-dark {
  background: #0f1a26;
  border: none;
}

.retainer-card .btn-dark:hover {
  background: #142335;
}

@media (max-width: 768px) {
  .retainer-card {
    padding: 1.25rem;
  }
  .retainer-title {
    font-size: 1rem;
  }
}

/* Web Design – Simple Process */
.section-process {
  background: #fff;
}

.process-step {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  padding: 1.25rem;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.process-step .fw-bold {
  color: #0f1a26;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.process-step p {
  color: #333;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .process-step {
    padding: 1rem;
  }
  .process-step .fw-bold {
    font-size: 1rem;
  }
}

/* Final Call-to-Action Section */
.cta-section {
  background: linear-gradient(180deg, #0f1a26 0%, #0c1722 100%);
  color: #fff;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.cta-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-light {
  background: #fff;
  color: #0f1a26;
  border-color: #fff;
}

.cta-section .btn-light:hover {
  background: #f4f4f4;
  border-color: #f4f4f4;
  color: #0b1220;
}

.cta-section .btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.cta-section .btn-outline-light:hover {
  background: #fff;
  color: #0f1a26;
  border-color: #fff;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .cta-section p {
    font-size: 0.95rem;
  }
  .cta-section .btn {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
}

/* ======================
   Footer
====================== */
footer {
  background: var(--ink);
  color: #f4f7fb;
  margin-top: auto;
  padding: 20px 0;
}
footer a {
  color: #f4f7fb !important;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}
.footer_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer_text p {
  margin: 0;
  line-height: 1.35;
  text-align: left;
  font-size: clamp(12px, 3.2vw, 14px);
}
.image-right {
  width: 120px;
  height: auto;
}
.footer_copy {
  text-align: center;
  padding: 6px 10px 14px;
}
.footer_copy p {
  margin: 4px 0 0;
  font-size: clamp(12px, 2.8vw, 13px);
  opacity: 0.9;
}

.footer_social p {
  color: #f4f7fb;
  margin-bottom: 0.4rem;
}
.footer_social a {
  color: #f4f7fb;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer_social p a {
  font-size: inherit !important;
  font-weight: inherit;
  line-height: inherit;
}
.footer_social a:hover {
  color: #00aaff;
}

/* Very small screens: stack footer content */
@media (max-width: 420px) {
  .footer_container {
    flex-direction: column;
    align-items: flex-start;
  }
  .image-right {
    align-self: center;
  }
}

/* ======================
   Desktop header/nav
====================== */
@media (min-width: 1024px) {
  /* show desktop header; hide mobile bits */
  .desktop.header {
    display: flex !important;
    flex-direction: column;
    padding-top: var(--desk-nav-h);
  }
  .header-logo,
  #menu-toggle,
  header .sidebar {
    display: none !important;
  }
  header.site-header {
    position: static;
    padding: 0;
    box-shadow: none;
  }

  .navbar_menu_d {
    order: -1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    height: var(--desk-nav-h);
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #101622 !important;
    color: #f4f4f4;
    padding: 8px 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }
  .navbar-logo_d img {
    height: 40px;
    width: auto;
    display: block;
  }
  .navbar_d ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  .navbar_d a {
    color: #f4f4f4;
    text-decoration: none;
    font-weight: 600;
  }
  .navbar_d a:hover {
    text-decoration: underline;
  }

  .image-links_d {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .image-links_d img {
    height: 24px;
    width: auto;
    border-radius: 50%;
    display: block;
  }

  /* push body down to not sit under fixed nav */
  body {
    padding-top: var(--desk-nav-h);
  }
}
@media (max-width: 1023px) {
  .navbar_menu_d {
    display: none !important;
  }
}

/* ======================
   Workshops page scoping
====================== */
.page-workshops,
.page-workshops body,
.page-workshops html {
  overflow-x: hidden;
}
.page-workshops .event_container .row {
  margin-left: 0;
  margin-right: 0;
}
.page-workshops * {
  max-width: 100%;
}
.page-workshops img,
.page-workshops video,
.page-workshops iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .page-workshops .site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
  }
  .page-workshops main {
    margin-top: var(--header-h) !important;
  }
}
.page-workshops .site-header {
  padding: 6px 12px;
}
.page-workshops .header-logo {
  height: 44px;
  width: auto;
  max-width: 180px;
  display: block;
}
.page-workshops .site-header img.header-logo {
  width: auto !important;
}

/* Workshops hero */
.workshop-hero .hero-media {
  background: #0f1a26;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.workshop-hero .hero-media img {
  width: 100%;
  height: clamp(220px, 36vh, 380px);
  object-fit: cover;
  object-position: center;
}
.workshop-hero .hero-article {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
@media (min-width: 992px) {
  .workshop-hero .hero-article {
    padding: 22px;
  }
}

.hero-section {
  background: #0f1a26;
}

.cta-section {
  background: #132031;
}

/* ======================
   Events list (cards)
====================== */
.event_container {
  background: #f8f9fb;
  border-radius: 12px;
  padding: 1.5rem;
}
.event_container article.row {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 1.5rem;
  border: 2px solid #cfd9e0;
  box-shadow:
    inset 8px 0 0 #101622,
    inset 10px 0 8px rgba(0, 0, 0, 0.2),
    0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}
.event_container article.row:hover {
  box-shadow:
    inset 8px 0 0 #0077b6,
    0 6px 16px rgba(0, 95, 140, 0.25);
  transform: translateY(-2px);
}
.event_container .event-img {
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.event_container h3 {
  font-weight: 600;
  color: #0f1a26;
  margin-bottom: 0.25rem;
}
.event_container p {
  color: #444;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Date badge */
.event_container .date-badge {
  position: absolute;
  top: 12px;
  right: 16px;
  background: #005f8c;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}
.event_container article.row:hover .date-badge {
  background: #0077b6;
}

@media (max-width: 768px) {
  .event_container article.row {
    padding: 14px 16px;
  }
  .event_container .date-badge {
    top: 8px;
    right: 12px;
    font-size: 0.8rem;
    padding: 5px 8px;
  }
}
@media (max-width: 576px) {
  .event_container article.row {
    padding-top: 48px;
  }
  .event_container .date-badge {
    top: 10px;
    right: 12px;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 999px;
    max-width: calc(100% - 24px);
    white-space: nowrap;
  }
}

/* Dark hero modifier — matches your screenshot */

/* HERO */
.hero-dark {
  background: linear-gradient(180deg, #0f1a26 0%, #0f1a26 25%, #0c1722 100%);
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}
.hero-dark h1,
.hero-dark p {
  color: #fff;
}
.hero-dark .btn-light {
  background: #fff;
  color: #0f1a26;
  border-color: #fff;
}
.hero-dark .btn-light:hover {
  background: #f4f4f4;
  border-color: #f4f4f4;
  color: #0b1220;
}

/* INSTALL TYPES */
.install-section {
  background: #f4f4f4;
}
.install-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.25rem;
  transition: all 0.25s ease;
}
.install-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}
.install-card-title {
  font-weight: 700;
  color: #0f1a26;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.5rem;
}
.install-card-desc {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.75rem;
}
.install-card-list {
  font-size: 0.85rem;
  color: #111;
  padding-left: 1rem;
  margin: 0;
}

/* PRICING */
.install-pricing {
  background: #fff;
}
.install-price-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.install-price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.install-price-card .price-static {
  font-size: 2rem;
  color: #0f1a26;
}

/* PROCESS */
.install-process {
  background: #f4f4f4;
}
.install-step {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.25s ease;
}
.install-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}
.install-step .fw-bold {
  color: #0f1a26;
}
.install-step p {
  color: #333;
}

/* ================================
 * Installations page helpers
 * ================================ */

/* Hero band at the top of the installations page */
.hero-installs {
  background: #0f1a26;
  color: #fff;
}

/* Large price text under the cards */
.price-large {
  font-size: 2rem;
}

/* Generic utility classes (were previously inline/inline-style) */
.status-input-max {
  max-width: 340px;
}

.hidden {
  display: none;
}

/* ============================
       Repairs and Upgrades
   ============================ */

.hero-repair {
  background: linear-gradient(180deg, #0f1a26 0%, #0c1722 100%);
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
}

.hero-repair h1 {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

.hero-repair p {
  color: rgba(255, 255, 255, 0.85);
}

.hero-repair .btn-light {
  background: #fff;
  color: #0f1a26;
  border-color: #fff;
}

.hero-repair .btn-light:hover {
  background: #f4f4f4;
  border-color: #f4f4f4;
  color: #0b1220;
}

/* Repairs Body */

.repairs-section {
  background: #f8f9fa;
}

.repairs-section .bg-white {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.repairs-section .bg-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.repairs-section h2 {
  color: #0f1a26;
}

.repairs-section h3 {
  color: #0f1a26;
}

.repairs-section ul {
  color: #333;
}

/* Repair Processing */

.repair-process {
  background: #fff;
}

.repair-process h2 {
  color: #0f1a26;
}

.repair-process .border {
  border-color: #dee2e6;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.repair-process .border:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.repair-process p {
  color: #444;
}

/* Repair Pricing */
.repair-pricing {
  background: #f8f9fa;
}

.repair-pricing h2 {
  color: #0f1a26;
}

.repair-pricing .bg-white {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.repair-pricing .bg-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.repair-pricing p {
  color: #444;
}

/* Ticket Tracker */

.repair-status {
  background: #fff;
  border-top: 1px solid #dee2e6;
}

.repair-status h2 {
  color: #0f1a26;
}

.repair-status p {
  color: #555;
}

.repair-status .input-group-text {
  color: #0f1a26;
}

.repair-status .form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(15, 26, 38, 0.15);
  border-color: #0f1a26;
}

.repair-status button.btn-dark {
  background: #0f1a26;
  border-color: #0f1a26;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.repair-status button.btn-dark:hover {
  background: #111d2b;
  transform: translateY(-2px);
}

/* ============================
   Fixed Header + Layout Standard
   ============================ */

/* Make sure header/nav is fixed everywhere */
header.site-header,
.navbar_menu_d {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  width: 100%;
  background: var(--ink);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Keep hero/carousel flush under nav (no gap) */
#imageCarousel {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Prevent body padding from pushing it down */
body {
  padding-top: 0 !important;
  margin-top: 0 !important;
  overflow-x: hidden; /* prevent any horizontal scrollbars */
}

/* Let main start right below nav for standard sections */
main {
  margin-top: var(--header-h);
  flex: 1;
}

/* Optional: tighten up spacing for full-bleed sections like heroes */
main > section:first-child {
  margin-top: 0 !important;
}

/* Desktop: ensure consistent nav height variable */
@media (min-width: 1024px) {
  :root {
    --desk-nav-h: 64px;
  }
  main {
    margin-top: var(--desk-nav-h);
  }
}

/* ======================
   Blog page
   ====================== */

/* Hero band at top of blog */
.blog-hero {
  background: #0f1a26;
  color: #f9fafb;
  padding: 3.25rem 0 2.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  text-align: center;
}

.blog-hero h1 {
  margin-bottom: 0.35rem;
}

.blog-hero .lead {
  margin: 0 auto;
  max-width: 640px;
  color: rgba(249, 250, 251, 0.8);
  font-size: 0.95rem;
}

/* Post "page" card */
.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #dde3ec;
  box-shadow:
    0 10px 24px rgba(15, 26, 38, 0.14),
    0 0 0 1px rgba(15, 26, 38, 0.02);
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

/* Full-height accent bar on the left (over image) */
.post-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: #0b0e8f;
  border-radius: 14px 0 0 14px;
  z-index: 3;
}

/* Hover lift */
.post-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 16px 36px rgba(15, 26, 38, 0.2),
    0 0 0 1px rgba(15, 26, 38, 0.03);
}

/* Thumbnail image (COMING SOON tile) */
/* More landscape, less vertical real estate */
.post-card .hero-media img,
.post-card .post-thumb {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 1px solid #dde3ec;
  object-fit: cover;
  /* more landscape than 16/9 – shorter vertically */
  aspect-ratio: 16 / 7;
}

/* Card body */
.post-body {
  padding: 0.9rem 1.1rem 1.05rem;
}

/* Meta line: OCT 2025 • WI-FI */
.post-meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

/* Title + link */
.post-body h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.15rem 0 0.35rem;
}

.post-body h2 a {
  color: inherit;
  text-decoration: none;
}

.post-body h2 a:hover {
  text-decoration: underline;
}

/* Excerpt */
.post-body p {
  font-size: 0.9rem;
  color: #374151;
  margin: 0;
}

/* On smaller screens, a tiny bit taller so it doesn’t look squished */
@media (max-width: 767.98px) {
  .post-card .hero-media img,
  .post-card .post-thumb {
    aspect-ratio: 16 / 9;
  }
}

/* ======================
   CTA row under posts
   ====================== */

/* subtle separation from hero band */
.blog-hero + .container {
  margin-top: 1.25rem;
}

/* Cards in the CTA row (Want updates / Upcoming workshops) */
.blog-hero + .container .bg-white.border.rounded-3 {
  border-color: #dde3ec;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.blog-hero + .container .bg-white.border.rounded-3:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Mobile tweaks for hero spacing */
@media (max-width: 768px) {
  .blog-hero {
    padding: 2.4rem 1rem 2rem;
  }
}
/* ================================
              BOOK NOW
   ================================ */

/* Hero Band */

.hero-book {
  background: #0f1a26;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0 1.25rem; /* matches py-4 */
}

.hero-book h1 {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.hero-book p {
  margin: 0;
}

/* CTA Footer — Contact Section */

.cta-footer-contact {
  background: #132031;
  color: #fff;
  text-align: center;
  padding: 1rem 0; /* matches py-3 */
}

.cta-footer-contact p {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Form card container */
.cardish {
  background: #fff;
  border: 2px solid #cfd9e0;
  border-radius: 12px;
  box-shadow:
    inset 8px 0 0 #005f8c,
    0 3px 8px rgba(0, 0, 0, 0.08);
}

/* Required field indicator */
.req::after {
  content: " *";
  color: #dc3545;
}

/* Input invalid helper – optional but useful */
.is-invalid {
  border-color: #dc3545 !important;
}

/* Full-width success + error boxes under form */
#ticketConfirm,
#ticketError {
  border-radius: 10px;
}

/* Confirmation box styling improvement */
#ticketConfirm .fw-bold i {
  color: #198754;
}

#ticketError .fw-bold i {
  color: #dc3545;
}

/* Hide honeypot field (just in case inline style is removed) */
#hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Field visibility groups */
.svc {
  transition: all 0.15s ease;
}

/* To prevent layout jumps */
.svc.d-none {
  display: none !important;
}

/* Form footer spacing */
.page-book .small.text-muted {
  line-height: 1.4;
}

/* ================================
   ABOUT / CONTACT SUPPORT STYLES
   ================================ */

/* Hero: dark band, white text */
.hero-contact {
  background: #0f1a26;
  color: #ffffff;
}

.hero-contact h1 {
  letter-spacing: 0.02em;
}

.hero-contact p {
  max-width: 720px;
  margin: 0.5rem auto 0;
  font-size: 0.98rem;
  opacity: 0.9;
}

/* Centered mission block */
.text-block-centered {
  /* bg-light already from Bootstrap */
}

.text-block-centered-inner {
  max-width: 720px;
  margin: 0 auto;
}

.text-block-centered-inner p {
  line-height: 1.6;
}

/* Image-left / text-right section */
.img-left-text-right {
  background: #ffffff;
}

.img-left-text-right-media {
  /* placeholder so it doesn’t collapse if empty */
  min-height: 120px;
}

.img-left-text-right-media img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.12);
}

.img-left-text-right-copy p {
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Three-column “Why locals choose us” cards */
.text-block-3-section-informative {
  /* bg-light + border-top from markup */
}

.text-block-3-section-informative .info-card {
  box-shadow: 0 0.1rem 0.35rem rgba(0, 0, 0, 0.06);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.text-block-3-section-informative .info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.9rem rgba(0, 0, 0, 0.12);
}

.text-block-3-section-informative .info-card-icon {
  color: #0f6fff; /* accent: tweak if you’re using another brand color */
}

/* CTA footer band */
.cta-generic-1 {
  background: #132031;
  color: #ffffff;
}

.cta-generic-1 h2 {
  margin-bottom: 0.5rem;
}

.cta-generic-1 p {
  margin-bottom: 1rem;
  opacity: 0.95;
}

.cta-generic-1 .btn-light {
  color: #132031;
  border-color: #ffffff;
}

.cta-generic-1 .btn-outline-light {
  border-width: 1px;
}

/* Small-screen tweaks */
@media (max-width: 767.98px) {
  .hero-contact {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .img-left-text-right {
    text-align: left;
  }

  .text-block-3-section-informative .info-card {
    text-align: left;
  }
}

/* -----------------------------
        HONEYPOT TRAP
------------------------------*/

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

.cct-toast-region {
  position: fixed;
  inset-block-start: 1rem;
  inset-inline-end: 1rem;
  z-index: 1080;
  display: grid;
  gap: 0.5rem;
}

.cct-toast {
  max-width: 22.5rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid rgba(20, 24, 32, 0.16);
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 0.625rem 1.875rem rgba(20, 24, 32, 0.16);
  color: #111827;
}

.cct-toast-title {
  display: block;
  margin-block-end: 0.125rem;
}
