:root{
  --primary:#0060A0;
  --primary-2:#0B7BB3;
  --accent:#A0C0E0;
  --dark:#062F44;
  --text:#0E1B24;
  --muted:#5B6B76;
  --bg:#F6F9FC;
  --card:#FFFFFF;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:linear-gradient(180deg,#ffffff 0%, var(--bg) 100%);
}
a{color:inherit}
.container{width:min(1100px, 92vw); margin:0 auto}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(6,47,68,.08);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand img{width:44px; height:44px; border-radius:12px; background:#fff; box-shadow: 0 6px 18px rgba(0,0,0,.10); object-fit:cover}
.brand .t1{font-weight:800; letter-spacing:.2px}
.brand .t2{font-size:12px; color:var(--muted); margin-top:2px}
.nav-links{display:flex; gap:18px; align-items:center}
.nav-links a{
  text-decoration:none;
  font-weight:600;
  color:rgba(14,27,36,.85);
  padding:10px 12px;
  border-radius:999px;
}
.nav-links a:hover{background:rgba(160,192,224,.22)}
.menu-btn{display:none}

.hero{
  position:relative;
  padding:38px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:28px;
  align-items:stretch;
}
.hero-card{
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(6,47,68,.08);
}
.hero-media{
  position:relative;
  min-height: 340px;
  background: #e9f2fb;
}
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: saturate(1.03) contrast(1.02);
}
.hero-badge{
  position:absolute;
  left:16px; bottom:16px;
  background: rgba(6,47,68,.75);
  color:#fff;
  padding:10px 12px;
  border-radius: 14px;
  display:flex; gap:10px; align-items:center;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.badge-dot{
  width:10px; height:10px; border-radius:999px;
  background: #35d07f;
  box-shadow:0 0 0 6px rgba(53,208,127,.16);
}
.hero-content{
  padding:26px;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-weight:700;
  color: var(--primary);
  background: rgba(160,192,224,.25);
  padding:8px 12px;
  border-radius:999px;
}
.kicker svg{width:18px; height:18px}
h1{
  font-size: clamp(28px, 4vw, 44px);
  margin:16px 0 10px;
  line-height:1.05;
}
.lead{color:var(--muted); font-size:16px; line-height:1.6; margin: 0 0 18px}
.cta-row{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; gap:10px; align-items:center; justify-content:center;
  text-decoration:none;
  padding:12px 14px;
  border-radius: 14px;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid rgba(6,47,68,.12);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.btn:active{transform: translateY(1px)}
.btn-primary{background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%); color:#fff; border-color:rgba(255,255,255,.15)}
.btn-primary:hover{box-shadow: 0 12px 26px rgba(0,96,160,.25)}
.btn-ghost{background:#fff}
.btn-ghost:hover{background: rgba(160,192,224,.18)}
.small-note{margin-top:14px; font-size:13px; color:var(--muted)}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.pill{
  font-size:12px; font-weight:800; color:rgba(14,27,36,.80);
  background: rgba(6,47,68,.06);
  padding:8px 10px;
  border-radius:999px;
}

.section{padding:34px 0}
.section h2{font-size:26px; margin:0 0 12px}
.section p.sub{margin:0 0 18px; color:var(--muted); line-height:1.6}

.grid-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(6,47,68,.08);
  overflow:hidden;
}
.card .pad{padding:18px}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted); line-height:1.55}

.icon{
  width:42px; height:42px;
  border-radius: 14px;
  background: rgba(160,192,224,.25);
  display:grid; place-items:center;
  margin-bottom:12px;
  color: var(--primary);
}
.icon svg{width:22px; height:22px}

.branches{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.branch-top{display:flex; align-items:flex-start; justify-content:space-between; gap:14px}
.branch-top .meta{flex:1}
.branch-top .tag{
  font-size:12px; font-weight:900;
  background: rgba(53,208,127,.18);
  color:#0b5a34;
  padding:8px 10px;
  border-radius:999px;
  white-space:nowrap;
}
.addr{margin-top:8px; color:var(--muted); line-height:1.5}
.branch-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.map{
  width:100%;
  height: 250px;
  border:0;
  display:block;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.thumb{
  border-radius: 16px;
  overflow:hidden;
  background:#fff;
  border: 1px solid rgba(6,47,68,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  cursor:pointer;
  position:relative;
}
.thumb img{width:100%; height: 160px; object-fit:cover; display:block; transition: transform .25s ease}
.thumb:hover img{transform: scale(1.04)}
.thumb::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(800px 160px at 20% 0%, rgba(255,255,255,.20), transparent 55%);
  pointer-events:none;
}

.lightbox{
  position:fixed; inset:0;
  display:none;
  align-items:center; justify-content:center;
  padding:22px;
  background: rgba(6,47,68,.78);
  z-index:100;
}
.lightbox.open{display:flex}
.lightbox img{
  max-width:min(1000px, 95vw);
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  background:#fff;
}
.lb-ui{
  position:absolute;
  top:18px; right:18px;
  display:flex; gap:10px;
}
.lb-btn{
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  color:#fff;
  display:grid; place-items:center;
  cursor:pointer;
}
.lb-btn:hover{background: rgba(255,255,255,.18)}
.lb-cap{
  position:absolute;
  bottom:18px; left:18px; right:18px;
  color:#fff;
  font-weight:700;
  text-align:center;
  opacity:.92;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.video-wrap{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(6,47,68,.10);
  box-shadow: var(--shadow);
  background:#000;
}
.video{
  width:100%;
  aspect-ratio: 16 / 9;
  border:0;
  display:block;
}

.social{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.social .card iframe{width:100%; border:0; height:520px; display:block}

.form{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
}
.field{
  display:flex; flex-direction:column; gap:8px;
  margin-bottom:12px;
}
label{font-weight:800; font-size:13px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(6,47,68,.14);
  outline:none;
  font: inherit;
  background:#fff;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus{border-color: rgba(0,96,160,.55); box-shadow: 0 0 0 5px rgba(160,192,224,.22)}
.form-note{font-size:13px; color:var(--muted); line-height:1.55}
hr.sep{border:0; border-top:1px solid rgba(6,47,68,.10); margin:14px 0}

.footer{
  padding:22px 0 30px;
  color: rgba(14,27,36,.75);
}
.footer .foot{
  background:#fff;
  border: 1px solid rgba(6,47,68,.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding:16px;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}
.footer small{color: var(--muted)}
.footer a{color: var(--primary); font-weight:800; text-decoration:none}
.footer a:hover{text-decoration:underline}

.fab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:90;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.fab a{
  width:54px; height:54px;
  border-radius: 18px;
  display:grid; place-items:center;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.20);
  text-decoration:none;
}
.fab .wa{background:#25D366}
.fab .call{background: linear-gradient(135deg,var(--primary) 0%, var(--primary-2) 100%);}
.fab svg{width:26px; height:26px; fill:#fff}
.fab .hint{
  color:#fff;
  font-size:12px;
  font-weight:900;
  background: rgba(6,47,68,.70);
  padding:8px 10px;
  border-radius: 14px;
  transform: translateY(-6px);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
}
.fab a:hover + .hint{opacity:1; transform: translateY(-10px)}

@media (max-width: 940px){
  .hero-grid{grid-template-columns: 1fr}
  .hero-media{min-height: 280px}
  .grid-3{grid-template-columns: 1fr}
  .branches{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .social{grid-template-columns: 1fr}
  .form{grid-template-columns: 1fr}
  .nav-links{display:none}
  .menu-btn{display:inline-flex}
}