/* Dayal Agency — Static site shared styles */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-dark: #0f172a;
  --text: #0f172a;
  --text-soft: #475569;
  --text-mute: #94a3b8;
  --brand: #2563eb;
  --brand-hover: #1d4ed8;
  --border: #e2e8f0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1, h2, h3, h4, .font-heading {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}

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

::selection { background: var(--brand); color: #fff; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }
.section-sm { padding: 4rem 0; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: "Outfit"; font-weight: 600; font-size: 1.1rem;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--brand); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-links { display: none; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  font-size: 0.875rem; font-weight: 500; color: #334155;
  transition: color .15s;
}
.nav-link:hover, .nav-link.active { color: var(--brand); }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: "IBM Plex Sans"; font-weight: 500;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  cursor: pointer; border: 1px solid transparent;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.btn-lg { padding: 1rem 1.75rem; font-size: 1rem; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-hover); }
.btn-outline { background: transparent; color: var(--text); border-color: #cbd5e1; }
.btn-outline:hover { background: #f8fafc; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--brand);
}

.lead { color: var(--text-soft); font-size: 1.05rem; line-height: 1.7; }

.h1 { font-size: 2.25rem; font-weight: 700; line-height: 1.05; }
@media (min-width: 640px) { .h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .h1 { font-size: 3.75rem; } }
.h2 { font-size: 1.75rem; font-weight: 600; line-height: 1.15; }
@media (min-width: 640px) { .h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .h2 { font-size: 2.5rem; } }
.h3 { font-size: 1.25rem; font-weight: 600; }

/* Grids */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Hero split */
.hero-split { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) {
  .hero-split { grid-template-columns: 7fr 5fr; gap: 3rem; }
}
.hero-image {
  border-radius: 1rem; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px -20px rgba(15,23,42,0.2);
  height: 420px; width: 100%;
  object-fit: cover;
}

/* Cards */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px -16px rgba(15,23,42,0.18);
  border-color: #bfdbfe;
}
.card .icon { color: var(--brand); width: 28px; height: 28px; }
.card h3 { margin-top: 1rem; }
.card p { color: var(--text-soft); margin-top: 0.5rem; }

.card-dark {
  background: var(--bg-dark); color: #fff;
  border-color: var(--bg-dark);
}
.card-dark .icon { color: #60a5fa; }
.card-dark p { color: #cbd5e1; }

/* Bento layout for services */
.bento { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(12, 1fr); }
  .bento .col-8 { grid-column: span 8; }
  .bento .col-4 { grid-column: span 4; }
}
.bento-img-card { background: #fff; border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; }
.bento-img-card img { height: 18rem; width: 100%; object-fit: cover; }
.bento-img-card .body { padding: 2rem; }

.stat-grid { display: grid; grid-template-columns: repeat(3, auto); gap: 1.5rem; max-width: 28rem; }
.stat-value { font-family: "Outfit"; font-weight: 700; font-size: 1.75rem; }
.stat-label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: #64748b; margin-top: 0.25rem; }

/* Section soft */
.section-soft { background: #f8fafc; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Dark cta */
.cta-band {
  background: var(--bg-dark); color: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: flex-start; justify-content: space-between;
}
@media (min-width: 1024px) {
  .cta-band { flex-direction: row; align-items: center; padding: 3.5rem; gap: 2rem; }
}
.cta-band p { color: #cbd5e1; margin-top: 0.75rem; }

/* Footer */
.footer { background: var(--bg-dark); color: #cbd5e1; margin-top: 6rem; padding: 4rem 0 2rem; }
.footer h4 { color: #60a5fa; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer a { color: #cbd5e1; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; gap: 3rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 5fr 3fr 4fr; }
}
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
  display: flex; flex-direction: column; gap: 0.75rem; justify-content: space-between;
  font-size: 0.78rem; color: #64748b;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* Misc */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.flex-wrap { flex-wrap: wrap; }
.flex { display: flex; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

.coverage-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
.coverage-list li { display: flex; align-items: center; gap: 0.5rem; list-style: none; color: #334155; font-size: 0.95rem; }

ul { padding-left: 0; }

/* Legal pages */
.legal-page { max-width: 48rem; margin: 0 auto; padding: 5rem 1.5rem; }
.legal-page h2 { font-size: 1.25rem; font-weight: 600; margin-top: 0; }
.legal-page section { margin-bottom: 2.5rem; }
.legal-page p { color: var(--text-soft); margin: 0.75rem 0 0; }

/* Map */
.map-frame { width: 100%; height: 420px; border: 0; display: block; }
.map-card { border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); margin-top: 2.5rem; }

/* SVG icons */
.icon-sm { width: 18px; height: 18px; }
.icon-md { width: 22px; height: 22px; }
.icon-lg { width: 28px; height: 28px; }

/* Mobile menu */
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--border); background: #fff; cursor: pointer;
}
@media (min-width: 768px) { .menu-toggle { display: none; } }
.mobile-menu { display: none; padding-bottom: 1rem; }
.mobile-menu.open { display: block; }
.mobile-menu .nav-link { display: block; padding: 0.6rem 0.75rem; border-radius: 8px; }
.mobile-menu .nav-link.active { background: #eff6ff; color: var(--brand); }

/* Buttons row */
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
