:root {
  --primary: #0d5e8a;
  --accent: #1a9e6b;
  --bg: #f6f9fc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(13,94,138,0.08);
  --radius: 10px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ─────────────────────────────── */
nav {
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  font-size: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

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

.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #178d5e;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--primary);
}

/* ── HERO ─────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0a4a6e 100%);
  color: var(--white);
  padding: 90px 0 70px;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto 32px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #178d5e;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.stat-tiles {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-tile {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  border-radius: var(--radius);
  padding: 24px 36px;
  text-align: center;
  min-width: 160px;
}

.stat-tile .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.stat-tile .stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 4px;
}

/* ── SECTION TITLES ──────────────────── */
.section {
  padding: 72px 0;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

/* ── SERVICES GRID ───────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card .icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── TRUST STRIP ─────────────────────── */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trust-item .trust-icon {
  font-size: 1.6rem;
}

.trust-item strong {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ── ABOUT CONTENT ───────────────────── */
.content-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 32px;
}

.content-block h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.content-block h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 8px;
}

.content-block p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.value-item {
  background: var(--bg);
  padding: 20px;
  border-radius: var(--radius);
}

.value-item h4 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.team-card {
  background: var(--bg);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
}

.team-card .team-icon {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.team-card h4 {
  color: var(--text-dark);
  font-size: 1.05rem;
}

.team-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ── CONTACT PAGE ────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-card h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-detail .cd-icon {
  font-size: 1.4rem;
}

.contact-detail strong {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.contact-detail span, .contact-detail a {
  color: var(--text-light);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-form h2 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: #0a4a6e;
}

/* ── LEGAL PAGES ────────────────────── */
.legal-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  max-width: 840px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  margin-top: 32px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  color: var(--text-light);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 12px;
}

.legal-content li {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

/* ── PAGE HEADER ─────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #0a4a6e 100%);
  color: var(--white);
  padding: 56px 0 44px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-header p {
  opacity: 0.9;
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ── FOOTER ──────────────────────────── */
footer {
  background: #0f172a;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero {
    padding: 60px 0 48px;
  }

  .stat-tiles {
    gap: 16px;
  }

  .stat-tile {
    min-width: 120px;
    padding: 18px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    gap: 28px;
  }

  .content-block {
    padding: 24px;
  }

  .legal-content {
    padding: 24px;
  }

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .page-header h1 {
    font-size: 1.7rem;
  }
}