@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root,
[data-theme="light"] {
  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #475569;
  --text-subtle: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --card-hover: #ffffff;
  --surface-muted: rgba(148, 163, 184, 0.12);
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --shadow-sm: 0 8px 20px rgba(2, 6, 23, 0.06);
  --primary: #ff6a00;
  --primary-ink: #ffffff;
  --ring: rgba(255, 106, 0, 0.35);
  --nav-link: rgba(71, 85, 105, 0.95);
  --input-bg: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #0f172a;
  --fg: #f1f5f9;
  --muted: #94a3b8;
  --text-subtle: #cbd5e1;
  --border: #334155;
  --card: #1e293b;
  --card-hover: #273449;
  --surface-muted: rgba(30, 41, 59, 0.55);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.3);
  --primary: #ff8533;
  --ring: rgba(255, 133, 51, 0.25);
  --nav-link: #cbd5e1;
  --input-bg: #1e293b;
  color-scheme: dark;
}

*{ box-sizing: border-box; }
html, body{
  height: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body{
  margin: 0;
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
}
.site,
main{
  max-width: 100%;
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(1120px, calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.navbar-container {
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

.btn{
  appearance: none;
  border: 1px solid transparent;
  background: var(--primary);
  color: var(--primary-ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(255,106,0,.28), 0 4px 12px rgba(15,23,42,.1);
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover{ transform: translateY(-4px); filter: brightness(1.1); box-shadow: 0 20px 42px rgba(255,106,0,.35); }
.btn:active{ transform: translateY(-1px); }
.btn.outline{
  background: transparent;
  color: var(--fg);
  border: 2px solid rgba(15,23,42,.18);
  box-shadow: 0 6px 15px rgba(15,23,42,.06);
}
.btn.outline:hover {
  background: rgba(15,23,42,.04);
  border-color: var(--fg);
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
}
.btn.secondary{
  background: var(--card);
  color: var(--fg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .btn.secondary {
  background: var(--card);
  color: var(--fg);
  border-color: var(--border);
}
.btn.book-now{
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(15,23,42,.22);
}
.btn.book-now:hover{
  box-shadow: 0 20px 36px rgba(15,23,42,.28);
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,106,0,.10);
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.site{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.navbar{
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px);
}
.navbar-inner{
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
  max-width: 100%;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 900;
  letter-spacing: -.02em;
  white-space: normal;
}
.brand-mark{
  width: 40px; height: 40px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--primary-ink);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 30px rgba(255,106,0,.22);
  font-weight: 900;
  flex-shrink: 0;
  align-self: center;
}
.brand span b{ color: var(--primary); }

.nav-toggle{
  display: none;
  flex-shrink: 0;
}

.nav-links{
  display: none;
  align-items: center;
  gap: 26px;
  color: var(--nav-link);
  font-weight: 700;
  font-size: 14px;
}

@media (min-width: 1150px){
  .nav-links{
    display: flex;
  }
  .navbar-inner {
    position: relative;
    z-index: 10;
    pointer-events: none;
  }
  .navbar-inner .brand,
  .navbar-inner .nav-right {
    pointer-events: auto;
    position: relative;
    z-index: 11;
  }
  #primaryNav.nav-links {
    display: flex !important;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 26px;
    width: auto;
    max-width: min(720px, calc(100% - 420px));
    height: 80px;
    margin: 0;
    padding: 0 12px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    z-index: 6;
    visibility: visible;
    opacity: 1;
    pointer-events: none;
  }
  #primaryNav.nav-links a {
    pointer-events: auto;
    position: relative;
    z-index: 7;
  }
  #primaryNav.nav-links .nav-mobile-actions {
    display: none !important;
  }

  /* Admin/staff sidebar uses .nav-links too — must stay clickable */
  .admin-shell .navbar-inner,
  .admin-shell .navbar-inner .nav-links,
  .admin-shell .navbar-inner .nav-links a,
  .admin-shell .admin-nav-drawer,
  .admin-shell .admin-nav-drawer a {
    pointer-events: auto;
  }
}

/* Admin mobile menu toggle (hidden on desktop sidebar) */
.admin-shell .admin-nav-toggle {
  display: none;
}

/* Admin dashboard & pages — phone layout */
@media (max-width: 1023px) {
  body.nav-menu-open:has(.admin-shell)::before {
    top: 64px;
  }

  .admin-shell .dash-hero {
    padding: 18px 16px;
  }
  .admin-shell .dash-hero h1 {
    font-size: clamp(1.35rem, 5.5vw, 1.65rem);
  }
  .admin-shell .dash-hero p {
    font-size: 14px;
  }
  .admin-shell .dash-actions {
    width: 100%;
  }
  .admin-shell .dash-actions .btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    text-align: center;
    font-size: 13px;
    padding: 10px 10px;
  }
  .admin-shell .dash-card {
    padding: 14px;
    overflow: hidden;
  }
  .admin-shell .dash-card-head {
    flex-wrap: wrap;
  }
  .admin-shell .dash-card-head h2 {
    font-size: 1.15rem;
  }
  .admin-shell .mini-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -4px;
    padding: 0 4px;
  }
  .admin-shell .mini-table {
    min-width: 480px;
  }
  .admin-shell .metric-value {
    font-size: 24px;
  }
  .admin-shell .card table {
    min-width: 0;
  }
  .admin-shell .table-scroll {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .admin-shell .dash-actions .btn {
    flex: 1 1 100%;
  }
  .admin-shell .metric-value {
    font-size: 22px;
  }
}

.nav-links a{ position: relative; padding: 8px 0; transition: color .15s ease; white-space: nowrap; }
.nav-links a:hover{ color: var(--primary); }
.nav-links a.active{ color: var(--primary); }
.nav-right{
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone{
  display: none;
  font-weight: 800;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.nav-phone small{ color: var(--muted); font-weight: 700; }
.nav-phone-icon{ display: none; flex-shrink: 0; }

main{ flex: 1; }

.hero{
  position: relative;
  padding: 88px 0 120px;
  overflow: hidden;
}
.hero-bg{
  position: absolute;
  inset: 0;
}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.92) 38%, rgba(255,255,255,.25) 100%);
}
.hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-content{
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
}
.hero h1{
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.05;
  margin: 12px 0 18px;
  letter-spacing: -.03em;
  color: var(--fg);
}
.hero h1 em{
  font-style: normal;
  color: var(--primary);
  position: relative;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .hero h1 em {
    white-space: normal;
  }
}
.hero p{
  font-size: 18px;
  color: var(--text-subtle);
  max-width: 560px;
  margin: 0 0 24px;
}
.hero-cta{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  width: 100%;
  max-width: 100%;
}
.hero-cta-buttons .btn {
  text-decoration: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
.hero .hero-cta-buttons .btn {
  padding: 16px 32px;
  font-size: 1.15rem;
}
.quote-section-cta {
  width: 100%;
  max-width: 420px;
}
.quote-form-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  background: var(--surface-muted);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
[data-theme="dark"] .quote-form-card {
  background: var(--surface-muted);
  border-color: var(--border);
}
.quote-section-cta .btn {
  border-radius: 999px;
  flex: 1 1 140px;
  min-width: 0;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1.05rem;
}
@media (max-width: 640px) {
  .hero-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-buttons .btn,
  .hero .hero-cta-buttons .btn,
  .quote-section-cta .btn {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1.05rem;
  }
}
button.btn.quote-modal-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-meta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-subtle);
  font-weight: 700;
  font-size: 13px;
}

.section{
  padding: 88px 0;
}
.section--tight {
  padding-top: 0;
}
.section.muted{
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header{
  text-align: center;
  margin: 0 auto 44px;
  max-width: 720px;
}
.section-header h2{
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.3vw, 48px);
  margin: 0 0 12px;
  letter-spacing: -.02em;
  color: var(--fg);
}
.section-header p{ margin: 0; color: var(--text-subtle); font-size: 16px; }

.trust{
  padding: 42px 0;
  background: rgba(148,163,184,.10);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.trust-item{
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:center;
  text-align:center;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 12px;
}
.trust-item b{ display:block; color: var(--fg); }
.trust-item span{ display:block; font-size: 12px; color: var(--text-subtle); font-weight: 700; }
.icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,106,0,.10);
  color: var(--primary);
  display:grid;
  place-items:center;
  font-weight: 900;
  font-size: 24px;
}

