@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
  /* ---- A* brand palette (aligned with A* Number Plates) ---- */
  --brand-green: #1a1f16;   /* deep brand green / near black */
  --dark-green:  #1a2e05;   /* dark green: sections & footer */
  --accent-green:#4d7c0f;   /* accent / link green */
  --gold:        #ffcc00;   /* gold CTA / plate yellow */
  --gold-light:  #ffd840;   /* gold highlight */
  --gold-dark:   #edbe00;   /* gold shadow */
  --white:       #ffffff;
  --border:      #e5e7eb;   /* light border */
  --footer-muted:#cccccc;   /* footer muted text */

  /* ---- Role aliases used across the stylesheet ----
     --green       = visible/medium green (links, accents, hover fills)
     --green-deep  = deepest brand green / near-black (headings & brand text)
     --green-dark  = dark green (deep text, section/footer backgrounds) */
  --green:      #4d7c0f;
  --green-dark: #1a2e05;
  --green-deep: #1a1f16;
  --dark:       #1a2e05;
  --black:      #1a1f16;
  --grey:       #f4f5f2;   /* off-white content background */
  --soft-grey:  #eef0ec;
  --mid-grey:   #e5e7eb;   /* light border (aligned with --border) */
  --text:       #2b2b2b;   /* main body text */
  --muted:      #555555;   /* muted body text fallback */
  --radius: 20px;
  --shadow: 0 18px 45px rgba(12, 74, 41, 0.10);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Keep the header readable where backdrop blur is unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  font-size: 15px;
}

.nav a {
  color: var(--green-deep);
}

.nav a:hover {
  color: var(--green);
}

.nav .btn-nav-cta {
  color: var(--green-deep);
}

.nav .btn-nav-cta:hover {
  color: var(--green-deep);
}

.btn-nav-cta {
  background: var(--gold);
  color: var(--green-deep);
  min-height: 42px;
  padding: 0 20px;
  font-size: 14px;
  /* gold-dark (#EDBE00) shadow + subtle gold-light (#FFD840) top highlight */
  box-shadow: 0 6px 16px rgba(237, 190, 0, 0.45), inset 0 1px 0 rgba(255, 216, 64, 0.85);
}

.btn-nav-cta:hover {
  background: var(--gold-light);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--mid-grey);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  color: var(--green-deep);
}

.hero {
  padding: 64px 0;
  background:
    radial-gradient(circle at top right, rgba(255, 204, 0, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--grey) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--green-deep);
  font-weight: 900;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

h2 {
  color: var(--green-deep);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

h3 {
  color: var(--green-deep);
  font-weight: 800;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 19px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--green-deep);
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--green);
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
}

.btn-light {
  background: var(--gold);
  color: var(--green-deep);
}

.btn-light:hover {
  background: var(--gold-dark);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 13px;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.hero-card p {
  color: var(--muted);
  line-height: 1.6;
}

.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.mini-list div {
  border: 1px solid var(--mid-grey);
  border-radius: 16px;
  padding: 16px;
  background: #fcfcfa;
}

.mini-list strong,
.mini-list span {
  display: block;
}

.mini-list span {
  color: var(--muted);
  margin-top: 5px;
  font-size: 14px;
}

.section {
  padding: 60px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.6;
}

.cards {
  display: grid;
  gap: 20px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--grey);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 26px rgba(12, 74, 41, 0.05);
}

.card p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  background: var(--grey);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.split-grid > div {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 34px;
}

.split-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  color: var(--green);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 28px;
}

.step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
  margin-bottom: 18px;
}

.step p {
  color: var(--muted);
  line-height: 1.6;
}

.cta {
  padding: 60px 0;
  background: var(--green-dark);
  color: var(--white);
}

.cta h2,
.cta .eyebrow {
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  background: var(--dark-green);
  color: var(--footer-muted);
}

/* Trust strip */
.footer-trust {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 26px 0;
}

