/* Albyn MOT — Unit 9 family shell (Hab scenic warmth) + Chelsea logo / MOT blue accents */
:root {
  --hc-navy: #0B1F3A;
  --hc-navy-dark: #0A1830;
  --hc-navy-mid: #1A365D;
  --hc-gold: #C9A227;
  --hc-gold-bright: #D4AF37;
  --hc-gold-deep: #A8861C;
  --hc-orange: var(--hc-gold); /* keep Hab gold warmth for scenic accents */
  /* Chelsea flyer / logo MOT blues — CTAs, links, prices, active nav */
  --albyn-mot: #1E6FFF;
  --albyn-mot-bright: #3AA0FF;
  --albyn-mot-mid: #497db1;
  --albyn-mot-soft: #5c8dbd;
  --albyn-mot-light: #9dc2e5;
  --hc-cream: #F7F3EA;
  --hc-cream-deep: #EBE3D4;
  --hc-saltire: #005EB8;
  --hc-light: #F4F1EA;
  --hc-sidebar-width: 20vw;
  --hc-sidebar-min-width: 260px;
  --hc-font-serif: 'Montserrat', 'Segoe UI', Roboto, Arial, sans-serif; /* Albyn automotive sans; Hab serif dropped as primary */
  --hc-font-sans: 'Montserrat', 'Segoe UI', Roboto, Arial, sans-serif;
}

body {
  font-family: var(--hc-font-sans);
  font-weight: 400;
  color: #1a2430;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: var(--hc-navy);
  padding-bottom: 4.25rem;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('../img/scotland-hero.png') center / cover no-repeat;
  pointer-events: none;
}

a { text-decoration: none; }

/* Saltire ribbon / micro-badge */
.saltire-ribbon {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(90deg, var(--hc-saltire) 0%, #0b4f8a 55%, var(--hc-navy) 100%);
  color: #fff;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.saltire-ribbon img {
  width: 28px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.saltire-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 94, 184, 0.12);
  border: 1px solid rgba(0, 94, 184, 0.35);
  color: var(--hc-navy);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}
.saltire-badge img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 1px;
}

/* Tartan divider strips */
.tartan-strip {
  height: 10px;
  background-image: url('../img/tartan-navy-gold.png');
  background-size: 220px auto;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.48;
  border: none;
  margin: 0;
}
.tartan-rule {
  height: 8px;
  width: 100%;
  max-width: 160px;
  margin: 0.55rem auto 1.1rem;
  background-image: url('../img/tartan-navy-gold.png');
  background-size: 160px auto;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.55;
  border-radius: 2px;
}
.tartan-rule-left {
  margin-left: 0;
}
.section-title-wrap {
  text-align: center;
  margin-bottom: 1.75rem;
}
.section-title-wrap h2 {
  font-weight: 800;
  color: var(--hc-navy);
  margin-bottom: 0;
}
.section-title-wrap .lead-soft {
  color: #4a5a6a;
  margin-top: 0.55rem;
  margin-bottom: 0;
}

/* Mobile logo header */
.mobile-logo-header {
  background-color: var(--hc-navy-dark);
  padding: 1.35rem 1rem 1.1rem;
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  position: relative;
}
.mobile-logo-header::after {
  content: '';
  display: block;
  height: 6px;
  margin: 0.85rem -1rem -1.1rem;
  background-image: url('../img/tartan-navy-gold.png');
  background-size: 200px auto;
  opacity: 0.45;
}
.mobile-logo-header a { width: 168px; }
.mobile-logo-header img {
  display: block;
  width: 168px;
  max-width: 168px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45))
          drop-shadow(0 0 10px rgba(30, 111, 255, 0.28));
}

