root{
  --brand:#012c6c;
  --brand-2:#0f766e;
  --dark:#0f172a;
  --text:#334155;
  --muted:#64748b;
  --line:#e2e8f0;
  --soft:#f8fafc;
  --soft-2:#eef4ff;
  --card:#ffffff;
  --shadow:0 12px 30px rgba(15,23,42,.08);
  --radius:20px;
}

html { scroll-behavior:smooth; }
body{
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:#fff;
}

/* small helper for language toggle */
[data-lang] { display: inline; }

/* Banner styles */
.banner {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
    }

.banner:hover {
    opacity: 0.9;
    }

.banner img {
      width: 100%;
      height: auto;
      display: block;
    }

a { text-decoration:none; }
a:hover { text-decoration:underline; }

.skip-link{
  position:absolute;
  left:-9999px;
  top:0;
  background:#111827;
  color:#fff;
  padding:.75rem 1rem;
  border-radius:.75rem;
  z-index:9999;
}
.skip-link:focus{ left:1rem; top:1rem; }

/* Banner styles */
    .banner {
      display: block;
      width: 100%;
      height: auto;
      cursor: pointer;
      transition: opacity 0.3s ease;
    }

    .banner:hover {
      opacity: 0.9;
    }

    .banner img {
      width: 100%;
      height: auto;
      display: block;
    }

.navbar{
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(10px);
}

.navbar-brand{
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--dark);
}

.nav-link{
  color:var(--dark);
  font-weight:600;
  padding:.75rem 1rem !important;
}

.nav-link:hover,
.nav-link:focus{
  color:var(--brand);
}

.brand-mark{
  width:40px;
  height:40px;
  border-radius:12px;
  background:var(--soft-2);
  color:var(--brand);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-brand{
  --bs-btn-bg:var(--brand);
  --bs-btn-border-color:var(--brand);
  --bs-btn-hover-bg:#1d4ed8;
  --bs-btn-hover-border-color:#1d4ed8;
  --bs-btn-color:#fff;
  --bs-btn-hover-color:#fff;
  box-shadow:none;
}

.btn-outline-brand{
  --bs-btn-color:var(--brand);
  --bs-btn-border-color:var(--brand);
  --bs-btn-hover-bg:var(--brand);
  --bs-btn-hover-border-color:var(--brand);
  --bs-btn-hover-color:#fff;
}

.hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(16,24,40,.78), rgba(37,99,235,.28)),
    url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color:#fff;
  min-height:72vh;
  display:flex;
  align-items:center;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(15,23,42,.72) 0%, rgba(15,23,42,.25) 60%, rgba(15,23,42,.15) 100%);
}

.hero .container{
  position:relative;
  z-index:1;
}

.hero-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius);
  backdrop-filter:blur(12px);
  box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.45rem .85rem;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.15);
  font-weight:600;
  letter-spacing:.01em;
}

.hero h1{
  font-weight:800;
  letter-spacing:-.04em;
  line-height:1.05;
}

.hero-copy{
  max-width:48rem;
}

.hero-card-text{
  color:rgba(255,255,255,.85);
}

.hero-image-wrap{
  position:relative;
}

.hero-image{
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.section{
  padding:5rem 0;
}

.section-soft{
  background:var(--soft);
}

.contact-strip{
  margin-top:-3rem;
  position:relative;
  z-index:2;
}

.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:calc(var(--radius) + 4px);
  box-shadow:var(--shadow);
}

.eyebrow{
  display:inline-block;
  font-size:.875rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--brand);
  margin-bottom:.85rem;
}

.section-title{
  font-weight:800;
  letter-spacing:-.03em;
  color:var(--dark);
}

.lead-text{
  font-size:1.06rem;
  color:var(--muted);
  line-height:1.8;
}

.divider{
  width:72px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--brand), var(--brand-2));
}

.info-box{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}

.icon-wrap{
  width:52px;
  height:52px;
  border-radius:16px;
  background:var(--soft-2);
  color:var(--brand);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
}

.card-clean{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  height:100%;
}

.card-clean .card-body{
  padding:1.5rem;
}

.feature{
  display:flex;
  gap:1rem;
  align-items:flex-start;
}

.feature h3{
  font-size:1.05rem;
  margin-bottom:.35rem;
  color:var(--dark);
  font-weight:700;
}

.feature p,
.card-clean p{
  color:var(--muted);
  margin-bottom:0;
  line-height:1.7;
}

.hours-list{
  list-style:none;
  padding:0;
  margin:0;
}

.hours-list li{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  padding:.65rem 0;
  border-bottom:1px dashed var(--line);
  color:var(--text);
}

.hours-list li:last-child{ border-bottom:none; }

.service-card{
  overflow:hidden;
}

.service-image{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}

.article-card img{
  aspect-ratio:16/9;
  object-fit:cover;
}

.article-card .card-body{
  padding:1.4rem;
}

.quote-card{
  max-width:820px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:2rem;
  position:relative;
}

.quote-mark{
  position:absolute;
  top:.9rem;
  left:1.15rem;
  font-size:4rem;
  line-height:1;
  color:rgba(0,0,0,.8);
  font-weight:800;
}

.blockquote p{
  font-size:1.4rem;
  line-height:1.7;
  font-weight:700;
  color:var(--dark);
  margin-bottom:0;
  padding-left:1rem;
}

.blockquote-footer{
  color:var(--muted);
  font-weight:600;
  padding-left:1rem;
}

.share-row{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:.75rem;
}

.share-label{
  color:var(--dark);
  font-weight:700;
}

.share-icon{
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  background:#fff;
  color:var(--brand);
  box-shadow:0 8px 20px rgba(15,23,42,.06);
}

.share-icon:hover,
.share-icon:focus{
  background:var(--brand);
  color:#fff;
  text-decoration:none;
}

.form-control,
.form-select{
  border:1px solid var(--line);
  border-radius:14px;
  padding:.9rem 1rem;
  box-shadow:none;
  background:#fff;
  color:var(--text);
}

.form-control:focus,
.form-select:focus{
  border-color:var(--brand);
  box-shadow:0 0 0 .2rem rgba(37,99,235,.12);
}

.form-label{
  color:var(--dark);
}

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

.form-check-input:checked{
  background-color:var(--brand);
  border-color:var(--brand);
}

.invalid-feedback{
  font-size:.92rem;
}

textarea.form-control{
  min-height:160px;
  resize:vertical;
}

.footer{
  background:#0f172a;
  color:#cbd5e1;
}

.footer a{
  color:#fff;
}

.footer a:hover{
  color:#e2e8f0;
}

.focus-ring:focus{
  outline:3px solid #111827;
  outline-offset:3px;
}

@media (max-width: 991.98px){
  .hero{ min-height:auto; padding:5rem 0 4rem; }
  .contact-strip{ margin-top:0; }
}

@media (max-width: 575.98px){
  .section{
    padding:4rem 0;
  }

  .quote-card{
    padding:1.5rem;
  }

  .blockquote p{
    font-size:1.15rem;
  }
}
