﻿:root {
  --bg: #f4fbff;
  --surface: #ffffff;
  --surface-alt: #eef7ff;
  --text: #0f2033;
  --text-soft: #4d6074;
  --primary: #0046ac;
  --primary-strong: #00398d;
  --accent: #4fd3e2;
  --accent-strong: #1798c3;
  --border: #d6e6f4;
  --shadow: 0 18px 45px rgba(15, 57, 104, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f9fdff 0%, var(--bg) 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.87);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(204, 221, 241, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 16px;
}

.brand {
  width: 210px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 5px auto;
  border-radius: 99px;
}

.hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 8px;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  margin-bottom: 12px;
}

.hero-copy p {
  max-width: 620px;
  color: var(--text-soft);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-strong) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 70, 172, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 15px 28px rgba(0, 70, 172, 0.34);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
}

.hero-highlights {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-card img {
  width: 78px;
  margin-bottom: 18px;
}

.hero-card p {
  color: var(--text-soft);
}

.hero-card-info {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-card-info span {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.5;
}

.hero-glow-a {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -80px;
  right: 5%;
}

.hero-glow-b {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  bottom: -120px;
  left: 8%;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid #d8e8f6;
  border-bottom: 1px solid #d8e8f6;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.cards-2col,
.services-grid {
  display: grid;
  gap: 18px;
}

.cards-2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.service-card,
.contact-card,
.map-wrap,
.timeline-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px;
}

.card p,
.service-card p,
.timeline-item p,
.contact-card p {
  color: var(--text-soft);
}

.profile-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
}

.photo-placeholder {
  min-height: 300px;
  border-radius: var(--radius);
  border: 1px dashed #7fb1da;
  background: repeating-linear-gradient(
    -45deg,
    #f6fbff,
    #f6fbff 12px,
    #eef6ff 12px,
    #eef6ff 24px
  );
  display: grid;
  place-content: center;
  color: #5c7e9d;
  font-weight: 600;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tags span {
  border-radius: 999px;
  border: 1px solid var(--border);
  padding: 7px 12px;
  background: #fff;
  font-size: 0.9rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-step {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--accent-strong));
  color: white;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: #314b66;
}

.timeline {
  display: grid;
  gap: 12px;
}

.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-list li {
  margin-bottom: 8px;
}

.map-label {
  margin-top: 0;
  font-weight: 700;
  color: var(--primary);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 10px;
}

.map-note {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.footer {
  padding: 30px 0;
  background: #072745;
  color: rgba(255, 255, 255, 0.9);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.footer img {
  width: 190px;
  filter: brightness(0) invert(1) saturate(0);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.28s;
}

@media (max-width: 980px) {
  .hero-grid,
  .services-grid,
  .contact-grid,
  .profile-grid,
  .cards-2col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-card {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 80px;
    left: 4%;
    right: 4%;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    padding: 14px;
    display: none;
    flex-direction: column;
    gap: 8px;
  }

  .menu.open {
    display: flex;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