/* Navbar */
.navbar-hc {
  background-color: var(--hc-navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 1rem;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff !important;
  white-space: normal;
  text-align: center;
  max-width: 70%;
  line-height: 1.2;
}
.navbar-brand span { color: var(--albyn-mot-bright); }
.navbar-hc .nav-link {
  color: #e8eef3 !important;
  font-weight: 500;
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.navbar-hc .nav-link.active,
.navbar-hc .nav-link:hover {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.1);
}
.navbar-hc .nav-link.active {
  background: linear-gradient(135deg, var(--albyn-mot) 0%, var(--albyn-mot-bright) 100%);
  color: #fff !important;
}
.navbar-toggler { border-color: rgba(255, 255, 255, 0.25); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-book {
  background: linear-gradient(135deg, var(--albyn-mot) 0%, var(--albyn-mot-bright) 100%);
  border-color: var(--albyn-mot);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(30, 111, 255, 0.35);
}
.btn-book:hover {
  background: linear-gradient(135deg, #1558d6 0%, var(--albyn-mot) 100%);
  border-color: #1558d6;
  color: #fff;
}
.btn-enquire {
  background: linear-gradient(135deg, var(--albyn-mot) 0%, var(--albyn-mot-bright) 100%);
  border-color: var(--albyn-mot);
  color: #fff;
  font-weight: 700;
}
.btn-enquire:hover {
  background: #1558d6;
  border-color: #1558d6;
  color: #fff;
}
.btn-outline-gold {
  background: transparent;
  border: 2px solid var(--hc-gold);
  color: #fff;
  font-weight: 700;
}
.btn-outline-gold:hover {
  background: var(--hc-gold);
  border-color: var(--hc-gold);
  color: var(--hc-navy-dark);
}

@media (min-width: 992px) {
  body {
    margin-left: max(var(--hc-sidebar-width), var(--hc-sidebar-min-width));
    padding-bottom: 0;
  }
  .main-wrapper > .hero .container,
  .page-header .container,
  section > .container,
  .cta-band > .container,
  footer.site-footer > .container {
    padding-left: calc(1.5rem + var(--bs-gutter-x) * 0.5);
  }
  .navbar-hc {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--hc-sidebar-width);
    min-width: var(--hc-sidebar-min-width);
    height: 100vh;
    z-index: 1030;
    overflow-y: auto;
    padding: 2rem 1.25rem 1.5rem;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background:
      linear-gradient(180deg, rgba(10, 31, 61, 0.78) 0%, rgba(11, 28, 51, 0.74) 45%, rgba(10, 31, 61, 0.82) 100%),
      url('../img/scotland-glencoe-motorhome.png') center / cover no-repeat;
    background-color: transparent;
  }
  .navbar-hc::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background-image: url('../img/tartan-navy-gold.png');
    background-size: cover;
    opacity: 0.4;
    pointer-events: none;
  }
  .navbar-hc .container,
  .navbar-hc .container-fluid {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    align-items: stretch;
  }
  .sidebar-brand-box { text-align: center; margin-bottom: 2rem; }
  .sidebar-logo {
    display: block;
    max-width: 92%;
    width: auto;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45))
            drop-shadow(0 0 12px rgba(30, 111, 255, 0.22));
    transition: transform 0.3s ease;
  }
  .sidebar-logo:hover { transform: scale(1.04); }
  .sidebar-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    margin-top: 0.85rem;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
    line-height: 1.25;
  }
  .sidebar-title span { color: var(--albyn-mot-bright); }
  .sidebar-subtitle {
    color: #b3c9dd;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    text-align: center;
  }
  .navbar-hc .navbar-collapse {
    display: flex !important;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
  }
  .navbar-hc .navbar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .navbar-hc .navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
  }
  .sidebar-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    width: 100%;
  }
  .sidebar-footer a { color: #fff; }
  .main-wrapper {
    margin-left: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  .navbar-brand { max-width: none; }
  .sticky-book-bar { display: none !important; }
}

@media (max-width: 991.98px) {
  .navbar-hc {
    position: sticky;
    top: 0;
    z-index: 1030;
  }
  .navbar-hc .container-fluid { position: relative; }
  .navbar-hc .navbar-brand.d-lg-none {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .navbar-hc .navbar-toggler { margin-left: auto; }
  .navbar-hc .navbar-collapse {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    z-index: 1029;
    padding: 0.75rem 1rem 1.1rem;
    background:
      linear-gradient(165deg, rgba(10, 31, 61, 0.78) 0%, rgba(11, 28, 51, 0.78) 55%, rgba(10, 31, 61, 0.82) 100%),
      url('../img/scotland-glencoe-motorhome.png') center / cover no-repeat;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
    border-bottom: 3px solid rgba(201, 162, 39, 0.55);
    backdrop-filter: blur(2px);
  }
  .navbar-hc .navbar-collapse .nav-link {
    text-shadow: 0 1px 3px rgba(0,0,0,0.45);
  }
  /* Mobile top logo band — same Highland scenery */
  .mobile-logo-header {
    background:
      linear-gradient(165deg, rgba(10, 31, 61, 0.74) 0%, rgba(11, 28, 51, 0.76) 100%),
      url('../img/scotland-glencoe-motorhome.png') center / cover no-repeat;
  }
  .main-wrapper { margin-left: 0; }
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 33vh;
  background: linear-gradient(
    165deg,
    rgba(18, 32, 48, 0.32) 0%,
    rgba(11, 61, 99, 0.42) 45%,
    rgba(55, 35, 18, 0.38) 100%
  );
  color: #fff;
  padding: 1.35rem 1rem 1.5rem;
  overflow: hidden;
}
.hero-saltire-corner {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  width: 42px;
  height: 28px;
  opacity: 0.92;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
  z-index: 2;
}
.hero .container,
.hero .hero-inner {
  position: relative;
  z-index: 1;
}
.hero-logo {
  display: block;
  width: min(210px, 38vw);
  max-width: 220px;
  height: auto;
  aspect-ratio: auto;
  margin: 0 auto 0.85rem;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55))
          drop-shadow(0 2px 8px rgba(30, 111, 255, 0.3))
          drop-shadow(0 0 1px rgba(58, 160, 255, 0.45));
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}
.hero-kicker img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 1px;
}
.hero-headline {
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  font-weight: 800;
  line-height: 1.25;
  max-width: 36rem;
  margin: 0 auto 0.55rem;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.hero-tagline {
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 34rem;
  margin: 0 auto;
  color: #f5f8fa;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.hero-refund {
  font-size: 0.88rem;
  margin-top: 0.65rem;
  opacity: 0.95;
}
.hero .btn-lg {
  padding: 0.55rem 1.15rem;
  font-size: 1rem;
}
@media (max-width: 991.98px) {
  .hero {
    min-height: 42vh;
    padding: 1.6rem 1rem 1.75rem;
  }
  .hero-logo {
    width: min(200px, 52vw);
    max-width: 210px;
  }
}

.main-wrapper { position: relative; }
.main-wrapper::before {
  content: '';
  position: absolute;
  top: 38vh;
  left: 50%;
  transform: translateX(-50%);
  width: min(72vw, 560px);
  height: min(72vw, 560px);
  background: url('../img/albyn-logo-cutout.png') center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.main-wrapper > * {
  position: relative;
  z-index: 1;
}

/* Page header (inner) */
.page-header {
  position: relative;
  isolation: isolate;
  text-align: left;
  background: linear-gradient(
    165deg,
    rgba(18, 32, 48, 0.5) 0%,
    rgba(11, 61, 99, 0.62) 50%,
    rgba(42, 28, 18, 0.52) 100%
  );
  color: #fff;
  padding: 2.75rem 0 2.5rem;
  min-height: 24vh;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background-image: url('../img/tartan-navy-gold.png');
  background-size: 220px auto;
  opacity: 0.5;
  z-index: 2;
}
.page-header::after {
  content: '';
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  width: 48px;
  height: 32px;
  background: url('../img/saltire.svg') center / contain no-repeat;
  opacity: 0.9;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  z-index: 2;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-weight: 800; }

/* Sections — dense navy/cream, kill bland white */
section {
  padding: 3.25rem 0;
  background-color: var(--hc-cream);
}
section.section-navy {
  background: linear-gradient(160deg, var(--hc-navy) 0%, var(--hc-navy-dark) 100%);
  color: #fff;
}
section.section-navy h2,
section.section-navy .section-title-wrap h2 { color: #fff; }
section.section-navy .lead-soft { color: #c9d7e4; }
section.section-cream-deep { background-color: var(--hc-cream-deep); }
section.section-light { background-color: var(--hc-light); }
section.section-white { background-color: #faf8f4; }

/* Saltire watermark on pale / white / cream sections — breaks up white space
   Keep logo watermark on .main-wrapper; Saltire is additional behind pale panels.
   Do NOT apply to navy, hero, CTA band, or footer. */
section.section-white,
section.section-light,
section.section-cream-deep,
section.bg-light-hc,
.bg-light-hc,
section:not(.section-navy):not(.cta-band):not(.hero):not(.trust-strip) {
  position: relative;
  overflow: hidden;
}
section.section-white::after,
section.section-light::after,
section.section-cream-deep::after,
section.bg-light-hc::after,
.bg-light-hc::after,
section:not(.section-navy):not(.cta-band):not(.hero):not(.trust-strip)::after {
  content: '';
  position: absolute;
  top: -8%;
  right: -6%;
  width: min(78vmin, 580px);
  height: min(78vmin, 580px);
  background: url('../img/saltire.svg') center / contain no-repeat;
  opacity: 0.085;
  pointer-events: none;
  z-index: 0;
}
section.section-white > *,
section.section-light > *,
section.section-cream-deep > *,
section.bg-light-hc > *,
.bg-light-hc > *,
section:not(.section-navy):not(.cta-band):not(.hero):not(.trust-strip) > * {
  position: relative;
  z-index: 1;
}

.bg-light-hc { background-color: var(--hc-light); }

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--hc-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.card-hc {
  border: none;
  box-shadow: 0 4px 18px rgba(8, 44, 72, 0.12);
  border-radius: 12px;
  height: 100%;
  background: #fff;
  border-top: 3px solid var(--hc-gold);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-top-width: 3px;
  background: #FFFEFA;
}
.card-navy {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  color: #fff;
  height: 100%;
}
.card-navy .text-muted { color: #c9d7e4 !important; }

.coverage-list li { padding: 0.35rem 0; }

.cta-band {
  background: linear-gradient(90deg, var(--hc-gold) 0%, var(--hc-gold-bright) 55%, var(--hc-gold-deep) 100%);
  color: var(--hc-navy-dark);
  padding: 2.75rem 0;
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background-image: url('../img/tartan-navy-gold.png');
  background-size: 220px auto;
  opacity: 0.45;
}
.cta-band h2 { font-weight: 800; }
.cta-refund {
  font-size: 0.95rem;
  margin-top: 0.75rem;
  font-weight: 600;
}

footer.site-footer {
  background-color: var(--hc-navy-dark);
  color: #cfd9e2;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
  position: relative;
}
footer.site-footer::before {
  content: '';
  display: block;
  height: 8px;
  margin: -3rem 0 2rem;
  background-image: url('../img/tartan-navy-gold.png');
  background-size: 220px auto;
  opacity: 0.4;
}
footer.site-footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}
footer.site-footer a { color: #cfd9e2; }
footer.site-footer a:hover { color: var(--hc-orange); }
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.25rem;
  font-size: 0.9rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--hc-navy);
  color: #fff;
}
.accordion-button:focus { box-shadow: none; }
.form-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}

.trust-strip {
  background: var(--hc-navy-dark);
  color: #fff;
  border-bottom: none;
}
.trust-strip span {
  white-space: nowrap;
  color: #e8eef3;
}
.trust-strip .bi-check-circle-fill { color: var(--hc-orange) !important; }

.price-table-wrap {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(8, 44, 72, 0.14);
  overflow: hidden;
  border: 1px solid rgba(11, 61, 99, 0.1);
}
.price-table thead {
  background-color: var(--hc-navy);
  color: #fff;
}
.price-table thead th {
  border: none;
  padding: 0.9rem 1.1rem;
  font-weight: 600;
}
.price-table tbody td {
  padding: 0.85rem 1.1rem;
  border-color: #e8eef3;
}
.price-table tbody td:last-child,
.price-table .price,
.menu-price, .price-val,
.price-tag {
  color: var(--albyn-mot);
  font-weight: 700;
}
.price-table-wrap {
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.bundle-callout {
  background: linear-gradient(90deg, #FBF6E8, #F0E2B8);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  font-weight: 600;
  color: var(--hc-navy);
  margin-bottom: 1.25rem;
}
.text-hc-navy { color: var(--hc-navy) !important; }

.service-tabs .nav-link {
  background: #e8eef3;
  color: var(--hc-navy);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
}
.service-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--albyn-mot) 0%, var(--albyn-mot-bright) 100%);
  color: #fff;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--hc-gold);
  color: var(--hc-navy-dark);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inspect-list { padding-left: 1.1rem; }
.inspect-list li { margin-bottom: 0.55rem; }

/* Define / why / checked blocks */
.define-panel {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(8, 44, 72, 0.12);
  padding: 1.75rem 1.5rem;
  border-left: 5px solid var(--hc-saltire);
  position: relative;
}
.define-panel .saltire-float {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 24px;
  opacity: 0.85;
}
.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.35rem 1.2rem;
  height: 100%;
  box-shadow: 0 4px 16px rgba(8, 44, 72, 0.1);
  border-bottom: 3px solid var(--hc-saltire);
}
.why-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--hc-navy);
}
.fail-list {
  background: var(--hc-navy);
  color: #fff;
  border-radius: 14px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 8px 24px rgba(8, 44, 72, 0.2);
}
.fail-list h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.fail-list ol {
  margin: 0;
  padding-left: 1.2rem;
}
.fail-list li { margin-bottom: 0.55rem; }

