@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #0869b8;
  --deep: #073b73;
  --navy: #052c55;
  --green: #55b947;
  --orange: #f47b20;
  --ink: #17202a;
  --muted: #65717e;
  --bg: #f7fafc;
  --white: #fff;
  --line: #e5eaf0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Header */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 12px rgba(7,59,115,0.06);
}
.navin {
  max-width: 1180px; margin: auto;
  padding: 10px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand strong {
  font-size: 1.05rem; color: var(--deep); display: block; line-height: 1.2;
}
.brand span { font-size: 0.72rem; color: var(--muted); font-weight: 500; }

.links {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.9rem; font-weight: 600;
}
.links a {
  padding: 8px 12px; border-radius: 8px; color: var(--muted);
}
.links a:hover, .links a.active { color: var(--blue); background: #eef6ff; }
.nav-cta {
  background: var(--blue); color: #fff !important;
  padding: 10px 16px !important; border-radius: 999px !important;
}
.nav-cta:hover { background: var(--deep) !important; color: #fff !important; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block; width: 18px; height: 2px;
  background: var(--deep); border-radius: 2px; transition: 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none !important;
  flex-direction: column;
  background: #fff; border-top: 1px solid var(--line);
  padding: 8px 16px 14px;
}
.mobile-menu.open {
  display: flex !important;
}
.mobile-menu a {
  padding: 14px 10px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border: none; color: var(--blue); }

@media (max-width: 900px) {
  .links { display: none !important; }
  .hamburger { display: flex !important; }
  .brand strong { font-size: 0.95rem; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px;
  font-weight: 700; font-size: 0.92rem; border: none; cursor: pointer;
  font-family: inherit; transition: 0.2s;
}
.primary { background: var(--blue); color: #fff; }
.primary:hover { background: var(--deep); }
.secondary {
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
}
.secondary:hover { border-color: var(--blue); color: var(--blue); }
.outline-light {
  border: 1.5px solid rgba(255,255,255,0.45); background: transparent; color: #fff;
}
.outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #eef8ff 0%, #f7fff4 100%);
  padding: 56px 18px 64px;
}
.wrap { max-width: 1180px; margin: auto; }
.heroGrid {
  display: grid; gap: 36px; align-items: center;
}
@media (min-width: 900px) {
  .heroGrid { grid-template-columns: 1.1fr 0.9fr; }
}
.eyebrow {
  display: inline-block;
  background: #e4f1ff; color: var(--deep);
  padding: 7px 12px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1; margin-bottom: 12px; color: var(--deep);
}
.hero .lead {
  font-size: 1.1rem; color: var(--muted); max-width: 36ch; margin-bottom: 10px;
}
.hero .sub {
  font-size: 0.98rem; color: var(--muted); max-width: 42ch; margin-bottom: 24px;
}
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.heroCard {
  background: #fff; border: 1px solid var(--line);
  border-radius: 22px; padding: 28px;
  box-shadow: 0 16px 48px rgba(7,59,115,0.08);
  display: flex; align-items: center; justify-content: center;
}
.heroCard img {
  width: 100%; max-height: 260px; object-fit: contain;
}

/* Stats strip */
.stats {
  max-width: 1180px; margin: -28px auto 0; padding: 0 18px;
  position: relative; z-index: 5;
  display: grid; gap: 1px; background: var(--line);
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(7,59,115,0.08);
}
@media (min-width: 600px) { .stats { grid-template-columns: repeat(3, 1fr); } }
.stat { background: #fff; padding: 18px 14px; text-align: center; }
.stat strong { display: block; color: var(--blue); font-size: 1.05rem; }
.stat span { font-size: 0.8rem; color: var(--muted); }

/* Sections */
section { padding: 56px 18px; }
.sectionHead { max-width: 720px; margin-bottom: 28px; }
.sectionHead h2 {
  font-size: clamp(1.55rem, 3.5vw, 2rem); margin-bottom: 8px; color: var(--deep);
}
.sectionHead p { color: var(--muted); }

.page-hero {
  background: #eef6ff; padding: 40px 18px 32px;
  border-bottom: 1px solid var(--line); text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--deep);
}
.page-hero p { color: var(--muted); margin-top: 8px; }
.page-hero .logo-inline {
  max-width: 160px; margin: 0 auto 14px;
}

.grid3 { display: grid; gap: 16px; }
@media (min-width: 700px) { .grid3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; padding: 22px; transition: 0.2s;
}
.card:hover {
  border-color: #c5daf0;
  box-shadow: 0 8px 28px rgba(7,59,115,0.07);
}
.card .icon { font-size: 1.5rem; margin-bottom: 8px; }
.card h3 { font-size: 1.08rem; margin-bottom: 6px; color: var(--deep); }
.card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.svc-list { display: grid; gap: 12px; }
@media (min-width: 700px) { .svc-list { grid-template-columns: 1fr 1fr; } }
.svc-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px;
  display: flex; gap: 12px; align-items: flex-start;
}
.svc-item .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--blue); margin-top: 7px; flex-shrink: 0;
}
.svc-item h4 { font-size: 0.98rem; color: var(--deep); margin-bottom: 2px; }
.svc-item p { font-size: 0.86rem; color: var(--muted); margin: 0; }