.grid{
  display: grid;
  gap: 18px;
}
.grid.cols-4{ grid-template-columns: repeat(1, minmax(0,1fr)); }
.grid.cols-3{ grid-template-columns: repeat(1, minmax(0,1fr)); }
.grid.cols-2{ grid-template-columns: repeat(1, minmax(0,1fr)); }

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.service-tile{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow-sm);
  min-height: 240px;
  max-height: 280px;
}
.service-tile img{ width:100%; height:100%; object-fit: cover; transform: scale(1); transition: transform .4s ease; }
.service-tile:hover img{ transform: scale(1.04); }
.service-tile::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(0deg, rgba(2,6,23,.80) 0%, rgba(2,6,23,.15) 55%, rgba(2,6,23,0) 100%);
}
.service-tile .content{
  position:absolute;
  inset:auto 0 0 0;
  padding: 22px;
  z-index: 1;
  color: #fff;
}
.service-tile h3{ margin: 0 0 6px; font-size: 18px; }
.service-tile p{ margin: 0; color: rgba(255,255,255,.84); font-size: 13px; }

/* Homepage — simplified services (Option B) */
.services-overview {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 28px 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.services-overview-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.services-overview-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.services-overview-item:hover {
  border-color: rgba(255, 106, 0, 0.35);
  box-shadow: 0 4px 16px rgba(255, 106, 0, 0.08);
}
.services-overview-icon {
  flex-shrink: 0;
  font-size: 28px;
  line-height: 1;
}
.services-overview-item strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 4px;
}
.services-overview-item span:not(.services-overview-icon) {
  display: block;
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.5;
}
.services-overview-note {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--text-subtle);
  line-height: 1.6;
  text-align: center;
}
.services-overview-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}
.services-overview-trust .tick {
  color: var(--primary);
  margin-right: 4px;
}
.services-overview-cta {
  display: flex;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 999px;
  text-decoration: none;
}
@media (min-width: 640px) {
  .services-overview-list {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.split{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: flex-start;
}
.frame{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow-sm);
}
.frame img{ width:100%; height: 320px; object-fit: cover; }

.list{
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
}
.tick{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255,106,0,.12);
  color: var(--primary);
  display:grid;
  place-items:center;
  flex: 0 0 20px;
  font-weight: 900;
}

.page-hero{
  padding: 56px 0;
  background: var(--surface-muted);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .page-hero {
  background: var(--surface-muted);
}
.auth-page .page-hero {
  padding: 48px 0 36px;
}
.auth-page .page-hero .badge {
  margin: 0 auto 16px;
}
.page-hero h1{
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.2vw, 62px);
  margin: 0 0 10px;
  letter-spacing: -.03em;
  text-align: center;
  color: var(--fg);
}
.page-hero p{
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
  color: var(--text-subtle);
}

