:root{
  /* White theme base */
  --bg: #f6f9ff;
  --panel: #ffffff;
  --panel2:#ffffff;

  /* Text */
  --text: #0b1b3a;
  --muted:#4b5b78;

  /* Borders/shadows */
  --line: rgba(12, 30, 66, 0.12);
  --shadow: 0 10px 24px rgba(12, 30, 66, 0.10);
  --radius: 18px;
  --container: 1100px;

  /* Primary blue */
  --brand:#2563eb;      /* blue-600 */
  --brand2:#60a5fa;     /* blue-400 */
  --brandSoft: rgba(37, 99, 235, 0.10);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(37,99,235,.18), transparent 55%),
    radial-gradient(900px 500px at 95% 0%, rgba(96,165,250,.18), transparent 55%),
    var(--bg);
  color:var(--text);
}

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

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

/* Header */
.header{
  position: sticky;
  top:0;
  z-index:999;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 260px;
}
.brand__mark{
  display:grid;
  place-items:center;
  width:44px; height:44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  font-weight:900;
  letter-spacing:.5px;
}
.brand__text{ display:flex; flex-direction:column; line-height:1.2; }
.brand__title{ font-weight:800; }
.brand__sub{ color:var(--muted); font-size:12px; }

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav__link{
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
  transition: .2s ease;
}
.nav__link:hover{
  color: var(--text);
  background: rgba(37,99,235,.06);
}
.nav__link.active{
  color:#fff;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

/* Mobile toggle */
.navToggle{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--line);
  background: rgba(37,99,235,.05);
  border-radius: 14px;
  cursor:pointer;
}
.navToggle span{
  display:block;
  height:2px;
  margin:7px 10px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero{
  position:relative;
  min-height: 78vh;
  display:grid;
  align-items:center;
  overflow:hidden;
  border-bottom: 1px solid var(--line);
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.72)),
    url("images/cover.jpg") center/cover no-repeat;
  transform: scale(1.02);
}
.hero__content{
  position:relative;
  padding: 70px 0 40px;
}
.badge{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid rgba(37,99,235,.25);
  background: var(--brandSoft);
  color: var(--brand);
  font-weight: 800;
  font-size: 13px;
}
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}
.hero__subtitle{
  max-width: 720px;
  color: var(--panel);
  font-size: 16px;
  line-height: 1.6;
}
.hero__actions{
  margin-top: 18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 16px;
  border-radius: 14px;
  border:1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  transition: .2s ease;
}
.btn--primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  box-shadow: 0 10px 20px rgba(37,99,235,.18);
}
.btn--primary:hover{ transform: translateY(-1px); }
.btn--ghost{
  border-color: rgba(37,99,235,.25);
  background: rgba(37,99,235,.06);
  color: var(--brand);
}
.btn--ghost:hover{
  background: rgba(37,99,235,.10);
}

/* Mini cards */
.hero__cards{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  max-width: 760px;
}
.miniCard{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.miniCard__title{ color: var(--muted); font-size: 12px; }
.miniCard__value{ font-weight: 900; font-size: 16px; margin-top: 4px; }

/* Sections */
.section{ padding: 70px 0; }
.section--alt{
  background: rgba(37,99,235,.04);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  margin-bottom: 18px;
}
.section__head h2{
  margin:0 0 6px;
  font-size: 28px;
}
.section__head p{
  margin:0;
  color: var(--muted);
  line-height:1.6;
}

.grid{
  display:grid;
  gap:14px;
}
.grid--2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Cards */
.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3{ margin:0 0 10px; }
.mt{ margin-top: 14px; }
.subhead{
  margin: 14px 0 8px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

/* Lists */
.list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.note{
  margin-top: 12px;
  color: var(--muted);
  padding: 12px;
  border-left: 4px solid rgba(37,99,235,.70);
  background: rgba(37,99,235,.08);
  border-radius: 12px;
}

/* Chips */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.chip{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37,99,235,.20);
  background: rgba(37,99,235,.06);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

/* Tabs */
.tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom: 12px;
}
.tab{
  border: 1px solid rgba(37,99,235,.22);
  background: rgba(37,99,235,.06);
  color: var(--brand);
  padding: 10px 12px;
  border-radius: 14px;
  cursor:pointer;
  font-weight: 900;
}
.tab.active{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  border-color: transparent;
}
.tabPanel{ display:none; }
.tabPanel.active{ display:block; }

/* Table */
.tableWrap{
  overflow:auto;
  border-radius: 14px;
  border: 1px solid rgba(12, 30, 66, 0.12);
}
table{
  width:100%;
  border-collapse: collapse;
  min-width: 620px;
  background: #fff;
}
thead th{
  text-align:left;
  padding: 12px;
  font-size: 13px;
  color: var(--brand);
  border-bottom: 1px solid var(--line);
  background: rgba(37,99,235,.05);
}
tbody td{
  padding: 12px;
  color: var(--muted);
  border-bottom: 1px solid rgba(12, 30, 66, 0.08);
  font-size: 14px;
}
tbody tr:hover td{
  background: rgba(37,99,235,.05);
  color: var(--text);
}

/* Timeline */
.timeline{
  display:grid;
  gap:10px;
}
.timeline__item{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(12,30,66,.12);
  background: rgba(37,99,235,.04);
  color: var(--muted);
}
.timeline__tag{
  display:inline-block;
  min-width: 90px;
  margin-right: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,.12);
  border: 1px solid rgba(37,99,235,.22);
  color: var(--brand);
  font-weight: 900;
  font-size: 12px;
}

/* Steps */
.steps{
  margin:0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}
.steps li{ margin: 8px 0; }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.photo{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.photo img{
  width:100%;
  height: 210px;
  object-fit: cover;
}

/* Contact */
.contactActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.muted{ color: var(--muted); }

.mapPlaceholder{
  height: 240px;
  border-radius: var(--radius);
  border: 2px dashed rgba(37,99,235,.25);
  display:grid;
  place-items:center;
  color: var(--muted);
  background: rgba(37,99,235,.04);
}

/* Footer */
.footer{
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.75);
}
.footer__row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer p{ margin:0; font-size: 14px; }

/* Responsive */
@media (max-width: 920px){
  .grid--2{ grid-template-columns: 1fr; }
  .hero__cards{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px){
  .navToggle{ display:block; }

  .nav{
    position:absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding: 12px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255,255,255,.95);
    box-shadow: var(--shadow);
  }
  .nav.open{ display:flex; }
  .nav__link{ text-align:center; }
}
