:root{
  --bg:#0b0d10;
  --panel:#11151a;
  --text:#e9eef5;
  --muted:#a8b3c2;
  --light:#f6f7f9;
  --dark:#0b0d10;
  --accent: #ff7a00;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.18);
  --max: 1120px;
  --container-pad: 20px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  color:#0c0f14;
  background:#fff;
  line-height:1.6;
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto}

.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--container-pad);
}

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(11,13,16,.92);
  backdrop-filter:saturate(150%) blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:18px;
}
.brand{display:flex; flex-direction:column; gap:2px; min-width:180px}
.brand-text{font-weight:800; letter-spacing:.5px; color:#fff}
.brand-tagline{font-size:12px; color:rgba(233,238,245,.75)}
.custom-logo{height:44px; width:auto}
.nav{margin-left:auto}
.nav-list{
  display:flex;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}
.nav-list a{
  color:rgba(233,238,245,.88);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:10px;
}
.nav-list a:hover{background:rgba(255,255,255,.06)}
.header-cta{display:flex; align-items:center}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid transparent;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
  box-shadow:none;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:var(--accent);
  color:#111;
}
.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,.18);
  color:#fff;
}
.btn-lg{padding:14px 20px; font-size:16px}
.btn-icon{font-size:16px}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:transparent;
}
.nav-toggle span{
  display:block;
  height:2px;
  background:rgba(255,255,255,.85);
  margin:6px 10px;
  border-radius:2px;
}

.site-main{min-height:60vh}