.service-breadcrumbs{
  margin: 0 auto 14px;
  max-width: 760px;
}
.service-breadcrumbs__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-subtle);
}
.service-breadcrumbs__list a{
  color: var(--text-subtle);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.service-breadcrumbs__list a:hover{
  color: var(--primary);
  border-bottom-color: rgba(255, 106, 0, 0.35);
}
.service-breadcrumbs__sep{
  flex: 0 0 auto;
  user-select: none;
  color: rgba(148, 163, 184, 0.95);
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
}
.service-breadcrumbs__sep span{
  display: inline-block;
  transform: translateY(-1px);
}
.service-breadcrumbs__current{
  color: var(--fg);
  font-weight: 700;
  max-width: 100%;
}

.form-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 32px 28px;
}
[data-theme="dark"] .form-card {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-color: rgba(255,255,255,0.05);
}
.form-grid{ display: grid; gap: 14px; }
.form-grid.cols-2{ grid-template-columns: 1fr; }
.form-grid.cols-3{ grid-template-columns: 1fr; }
.field label{
  display: block;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 6px;
  color: var(--fg);
  opacity: 0.9;
}
.field input, .field select, .field textarea{
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  background: var(--bg);
  color: var(--fg);
  transition: box-shadow .15s ease, border-color .15s ease;
}
.field input::placeholder, .field textarea::placeholder{
  color: var(--muted);
  opacity: 0.6;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--ring);
}
.field textarea{ min-height: 110px; resize: vertical; }

/* Password row: label + forgot link on one line */
.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.field-label-row label {
  margin-bottom: 0;
}
.form-forgot-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  padding: 2px 4px;
  border-radius: 6px;
  flex-shrink: 0;
}
.form-forgot-link:hover {
  text-decoration: underline;
  background: rgba(249, 115, 22, 0.1);
}
.field-password {
  margin-bottom: 14px;
}
.form-submit-spaced {
  margin-top: 4px;
}

/* Auth pages (login, signup, forgot, reset, admin login) */
.auth-page .section--tight {
  padding-top: 0;
}
.auth-card-wrap {
  max-width: 480px;
  margin: 0 auto;
}
.auth-card-wrap--wide {
  max-width: 520px;
}
.auth-card.form-card {
  border-radius: 20px;
  padding: 32px 28px;
}
@media (min-width: 480px) {
  .auth-card.form-card {
    padding: 40px 36px;
  }
}
.btn--block {
  width: 100%;
  border-radius: 14px;
  height: 52px;
  font-size: 1.05rem;
  margin-top: 8px;
}
.btn--block-sm {
  width: 100%;
  border-radius: 14px;
  height: 48px;
  margin-top: 10px;
}
.auth-divider {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.auth-divider > p {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}
.auth-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 420px) {
  .auth-social-grid {
    grid-template-columns: 1fr;
  }
}
.auth-social-grid .btn.outline {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--fg);
  border-color: var(--border);
  box-shadow: none;
}
.auth-footer-text {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}
.auth-footer-text a {
  color: var(--primary);
  font-weight: 600;
}
.auth-footer-text a:hover {
  text-decoration: underline;
}
.auth-promo-card {
  padding: 24px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f8fafc;
  border-color: rgba(148, 163, 184, 0.25);
}
.auth-promo-card h2 {
  font-family: var(--font-serif);
  margin: 12px 0 8px;
  color: #fff;
}
.auth-promo-card p,
.auth-promo-card .list span {
  color: rgba(226, 232, 240, 0.9);
}
.auth-promo-card .badge {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.auth-split-intro {
  margin: 0 0 14px;
  color: var(--text-subtle);
  font-size: 14px;
}
.auth-layout-split .split {
  gap: 24px;
}
@media (max-width: 767px) {
  .auth-layout-split .split {
    gap: 20px;
  }
}
.alert-banner {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.alert-banner--success {
  background: #064e3b;
  border: 1px solid #10b981;
  color: #6ee7b7;
}
[data-theme="dark"] .alert-banner--success {
  background: rgba(6, 78, 59, 0.45);
  border-color: #10b981;
  color: #a7f3d0;
}
.alert-banner--dev {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 13px;
}
[data-theme="dark"] .alert-banner--dev {
  background: rgba(154, 52, 18, 0.2);
  border-color: rgba(251, 146, 60, 0.4);
  color: #fdba74;
}
.signup-otp-input {
  letter-spacing: 8px;
  font-size: 22px;
  text-align: center;
  font-weight: 700;
}
.field-hint {
  color: var(--muted);
  font-weight: 400;
}

/* Login/signup pages: hide redundant header CTAs */
.auth-chrome .nav-right .quote-modal-trigger,
.auth-chrome .nav-right .nav-auth-btn,
.auth-chrome .nav-right #nav-signup-btn {
  display: none !important;
}

/* Admin dashboard — theme-aware (replaces hardcoded light colors) */
.dash-hero {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  color: #fff;
  background: linear-gradient(130deg, #0f172a, #1e293b 58%, #1d4ed8);
  box-shadow: var(--shadow);
}
.dash-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}
.dash-hero p {
  margin: 6px 0 0;
  color: rgba(241, 245, 249, 0.92);
}
.dash-actions .btn {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.dash-actions .btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.metric-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  background: var(--card);
}
.metric-title {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  font-weight: 700;
}
.metric-value {
  margin: 6px 0 2px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: var(--fg);
}
.metric-sub {
  font-size: 12px;
  color: var(--muted);
}
.dash-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}
.dash-card-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 23px;
  color: var(--fg);
}
.dash-card-head p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.dash-shell {
  display: grid;
  gap: 16px;
}
.dash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 980px) {
  .metric-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .metric-strip { grid-template-columns: 1fr; }
}
.dash-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 980px) {
  .dash-panels { grid-template-columns: 1fr; }
}
.dash-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.mini-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.mini-table th,
.mini-table td {
  text-align: left;
  padding: 9px 6px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.mini-table th {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
  font-weight: 700;
}
.mini-table tr:last-child td {
  border-bottom: none;
}
.open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 10px;
  color: var(--fg);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  background: var(--card);
}
.open-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.error{
  color: #b91c1c;
  font-size: 12px;
  margin-top: 6px;
  font-weight: 700;
}