.check-grid .check-item {
  background: #fff;
  border-radius: 10px;
  padding: 1rem 1.1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  box-shadow: 0 3px 12px rgba(8, 44, 72, 0.08);
  height: 100%;
}
.check-grid .check-item i {
  color: var(--hc-orange);
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

/* Scotland story mosaic */
.scotland-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .scotland-mosaic { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .scotland-mosaic { grid-template-columns: 1fr; }
}
.mosaic-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 10px 28px rgba(10, 31, 61, 0.28);
  border: 1px solid rgba(201, 162, 39, 0.28);
  transform: translateY(0);
}
.mosaic-card:nth-child(2),
.mosaic-card:nth-child(5) {
  transform: translateY(12px);
}
@media (max-width: 575.98px) {
  .mosaic-card:nth-child(2),
  .mosaic-card:nth-child(5) { transform: none; }
}
.mosaic-card > img:not(.mosaic-saltire) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  display: block;
}
.mosaic-card .mosaic-saltire {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  width: 32px !important;
  height: 21px !important;
  min-height: 0 !important;
  object-fit: cover;
  z-index: 2;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}
.mosaic-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(transparent, rgba(8, 28, 48, 0.88));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.mosaic-card .mosaic-flag-chip {
  width: 36px !important;
  height: 24px !important;
  object-fit: cover;
  border-radius: 2px;
}

