@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{
  --bg: #ffffff;
  --fg: #0f172a; /* slate-900 */
  --muted: #475569; /* slate-600 */
  --border: #e2e8f0; /* slate-200 */
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(2,6,23,.08);
  --shadow-sm: 0 8px 20px rgba(2,6,23,.06);
  --primary: #ff6a00;
  --primary-ink: #ffffff;
  --ring: rgba(255,106,0,.35);

  --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;
}

[data-theme="dark"] {
  --bg: #0f172a;
  --fg: #f1f5f9;
  --muted: #94a3b8;
  --border: #334155;
  --card: #1e293b;
  --shadow: 0 10px 40px rgba(0,0,0,.4);
  --shadow-sm: 0 8px 25px rgba(0,0,0,.3);
  --primary: #ff8533;
  --ring: rgba(255,133,51,.25);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
}

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

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

.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;
  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: #fff;
  color: #0f172a;
  border: 1px solid rgba(15,23,42,.15);
  box-shadow: 0 6px 18px rgba(15,23,42,.08);
}
.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;
}

.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;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 900;
  letter-spacing: -.02em;
}
.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;
}
.brand span b{ color: var(--primary); }

.nav-toggle{
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  margin: 5px 0;
  transition: all .25s ease;
}

.nav-links{
  gap: 26px;
  color: rgba(71,85,105,.95);
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 767px){
  .nav-links{
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 16px 30px rgba(0,0,0,.1);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open{ display: flex; }
}

@media (min-width: 768px){
  .nav-toggle{ display: none; }
}

.nav-links a{ position: relative; padding: 8px 0; transition: color .15s ease; }
.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; }
.nav-phone small{ color: var(--muted); font-weight: 700; }

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;
}
.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;
}
.hero h1 em{
  font-style: normal;
  color: var(--primary);
  position: relative;
  white-space: nowrap;
}
.hero p{
  font-size: 18px;
  color: rgba(71,85,105,.95);
  max-width: 560px;
  margin: 0 0 24px;
}
.hero-cta{
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.hero-meta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(71,85,105,.95);
  font-weight: 700;
  font-size: 13px;
}

.section{
  padding: 88px 0;
}
.section.muted{
  background: rgba(148,163,184,.12);
  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;
}
.section-header p{ margin: 0; color: rgba(71,85,105,.95); 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; }
.trust-item span{ display:block; font-size: 12px; color: rgba(71,85,105,.95); 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; }

.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: rgba(148,163,184,.14);
  border-bottom: 1px solid var(--border);
}
.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;
}
.page-hero p{
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
  color: rgba(71,85,105,.95);
}

.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: rgba(71, 85, 105, 0.88);
}
.service-breadcrumbs__list a{
  color: rgba(71, 85, 105, 0.88);
  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: rgba(15, 23, 42, 0.92);
  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; }
.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 rgba(15,23,42,.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.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: #fff;
  cursor: pointer;
  font-weight: 800;
}
.faq-item button:hover{ background: rgba(148,163,184,.12); }
.faq-item .panel{
  display: none;
  padding: 0 16px 16px;
  color: rgba(71,85,105,.98);
  font-size: 13px;
  border-top: 1px solid rgba(15,23,42,.08);
  background: rgba(148,163,184,.08);
}
.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: #fff;
  border: 1px solid rgba(15,23,42,.12);
  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: rgba(15,23,42,.95); }
.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: rgba(71,85,105,.95); 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(100vw - 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){
  .nav-links{ display: flex; }
  .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){
  .nav-phone{ display: inline-flex; }
  .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;
  min-width: 1080px;
}
.admin-shell .card thead th{
  background: rgba(148,163,184,.10);
  color: #334155;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15,23,42,.12);
}
.admin-shell .card tbody td{
  padding: 14px;
  border-bottom: 1px solid rgba(148,163,184,.18);
  vertical-align: middle;
  font-size: 14px;
  color: #0f172a;
  white-space: nowrap;
}
.admin-shell .card tbody tr:hover td{
  background: rgba(148,163,184,.08);
}
.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: #fff;
  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: #0f172a;
  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"] .muted { background: rgba(30,41,59,.4); }

/* 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: all 0.2s ease;
  padding: 0;
}
.theme-toggle:hover {
  background: rgba(255,106,0,.15);
  border-color: var(--primary);
  color: var(--primary);
  transform: rotate(15deg);
}
.theme-toggle svg { width: 20px; height: 20px; transition: transform .3s ease; }
[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: #fff;
  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: #0f172a;
}
.why-card p {
  margin: 0;
  font-size: 14px;
  color: rgba(71, 85, 105, 0.95);
  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);
}
[data-theme="dark"] .why-card h3 {
  color: #f1f5f9;
}

/* ================================================
   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;
    justify-content: center;
  }
}