/* HERO */
.hero{
  background: radial-gradient(1200px 700px at 20% 20%, rgba(255,122,0,.18), transparent 55%),
              radial-gradient(1200px 700px at 80% 0%, rgba(255,255,255,.08), transparent 55%),
              linear-gradient(180deg, #07080a 0%, #0b0d10 100%);
  color:var(--text);
  padding:64px 0 48px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}
.hero-title{
  font-size:44px;
  line-height:1.12;
  margin:0 0 14px;
  letter-spacing:-.6px;
}
.hero-subtitle{
  margin:0 0 22px;
  color:rgba(233,238,245,.82);
  font-size:16px;
  max-width:52ch;
}
.hero-cta{display:flex; gap:12px; flex-wrap:wrap}
.hero-badges{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:flex;
  flex-direction:column;
  gap:8px;
  color:rgba(233,238,245,.9);
  font-weight:650;
}
.hero-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-card-title{
  font-weight:900;
  letter-spacing:.4px;
  margin-bottom:8px;
}
.hero-card-line{color:rgba(233,238,245,.84); font-size:14px; margin:4px 0}

/* Sections */
.section{padding:64px 0}
.section-light{background:#fff}
.section-dark{background:var(--dark); color:var(--text)}
.section-head h2{margin:0 0 10px; font-size:30px; letter-spacing:-.4px}
.section-head p{margin:0; color:#4b5563; max-width:70ch}
.section-dark .section-head p{color:rgba(233,238,245,.8)}

.section-actions{margin-top:18px}

/* Cards */
.cards{display:grid; gap:14px; margin-top:22px}
.cards-5{grid-template-columns: repeat(5, 1fr)}
.card{
  background: #fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: 0 8px 18px rgba(15,23,42,.06);
  display:flex;
  flex-direction:column;
  gap:8px;
  position:relative;
  overflow:hidden;
}
.card:before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,122,0,.12), transparent 55%);
  opacity:.6;
  pointer-events:none;
}
.card-title{font-weight:900; letter-spacing:-.2px}
.card-text{color:#475569; font-weight:600; font-size:13px}

/* Features */
.features{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin-top:22px;
}
.feature{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding:16px;
}
.feature-title{font-weight:900; margin-bottom:6px}
.feature-text{color:rgba(233,238,245,.82); font-size:14px}

/* Split */
.split{display:grid; grid-template-columns: 1fr 1fr; gap:18px; align-items:start}
.mini-panel{
  background:#0b0d10;
  color:var(--text);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.mini-row{display:flex; gap:10px; padding:10px 0; border-bottom:1px solid rgba(255,255,255,.10)}
.mini-row:last-child{border-bottom:0}
.mini-row span:first-child{width:26px}

.map-preview iframe, .location-map iframe{width:100%; height:360px; border:0; border-radius: var(--radius); box-shadow: var(--shadow)}
.map-placeholder{
  background:rgba(15,23,42,.06);
  border:1px dashed rgba(15,23,42,.22);
  border-radius:var(--radius);
  padding:18px;
  text-align:center;
  color:#475569;
}

/* Content */
.content-wrap{padding:44px 0 64px}
.page-title{font-size:34px; margin:0 0 14px; letter-spacing:-.5px}
.prose{max-width: 840px}
.prose .lead{font-size:16px; color:#475569; font-weight:650}
.service-block{padding:18px; border:1px solid rgba(15,23,42,.10); border-radius:var(--radius); margin:14px 0; background:#fff}
.note{margin:12px 0; padding:14px; border-radius:var(--radius); background:rgba(255,122,0,.08); border:1px solid rgba(255,122,0,.18)}
.price-table-wrap{overflow:auto; border-radius:var(--radius); border:1px solid rgba(15,23,42,.10); background:#fff}
.price-table{width:100%; border-collapse:collapse; min-width:640px}
.price-table th, .price-table td{padding:14px 12px; border-bottom:1px solid rgba(15,23,42,.08); text-align:left}
.price-table th{background:rgba(15,23,42,.03); font-weight:900}

.callout{
  margin-top:20px;
  padding:18px;
  border-radius:var(--radius);
  background: #0b0d10;
  color:var(--text);
  box-shadow: var(--shadow);
}
.callout-big{padding:22px}
.callout-title{font-weight:900; margin-bottom:12px; letter-spacing:-.3px}
.callout-actions{display:flex; gap:12px; flex-wrap:wrap}
.muted{color:#64748b}
.sep{border:0; border-top:1px solid rgba(15,23,42,.10); margin:26px 0}

.location-grid{display:grid; grid-template-columns: 1fr 1.2fr; gap:16px; align-items:start}
.location-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 8px 18px rgba(15,23,42,.06);
}
.location-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.directions ul{margin:10px 0 0; padding-left:18px}

/* Footer */
.site-footer{background:#07080a; color:rgba(233,238,245,.88); padding:48px 0 18px}
.footer-inner{display:grid; grid-template-columns: 1.2fr 1fr 1fr; gap:18px}
.footer-title{font-weight:900; margin-bottom:10px}
.footer-line{margin:6px 0; color:rgba(233,238,245,.78)}
.footer-line a{color:rgba(233,238,245,.92); text-decoration:underline; text-underline-offset:3px}
.footer-nav{list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:8px}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:22px;
  padding-top:16px;
  color:rgba(233,238,245,.68);
  font-size:13px;
}
.footer-legal{display:flex; gap:14px}
.footer-legal a{color:rgba(233,238,245,.78); text-decoration:underline; text-underline-offset:3px}

/* Mobile sticky call */
.mobile-sticky-call{
  position:fixed;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:1000;
  background:var(--accent);
  color:#111;
  font-weight:950;
  text-align:center;
  padding:14px 16px;
  border-radius:999px;
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
  display:none;
}

/* Responsive */
@media (max-width: 980px){
  .nav{display:none}
  .nav-toggle{display:block; margin-left:auto}
  .header-cta{display:none}
  .hero-inner{grid-template-columns:1fr; gap:18px}
  .hero-title{font-size:36px}
  .cards-5{grid-template-columns:1fr 1fr}
  .features{grid-template-columns:1fr 1fr}
  .split{grid-template-columns:1fr}
  .location-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .mobile-sticky-call{display:block}
}
@media (max-width: 520px){
  .hero{padding:54px 0 40px}
  .hero-title{font-size:30px}
  .cards-5{grid-template-columns:1fr}
  .features{grid-template-columns:1fr}
}

/* --- v1.1 Enhancements: more orange + service visuals --- */
.site-header{
  background: linear-gradient(180deg, rgba(11,13,16,.95) 0%, rgba(11,13,16,.86) 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
}
.nav-list a:focus{outline:2px solid rgba(255,106,0,.6); outline-offset:2px}
.btn-primary{background: linear-gradient(180deg, var(--accent) 0%, #ff8a2a 100%);}
.btn-primary:hover{filter:saturate(115%)}
.btn-ghost-dark{
  background: #0b0d10;
  color: var(--text);
  border-color: rgba(15,23,42,.18);
}
.btn-ghost-dark:hover{border-color: rgba(255,106,0,.35)}

.section-light{
  background: radial-gradient(900px 500px at 15% 0%, rgba(255,106,0,.10), transparent 55%), #fff;
}

.page-hero{
  padding:18px 0 18px;
}
.page-hero--light{
  background: radial-gradient(900px 500px at 10% 10%, rgba(255,106,0,.12), transparent 55%), #fff;
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.page-hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

.content-wrap--tight{padding-top:26px}

.svc-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:14px;
  margin-bottom:24px;
}
.svc-card{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(15,23,42,.08);
  display:flex;
  flex-direction:column;
  min-height: 220px;
}
.svc-media{height:120px; background: rgba(15,23,42,.04); position:relative}
.svc-media img{width:100%; height:100%; object-fit:cover}
.svc-media:after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.35) 100%);
  pointer-events:none;
  opacity:.55;
}
.svc-media-placeholder{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
  color:#64748b;
  font-weight:800;
  text-align:center;
}
.svc-body{padding:14px; display:flex; flex-direction:column; gap:10px}
.svc-title{font-weight:950; letter-spacing:-.2px}
.svc-chips{display:flex; flex-wrap:wrap; gap:8px}
.chip{
  font-size:11px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,106,0,.10);
  border:1px solid rgba(255,106,0,.18);
  color:#7a2d00;
}
.svc-link{margin-top:auto; font-weight:900; color: rgba(255,106,0,.95)}

.prose-wide{max-width: 1000px}
.service-detail{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(15,23,42,.10);
  background: radial-gradient(800px 220px at 10% 0%, rgba(255,106,0,.08), transparent 55%), #fff;
  margin:14px 0;
}
.service-detail-head{display:flex; flex-direction:column; gap:10px}
.service-detail-badges{display:flex; flex-wrap:wrap; gap:10px}
.badge{
  font-size:12px;
  font-weight:950;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(15,23,42,.05);
  border:1px solid rgba(15,23,42,.10);
  color:#0b0d10;
}
.badge-accent{
  background: rgba(255,106,0,.12);
  border-color: rgba(255,106,0,.22);
  color:#6b2600;
}
.service-detail-cta{margin-top:14px}

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

/* =========================
   v1.2 "More Orange" Pass
   ========================= */

/* Global: warmer light background + stronger accent usage */
:root{
  --accent: var(--accent);
  --warm: #fbf7f2;
  --warm2:#fff2e6;
}

/* Header: orange top strip + active/hover accents */
.site-header{
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
}
.site-header:before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:3px;
  background: linear-gradient(90deg, rgba(255,107,0,1) 0%, rgba(255,180,95,1) 40%, rgba(255,107,0,1) 100%);
}
.nav-list a{
  position:relative;
}
.nav-list a:after{
  content:"";
  position:absolute;
  left:10px; right:10px; bottom:6px;
  height:2px;
  background: rgba(255,107,0,.0);
  transition: background .15s ease;
  border-radius:2px;
}
.nav-list a:hover:after,
.nav-list .current-menu-item > a:after{
  background: rgba(255,107,0,.85);
}

/* Buttons: stronger orange and subtle glow */
.btn-primary{
  background: linear-gradient(180deg, #ff6b00 0%, #ff9a3f 100%);
  box-shadow: 0 10px 26px rgba(255,107,0,.22);
}
.btn-primary:hover{
  box-shadow: 0 12px 30px rgba(255,107,0,.28);
}

/* HERO: still premium dark, but orange-lit (much less "black hole") */
.hero{
  background:
    radial-gradient(900px 520px at 12% 22%, rgba(255,107,0,.42), transparent 60%),
    radial-gradient(900px 520px at 75% 10%, rgba(255,255,255,.10), transparent 62%),
    radial-gradient(900px 520px at 88% 70%, rgba(255,107,0,.14), transparent 60%),
    linear-gradient(180deg, #0a0b0e 0%, #0b0d10 100%);
}
.hero:after{
  content:"";
  display:block;
  height:4px;
  background: linear-gradient(90deg, rgba(255,107,0,1) 0%, rgba(255,180,95,1) 50%, rgba(255,107,0,1) 100%);
  opacity:.9;
  margin-top:48px;
}
.hero-inner{padding-bottom:10px}
.hero-badges li{
  position:relative;
  padding-left:2px;
}
.hero-badges li::marker{color: rgba(255,180,95,1);}
.hero-card{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,180,95,.20);
}

/* Sections: warmer light with orange glow */
.section-light{
  background:
    radial-gradient(1000px 520px at 10% 0%, rgba(255,107,0,.12), transparent 60%),
    radial-gradient(1000px 520px at 90% 10%, rgba(255,180,95,.10), transparent 60%),
    var(--warm);
}
.section{position:relative}
.section-light .section-head p{color:#334155}
.section-dark{
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(255,107,0,.14), transparent 60%),
    linear-gradient(180deg, #08090b 0%, #0b0d10 100%);
}

/* Add orange section dividers for key transitions */
.section-dark + .section-light:before,
.section-light + .section-dark:before{
  content:"";
  position:absolute;
  left:0; right:0; top:-2px;
  height:2px;
  background: linear-gradient(90deg, rgba(255,107,0,1) 0%, rgba(255,180,95,1) 50%, rgba(255,107,0,1) 100%);
  opacity:.7;
}

/* Cards: orange accent bar + hover glow */
.card{
  border-color: rgba(15,23,42,.10);
}
.card:after{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:4px;
  background: linear-gradient(90deg, rgba(255,107,0,1) 0%, rgba(255,180,95,1) 100%);
  opacity:.9;
}
.card:hover{
  box-shadow: 0 14px 34px rgba(255,107,0,.12), 0 10px 26px rgba(15,23,42,.08);
  transform: translateY(-2px);
}
.card-title{font-size:15px}

/* Features: add orange edge */
.feature{
  border-color: rgba(255,180,95,.18);
}
.feature-title{color:#fff}
.feature:before{
  content:"";
  display:block;
  height:3px;
  background: rgba(255,107,0,.85);
  border-radius:3px;
  margin-bottom:10px;
  width:38px;
}

/* Mini panel: orange bullet accents */
.mini-panel{
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(255,107,0,.18), transparent 60%),
    #0b0d10;
  border:1px solid rgba(255,180,95,.14);
}

/* Services page cards: stronger orange chips + link */
.chip{
  background: rgba(255,107,0,.14);
  border-color: rgba(255,107,0,.22);
  color:#6b2600;
}
.svc-card:hover{
  box-shadow: 0 16px 38px rgba(255,107,0,.14), 0 10px 26px rgba(15,23,42,.08);
  transform: translateY(-2px);
}
.svc-link{color: rgba(255,107,0,1)}

/* Page hero light: make it warmer */
.page-hero--light{
  background:
    radial-gradient(900px 500px at 10% 20%, rgba(255,107,0,.14), transparent 60%),
    var(--warm2);
}

/* Location/map placeholders: warmer */
.map-placeholder{
  background: rgba(255,107,0,.06);
  border-color: rgba(255,107,0,.22);
}

/* Footer: orange accent line */
.site-footer{
  position:relative;
}
.site-footer:before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height:3px;
  background: linear-gradient(90deg, rgba(255,107,0,1) 0%, rgba(255,180,95,1) 50%, rgba(255,107,0,1) 100%);
  opacity:.75;
}

/* Mobile sticky button: add subtle glow */
.mobile-sticky-call{
  box-shadow: 0 18px 44px rgba(255,107,0,.22), 0 18px 40px rgba(0,0,0,.30);
}

.home-bullets{
  margin:14px 0 18px;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
  font-weight:650;
  color:#334155;
}
.section-dark .home-bullets{color:rgba(233,238,245,.9)}

.brand {
  display: flex;
  align-items: center;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.custom-logo {
  height: 80px;  /* adjust */
  width: auto;
  display: block;
}

.footer-social{
  display:flex;
  gap:14px;
  margin-top:16px;
}

.footer-social a{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background: rgba(255,107,0,.10);
  border:1px solid rgba(255,107,0,.25);
  color:#fff;
  transition: all .25s ease;
}

.footer-social svg{
  width:18px;
  height:18px;
}

.footer-social a:hover{
  background: linear-gradient(180deg,#ff6b00,#ff9a3f);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,107,0,.35);
}

@media (max-width: 900px){
  .nav-backdrop{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 80;
  }

  .site-nav{
    position: fixed;
    left: 12px;
    right: 12px;
    top: 72px;
    z-index: 90;

    background: rgba(11,13,16,.96);
    border: 1px solid rgba(255,107,0,.18);
    border-radius: 16px;
    padding: 10px;

    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: .18s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
  }

  .site-nav.is-open{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-list{
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 6px;
  }

  .site-nav .nav-list a{
    display:block;
    padding: 12px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
  }

  .site-nav .nav-list a:hover{
    background: rgba(255,107,0,.10);
  }

  html.menu-open, body.menu-open{
    overflow: hidden;
  }
}

/* Mobile menu: make sure the panel actually shows */
@media (max-width: 900px){
  /* your old CSS probably hides .nav; override it */
  .nav.site-nav{
    display: none;
  }
  .nav.site-nav.is-open{
    display: block;
  }

  .nav.site-nav{
    position: fixed;
    left: 12px;
    right: 12px;
    top: 72px;
    z-index: 9999;           /* ensure above backdrop */
    background: rgba(11,13,16,.96);
    border: 1px solid rgba(255,107,0,.18);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
  }

	.nav-list a:hover:after, .nav-list .current-menu-item > a:after{
		visibility: hidden;
	}
	
  .nav-backdrop{
    position: fixed;
    inset: 0;
    z-index: 9990;           /* behind menu, above page */
    background: rgba(0,0,0,.55);
  }

  .nav.site-nav .nav-list{
    display:flex;
    flex-direction:column;
    gap:6px;
    margin:0;
    padding:6px;
  }

  .nav.site-nav .nav-list a{
    display:block;
    padding:12px;
    border-radius:12px;
    background: rgba(255,255,255,.04);
  }
}

/* Services Zig-Zag */
.svc-zigzag{display:flex; flex-direction:column; gap:18px;}

.svc-row{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:stretch;
}

.svc-row.is-reverse{
  grid-template-columns: .9fr 1.1fr;
}
.svc-row.is-reverse .svc-img{order:2;}
.svc-row.is-reverse .svc-card{order:1;}

/* Service image container: fixed visual size */
.svc-img{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 16px 38px rgba(15,23,42,.10);
  background: rgba(15,23,42,.04);

  height: 320px;           /* consistent height */
}

/* Image always fills container */
.svc-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;       /* crops nicely, no distortion */
  object-position: center; /* adjust if needed */
  display: block;
}
.svc-img-placeholder{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  text-align:center;
  font-weight:900;
  color:#64748b;
}

.svc-card{
  border-radius: 18px;
  border:1px solid rgba(15,23,42,.10);
  background:
    radial-gradient(900px 260px at 10% 0%, rgba(255,107,0,.10), transparent 60%),
    #fff;
  box-shadow: 0 16px 38px rgba(15,23,42,.08);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.svc-h{margin:0; font-weight:950; letter-spacing:-.3px;}
.svc-p{margin:0; color:#334155; line-height:1.55;}

.svc-badges{display:flex; flex-wrap:wrap; gap:10px;}
.svc-badge{
  font-size:12px;
  font-weight:950;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,107,0,.12);
  border:1px solid rgba(255,107,0,.22);
  color:#6b2600;
}

.svc-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:auto; padding-top:6px;}

@media (max-width: 980px){
  .svc-row, .svc-row.is-reverse{
    grid-template-columns: 1fr;
  }
  .svc-row.is-reverse .svc-img{order:0;}
  .svc-row.is-reverse .svc-card{order:0;}
  .svc-img{min-height:220px;}
}

.location-map iframe{
  width:100%;
  height:420px;
  border:0;
  border-radius:18px;
}

/* =========================
   Price Calculator (SR Cars)
   ========================= */
.price-calculator.card{
  background: linear-gradient(180deg, rgba(255,126,0,.08), rgba(255,126,0,.03));
  border: 1px solid rgba(255,126,0,.18);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.price-calculator .h3{
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
}

.price-calculator .muted{
  opacity: .75;
  margin: 0 0 14px;
}

.calc-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: end;
}

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

.field label{
  display:block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  opacity: .85;
}

.field select{
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
}

.field--full{ grid-column: 1 / -1; }

.checks{
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(0,0,0,.16);
  background: rgba(255,255,255,.65);
}

.check{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 14px;
  user-select:none;
}

.check input{ transform: translateY(1px); }

.calc-result{
  grid-column: 1 / -1;
  margin-top: 6px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.10);
}

.calc-total{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

#calcTotal{
  font-size: 22px;
  font-weight: 900;
}

.calc-breakdown{
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.calc-line{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  opacity: .92;
}

.calc-cta{
  display:flex;
  align-items:center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================
   About Us Page – SR Cars
   ========================= */

.about-hero {
  background: linear-gradient(180deg, #0e2430 0%, #0b1b24 100%);
  color: #fff;
  padding: 44px 0 26px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.about-hero__title {
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  font-weight: 900;
}

.about-hero__lead {
  margin: 0 0 16px;
  max-width: 70ch;
  opacity: .85;
}

.about-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.about-h2 {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.015em;
}

.about-h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items: start;
}

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

.about-richtext {
  opacity: .88;
}

.about-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 14px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 126, 0, .10);
  border: 1px solid rgba(255, 126, 0, .22);
  font-weight: 700;
  font-size: 13px;
}

.about-figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.7);
  box-shadow: 0 16px 38px rgba(0,0,0,.06);
}

.about-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.about-figure--tall img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

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

.about-focus__title {
  text-align: center;
  margin-bottom: 18px;
}

.about-focus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

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

.about-cards {
  display: grid;
  gap: 12px;
}

.about-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.05);
}

.about-card__num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(255,126,0,.10);
  border: 1px solid rgba(255,126,0,.22);
}

.about-card p {
  margin: 0;
  opacity: .85;
  line-height: 1.55;
}

.about-focus__media {
  display: grid;
  gap: 12px;
}

.about-note {
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255, 126, 0, .06);
  border: 1px solid rgba(255, 126, 0, .18);
  opacity: .92;
  margin: 14px;
}