/* Ribbon + story flag chips (tasteful, not cluttered) */
.saltire-ribbon {
  justify-content: flex-start;
  flex-wrap: wrap;
}
.ribbon-flag-chips {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
  padding-left: 0.75rem;
}
.ribbon-flag-chips .flag-chip {
  width: 28px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.35);
  border: 1px solid rgba(201, 162, 39, 0.45);
}
.ribbon-flag-chips .flag-chip-lion {
  width: 30px;
  height: 18px;
}
.scotland-flag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 1rem;
}
.flag-chip-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: #f5f0e4;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
}
.flag-chip-pill img {
  width: 22px;
  height: 14px;
  object-fit: cover;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.35);
}



/* Our place / RV bay */
.place-panel {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(8, 44, 72, 0.14);
  height: 100%;
}
.place-panel .place-body { padding: 1.35rem 1.25rem; }
.place-panel h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--hc-navy);
}
.bay-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.bay-specs span {
  background: var(--hc-cream);
  border: 1px solid rgba(11, 61, 99, 0.15);
  color: var(--hc-navy);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.season-strip {
  background: linear-gradient(90deg, var(--hc-navy-dark), var(--hc-saltire));
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  font-weight: 600;
}
.season-strip .bi { color: var(--hc-orange); }

.ppi-callout {
  background: #fff;
  border: 2px solid var(--hc-orange);
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.22);
  height: 100%;
}
.ppi-callout h3 {
  font-weight: 800;
  color: var(--hc-navy);
  font-size: 1.2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.trust-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}