.faq-category{ margin: 0 0 30px; }
.faq-category h2{
  font-family: var(--font-serif);
  color: var(--primary);
  margin: 0 0 12px;
}
.faq-item{
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
}
.faq-item button{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  padding: 16px 16px;
  border: 0;
  background: var(--card);
  color: var(--fg);
  cursor: pointer;
  font-weight: 800;
}
.faq-item button:hover{ background: var(--surface-muted); }
.faq-item .panel{
  display: none;
  padding: 0 16px 16px;
  color: var(--text-subtle);
  font-size: 13px;
  border-top: 1px solid var(--border);
  background: var(--surface-muted);
}
.faq-item.open .panel{ display: block; }
.chev{ transition: transform .2s ease; }
.faq-item.open .chev{ transform: rotate(180deg); }

.reviews-rating{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: 18px;
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
}
.stars{
  color: #f59e0b;
  letter-spacing: 1px;
  font-size: 14px;
}
.review{
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review .quote{ color: rgba(255,106,0,.30); font-size: 28px; line-height: 1; }
.review p{ margin: 0; font-size: 13px; color: var(--fg); }
.review .who{
  display:flex;
  gap: 10px;
  align-items:center;
  padding-top: 10px;
  border-top: 1px solid rgba(15,23,42,.08);
}
.avatar{
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255,106,0,.10);
  color: var(--primary);
  display:grid;
  place-items:center;
  font-weight: 900;
  font-family: var(--font-serif);
}
.who b{ display:block; font-size: 13px; }
.who small{ display:block; color: var(--text-subtle); font-weight: 700; }

.cta{
  background: var(--primary);
  color: #fff;
  border-radius: 28px;
  padding: 34px 18px;
  text-align: center;
}
.cta h2{
  margin: 0 0 10px;
  font-family: var(--font-serif);
  letter-spacing: -.02em;
}
.cta p{ margin: 0 auto 18px; max-width: 640px; color: rgba(255,255,255,.84); }

.footer{
  background: #020617;
  color: rgba(226,232,240,.9);
  border-top: 1px solid rgba(30,41,59,.9);
  padding: 54px 0;
}
.footer-grid{
  display:grid;
  gap: 26px;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}
.footer h4{ margin: 0 0 12px; color: #fff; }
.footer ul{ list-style: none; padding: 0; margin: 0; display:grid; gap: 10px; font-size: 13px; }
.footer a{ color: rgba(226,232,240,.84); }
.footer a:hover{ color: var(--primary); }
.footer-bottom{
  padding-top: 16px;
  border-top: 1px solid rgba(30,41,59,.9);
  display:flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  color: rgba(148,163,184,.85);
  font-size: 13px;
}

.toast-wrap{
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 10px;
}
.toast{
  width: min(360px, calc(100% - 32px));
  background: #0b1220;
  color: #e2e8f0;
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 20px 50px rgba(2,6,23,.45);
}
.toast b{ display:block; margin-bottom: 2px; }
.toast small{ color: rgba(226,232,240,.78); font-weight: 700; }

@media (min-width: 768px){
  .trust-grid{ grid-template-columns: repeat(4, minmax(0,1fr)); }
  .grid.cols-4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid.cols-3{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid.cols-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split{ grid-template-columns: 1fr 1fr; gap: 44px; }
  .form-grid.cols-2{ grid-template-columns: 1fr 1fr; }
  .form-grid.cols-3{ grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .footer-bottom{ flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 1024px){
  .grid.cols-4{ grid-template-columns: repeat(4, minmax(0,1fr)); }
  .grid.cols-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
  .frame{ height: 100%; display: flex; }
  .frame img{ height: 100%; min-height: 480px; }
  .services-category{ align-items: flex-start; }
  .services-category .frame{ height: 620px; width: 100%; flex-shrink: 0; }
  .services-category .frame img{ height: 100%; width: 100%; object-fit: cover; min-height: 0; }
  
  /* Ensuring the content column height matches the image column precisely */
  .services-category .split > div:nth-child(2) { 
    height: 620px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
  }

  .services-branch-block { margin-top: auto; padding-top: 15px; }
  .services-branch-heading { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 8px; }
  .branch-grid { gap: 8px; }
  .branch-card { padding: 10px 14px; min-height: 0; }
  .branch-card h3 { font-size: 14px; margin-bottom: 2px; }
  .branch-card p { font-size: 11px; }
  .hero{ padding: 120px 0 160px; }
  .service-tile{ max-height: none; min-height: 320px; }
}

/* Admin table polish */
.admin-shell .card table{
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: 900px; /* Reduced from 1080 */
  table-layout: auto;
}

/* Specific for small dashboard tables */
.admin-shell .grid.cols-2 .card table {
  min-width: 650px;
}

.admin-shell .card thead th{
  background: rgba(148,163,184,.10);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px; /* Matched body padding */
  border-bottom: 1px solid rgba(148,163,184,.12);
  text-align: left; /* Explicitly forced left */
}
.admin-shell .card tbody td{
  padding: 14px;
  border-bottom: 1px solid rgba(148,163,184,.18);
  vertical-align: middle;
  font-size: 14px;
  color: var(--fg);
  white-space: nowrap;
  text-align: left; /* Explicitly forced left */
}
.admin-shell .card tbody tr:hover td{
  background: rgba(148,163,184,.08);
}

/* --- Animation Engine --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for list items */
.reveal-1 { transition-delay: 0.1s; }
.reveal-2 { transition-delay: 0.2s; }
.reveal-3 { transition-delay: 0.3s; }
.reveal-4 { transition-delay: 0.4s; }

/* Interactive Hover Effects */
.service-tile, .why-card, .team-card, .trust-item {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease !important;
}
.service-tile:hover, .why-card:hover, .team-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-content h1, .hero-content p, .hero-service-wrap, .hero-cta {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-content h1 { animation-delay: 0.1s; opacity: 0; }
.hero-content p { animation-delay: 0.3s; opacity: 0; }
.hero-service-wrap { animation-delay: 0.4s; opacity: 0; }
.hero-cta { animation-delay: 0.5s; opacity: 0; }

.admin-shell .table-scroll{
  border: 1px solid rgba(148,163,184,.26);
  border-radius: 14px;
  overflow: auto;
}
.admin-shell .card form select,
.admin-shell .card form input{
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.18);
  padding: 8px 10px;
  font-size: 14px;
}
.admin-shell .card form .btn{
  min-height: 42px;
  border-radius: 10px;
  padding: 0 14px;
}
.admin-shell .chip{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  padding: 6px 10px;
}

/* Better visibility for admin table columns */
.admin-shell .card table th:nth-child(1),
.admin-shell .card table td:nth-child(1){ min-width: 70px; }
.admin-shell .card table th:nth-child(2),
.admin-shell .card table td:nth-child(2){ min-width: 140px; }
.admin-shell .card table th:nth-child(3),
.admin-shell .card table td:nth-child(3){ min-width: 220px; }
.admin-shell .card table th:nth-child(4),
.admin-shell .card table td:nth-child(4){ min-width: 120px; }
.admin-shell .card table th:nth-child(5),
.admin-shell .card table td:nth-child(5){ min-width: 110px; }
.admin-shell .card table th:nth-child(6),
.admin-shell .card table td:nth-child(6){ min-width: 110px; }
.admin-shell .card table th:nth-child(7),
.admin-shell .card table td:nth-child(7){ min-width: 100px; }
.admin-shell .card table th:nth-child(8),
.admin-shell .card table td:nth-child(8){ min-width: 190px; }

.admin-shell .card table td form{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Category Modal Styles */
.category-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.category-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.category-modal-content {
  background: var(--bg);
  width: min(600px, 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.2);
  padding: 32px;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-modal-overlay.active .category-modal-content {
  transform: translateY(0) scale(1);
}

.category-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--fg);
  transition: background 0.15s ease;
}
.category-modal-close:hover {
  background: rgba(15, 23, 42, 0.12);
}

.category-modal-header {
  margin-bottom: 24px;
}
.category-modal-header h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}
.category-modal-header p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

@media (min-width: 600px) {
  .branch-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.branch-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--card);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 100px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}
.branch-card:hover {
  background: var(--card-hover);
  border-color: var(--primary);
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.15);
  transform: translateY(-4px);
}
.branch-card h3 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}
.branch-card span.arrow {
  color: var(--primary);
  font-weight: 900;
  font-size: 18px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.2s ease;
  position: absolute;
  bottom: 12px;
  right: 16px;
}
.branch-card:hover span.arrow {
  opacity: 1;
  transform: translateX(0);
}

