:root{
  --bg: #f6f7fb;
  --panel: #ffffff;
  --panel-2: #f1f3f8;
  --text: #111827;
  --muted: #6b7280;
  --line: rgba(17,24,39,.10);
  --shadow: 0 10px 30px rgba(17,24,39,.08);
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Navbar */
.navbar{
  background: #0f172a !important; /* dark/navy */
}
.brand-logo{
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
}
.brand-text{
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 0.95rem;
}

/* Hero */
.hero{
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(59,130,246,.18), transparent 60%),
    radial-gradient(900px 420px at 80% 10%, rgba(16,185,129,.10), transparent 55%),
    linear-gradient(180deg, #eef2ff, var(--bg));
  padding: 26px 0 22px;
}

.hero-card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero-card h1{
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.12;
  font-weight: 900;
}

.badge-line{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge.text-bg-light{
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid var(--line);
}

.hero-metrics{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 576px){
  .hero-metrics{ grid-template-columns: repeat(3, 1fr); }
}
.metric{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  background: #ffffff;
}
.metric-title{ font-size: .78rem; color: var(--muted); }
.metric-value{ font-weight: 800; color: #0f172a; }

/* Right hero cards */
.hero-side{
  display: grid;
  gap: 12px;
}
.hero-side-card{
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.service-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.service-list li{
  display: flex;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--panel-2);
  padding: 10px 12px;
  border-radius: 14px;
}

/* Sections */
.section{
  padding: 28px 0;
}
.section-alt{
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head{
  margin-bottom: 14px;
}
.section-head h2{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 6px;
}
.section-head p{
  color: var(--muted);
}

/* Cards */
.rts-card{
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow);
}

.icon-chip{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #eef2ff;
  font-size: 1.25rem;
  color: #1d4ed8;
}

.mini-list{
  margin: 12px 0 0;
  padding-left: 18px;
  color: #334155;
}

/* Gallery */
.gallery-card{
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  height: 100%;
  box-shadow: var(--shadow);
}
.gallery-thumb{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #e5e7eb;
}
.gallery-body{
  padding: 12px;
}
.gallery-title{
  font-weight: 900;
  margin: 0;
  font-size: 1rem;
  color: #0f172a;
}
.gallery-sub{
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

/* Buttons */
.btn-lg{
  border-radius: 14px;
  padding: 12px 14px;
}

/* Footer */
.footer{
  padding: 18px 0;
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: #334155;
}