.phoenix-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.95);
  border-radius: 999px;
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  color: var(--hc-navy);
  font-size: 0.78rem;
  font-weight: 700;
}
.phoenix-badge img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
}

/* Sticky mobile enquire bar */
.sticky-book-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1040;
  background: var(--hc-navy-dark);
  color: #fff;
  padding: 0.55rem 0.75rem;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-top: 3px solid var(--albyn-mot);
}
.sticky-book-bar .sticky-price {
  font-weight: 800;
  font-size: 0.92rem;
  white-space: nowrap;
  color: var(--albyn-mot-bright);
}
.sticky-book-bar .btn {
  padding: 0.4rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
}
.sticky-book-bar a.tel-link {
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
}

.faq-home .accordion-item {
  border: none;
  margin-bottom: 0.55rem;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(8, 44, 72, 0.08);
}

/* Pin Book Now + phone in desktop sidebar — always on screen */
@media (min-width: 992px) {
  .navbar-hc .navbar-collapse {
    min-height: 0;
    overflow: hidden;
  }
  .navbar-hc .navbar-nav {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.15rem;
  }
  .sidebar-footer {
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    margin-top: auto !important;
    padding-top: 1rem;
    padding-bottom: 0.25rem;
    background: linear-gradient(180deg, transparent 0%, var(--hc-navy) 18%);
    z-index: 2;
  }
  .sidebar-footer .btn-book {
    font-size: 1.05rem;
    padding: 0.75rem 1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(30, 111, 255, 0.4);
  }
  .sidebar-footer .sidebar-phone {
    font-size: 1.05rem;
    font-weight: 800;
  }
  .sidebar-footer .sidebar-refund {
    font-size: 0.72rem;
    color: #b3c9dd;
    margin-top: 0.45rem;
  }
}


/* Flyer theme — typography & gold accents */
h1, h2, h3, .hero-headline, .sidebar-title, .navbar-brand,
.section-title-wrap h2, .page-header h1, .cta-band h2,
.why-card h3, .fail-list h3, .place-panel h3, .ppi-callout h3 {
  font-family: var(--hc-font-sans);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-headline, .page-header h1, .section-title-wrap h2, .cta-band h2 {
  letter-spacing: 0.03em;
}
.cta-band h2, .cta-band p, .cta-band .cta-refund { color: var(--hc-navy-dark); }
.cta-band .btn-book {
  background: var(--hc-navy-dark);
  border-color: var(--hc-navy-dark);
  color: var(--albyn-mot-bright);
}
.cta-band .btn-book:hover {
  background: var(--hc-navy);
  border-color: var(--hc-navy);
  color: #fff;
}
.text-hc-gold { color: var(--hc-gold) !important; }
.check-grid .check-item i,
.trust-strip .bi-check-circle-fill,
.season-strip .bi {
  color: var(--hc-gold) !important;
}
.ppi-callout {
  border-color: var(--hc-gold);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.22);
}
.define-panel {
  border-left-color: var(--hc-gold);
}
.card-hc:hover {
  box-shadow: 0 8px 28px rgba(10, 31, 61, 0.16);
  border-color: rgba(201, 162, 39, 0.45);
}
footer.site-footer a:hover { color: var(--hc-gold-bright); }
.sidebar-footer .btn-book {
  box-shadow: 0 4px 14px rgba(30, 111, 255, 0.4) !important;
}


/* Small Schmid Phoenix parent badge — footer branding only */
.phoenix-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 auto 0.75rem;
  padding: 0.45rem 0.9rem 0.45rem 0.45rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 999px;
  color: #e8eef3;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.phoenix-footer-brand img {
  width: 36px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.phoenix-footer-brand strong { color: var(--albyn-mot-bright); font-weight: 700; }
.footer-copy { color: #9aadb8; font-size: 0.85rem; }

/* ========== Woven Scottish scenery (not just a gallery) ========== */
.scotland-mosaic.mosaic-slim {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .scotland-mosaic.mosaic-slim { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .scotland-mosaic.mosaic-slim { grid-template-columns: 1fr; }
}
.scotland-mosaic.mosaic-slim .mosaic-card { min-height: 180px; }
.scotland-mosaic.mosaic-slim .mosaic-card > img:not(.mosaic-saltire) { min-height: 180px; }
.scotland-mosaic.mosaic-slim .mosaic-card:nth-child(2),
.scotland-mosaic.mosaic-slim .mosaic-card:nth-child(5) { transform: none; }

/* Soft scenic wash behind pale section headers / panels */
.scenic-wash {
  position: relative;
  isolation: isolate;
}
.scenic-wash::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--scenic-img);
  background-size: cover;
  background-position: var(--scenic-pos, center);
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
}
.scenic-wash > * { position: relative; z-index: 1; }