.locGrid { display: grid; gap: 18px; }
@media (min-width: 700px) { .locGrid { grid-template-columns: 1fr 1fr; } }
.loc {
  background: #fff; border: 1px solid var(--line);
  border-radius: 18px; padding: 24px;
}
.status {
  display: inline-block; padding: 5px 10px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em;
  background: #e8f7e6; color: #257c25;
}
.status.coming { background: #fff2df; color: #a65a00; }
.loc h3 { font-size: 1.3rem; margin: 12px 0 6px; color: var(--deep); }
.loc p { color: var(--muted); font-size: 0.94rem; margin-bottom: 8px; }
.locBtns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

.mapWrap {
  overflow: hidden; border-radius: 18px;
  border: 1px solid var(--line); background: #fff;
}
.mapWrap iframe { display: block; width: 100%; height: 400px; border: 0; }

.gallery-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
.gallery-item {
  background: #fff; border: 1px solid var(--line);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 6px 24px rgba(7,59,115,0.06);
}
.gallery-item img { width: 100%; height: auto; display: block; }
.gallery-item .cap {
  padding: 12px 16px; font-size: 0.88rem; color: var(--muted);
  border-top: 1px solid var(--line);
}

.contact {
  background: linear-gradient(145deg, var(--deep) 0%, var(--navy) 100%);
  color: #fff;
}
.contact p { color: #dbe8f4; }
.contactGrid { display: grid; gap: 24px; }
@media (min-width: 700px) { .contactGrid { grid-template-columns: 1.1fr 0.9fr; } }
.contactCard {
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px; padding: 24px;
  background: rgba(255,255,255,0.07);
}
.contactCard p { margin-bottom: 14px; }
.contactCard a { color: #fff; font-weight: 700; }
.contactCard a:hover { text-decoration: underline; }

.cta-band {
  max-width: 1180px; margin: 0 auto 48px; padding: 0 18px;
}
.cta-inner {
  background: var(--blue); color: #fff;
  border-radius: 16px; padding: 32px 24px; text-align: center;
}
.cta-inner h2 { margin-bottom: 8px; }
.cta-inner p { opacity: 0.92; margin-bottom: 16px; }
.cta-inner .btns { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

footer {
  background: #041f3d; color: #a8c0d8;
  padding: 22px 18px; text-align: center; font-size: 0.85rem;
}

.call-float {
  position: fixed; bottom: 20px; right: 16px; z-index: 40;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.intro-block {
  background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: 22px; margin-bottom: 28px;
}
.intro-block p { color: var(--muted); margin-bottom: 10px; }
.intro-block p:last-child { margin-bottom: 0; }
