/* ========================================
   NMD Advisory - Bundled Stylesheet
   All CSS content inlined for production
   ======================================== */

/* ===================
   1. VARIABLES
   =================== */
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* BCG X Inspired Palette: Deep, Sharp, Tech-Forward */
  --navy: #001f3f;
  /* Deep Midnight */
  --navy-2: #003366;
  --gold: #d4af37;
  /* Metallic Gold */
  --gold-2: #f3e5ab;
  --white: #ffffff;

  --bg: #f4f6f8;
  /* Clean Tech Grey */
  --surface: #ffffff;
  --ink: #0a0a0a;
  --muted: #555555;
  --line: rgba(0, 31, 63, 0.1);

  --shadow-1: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-2: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

  --radius-lg: 0px;
  /* Sharp edges */
  --radius-md: 0px;
  --radius-sm: 0px;

  --container: 1200px;
  /* Wider for enterprise feel */

  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

/* ===================
   2. BASE
   =================== */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: radial-gradient(1200px 900px at 15% 0%, rgba(201, 168, 117, .12), transparent 45%),
    radial-gradient(1200px 900px at 90% 10%, rgba(15, 38, 82, .12), transparent 55%),
    var(--bg);
  line-height: 1.45;
  /* Smooth scroll */
  scroll-behavior: smooth;
}

main {
  animation: fadeIn 0.6s ease-out forwards;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

.small {
  font-size: .9rem;
}

.muted {
  color: var(--muted);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  outline: none;
}

.proto-banner {
  background: linear-gradient(90deg, rgba(201, 168, 117, .18), rgba(11, 27, 58, .10));
  border-bottom: 1px solid rgba(201, 168, 117, .35);
  color: rgba(13, 18, 32, .85);
  font-size: .9rem;
  padding: 10px 14px;
}

/* ===================
   3. LAYOUT
   =================== */
/* Sections & Grid */
.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 48px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(11, 27, 58, .06), transparent 55%);
  border-top: 1px solid rgba(11, 27, 58, .08);
  border-bottom: 1px solid rgba(11, 27, 58, .08);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.6rem;
}

.section-head p {
  margin: 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  align-items: start;
}

.checklist {
  padding-left: 18px;
  margin: 14px 0 0;
}

.checklist li {
  margin: 8px 0;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.steps {
  margin: 0;
  padding-left: 18px;
}

.steps li {
  margin: 12px 0;
}

.step-title {
  font-weight: 800;
  color: var(--navy);
}

@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

/* ===================
   4. HEADER
   =================== */
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 251, .60);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(11, 27, 58, .08);
}

.site-header.is-elevated {
  box-shadow: 0 10px 30px rgba(11, 27, 58, .08);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.brand-name {
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--navy);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.nav a {
  padding: 10px 10px;
  border-radius: 12px;
  color: rgba(13, 18, 32, .86);
}

.nav a.active {
  background: rgba(201, 168, 117, .16);
  border: 1px solid rgba(201, 168, 117, .28);
}

.nav .nav-admin {
  border: 1px solid rgba(11, 27, 58, .18);
  background: rgba(255, 255, 255, .55);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

/* Mobile */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(11, 27, 58, .18);
  background: rgba(255, 255, 255, .65);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(11, 27, 58, .85);
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Burger animation when open */
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-nav {
  padding: 0 16px 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

/* Mobile nav is ONLY visible when not hidden */
.mobile-nav:not([hidden]) {
  max-height: 400px;
}

.mobile-nav[hidden] {
  display: block !important;
  /* Override browser default */
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(11, 27, 58, .10);
  background: rgba(255, 255, 255, .55);
  margin-top: 10px;
  font-weight: 600;
  text-align: center;
}

.mobile-nav a:first-child {
  margin-top: 0;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, .85);
  text-decoration: none;
}

@media (max-width: 980px) {

  .nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* ===================
   5. FOOTER
   =================== */
/* Footer */
.site-footer {
  padding: 26px 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 14px;
  padding: 18px 0;
}

.footer-grid a {
  display: block;
  margin: 8px 0 0;
  color: rgba(13, 18, 32, .85);
}

.footer-title {
  font-weight: 900;
  color: var(--navy);
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

.footer-name {
  font-weight: 900;
  color: var(--navy);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(11, 27, 58, .08);
  padding-top: 14px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================
   6. BUTTONS
   =================== */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  text-decoration: none !important;
}

.btn:active {
  transform: translateY(1px);
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #1a1200;
  border-color: rgba(0, 0, 0, .06);
  box-shadow: 0 14px 40px rgba(201, 168, 117, .25);
}

.btn-primary:hover {
  box-shadow: 0 18px 55px rgba(201, 168, 117, .33);
}

.btn-ghost {
  background: rgba(255, 255, 255, .65);
  border-color: rgba(11, 27, 58, .18);
  color: var(--navy);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .85);
}

.btn-danger {
  background: rgba(197, 54, 54, .10);
  border-color: rgba(197, 54, 54, .25);
  color: #9f1d1d;
}

.btn-danger:hover {
  background: rgba(197, 54, 54, .14);
}

/* Buttons: glow + lift on hover */
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow:
    0 18px 55px rgba(201, 168, 117, .33),
    0 0 0 6px rgba(201, 168, 117, .14),
    0 0 28px rgba(201, 168, 117, .35);
}

.btn-ghost:hover {
  box-shadow:
    0 16px 44px rgba(11, 27, 58, .10),
    0 0 0 6px rgba(11, 27, 58, .08);
}

.btn-danger:hover {
  background: rgba(197, 54, 54, .18);
}

/* ===================
   7. FORMS
   =================== */
.form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d1d5db;
  /* Clean grey border */
  border-radius: var(--radius-sm);
  /* Sharp */
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--ink);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 1px var(--navy);
  /* Sharp focus ring */
}