/* Alternating split: photo card + copy */
.scenic-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: stretch;
}
.scenic-split.split-reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}
.scenic-split.split-reverse .scenic-photo { order: 2; }
.scenic-split.split-reverse .scenic-copy { order: 1; }
@media (max-width: 767.98px) {
  .scenic-split,
  .scenic-split.split-reverse {
    grid-template-columns: 1fr;
  }
  .scenic-split.split-reverse .scenic-photo,
  .scenic-split.split-reverse .scenic-copy { order: unset; }
}
.scenic-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 10px 28px rgba(10, 31, 61, 0.22);
  border: 1px solid rgba(201, 162, 39, 0.32);
}
.scenic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 240px;
}
.scenic-photo .scenic-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.7rem 1rem;
  background: linear-gradient(transparent, rgba(8, 28, 48, 0.88));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.scenic-photo .mosaic-saltire {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  width: 28px;
  height: 18px;
  object-fit: cover;
  z-index: 2;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

/* Thin scenic strip between sections */
.scenic-strip {
  height: 88px;
  background-image: var(--scenic-img);
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 2px solid rgba(201, 162, 39, 0.35);
  border-bottom: 2px solid rgba(201, 162, 39, 0.35);
}
.scenic-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,31,61,0.45), rgba(10,31,61,0.15), rgba(10,31,61,0.45));
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .scenic-strip { height: 64px; }
}

/* Our place side accents */
.place-scenery-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 575.98px) {
  .place-scenery-row { grid-template-columns: 1fr; }
}
.place-scenery-row .scenic-photo { min-height: 160px; }
.place-scenery-row .scenic-photo img { min-height: 160px; }

/* Trips teaser on home */
.trips-teaser {
  margin-top: 1.75rem;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201, 162, 39, 0.4);
  text-align: center;
}
.trips-teaser h3 {
  font-family: var(--hc-font-serif);
  font-weight: 700;
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.trips-teaser p { color: #c9d7e4; margin-bottom: 0.85rem; }
.trips-teaser .btn-book { color: var(--hc-navy-dark); }

/* ========== Trips page ========== */
.trip-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}
.trip-filters button {
  border: 1px solid rgba(10, 31, 61, 0.2);
  background: #fff;
  color: var(--hc-navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transition: all 0.15s ease;
  cursor: pointer;
}
.trip-filters button:hover,
.trip-filters button.active {
  background: var(--hc-navy);
  color: #fff;
  border-color: var(--hc-navy);
}
.trip-filters button.active {
  background: linear-gradient(135deg, var(--albyn-mot) 0%, var(--albyn-mot-bright) 100%);
  color: #fff;
  border-color: var(--albyn-mot);
}

.trip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 991.98px) {
  .trip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .trip-grid { grid-template-columns: 1fr; }
}

.trip-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 31, 61, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.28);
  border-top: 3px solid var(--hc-gold);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 31, 61, 0.18);
}
.trip-card-media {
  position: relative;
  height: 150px;
  overflow: hidden;
}
.trip-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trip-card-media .region-pill {
  position: absolute;
  bottom: 0.55rem;
  left: 0.55rem;
  background: rgba(10, 31, 61, 0.85);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 39, 0.45);
}
.trip-card-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.trip-card-body h3 {
  font-family: var(--hc-font-serif);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--hc-navy);
  margin-bottom: 0.45rem;
}
.trip-card-body .why {
  color: #3a4a5a;
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  flex: 1;
}
.trip-tip {
  background: var(--hc-cream);
  border-left: 3px solid var(--hc-gold);
  padding: 0.55rem 0.7rem;
  font-size: 0.82rem;
  color: #2a3a4a;
  margin-bottom: 0.85rem;
  border-radius: 0 6px 6px 0;
}
.trip-tip strong { color: var(--hc-navy); }
.trip-card .btn-book {
  width: 100%;
  font-size: 0.88rem;
  padding: 0.55rem 0.75rem;
}