.about-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,126,0,.08), rgba(255,126,0,.03));
  border: 1px solid rgba(255,126,0,.18);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.about-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.muted {
  opacity: .75;
}

/* =========================
   About – HERO fixes to match "Uslugi" header
   Paste AFTER your current About CSS
   ========================= */

.about-hero{
  /* match the warm/light header feeling */
  background: linear-gradient(180deg, #fde8d6 0%, #f7e1cf 100%);
  color: #0b1b24;                 /* switch to dark text */
  padding: 48px 0 28px;           /* slightly roomier like the other hero */
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;

  /* subtle separation from content */
  border-bottom: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* optional: a very subtle highlight sweep like other pages */
.about-hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(900px 380px at 15% 0%, rgba(255,255,255,.65), transparent 60%);
  opacity: .9;
}
.about-hero{
  position: relative;
  overflow: hidden;
}
.about-hero .container{
  position: relative;
  z-index: 1;
}

/* Headline + lead */
.about-hero__title{
  color: #0b1b24;
}
.about-hero__lead{
  opacity: 1;
  color: rgba(11,27,36,.78);
}

/* Buttons inside hero: keep primary, make ghost look like the dark pill from "Uslugi" */
.about-hero__actions .btn-ghost-dark{
  background: #0b0f14;
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.about-hero__actions .btn-ghost-dark:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Make primary feel a bit more "pill" like the site */
.about-hero__actions .btn-primary{
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 10px 24px rgba(255,126,0,.28);
}
.about-hero__actions .btn-primary:hover{
  transform: translateY(-1px);
}

/* --- Small overall polish (optional but nice) --- */


.about-richtext{
  opacity: 1;
  color: rgba(0,0,0,.78);
  line-height: 1.75;
}

.about-figure{
  box-shadow: 0 18px 44px rgba(0,0,0,.08);  /* a bit closer to your "Uslugi" card feel */
}

/* =========================
   About – Main content improvements (mobile + desktop)
   Paste AFTER your existing About CSS
   ========================= */

/* Make the whole article breathe a bit */
.page-template-page-about-us .content-wrap--tight{
  padding-left: 16px;
  padding-right: 16px;
}

/* Better readable width + typography */
.page-template-page-about-us .about-richtext{
  max-width: 68ch;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0,0,0,.78);
}
.page-template-page-about-us .about-richtext p{
  margin: 0 0 14px;
}

/* Turn the intro text into a nice "card" */
.page-template-page-about-us .about-intro__text{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

/* Keep image aligned nicely with the card */
.page-template-page-about-us .about-intro__media .about-figure{
  border-radius: 18px;
}

/* Desktop: slightly more spacing */
@media (min-width: 981px){
  .page-template-page-about-us .about-intro__grid{
    gap: 28px;
  }
  .page-template-page-about-us .about-section{
    margin: 34px 0;
  }
}

/* Mobile: fix “bad looking” text + spacing + stacking */
@media (max-width: 980px){
  .page-template-page-about-us .about-h2{
    font-size: 22px;
    margin-bottom: 10px;
  }

  .page-template-page-about-us .about-richtext{
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.85;
  }

  /* Always show text first, then image */
  .page-template-page-about-us .about-intro__text{ order: 1; }
  .page-template-page-about-us .about-intro__media{ order: 2; }

  /* Make image feel intentional on phone */
  .page-template-page-about-us .about-figure img{
    height: 240px;
    object-fit: cover;
  }

  /* Badges: tighter + nicer wrap */
  .page-template-page-about-us .about-badges{
    gap: 8px;
    margin-top: 12px;
  }
  .page-template-page-about-us .about-badge{
    font-size: 12.5px;
    padding: 7px 10px;
  }

  /* Gallery: consistent height on phone */
  .page-template-page-about-us .about-gallery .about-figure img{
    height: 220px;
    object-fit: cover;
  }
}

/* Extra: improve overall vertical rhythm for all sections */
.page-template-page-about-us .about-section + .about-section{
  margin-top: 14px;
}

/* =========================
   About – image sizing fixes
   ========================= */

/* 1) Intro: make image match the height of the text card */
@media (min-width: 981px){
  .page-template-page-about-us .about-intro__grid{
    align-items: stretch; /* important: equal height columns */
  }

  .page-template-page-about-us .about-intro__media,
  .page-template-page-about-us .about-intro__media .about-figure{
    height: 100%;
  }

  .page-template-page-about-us .about-intro__media .about-figure img{
    height: 100%;
    width: 100%;
    object-fit: cover;   /* fills nicely */
  }
}

/* 2) Gallery: make all 3 cards same height and images fill fully */
.page-template-page-about-us .about-gallery{
  align-items: stretch;
}

.page-template-page-about-us .about-gallery .about-figure{
  height: clamp(260px, 22vw, 340px); /* consistent card height on desktop */
}

.page-template-page-about-us .about-gallery .about-figure img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* FIX: no more “halfway” images */
  display: block;
}

/* Mobile: still consistent, just a bit shorter */
@media (max-width: 980px){
  .page-template-page-about-us .about-gallery .about-figure{
    height: 230px;
  }
}