@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F6F7F9;
  --white: #FFFFFF;
  --navy: #1C3557;
  --navy-dark: #122540;
  --navy-light: #2A4A70;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --grey-100: #F0F2F5;
  --grey-200: #E2E8F0;
  --grey-300: #CBD5E1;
  --grey-400: #94A3B8;
  --grey-500: #64748B;
  --text: #1A1F36;
  --text-muted: #4A5568;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(28,53,87,0.08);
  --shadow-lg: 0 12px 48px rgba(28,53,87,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 15px; cursor: pointer; border: none;
  transition: var(--transition); letter-spacing: 0.02em;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(28,53,87,0.25); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-2px); }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); background: rgba(37,99,235,0.08);
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}

.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: 17px; max-width: 600px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

.card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.tag {
  display: inline-block; padding: 4px 14px;
  background: var(--grey-100); border-radius: 100px;
  font-size: 13px; color: var(--text-muted); font-weight: 500;
}

/* Divider line accent */
.divider { width: 56px; height: 3px; background: var(--accent); margin: 24px 0; border-radius: 2px; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 100px 0 80px; text-align: center; color: white;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); color: white; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.6);
  justify-content: center; margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* Utility */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Icon box */
.icon-box {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: rgba(28,53,87,0.08); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.icon-box svg { width: 26px; height: 26px; stroke: var(--navy); fill: none; stroke-width: 1.8; }

/* Stats bar */
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--navy); }
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* Testimonial card */
.testi-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.testi-card .stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p { font-style: italic; color: var(--text-muted); margin-bottom: 24px; font-size: 16px; line-height: 1.8; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-family: 'Playfair Display', serif; font-size: 18px; }
.testi-name { font-weight: 600; color: var(--text); font-size: 15px; }
.testi-role { font-size: 13px; color: var(--grey-400); }

/* Form */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--text); transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(28,53,87,0.08);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* Service page detail */
.service-detail-icon {
  width: 80px; height: 80px; border-radius: 16px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.service-detail-icon svg { width: 36px; height: 36px; stroke: white; fill: none; stroke-width: 1.6; }

/* Checklist */
.checklist { list-style: none; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--grey-100);
  color: var(--text-muted); font-size: 15px;
}
.checklist li::before {
  content: ''; width: 20px; height: 20px; min-width: 20px;
  background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* Policy page */
.policy-content h2 { font-size: 1.6rem; margin: 40px 0 12px; }
.policy-content h3 { font-size: 1.2rem; margin: 28px 0 10px; color: var(--navy); font-family: 'DM Sans', sans-serif; font-weight: 600; }
.policy-content p { color: var(--text-muted); margin-bottom: 16px; }
.policy-content ul { margin: 12px 0 20px 20px; }
.policy-content ul li { color: var(--text-muted); margin-bottom: 8px; list-style: disc; }

/* Fade in animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up-2 { animation: fadeUp 0.7s 0.15s ease forwards; opacity: 0; }
.fade-up-3 { animation: fadeUp 0.7s 0.3s ease forwards; opacity: 0; }
.fade-up-4 { animation: fadeUp 0.7s 0.45s ease forwards; opacity: 0; }