.trips-disclaimer {
  max-width: 720px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: #5a6a7a;
}
.trips-season-nudge {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 14px;
  background: linear-gradient(160deg, var(--hc-navy), var(--hc-navy-dark));
  color: #fff;
  text-align: center;
  border: 1px solid rgba(201, 162, 39, 0.4);
}
.trips-season-nudge h3 {
  font-family: var(--hc-font-serif);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.trips-season-nudge p { color: #c9d7e4; margin-bottom: 1rem; }

.trip-card.is-hidden { display: none; }

.trip-map-wrap iframe {
  box-shadow: 0 4px 14px rgba(10, 31, 61, 0.15);
  background: #e8eef3;
}
.trip-map-actions .btn-outline-primary {
  border-color: var(--hc-navy);
  color: var(--hc-navy);
  font-weight: 600;
}
.trip-map-actions .btn-outline-primary:hover {
  background: var(--hc-navy);
  color: #fff;
}
.page-header.scenic-wash::before { opacity: 0.22; }

.trip-highlights,
.trip-wildlife {
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.7rem 0.55rem 1.15rem;
  font-size: 0.82rem;
  color: #2a3a4a;
  border-radius: 8px;
  background: rgba(10, 31, 61, 0.04);
}
.trip-highlights { border-left: 3px solid var(--hc-navy); }
.trip-wildlife { border-left: 3px solid #2d6a4f; background: rgba(45, 106, 79, 0.06); }
.trip-highlights li,
.trip-wildlife li { margin-bottom: 0.2rem; }
.trip-highlights strong,
.trip-wildlife strong { color: var(--hc-navy); display: block; margin-bottom: 0.25rem; margin-left: -0.45rem; }
.trip-card-body .btn-book { margin-top: auto; }
.trip-count-note {
  text-align: center;
  font-size: 0.9rem;
  color: #3a4a5a;
  margin-bottom: 1rem;
}
.trip-count-note strong { color: var(--hc-navy); }


/* Web Desk QA — a11y */
.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 2000;
  padding: 0.5rem 0.85rem;
  background: #0b3d63;
  color: #fff !important;
  border-radius: 0.35rem;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:not(:focus):not(:focus-visible) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
}
:focus-visible {
  outline: 3px solid var(--albyn-mot-bright);
  outline-offset: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Dual Book Now (sidebar + sticky) ---- */
.btn-book-service {
  background: transparent;
  border: 2px solid var(--albyn-mot-bright);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
  box-shadow: none;
}
.btn-book-service:hover,
.btn-book-service:focus {
  background: var(--albyn-mot);
  border-color: var(--albyn-mot);
  color: #fff;
}
.sidebar-dual-book {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.sidebar-book-micro {
  font-size: 0.68rem;
  line-height: 1.25;
  color: #b3c9dd;
  margin: 0.2rem 0 0.15rem;
  opacity: 0.92;
}
@media (min-width: 992px) {
  .sidebar-footer .btn-book,
  .sidebar-footer .btn-book-service {
    font-size: 0.92rem;
    padding: 0.62rem 0.75rem;
    letter-spacing: 0.02em;
    text-transform: none;
  }
  .sidebar-footer .btn-book {
    text-transform: none;
  }
}
.sticky-book-bar-dual {
  flex-wrap: nowrap;
  gap: 0.4rem;
}
.sticky-book-bar-dual .sticky-hab {
  flex: 1 1 auto;
  min-width: 0;
}
.sticky-book-bar-dual .sticky-svc {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.35rem 0.5rem;
  font-size: 0.78rem;
}
.sticky-book-bar-dual .tel-link {
  flex: 0 0 auto;
  font-size: 0.75rem !important;
}

/* ---- Self-serve VRM service builder ---- */
.service-builder {
  position: relative;
}
.service-builder .uk-plate-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.uk-plate {
  display: inline-flex;
  align-items: stretch;
  background: #f5c518;
  border: 3px solid #111;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  overflow: hidden;
  max-width: 100%;
}
.uk-plate-blue {
  background: #003399;
  color: #fff;
  width: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0.35rem 0.2rem 0.45rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.uk-plate-blue .bi-stars {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}
.uk-plate-input {
  border: none !important;
  background: #f5c518 !important;
  color: #111 !important;
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem 0.9rem !important;
  min-width: 11rem;
  box-shadow: none !important;
}
.uk-plate-input::placeholder {
  color: rgba(17,17,17,0.35);
  letter-spacing: 0.12em;
  font-weight: 700;
}
.uk-plate-input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px #111 !important;
}
.pkg-card {
  border: 2px solid rgba(10, 31, 61, 0.12);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  cursor: pointer;
  height: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  background: #fff;
}
.pkg-card:hover {
  border-color: rgba(201, 162, 39, 0.55);
}
.pkg-card.is-selected {
  border-color: var(--albyn-mot);
  background: rgba(30, 111, 255, 0.08);
  box-shadow: 0 4px 16px rgba(30, 111, 255, 0.18);
}
.pkg-card .form-check-input {
  margin-top: 0.2rem;
}
.service-items-grid .form-check {
  padding: 0.35rem 0.25rem 0.35rem 1.75rem;
  border-radius: 6px;
}
.service-items-grid .form-check:hover {
  background: rgba(10, 31, 61, 0.04);
}
.service-builder-summary {
  position: sticky;
  top: 1rem;
  border: 2px solid rgba(201, 162, 39, 0.45);
  border-radius: 14px;
  background: #fff;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 6px 22px rgba(10, 31, 61, 0.1);
}
.service-builder-summary h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--hc-navy-dark);
}
.service-builder-summary .summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
}
.service-builder-summary .summary-list li {
  padding: 0.2rem 0;
  border-bottom: 1px dashed rgba(10,31,61,0.1);
}
.service-builder-summary .summary-list li:last-child { border-bottom: none; }
.service-builder-rules {
  font-size: 0.82rem;
  color: #4a5d70;
}
.service-builder-rules li { margin-bottom: 0.35rem; }
.service-builder-book-sticky {
  position: sticky;
  bottom: 4.5rem;
  z-index: 20;
  background: linear-gradient(180deg, transparent, #fff 28%);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
@media (min-width: 992px) {
  .service-builder-book-sticky { bottom: 1rem; }
}
.vehicle-confirm-panel {
  border: 1px dashed rgba(10, 31, 61, 0.25);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  background: rgba(10, 31, 61, 0.03);
}
.api-honest-note {
  font-size: 0.82rem;
  color: #5a6d80;
}

/* Vehicle category pills (motor / caravan / trailer) */
.svc-type-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 576px) {
  .svc-type-pills {
    grid-template-columns: repeat(3, 1fr);
  }
}
.svc-type-pill {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border: 2px solid rgba(10, 31, 61, 0.12);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  height: 100%;
}
.svc-type-pill .form-check-input {
  margin-top: 0.15rem;
  margin-right: 0.45rem;
  float: left;
}
.svc-type-pill-title {
  font-weight: 800;
  color: var(--hc-navy-dark);
  display: block;
}
.svc-type-pill-sub {
  font-size: 0.78rem;
  color: #5a6d80;
  display: block;
  padding-left: 1.5rem;
}
.svc-type-pill:hover {
  border-color: rgba(201, 162, 39, 0.55);
}
.svc-type-pill.is-selected {
  border-color: var(--albyn-mot);
  background: rgba(30, 111, 255, 0.08);
  box-shadow: 0 4px 16px rgba(30, 111, 255, 0.18);
}


/* Albyn MOT logo — transparent cutout, dominant fill (no white plate) */
.sidebar-brand-box {
  background: transparent !important;
  box-shadow: none !important;
}
.sidebar-logo {
  max-width: 100% !important;
  width: 100% !important;
  max-height: none !important;
  height: auto !important;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 14px rgba(30, 111, 255, 0.28));
}
.sidebar-brand-box .sidebar-title,
.sidebar-brand-box .sidebar-subtitle {
  /* Logo already carries ALBYN MOT + Class 4·5·7 — avoid doubling */
  display: none !important;
}
.mobile-logo-header {
  background: transparent !important;
  background-color: transparent !important;
}
.mobile-logo-header a {
  width: min(92vw, 420px) !important;
  max-width: 100%;
  display: inline-block;
}
.mobile-logo-header img {
  max-height: none !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain;
  background: transparent !important;
}
.hero-logo {
  display: block !important;
  width: min(920px, 92%) !important;
  max-width: 92% !important;
  height: auto !important;
  margin: 0 auto 1rem !important;
  object-fit: contain !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.6))
          drop-shadow(0 2px 10px rgba(30, 111, 255, 0.35));
}
.hero {
  min-height: 48vh !important;
  padding-top: 1.75rem !important;
  padding-bottom: 2rem !important;
}
@media (max-width: 991.98px) {
  .hero { min-height: 52vh !important; }
  .hero-logo { width: min(96vw, 560px) !important; max-width: 96% !important; }
}
.site-footer img[alt="Albyn MOT logo"] {
  width: auto;
  max-height: 48px;
  object-fit: contain;
  background: transparent;
}


