/* Modern DGK & Associates UI — 2026 Design */

:root {
  --primary: #0d47a1;
  --primary-light: #e8f0ff;
  --accent: #ffb300;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --bg: #f9fafc;
  --card-bg: rgba(255, 255, 255, 0.7);
  --radius: 14px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* NAVBAR */
header {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  max-width: var(--max-width);
  margin: auto;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent);
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: 0.2s ease;
}

nav a:hover,
nav a.active {
  color: var(--primary);
}

/* HERO */
.hero {
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, #eaf1ff, #ffffff);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero p {
  max-width: 650px;
  margin: auto;
  font-size: 1.2rem;
  color: var(--muted);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: #0b3c8c;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* SECTIONS */
.section {
  max-width: var(--max-width);
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section p.lead {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  padding: 1.8rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.quote {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--primary);
}

.quote span {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
}

/* FOOTER */
footer {
  margin-top: 4rem;
  padding: 2rem 1.5rem;
  background: #eef2f7;
}

.footer-inner {
  max-width: var(--max-width);
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  margin-right: 1rem;
  text-decoration: none;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--primary);
}