/* Checkbox */
.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 4px;
  accent-color: var(--navy);
}

/* Calendar Placeholder */
.calendar-placeholder {
  margin-top: 12px;
  border-radius: 18px;
  border: 1px dashed rgba(11, 27, 58, .18);
  background: rgba(255, 255, 255, .55);
  padding: 14px;
}

.cal-row {
  display: flex;
  gap: 8px;
}

.cal-pill {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(201, 168, 117, .16);
  border: 1px solid rgba(201, 168, 117, .25);
  text-align: center;
  font-weight: 800;
  color: var(--navy);
}

.cal-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.cal-cell {
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(11, 27, 58, .08);
}

/* ===================
   8. CARDS
   =================== */
/* Cards + UI */
.card-surface,
.feature,
.quote,
.pricing,
.panel,
.service-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  /* Sharp 0px */
  padding: 24px;
  border: 1px solid var(--line);
  /* Tech outline */
  box-shadow: var(--shadow-1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature h3,
.service-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
}

.feature .link,
.service-card .link {
  display: inline-block;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 700;
}

.quote blockquote {
  margin: 0;
  font-size: 1.02rem;
  color: rgba(13, 18, 32, .88);
}

.quote figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: .9rem;
}

.panel {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .65);
}

.panel-top h3 {
  margin: 0 0 8px;
  color: var(--navy);
}

.card-surface {
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(11, 27, 58, .10);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.card-title {
  margin: 0 0 8px;
  color: var(--navy);
}

.qa {
  display: block;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(11, 27, 58, .10);
  background: rgba(255, 255, 255, .65);
  transition: transform .12s ease, box-shadow .12s ease;
}

.qa:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(11, 27, 58, .10);
}

.qa-title {
  display: block;
  font-weight: 900;
  color: var(--navy);
}

.qa-sub {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: .92rem;
}

.pricing .price {
  font-weight: 950;
  font-size: 1.25rem;
  color: var(--navy);
}

.pricing.featured {
  border-color: rgba(201, 168, 117, .30);
  box-shadow: 0 18px 55px rgba(201, 168, 117, .22);
}

.pricing-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(13, 18, 32, .85);
}

.pricing-top h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

/* Hover grow + glow (services squares / cards) */
.feature,
.service-card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  will-change: transform;
}

.feature:hover,
.service-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(201, 168, 117, .28);
  box-shadow:
    0 18px 55px rgba(11, 27, 58, .10),
    0 0 0 6px rgba(201, 168, 117, .10);
}

/* Optional: subtle "click" feel */
.feature:active,
.service-card:active {
  transform: translateY(-2px) scale(1.01);
}

/* ===================
   9. HERO
   =================== */
/* Hero */
.hero {
  position: relative;
  padding: 56px 0 28px;
  overflow: hidden;
}

/* Background image + gradients */
.hero-bg {
  position: absolute;
  inset: -40px -40px auto -40px;
  height: 1200px;
  pointer-events: none;
  opacity: .95;

  background:
    radial-gradient(700px 420px at 20% 10%, rgba(201, 168, 117, .28), transparent 55%),
    radial-gradient(700px 420px at 80% 20%, rgba(15, 38, 82, .28), transparent 60%),
    url("../images/background-hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1.05);
  transition: transform 0.15s ease-out;
}



/* Ensure content stays above background */
.hero-grid,
.hero-copy,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 22px;
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: rgba(11, 27, 58, .9);
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(11, 27, 58, .12);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--navy);
}