.footer-trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.trust-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-block .trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 204, 0, 0.16);
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.trust-block strong {
  display: block;
  color: var(--white);
  font-size: 16px;
}

.trust-block span {
  color: var(--footer-muted);
  font-size: 13px;
}

/* Footer columns */
.footer-cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 46px 0 34px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}

.footer-col .footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 14px;
}

.footer-col p {
  color: var(--footer-muted);
  line-height: 1.7;
  margin: 0 0 10px;
  font-size: 14px;
}

.footer-col a {
  display: block;
  color: var(--footer-muted);
  padding: 6px 0;
  font-size: 14px;
  font-weight: 600;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-contact {
  color: var(--white);
  font-weight: 800;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 20px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 14px;
}

.footer-inner a {
  color: var(--footer-muted);
  font-weight: 700;
  font-size: 13px;
}

.footer-inner a:hover {
  color: var(--gold);
}

@media (max-width: 850px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 4%;
    right: 4%;
    background: var(--white);
    border: 1px solid var(--mid-grey);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav .btn-nav-cta {
    margin-top: 6px;
  }

  .hero-grid,
  .split-grid,
  .three,
  .steps {
    grid-template-columns: 1fr;
  }

  .cta-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-trust-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }

  .hero {
    padding: 48px 0;
  }

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 540px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}
.page-hero {
  padding: 80px 0;
  background:
    radial-gradient(circle at top right, rgba(15, 95, 53, 0.10), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f2 100%);
}

.page-hero-inner {
  max-width: 860px;
}