.services-page-grid{
  display: grid;
  gap: 64px;
}
.services-category{
  scroll-margin-top: 96px;
}
.services-branch-block{
  margin-top: 20px;
}
.services-branch-heading{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(71, 85, 105, 0.82);
  margin: 0 0 12px;
}
a.branch-card{
  text-decoration: none;
  color: inherit;
}

.quote-for-summary{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 106, 0, 0.08);
  border: 1px solid rgba(255, 106, 0, 0.22);
}
.quote-for-summary__label{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(71, 85, 105, 0.88);
}
.quote-for-summary__text{
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.35;
}
.quote-for-summary__sep{
  display: inline-block;
  margin: 0 0.35em;
  color: rgba(148, 163, 184, 0.95);
  font-weight: 500;
}
.quote-for-summary__branch{
  font-weight: 800;
  color: var(--primary);
}

.quote-two-step{
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.quote-category-card{
  background: rgba(148, 163, 184, 0.1);
  border-color: rgba(15, 23, 42, 0.08);
}
.quote-branch-card{
  border-color: rgba(255, 106, 0, 0.25);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}
.quote-card-kicker{
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.quote-card-title{
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.quote-card-lead{
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.quote-category-card .btn{
  margin-top: 4px;
}
.quote-branch-form{
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
/* Multi-Step Quote Modal Styles */
.quote-modal-steps {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.quote-step {
  display: none;
  animation: fadeInStep 0.3s ease-out;
}
.quote-step.active {
  display: block;
}
@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-back-btn {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.modal-back-btn:hover { color: var(--primary); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cat-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}
.cat-item:hover {
  background: var(--bg);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(255,106,0,.15);
  transform: translateY(-4px);
}
.cat-item .icon {
  width: 52px; height: 52px;
  margin: 0 auto 12px;
  font-size: 28px;
}
.cat-item h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  margin: 0;
}

.quote-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.quote-progress-dot {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}
.quote-progress-dot.active {
  background: var(--primary);
}

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

/* Dark Mode Global Overrides */
[data-theme="dark"] .navbar { background: rgba(15,23,42,.85); }
[data-theme="dark"] .hero-bg::after { background: linear-gradient(90deg, rgba(15,23,42,1) 0%, rgba(15,23,42,.92) 38%, rgba(15,23,42,.35) 100%); }
[data-theme="dark"] .field input, [data-theme="dark"] .field select, [data-theme="dark"] .field textarea { background: #1e293b; color: #f1f5f9; }
[data-theme="dark"] .category-modal-content { background: #1e293b; }
[data-theme="dark"] .cat-item:hover { background: #334155; }
[data-theme="dark"] .btn.outline { color: #f1f5f9; border-color: rgba(148,163,184,.2); }
[data-theme="dark"] .trust-item { background: rgba(30,41,59,.6); }
[data-theme="dark"] section.muted { background: var(--surface-muted); }

/* Theme Toggle Button */
.theme-toggle {
  background: rgba(148,163,184,.12);
  border: 1px solid var(--border);
  color: var(--fg);
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.12s ease;
  padding: 0;
  transform: none;
}
.theme-toggle:active {
  transform: scale(0.94);
  background: rgba(255,106,0,.15);
  border-color: var(--primary);
  color: var(--primary);
}
.theme-toggle.is-tapping {
  transform: rotate(15deg) scale(0.94);
  background: rgba(255,106,0,.15);
  border-color: var(--primary);
  color: var(--primary);
}
@media (hover: hover) and (pointer: fine) {
  .theme-toggle:hover {
    background: rgba(255,106,0,.15);
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(15deg);
  }
  .theme-toggle:active {
    transform: rotate(15deg) scale(0.94);
  }
}
.theme-toggle svg { width: 20px; height: 20px; }
[data-theme="dark"] .theme-toggle .sun-icon { display: block; }
[data-theme="dark"] .theme-toggle .moon-icon { display: none; }
.theme-toggle .sun-icon { display: none; }
.theme-toggle .moon-icon { display: block; }
.branch-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 100px;
  box-shadow: 0 6px 20px var(--shadow-sm);
}
.branch-card:hover {
  background: var(--bg);
  border-color: var(--primary);
  box-shadow: 0 18px 42px rgba(255, 106, 0, 0.2);
  transform: translateY(-6px);
}

/* Why-Card & Generic Card Enhancements */
.why-card, .card {
  background: var(--card);
  border: 1.5px solid rgba(15, 23, 42, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}
.why-card:hover, .card:not(.no-hover):hover {
  transform: translateY(-10px);
  background: var(--card-hover);
  border-color: var(--primary);
  box-shadow: 0 28px 60px rgba(255, 106, 0, 0.22), 0 10px 20px rgba(15, 23, 42, 0.08);
}
.why-icon {
  font-size: 38px;
  margin-bottom: 20px;
  display: inline-flex;
  padding: 12px;
  background: rgba(255, 106, 0, 0.12);
  border-radius: 16px;
  line-height: 1;
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.why-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.6;
}

[data-theme="dark"] .why-card, [data-theme="dark"] .card {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .why-card:hover, [data-theme="dark"] .card:not(.no-hover):hover {
  background: #1e293b;
  border-color: var(--primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 106, 0, 0.1);
}
[data-theme="dark"] .why-icon {
  background: rgba(255, 133, 51, 0.18);
}
/* Secondary / muted text utility (do not use on <section>) */
p.muted,
.text-muted,
.faq-desc {
  color: var(--muted);
}

/* ================================================
   Cookie Consent Banner
   ================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 16px 16px;
  transform: translateY(110%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner__inner {
  max-width: 1120px;
  margin: 0 auto;
  background: #0f172a;
  color: #e2e8f0;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.55);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.cookie-banner__icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.cookie-banner__text {
  flex: 1 1 260px;
}
.cookie-banner__text strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 4px;
  font-family: var(--font-serif);
}
.cookie-banner__text p {
  margin: 0;
  font-size: 13px;
  color: rgba(148, 163, 184, 0.9);
  line-height: 1.5;
}
.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  appearance: none;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-btn-accept:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 12px 30px rgba(255, 106, 0, 0.45);
}
.cookie-btn-decline {
  appearance: none;
  background: rgba(148, 163, 184, 0.12);
  color: rgba(226, 232, 240, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.22);
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.cookie-btn-decline:hover {
  background: rgba(148, 163, 184, 0.2);
  color: #f1f5f9;
}
[data-theme="dark"] .cookie-banner__inner {
  background: #020617;
  border-color: rgba(148, 163, 184, 0.12);
}
@media (max-width: 600px) {
  .cookie-banner {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 0;
    z-index: 9999;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px 14px;
    gap: 6px;
    border-radius: 12px;
  }

  .cookie-banner__icon {
    display: none;
  }

  .cookie-banner__text {
    width: 100%;
    flex: none;
  }

  .cookie-banner__text strong {
    font-size: 13px;
    display: block;
    margin-bottom: 2px;
  }

  .cookie-banner__text p {
    font-size: 11px;
    margin: 0;
    line-height: 1.4;
    white-space: normal;
  }

  .cookie-banner__actions {
    display: flex;
    width: 100%;
    gap: 8px;
    margin-top: 4px;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    height: 34px;
    font-size: 12px;
    display: flex;
    align-items: center;
  }
}

/* Team Card Styles */
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.team-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img img {
  transform: scale(1.05);
}
.team-content {
  padding: 24px;
  text-align: center;
}
.team-content h3 {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--fg);
}
.team-content span {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.team-content p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   ELEVATED THEME MODERNIZATION & GLOBAL POLISH
   ========================================================================== */

/* Modernized Global Interactive Transitions */
a, button, input, select, textarea, .btn, .card, .service-tile, .trust-item {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Premium Outlined Button Hover States in Dark Mode */
[data-theme="dark"] .btn.outline {
  border-color: rgba(241, 245, 249, 0.22) !important;
  color: var(--fg) !important;
}
[data-theme="dark"] .btn.outline:hover {
  background: rgba(241, 245, 249, 0.06) !important;
  border-color: var(--fg) !important;
}

/* Navbar polish + mobile drawer */
.navbar {
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom-color: rgba(226, 232, 240, 0.9);
}
[data-theme="dark"] .navbar {
  background: rgba(15, 23, 42, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.navbar-container {
  padding: 0 16px;
}
@media (min-width: 768px) {
  .navbar-container {
    padding: 0 24px;
  }
}
@media (min-width: 1150px) {
  .navbar-container {
    padding: 0 32px;
  }
}
.navbar-inner {
  height: 72px;
}
@media (min-width: 1150px) {
  .navbar-inner {
    height: 80px;
  }
  .nav-phone {
    display: inline-flex;
  }
}

/* Desktop link underline */
@media (min-width: 1150px) {
  .nav-links a {
    position: relative;
    padding: 8px 0;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links a:hover::after,
  .nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .nav-mobile-actions {
    display: none !important;
  }
  .nav-phone-icon {
    display: none !important;
  }
}

/* Laptop / medium desktop: stop nav overlap (icon phone, tighter center links) */
@media (min-width: 1150px) and (max-width: 1480px) {
  .navbar-container {
    padding: 0 16px;
  }
  .brand {
    flex-shrink: 1;
    min-width: 0;
    max-width: min(300px, 26vw);
    font-size: 13px;
  }
  .brand .txt {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    line-height: 1.25;
    word-break: break-word;
  }
  #primaryNav.nav-links {
    max-width: min(520px, calc(100% - 520px));
    gap: 10px;
    padding: 0 6px;
  }
  #primaryNav.nav-links a {
    font-size: 12.5px;
  }
  .nav-right {
    gap: 6px;
    flex-shrink: 0;
  }
  .nav-right .btn {
    padding: 10px 12px;
    font-size: 13px;
  }
  .nav-auth-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 12px;
  }
  .nav-auth-btn span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nav-phone {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.35);
    color: var(--primary);
    flex-shrink: 0;
  }
  .nav-phone small,
  .nav-phone-number {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nav-phone-icon {
    display: block !important;
  }
}

@media (min-width: 1481px) {
  .nav-phone-icon {
    display: none !important;
  }
}

/* Mobile / tablet */
@media (max-width: 1149px) {
  .navbar {
    overflow-x: hidden;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .navbar-container {
    padding: 0 12px;
  }
  .brand {
    font-size: 13px;
    max-width: calc(100% - 108px);
    min-width: 0;
    flex: 1 1 auto;
    overflow: visible;
    white-space: normal;
  }
  .brand .txt {
    overflow: visible;
    white-space: normal;
    line-height: 1.25;
    word-break: break-word;
    text-overflow: clip;
  }

  .nav-right {
    gap: 10px;
    flex-shrink: 0;
  }

  .nav-auth-btn,
  .nav-right .btn,
  .nav-right .theme-toggle,
  .nav-right .user-nav-dropdown {
    display: none !important;
  }

  .nav-phone {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    background: rgba(255, 106, 0, 0.1);
    border: 1px solid rgba(255, 106, 0, 0.35);
    color: var(--primary);
  }
  .nav-phone:hover {
    background: rgba(255, 106, 0, 0.18);
    border-color: var(--primary);
  }
  .nav-phone small,
  .nav-phone-number {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .nav-phone-icon {
    display: block !important;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(148, 163, 184, 0.12);
    border: 1px solid var(--border);
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .nav-toggle:hover {
    background: rgba(255, 106, 0, 0.12);
    border-color: var(--primary);
  }
  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--fg);
    border-radius: 99px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    transform-origin: center;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  #primaryNav.nav-links,
  .navbar-inner > .nav-links {
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 72px;
    right: 0;
    left: auto;
    width: min(340px, 92vw);
    bottom: 0;
    height: calc(100dvh - 72px);
    margin: 0 !important;
    padding: 24px 22px 28px;
    gap: 0;
    background: var(--bg);
    border-left: 1px solid var(--border);
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.14);
    z-index: 1001;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
  #primaryNav.nav-links.open,
  .navbar-inner > .nav-links.open {
    display: flex !important;
  }
  .nav-links a {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--fg);
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    display: block;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary);
    border-bottom-color: rgba(255, 106, 0, 0.35);
  }
  .nav-mobile-actions {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 20px;
    width: 100%;
  }

  .nav-drawer-btn,
  .nav-drawer-phone {
    width: 100%;
    justify-content: center;
    height: 46px;
    border-radius: 12px;
    font-weight: 700;
  }
  .nav-drawer-phone {
    border: 2px solid rgba(255, 106, 0, 0.35);
    color: var(--primary);
  }
  .nav-drawer-btn + .nav-drawer-btn,
  .nav-drawer-phone + .nav-drawer-btn {
    margin-top: 0;
  }
  .nav-drawer-btn.outline {
    border: 2px solid rgba(15, 23, 42, 0.15);
    color: var(--fg);
  }
}

body.nav-menu-open {
  overflow: hidden;
}
body.nav-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(15, 23, 42, 0.45);
  z-index: 1000;
  pointer-events: auto;
}
@media (min-width: 1150px) {
  body.nav-menu-open::before {
    display: none;
  }
}

/* Hero quick-action buttons (index) */
.hero-service-wrap {
  margin-bottom: 28px;
  width: 100%;
  max-width: 440px;
}
.hero-service-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 15px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  width: 100%;
  text-align: center;
}
.hero-service-btn:hover {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 106, 0, 0.35);
}
a.hero-service-btn--link {
  display: block;
  text-decoration: none;
  box-sizing: border-box;
}
a.hero-service-btn--link:hover {
  color: var(--primary-ink);
}

/* ==========================================================================
   THEME: readable text on every surface (light + dark)
   ========================================================================== */
:root h1, :root h2, :root h3, :root h4, :root h5, :root h6,
[data-theme="light"] h1, [data-theme="light"] h2, [data-theme="light"] h3,
[data-theme="light"] h4, [data-theme="light"] h5, [data-theme="light"] h6 {
  color: var(--fg);
}

[data-theme="dark"] {
  h1, h2, h3, h4, h5, h6,
  .section-header h2,
  .hero h1,
  .page-hero h1,
  .wizard-title,
  .card h3, .card h4,
  .why-card h3,
  .trust-item b {
    color: var(--fg);
  }

  p, .section-header p, .hero p, .hero-meta,
  .trust-item span, p.muted, .text-muted, .faq-desc {
    color: var(--text-subtle);
  }

  input, select, textarea {
    color: var(--fg);
    background: var(--input-bg);
  }
  
  /* Trust Grid Cards in Dark Mode */
  .trust-item {
    background: var(--card) !important;
    border-color: var(--border) !important;
    color: var(--fg) !important;
  }
  .trust-item span {
    color: var(--muted) !important;
  }

  /* Form Fields - Outlined Outline style */
  .fs-field label {
    background: var(--card) !important;
    color: var(--muted) !important;
  }
  .fs-field input,
  .fs-field select,
  .fs-field textarea {
    background: var(--card) !important;
    color: var(--fg) !important;
    border-color: var(--border) !important;
  }
  .fs-field input:focus,
  .fs-field select:focus,
  .fs-field textarea:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px var(--ring) !important;
  }

  /* Portal Dashboards (Admin / User / Staff) Contrast Alignments */
  .metric-card,
  .dash-card,
  .sidebar-card {
    background: var(--card) !important;
    border-color: var(--border) !important;
    color: var(--fg) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  }
  .metric-value {
    color: var(--fg) !important;
  }
  .metric-title, .metric-sub, .dash-card-head p {
    color: var(--muted) !important;
  }

  /* Table Contrast Alignments */
  .mini-table, .dash-table, table {
    color: var(--fg) !important;
  }
  .mini-table th, .dash-table th, table th {
    color: var(--muted) !important;
    border-bottom-color: var(--border) !important;
  }
  .mini-table td, .dash-table td, table td {
    color: var(--fg) !important;
    border-bottom-color: var(--border) !important;
  }
  .mini-table tr:hover td, .dash-table tr:hover td, table tr:hover td {
    background: rgba(255, 255, 255, 0.03) !important;
  }

  /* Open links & navigation dropdown list overrides */
  .open-link {
    background: var(--card) !important;
    border-color: var(--border) !important;
    color: var(--fg) !important;
  }
  .open-link:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
  }

  /* Wizard Live Summary Sidebar overlays */
  .sidebar-content {
    border-bottom-color: var(--border) !important;
  }
  .summary-line {
    color: var(--fg) !important;
  }
  .sidebar-accordion {
    border-bottom-color: var(--border) !important;
  }
  .sidebar-accordion summary {
    color: var(--fg) !important;
  }
  .acc-body {
    color: var(--muted) !important;
  }
  
  .hero-bg::after {
    background: linear-gradient(90deg, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.92) 38%, rgba(15, 23, 42, 0.25) 100%);
  }

  .faq-item,
  .faq-item button {
    background: var(--card);
    color: var(--fg);
  }
  .faq-item .panel {
    color: var(--text-subtle);
    background: var(--surface-muted);
  }

  .reviews-rating,
  .branch-card,
  .fs-list-item {
    background: var(--card);
    color: var(--fg);
  }

  .review p,
  .who b {
    color: var(--fg);
  }
  .who small {
    color: var(--text-subtle);
  }

  .services-branch-heading,
  .quote-for-summary__label {
    color: var(--text-subtle);
  }
  .quote-for-summary__text {
    color: var(--fg);
  }
}

/* ==========================================================================
   RESPONSIVE — consolidated mobile & small-tablet fixes
   Breakpoints used site-wide:
   - max 480px  : small phones
   - max 640px  : phones / hero CTAs
   - max 768px  : tablets portrait
   - max 1149px : mobile nav drawer
   - min 1150px : desktop nav
   ========================================================================== */

@media (max-width: 768px) {
  .container {
    width: calc(100% - 24px);
  }

  .hero {
    padding: 56px 0 72px;
  }
  .hero h1 {
    font-size: clamp(32px, 9vw, 44px);
  }
  .hero p {
    font-size: 16px;
  }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.94) 45%, rgba(255, 255, 255, 0.55) 100%);
  }

  .section {
    padding: 48px 0;
  }
  .page-hero {
    padding: 40px 0;
  }
  .trust {
    padding: 28px 0;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .trust-item {
    justify-content: flex-start;
    text-align: left;
  }

  .badge {
    font-size: 12px;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .form-card,
  .quote-form-card {
    padding: 24px 18px !important;
  }
  .why-card,
  .card {
    padding: 24px 18px;
  }
  .services-overview {
    padding: 24px 18px;
  }
  .team-content {
    padding: 20px 16px;
  }

  .footer {
    padding: 40px 0;
  }

  .category-modal-overlay {
    padding: 12px;
    align-items: flex-end;
  }
  .category-modal-content {
    padding: 24px 18px;
    width: 100%;
    max-height: 92vh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .category-modal-header h2 {
    font-size: 22px;
    padding-right: 36px;
  }

  .toast-wrap {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .toast {
    width: 100%;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 16px;
    right: 16px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 12px;
  }
  .brand .txt {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    max-width: none;
  }

  .hero-cta-buttons .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .nav-drawer-phone {
    white-space: normal;
    line-height: 1.3;
    height: auto;
    min-height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 13px;
  }

  .services-page-grid {
    gap: 40px;
  }

  .cat-item {
    padding: 18px 12px;
  }
  .cat-item h3 {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  [data-theme="dark"] .hero-bg::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 1) 0%, rgba(15, 23, 42, 0.94) 45%, rgba(15, 23, 42, 0.55) 100%);
  }
}