.lead {
  font-size: 1.05rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.trust-item {
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(11, 27, 58, .10);
  border-radius: 16px;
  padding: 14px 14px;
}

.trust-number {
  font-weight: 900;
  color: var(--navy);
}

.trust-label {
  color: var(--muted);
  font-size: .9rem;
}

.hero-card .card-surface {
  box-shadow: var(--shadow-1);
}

/* Page hero */
.page-hero {
  padding: 40px 0 18px;
}

.page-hero h1 {
  margin: 12px 0 10px;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.0vw, 2.6rem);
  letter-spacing: -.02em;
}

/* Mobile safety */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-bg {
    transform: none !important;
  }
}

/* ===================
   10. UTILITIES
   =================== */
/* Utilities & Misc */
.toast {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11, 27, 58, .12);
  background: rgba(255, 255, 255, .75);
}

/* Global toast (for placeholder integrations) */
.toast-global {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 86px;
  z-index: 120;
  width: min(680px, calc(100% - 28px));
  box-shadow: 0 18px 55px rgba(11, 27, 58, .18);
}

/* Floating WhatsApp */
.fab {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(11, 27, 58, .14);
  padding: 12px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--navy);
}

.fab-dot {
  width: 10px;
  height: 10px;
  background: rgba(201, 168, 117, .95);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(201, 168, 117, .20);
}

.cta {
  padding: 44px 0;
  background: linear-gradient(135deg, rgba(11, 27, 58, .08), rgba(201, 168, 117, .14));
  border-top: 1px solid rgba(11, 27, 58, .10);
  border-bottom: 1px solid rgba(11, 27, 58, .10);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-inner h2 {
  margin: 0;
  color: var(--navy);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.divider {
  height: 1px;
  background: rgba(11, 27, 58, .10);
  margin: 16px 0;
}

.quick-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.mini-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 27, 58, .12);
  background: rgba(255, 255, 255, .62);
  color: rgba(11, 27, 58, .9);
  font-weight: 700;
  font-size: .88rem;
}

@media (max-width: 980px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================
   11. ADMIN STYLES
   =================== */
.admin-body {
  background: radial-gradient(1200px 900px at 20% 0%, rgba(201, 168, 117, .12), transparent 48%),
    radial-gradient(1200px 900px at 90% 10%, rgba(15, 38, 82, .12), transparent 55%),
    var(--bg);
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(246, 247, 251, .75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 27, 58, .10);
}

.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-main {
  padding: 26px 0 52px;
}

.admin-shell {
  margin-top: 10px;
}

.admin-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.admin-top h1 {
  margin: 8px 0 0;
  color: var(--navy);
}

.admin-top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.stat {
  padding: 18px;
}

.stat-label {
  color: var(--muted);
  font-weight: 800;
}

.stat-value {
  font-size: 2rem;
  font-weight: 950;
  color: var(--navy);
  margin-top: 6px;
}

.table-wrap {
  overflow: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
}

.table th,
.table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid rgba(11, 27, 58, .10);
  font-size: .95rem;
}

.table th {
  background: rgba(11, 27, 58, .06);
  color: var(--navy);
  font-weight: 950;
}

.stack {
  display: grid;
  gap: 10px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 27, 58, .10);
  background: rgba(255, 255, 255, .65);
  color: rgba(11, 27, 58, .85);
  font-weight: 800;
  font-size: .85rem;
}

/* Info list for contact page */
.info-list {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.info-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(11, 27, 58, .08);
}

.info-label {
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.info-value {
  color: rgba(13, 18, 32, .85);
}

/* Service card extras */
.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.service-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}

/* Booking grid */
.booking-grid {
  align-items: start;
}

/* Card footer */
.card-footer {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

/* ===================
   12. ENHANCED MOBILE
   =================== */
@media (max-width: 640px) {

  /* Larger touch targets on mobile */
  .btn {
    padding: 14px 18px;
    font-size: 1rem;
  }

  /* Stack form rows on small screens */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Improve hero readability on mobile */
  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.15;
  }

  .lead {
    font-size: 1rem;
  }

  /* Better card padding on mobile */
  .card-surface,
  .feature,
  .quote,
  .pricing,
  .panel,
  .service-card {
    padding: 16px;
  }

  /* Improve pricing cards on mobile */
  .pricing-list {
    padding-left: 16px;
    font-size: .95rem;
  }

  /* Better CTA section on mobile */
  .cta {
    padding: 32px 0;
  }

  .cta-inner {
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  /* Admin dashboard mobile improvements */
  .admin-top {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-top-actions {
    justify-content: stretch;
  }

  .admin-top-actions .btn {
    flex: 1;
  }

  /* Grid improvements for very small screens */
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Service CTA stack on mobile */
  .service-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .service-cta .btn {
    width: 100%;
  }

  /* Footer improvements */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* WhatsApp FAB improvements */
  .fab {
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
    font-size: .9rem;
  }

  /* Table scrollable on mobile */
  .table {
    font-size: .85rem;
  }

  .table th,
  .table td {
    padding: 10px 8px;
  }
}