/* ---- Albyn MOT brand accents (Chelsea official logo + flyer blues) ---- */
a:not(.btn):not(.nav-link):not(.navbar-brand) { color: var(--albyn-mot); }
a:not(.btn):not(.nav-link):not(.navbar-brand):hover { color: var(--albyn-mot-bright); }
.btn-outline-primary {
  border-color: var(--albyn-mot);
  color: var(--albyn-mot);
}
.btn-outline-primary:hover {
  background: var(--albyn-mot);
  border-color: var(--albyn-mot);
  color: #fff;
}
.trip-card-body h3,
.trips-teaser h3,
.trips-season-nudge h3 {
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 800;
}
.service-builder-summary {
  border-color: rgba(30, 111, 255, 0.4);
}
.albyn-bay-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(10, 31, 61, 0.22);
  border: 1px solid rgba(201, 162, 39, 0.28);
}
.albyn-bay-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

/* btn-book-service readable on cream AND navy */
.btn-book-service {
  color: var(--albyn-mot) !important;
  border-color: var(--albyn-mot) !important;
}
.navbar-hc .btn-book-service,
.section-navy .btn-book-service,
.sticky-book-bar .btn-book-service,
.cta-band .btn-book-service {
  color: #fff !important;
  border-color: var(--albyn-mot-bright) !important;
}
.navbar-hc .btn-book-service:hover,
.section-navy .btn-book-service:hover,
.sticky-book-bar .btn-book-service:hover {
  background: var(--albyn-mot) !important;
  color: #fff !important;
}