.page-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.notice-box {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.notice-box p {
  color: var(--muted);
  line-height: 1.7;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.price-card.featured {
  border: 2px solid rgba(242, 196, 0, 0.8);
  box-shadow: var(--shadow);
}

.price-top p {
  color: var(--muted);
  line-height: 1.65;
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(15, 95, 53, 0.08);
  color: var(--green);
  font-weight: 800;
  font-size: 12px;
}

.gold-badge {
  background: rgba(242, 196, 0, 0.22);
  color: var(--black);
}

.price {
  color: var(--green-dark);
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

@media (max-width: 950px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.form-layout {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 28px;
  align-items: start;
}

.booking-form,
.booking-side-card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  font-weight: 800;
  color: var(--black);
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--mid-grey);
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: #fcfcfa;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(77, 124, 15, 0.30);
  border-color: var(--accent-green);
}

textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.booking-side-card p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .form-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact page extras */
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-card p {
  margin-bottom: 8px;
}

.contact-line {
  display: block;
  font-weight: 800;
  color: var(--green-dark);
  word-break: break-word;
}

a.contact-line:hover {
  color: var(--green);
}

/* Contact page two-column layout */
.contact-hero {
  text-align: center;
}

.contact-hero .page-hero-inner {
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.contact-details-card {
  background: var(--soft-grey);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-intro {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.contact-detail {
  padding: 14px 0;
  border-bottom: 1px solid var(--mid-grey);
}

.contact-detail:first-of-type {
  border-top: 1px solid var(--mid-grey);
}

.contact-detail h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  margin: 0 0 6px;
}

.contact-legal {
  font-weight: 600;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.contact-wa-btn {
  width: 100%;
  margin-top: 24px;
}

.contact-form-card {
  background: var(--white);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Guides page */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 26px rgba(12, 74, 41, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 204, 0, 0.6);
  box-shadow: var(--shadow);
}

.guide-card .badge {
  margin-bottom: 0;
}

.guide-card h3 {
  margin: 0;
  font-size: 21px;
}

.guide-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.guide-card .text-link {
  margin-top: auto;
}

@media (max-width: 950px) {
  .guides-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .guides-grid {
    grid-template-columns: 1fr;
  }
}

/* Admin login page */
.admin-page {
  background:
    radial-gradient(circle at top right, rgba(255, 204, 0, 0.18), transparent 35%),
    radial-gradient(circle at bottom left, rgba(77, 124, 15, 0.10), transparent 35%),
    #f6f7f3;
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.admin-card {
  width: min(440px, 100%);
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-top: 6px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 34px;
  text-align: center;
}

.admin-logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.admin-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.admin-title {
  font-size: clamp(34px, 8vw, 44px);
  margin-bottom: 12px;
}

.admin-subtitle {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.admin-form {
  text-align: left;
}

.admin-login-btn {
  width: 100%;
  margin-top: 6px;
}

.admin-note {
  color: var(--muted);
  font-size: 13px;
  margin: 20px 0 14px;
}

.admin-back {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

.admin-back:hover {
  color: var(--green-dark);
}

/* ===== Admin dashboard (light, professional theme) ===== */
.admin-dash-body {
  background: #f6f7f3;
  color: var(--green-deep);
}

.admin-shell {
  display: grid;
  grid-template-columns: 256px 1fr;
  min-height: 100vh;
}

/* Sidebar — clean & light */
.admin-sidebar {
  background: var(--white);
  color: var(--green-deep);
  border-right: 1px solid var(--border);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--green-deep);
}

.admin-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin-nav a {
  padding: 11px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
}

.admin-nav a:hover {
  background: var(--grey);
  color: var(--green-deep);
}

.admin-nav a.active {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 6px 16px rgba(237, 190, 0, 0.35);
}

.admin-sidebar-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.admin-back-link {
  color: var(--muted);
  font-weight: 700;
}

.admin-back-link:hover {
  color: var(--accent-green);
}

.admin-logout {
  color: var(--accent-green);
  font-weight: 800;
}

/* Main area */
.admin-main {
  padding: 30px 34px 50px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.admin-page-title {
  color: var(--green-deep);
  font-size: clamp(28px, 4vw, 40px);
  margin: 0;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 6px 16px rgba(237, 190, 0, 0.35);
}

.btn-gold:hover {
  background: var(--gold-light);
}

.admin-demo-note {
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid rgba(255, 204, 0, 0.45);
  color: var(--green-deep);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 26px;
}

/* Stats cards — clean white */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(12, 74, 41, 0.05);
}

.stat-label {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.stat-value {
  color: var(--green-deep);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

/* Content layout */
.admin-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items: start;
}

.admin-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(12, 74, 41, 0.05);
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-head h2 {
  color: var(--green-deep);
  font-size: 20px;
  margin: 0;
}

.panel-sub {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* Table — white, soft row borders */
.table-scroll {
  overflow-x: auto;
}

.enquiry-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 760px;
}

.enquiry-table th {
  text-align: left;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}

.enquiry-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}

.enquiry-table tbody tr:hover td {
  background: var(--grey);
}

/* Status badges — readable on white */
.status-badge {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

.status-new {
  background: rgba(255, 204, 0, 0.20);
  color: #8a6d00;
}

.status-contacted {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
}

.status-quoted {
  background: rgba(124, 58, 237, 0.12);
  color: #6d28d9;
}

.status-booked {
  background: rgba(77, 124, 15, 0.16);
  color: #3f6212;
}

.status-completed {
  background: rgba(21, 128, 61, 0.14);
  color: #15803d;
}

.status-cancelled {
  background: rgba(220, 38, 38, 0.12);
  color: #b91c1c;
}

/* Row actions */
.row-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.btn-mini {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  background: var(--white);
  color: var(--green-deep);
  border: 1px solid var(--border);
  white-space: nowrap;
  cursor: pointer;
}

.btn-mini:hover {
  background: var(--grey);
  border-color: #d4d8dc;
}

.btn-mini-wa {
  background: rgba(77, 124, 15, 0.10);
  color: #3f6212;
  border-color: rgba(77, 124, 15, 0.30);
}

.btn-mini-wa:hover {
  background: rgba(77, 124, 15, 0.18);
}

.btn-mini-book {
  background: rgba(255, 204, 0, 0.16);
  color: #8a6d00;
  border-color: rgba(255, 204, 0, 0.45);
}

.btn-mini-book:hover {
  background: rgba(255, 204, 0, 0.26);
}

/* Selected enquiry panel — clean white side card */
.selected-panel {
  position: sticky;
  top: 30px;
}

.detail-block {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.detail-block h3 {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.detail-block p {
  color: var(--text);
  margin: 0 0 4px;
  line-height: 1.5;
}

.detail-block p strong {
  color: var(--green-deep);
}

.admin-notes-text {
  color: var(--muted) !important;
  line-height: 1.6 !important;
}

.panel-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.panel-actions .btn {
  width: 100%;
}

/* Responsive */
@media (max-width: 1050px) {
  .admin-content {
    grid-template-columns: 1fr;
  }

  .selected-panel {
    position: static;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .admin-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .admin-sidebar-footer {
    margin-top: 0;
    flex-direction: row;
    gap: 16px;
    border-top: 0;
    padding-top: 0;
  }

  .admin-main {
    padding: 24px 18px 40px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Guide article pages ===== */
.guide-article {
  max-width: 800px;
}

.guide-back {
  display: inline-block;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 22px;
}

.guide-back:hover {
  color: var(--green-dark);
}

.guide-article h2 {
  margin-top: 40px;
  font-size: clamp(24px, 3vw, 32px);
}

.guide-article h3 {
  margin-top: 28px;
  font-size: 20px;
}

.guide-article p,
.guide-article li {
  color: var(--text);
  line-height: 1.8;
  font-size: 17px;
}

.guide-article ul {
  padding-left: 22px;
  margin: 0 0 22px;
}

.guide-article li {
  margin-bottom: 10px;
}

.guide-article .lead {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.75;
}

.guide-article .notice-box {
  margin: 32px 0;
}

.guide-article .notice-box p {
  color: var(--muted);
  font-size: 16px;
}

/* Related links block */
.related-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.related-card {
  background: var(--grey);
  border: 1px solid var(--mid-grey);
  border-radius: 16px;
  padding: 20px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.related-card:hover {
  border-color: rgba(255, 204, 0, 0.6);
  transform: translateY(-3px);
}

.related-card strong {
  display: block;
  color: var(--green-deep);
  font-size: 16px;
  margin-bottom: 6px;
}

.related-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .related-links {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   HOMEPAGE PREMIUM POLISH (sprint 1)
   All rules scoped under .home so other pages are unaffected.
   ============================================================ */

/* ----- Hero ----- */
.home .hero {
  padding: 86px 0 78px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 204, 0, 0.20), transparent 38%),
    radial-gradient(circle at 4% 92%, rgba(21, 102, 58, 0.07), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f6f7f3 100%);
}

.home .hero-grid {
  gap: 50px;
}

/* Brand-family pill above the headline */
.home .eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21, 102, 58, 0.08);
  border-radius: 999px;
  padding: 8px 15px;
  margin-bottom: 20px;
}

.home .eyebrow-pill::before {
  content: "★";
  color: var(--gold);
  font-size: 12px;
}

.home .hero-content h1 {
  margin-bottom: 18px;
}

/* Trust chips row */
.home .trust-row {
  gap: 12px;
  margin-top: 28px;
}

.home .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  font-size: 13px;
  color: var(--green-deep);
  box-shadow: 0 6px 16px rgba(12, 74, 41, 0.05);
}

.home .trust-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Hero enquiry card */
.home .hero-card {
  position: relative;
  overflow: hidden;
  padding: 36px 34px 34px;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(12, 74, 41, 0.14);
}

.home .hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.home .hero-card-tag {
  display: inline-block;
  background: rgba(255, 204, 0, 0.18);
  color: var(--green-deep);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.home .hero-card h2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.home .hero-card-btn {
  width: 100%;
  margin-top: 24px;
  box-shadow: 0 10px 22px rgba(255, 204, 0, 0.32);
}

/* ----- Section rhythm & centred headings ----- */
.home .section {
  padding: 74px 0;
}

.home .section-heading {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

/* ----- Service cards ----- */
.home .service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(12, 74, 41, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(12, 74, 41, 0.13);
  border-color: rgba(255, 204, 0, 0.55);
}

.home .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(21, 102, 58, 0.08);
  color: var(--green);
  margin-bottom: 20px;
}

.home .card-icon svg {
  width: 27px;
  height: 27px;
}

.home .card-kicker {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
  margin-bottom: 6px;
}

.home .service-card h3 {
  margin-bottom: 10px;
}

/* The paragraph grows so every card's link lines up — equal heights */
.home .service-card > p {
  flex-grow: 1;
}

.home .card-link {
  margin-top: 20px;
  color: var(--green);
  font-weight: 800;
  font-size: 15px;
}

.home .card-link:hover {
  color: var(--gold-dark);
}

/* ----- Steps ----- */
.home .steps {
  gap: 22px;
}

.home .step {
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(12, 74, 41, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home .step:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(12, 74, 41, 0.10);
}

.home .step span {
  width: 44px;
  height: 44px;
  box-shadow: 0 8px 18px rgba(255, 204, 0, 0.4);
}

/* ----- Premium CTA (floating deep-green card) ----- */
.home .cta {
  background: var(--white);
  padding: 18px 0 80px;
}

.home .cta-inner {
  align-items: center;
  padding: 50px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 204, 0, 0.22), transparent 46%),
    linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 30px 60px rgba(9, 61, 34, 0.32);
}

.home .cta-copy {
  max-width: 640px;
}

.home .cta-sub {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.6;
  margin: 14px 0 0;
  font-size: 16px;
}

.home .cta-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.home .cta-hints span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 13px;
}

.home .cta-btn {
  flex-shrink: 0;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

/* ----- Homepage mobile polish ----- */
@media (max-width: 850px) {
  .home .hero {
    padding: 56px 0 52px;
  }

  .home .hero-grid {
    gap: 34px;
  }

  .home .section {
    padding: 54px 0;
  }

  .home .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 26px;
  }

  .home .cta-btn {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .home .hero-card,
  .home .service-card,
  .home .step {
    padding: 24px;
  }

  .home .trust-chip {
    font-size: 12px;
    padding: 9px 13px;
  }

  .home .cta-inner {
    padding: 28px 20px;
    border-radius: 22px;
  }
}

/* ============================================================
   SITEWIDE PREMIUM POLISH (sprint 2)
   Inner pages: tuning, security, booking, contact, guides,
   guide articles. Homepage keeps its own .home overrides.
   ============================================================ */

/* ----- Buttons: subtle tactile lift everywhere ----- */
.btn {
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-light:hover,
.btn-nav-cta:hover {
  transform: translateY(-1px);
}

/* ----- Navbar logo sits clean (no box / no clipping) ----- */
.logo img {
  background: transparent;
}

/* ----- Inner-page hero ----- */
.page-hero {
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 204, 0, 0.16), transparent 38%),
    radial-gradient(circle at 8% 100%, rgba(21, 102, 58, 0.07), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f6f7f3 100%);
}

.page-hero-inner h1 {
  margin-bottom: 16px;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

/* ----- Service / info cards (tuning, security) ----- */
.card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(12, 74, 41, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(12, 74, 41, 0.12);
  border-color: rgba(255, 204, 0, 0.5);
}

.card strong {
  display: inline-block;
  margin-top: 12px;
  color: var(--green-deep);
  font-weight: 900;
}

/* ----- Pricing cards (security) — easy to compare ----- */
.pricing-grid {
  gap: 24px;
}

.price-card {
  border-radius: 22px;
  padding: 30px;
  gap: 22px;
  box-shadow: 0 14px 34px rgba(12, 74, 41, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 48px rgba(12, 74, 41, 0.13);
}

/* price-top grows so every price and button lines up across cards */
.price-card .price-top {
  flex-grow: 1;
}

.price-card h3 {
  font-size: 20px;
}

.price-card .btn {
  width: 100%;
}

/* Featured options stand out tastefully (gold edge + accent bar) */
.price-card.featured {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 204, 0, 0.9);
  box-shadow: 0 26px 52px rgba(12, 74, 41, 0.14);
}

.price-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

/* ----- Forms (booking + contact): polished & trustworthy ----- */
input,
select,
textarea {
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(21, 102, 58, 0.10);
}

.booking-form,
.contact-details-card {
  border-radius: 24px;
}

/* ----- CTA band → floating premium green card (inner pages) ----- */
.cta {
  background: var(--white);
  padding: 16px 0 78px;
}

.cta-inner {
  padding: 48px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 204, 0, 0.22), transparent 46%),
    linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 30px 60px rgba(9, 61, 34, 0.30);
}

.cta .btn-light {
  flex-shrink: 0;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.20);
}

/* ----- Guide cards: clean advice/blog feel ----- */
.guide-card {
  border-radius: 22px;
  padding: 30px;
}

.guide-card .text-link::after {
  content: " →";
}

/* ----- Inner-page mobile polish ----- */
@media (max-width: 850px) {
  .page-hero {
    padding: 54px 0 48px;
  }

  .cta-inner {
    padding: 34px 24px;
  }
}

@media (max-width: 540px) {
  .card,
  .price-card,
  .guide-card {
    padding: 24px;
  }

  .cta-inner {
    padding: 26px 20px;
    border-radius: 22px;
  }
}

/* ============================================================
   SEO SPRINT 1 — footer brand lockup + clickable service cards
   ============================================================ */

/* Footer brand lockup — high contrast on the dark green footer
   (replaces the low-contrast green transparent logo) */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.footer-brand-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 204, 0, 0.16);
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.footer-brand-name {
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
}

/* Clickable tuning service cards (anchors styled as cards) */
.service-card-link {
  display: flex;
  flex-direction: column;
}

.service-card-link > p {
  flex-grow: 1;
}

.service-card-link .card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

.service-card-link .card-more::after {
  content: "→";
  transition: transform 0.15s ease;
}

.service-card-link:hover .card-more {
  color: var(--gold-dark);
}

.service-card-link:hover .card-more::after {
  transform: translateX(3px);
}

/* ============================================================
   PHASE 2 — security service detail panels + comparison cards
   ============================================================ */

/* Price / positioning panel on product service pages */
.service-spec {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 26px;
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-left: 6px solid var(--gold);
  border-radius: 18px;
  padding: 22px 26px;
  margin: 26px 0;
  box-shadow: 0 12px 30px rgba(12, 74, 41, 0.05);
}

.service-price {
  font-size: 30px;
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1;
}

.service-price small {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 5px;
}

.service-spec .badge {
  margin-bottom: 0;
}

/* Clickable price cards (security.html) keep the same look as anchors */
a.price-card {
  color: inherit;
}

.price-card .price-card-btn {
  width: 100%;
}

/* Comparison cards (security range) */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.compare-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(12, 74, 41, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.compare-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(12, 74, 41, 0.12);
  border-color: rgba(255, 204, 0, 0.55);
}

.compare-type {
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
  margin-bottom: 6px;
}

.compare-card h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.compare-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--green-deep);
  margin: 4px 0 10px;
}

.compare-card p {
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
  margin: 0 0 14px;
}

.compare-card .card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

.compare-card .card-more::after {
  content: "→";
  transition: transform 0.15s ease;
}

.compare-card:hover .card-more {
  color: var(--gold-dark);
}

.compare-card:hover .card-more::after {
  transform: translateX(3px);
}

@media (max-width: 950px) {
  .compare-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FAQ ACCORDIONS — FINAL (native <details> / <summary>)
   Clean A* Number Plates list style. Overrides all earlier FAQ
   styling. No boxed cards, no clipping, just thin dividers.
   ============================================================ */

/* Optional standalone wrapper (used where a FAQ is its own section).
   On service/guide pages the FAQ lives inside .guide-article, so the
   list below stands on its own without these wrappers. */
.faq-section {
  padding: 72px 0;
}

.faq-container {
  max-width: 820px;
}

.faq-section h2 {
  margin-bottom: 24px;
  color: var(--green-deep);
}

/* The clean list */
.faq-list {
  max-width: 760px;
  border-top: 1px solid rgba(0, 64, 36, 0.16);
  margin: 16px 0 8px;
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 64, 36, 0.16);
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 800;
  font-size: 17px;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  color: var(--accent-green);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-answer {
  padding: 0 0 20px;
  max-width: 720px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================================
   SECURITY DECISION GUIDE ("Which security setup do you need?")
   Deliberately styled differently from the pricing card grid:
   dark-green header with a gold top accent, pill product links,
   and no price/buy button.
   ============================================================ */
.setup-guide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.setup-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(12, 74, 41, 0.05);
}

.setup-card-head {
  background: var(--green-deep);
  border-top: 4px solid var(--gold);
  padding: 18px 22px;
}

.setup-card-head h3 {
  margin: 0;
  color: var(--white);
  font-size: 19px;
}

.setup-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 22px 24px;
}

.setup-label {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-green);
}

.setup-best {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}

.setup-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.setup-products a {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(77, 124, 15, 0.10);
  border: 1px solid rgba(77, 124, 15, 0.28);
  color: var(--accent-green);
  font-weight: 800;
  font-size: 13px;
}

.setup-products a:hover {
  background: var(--accent-green);
  color: var(--white);
}

.setup-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.setup-note strong {
  color: var(--green-deep);
}

.setup-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 6px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.setup-cta p {
  margin: 0;
  max-width: 560px;
  color: var(--green-deep);
  font-weight: 700;
  line-height: 1.5;
}

.setup-cta .hero-actions {
  margin: 0;
}

@media (max-width: 850px) {
  .setup-guide {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   COMPANY DETAILS — footer legal line + contact business block
   ============================================================ */
.footer-legal {
  font-size: 12px;
  line-height: 1.6;
  margin-top: 12px;
  opacity: 0.82;
}

/* Email link inside the brand footer column reads like the address,
   not like a stacked nav link. */
.footer-col p a {
  display: inline;
  padding: 0;
  font-weight: 700;
}

.footer-col p a:hover {
  color: var(--gold);
}

/* ============================================================
   BOOKING FORM — required markers, submission choice, steps
   ============================================================ */

/* Small gold asterisk on required field labels */
.req::after {
  content: " *";
  color: var(--gold-dark);
  font-weight: 900;
}

/* Submission method (WhatsApp / Email) choice */
.submit-method {
  margin: 4px 0 18px;
}

.submit-method .form-legend {
  font-weight: 800;
  color: var(--black);
  font-size: 14px;
  margin-bottom: 10px;
}

.method-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.method-option {
  flex: 1 1 160px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--mid-grey);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fcfcfa;
  cursor: pointer;
  font-weight: 700;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.method-option:hover {
  border-color: var(--accent-green);
}

.method-option input {
  width: auto;
  margin: 0;
  accent-color: var(--accent-green);
}

.method-option:has(input:checked) {
  border-color: var(--accent-green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(21, 102, 58, 0.10);
}

/* Numbered, on-brand steps in the booking side card */
.booking-steps {
  list-style: none;
  counter-reset: step;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.booking-steps li {
  counter-increment: step;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid var(--mid-grey);
  border-radius: 16px;
  padding: 14px 16px;
  background: #fcfcfa;
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}

.booking-steps li::before {
  content: counter(step);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(237, 190, 0, 0.4);
}
