/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #FFFDF9;
  --bg-secondary: #F3EFE8;
  --bg-white: #FFFFFF;
  --text-dark: #2B2B2B;
  --text-muted: #6B7280;
  --accent: #A5B4FC;
  --accent-hover: #818CF8;
  --btn-text: #1F2937;
  --border-light: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-hover); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}

.header-top a { color: var(--text-dark); font-weight: 500; }
.header-top a:hover { color: var(--accent-hover); }

.header-contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact-info svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  fill: var(--accent-hover);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo a {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

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

/* Desktop Navigation */
.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav > li { list-style: none; position: relative; }

.main-nav > li > a {
  display: block;
  padding: 10px 16px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
  background: var(--bg-secondary);
  color: var(--accent-hover);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  padding: 8px 0;
  z-index: 1001;
}

.main-nav > li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li { list-style: none; }

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: background var(--transition), padding-left var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--bg-secondary);
  padding-left: 28px;
  color: var(--accent-hover);
}

/* Dropdown animation - staggered items */
.dropdown-menu li { opacity: 0; transform: translateY(-8px); transition: opacity 0.2s ease, transform 0.2s ease; }
.main-nav > li:hover > .dropdown-menu li { opacity: 1; transform: translateY(0); }
.dropdown-menu li:nth-child(1) { transition-delay: 0.03s; }
.dropdown-menu li:nth-child(2) { transition-delay: 0.06s; }
.dropdown-menu li:nth-child(3) { transition-delay: 0.09s; }
.dropdown-menu li:nth-child(4) { transition-delay: 0.12s; }
.dropdown-menu li:nth-child(5) { transition-delay: 0.15s; }
.dropdown-menu li:nth-child(6) { transition-delay: 0.18s; }
.dropdown-menu li:nth-child(7) { transition-delay: 0.21s; }
.dropdown-menu li:nth-child(8) { transition-delay: 0.24s; }
.dropdown-menu li:nth-child(9) { transition-delay: 0.27s; }
.dropdown-menu li:nth-child(10) { transition-delay: 0.30s; }
.dropdown-menu li:nth-child(11) { transition-delay: 0.33s; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle svg { width: 28px; height: 28px; fill: var(--text-dark); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,253,249,0.92) 0%, rgba(255,253,249,0.7) 50%, rgba(255,253,249,0.4) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 500px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease, box-shadow var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--btn-text);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(165,180,252,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--btn-text);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--btn-text);
}

.btn-sm { height: 44px; padding: 0 20px; font-size: 0.88rem; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-secondary); }
.section-white { background: var(--bg-white); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border-light);
}

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

.card-img { width: 100%; height: 220px; object-fit: cover; border-radius: 0; }

.card-body { padding: 24px; }

.card-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

/* ===== FORM STYLES ===== */
.feedback-form-container {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.feedback-form-container h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 0; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-main);
  background: var(--bg-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(165,180,252,0.2);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 16px;
}

.form-submit { text-align: center; }

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  background: var(--accent);
  color: var(--btn-text);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease;
}

.submit-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

#form-success {
  text-align: center;
  padding: 24px;
}

#form-success p {
  color: #059669;
  font-weight: 600;
  font-size: 1.05rem;
}

/* ===== CTA BLOCKS ===== */
.cta-block {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  margin: 40px 0;
}

.cta-block h2, .cta-block h3 {
  color: var(--btn-text);
  margin-bottom: 12px;
}

.cta-block p {
  color: var(--btn-text);
  opacity: 0.85;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.cta-block .btn {
  background: var(--bg-white);
  color: var(--btn-text);
}

.cta-block .btn:hover {
  background: var(--bg-primary);
  box-shadow: var(--shadow-md);
}

/* ===== MAP ===== */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 60px 0; }

.content-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 32px;
}

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

.content-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 24px;
}

.content-section p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-section ul, .content-section ol {
  margin: 16px 0;
  padding-left: 24px;
}

.content-section li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-secondary); }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent-hover);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}

.faq-answer p { color: var(--text-muted); line-height: 1.8; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text-dark);
  color: #D1D5DB;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-top: 12px; }

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

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

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

.footer-col a {
  color: #9CA3AF;
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

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

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  height: 52px;
  padding: 0 28px;
  background: var(--accent);
  color: var(--btn-text);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: background var(--transition), transform 0.15s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sticky-quote-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.sticky-quote-btn svg { width: 18px; height: 18px; fill: var(--btn-text); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.modal-overlay.active { display: flex; }

.modal-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-secondary);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  font-size: 1.2rem;
  color: var(--text-dark);
}

.modal-close:hover { background: var(--border-light); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--bg-secondary);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumbs a { color: var(--accent-hover); }
.breadcrumbs span { margin: 0 8px; }

/* ===== SERVICE AREAS LIST ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.areas-grid a {
  display: block;
  padding: 14px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 500;
  transition: all var(--transition);
}

.areas-grid a:hover {
  border-color: var(--accent);
  background: var(--bg-secondary);
  transform: translateX(4px);
}

/* ===== ICON FEATURES ===== */
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-hover);
}

/* ===== NEIGHBORHOODS ===== */
.neighborhoods-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.neighborhoods-list span {
  background: var(--bg-secondary);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* ===== CONTACT INFO ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-info-card svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-hover);
  margin-bottom: 12px;
}

.contact-info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info-card p, .contact-info-card a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ===== MOBILE MENU ===== */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  max-width: 400px;
  height: 100vh;
  background: var(--bg-white);
  z-index: 2001;
  transition: right 0.35s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-nav-overlay.active { right: 0; }

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  display: none;
  backdrop-filter: blur(2px);
}

.mobile-nav-backdrop.active { display: block; }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-header span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.mobile-close-btn {
  background: var(--bg-secondary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-dark);
  transition: background var(--transition);
}

.mobile-close-btn:hover { background: var(--border-light); }

.mobile-nav-links {
  list-style: none;
  padding: 16px 0;
  flex: 1;
}

.mobile-nav-links > li { border-bottom: 1px solid var(--border-light); }

.mobile-nav-links > li > a {
  display: block;
  padding: 16px 24px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  transition: background var(--transition);
}

.mobile-nav-links > li > a:hover { background: var(--bg-secondary); }

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-main);
  transition: background var(--transition);
}

.mobile-dropdown-toggle:hover { background: var(--bg-secondary); }

.mobile-dropdown-toggle::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent-hover);
  transition: transform var(--transition);
}

.mobile-dropdown-toggle.active::after {
  content: '−';
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: var(--bg-secondary);
}

.mobile-submenu.active { max-height: 800px; }

.mobile-submenu a {
  display: block;
  padding: 12px 24px 12px 40px;
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-submenu a:hover {
  color: var(--accent-hover);
  padding-left: 48px;
}

.mobile-nav-contact {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 500;
}

.mobile-nav-contact svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-hover);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-top { display: none; }

  .main-nav { display: none; }

  .menu-toggle { display: block; }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .hero { min-height: auto; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .section { padding: 48px 0; }

  .section-header h2 { font-size: 1.6rem; }

  .page-hero { padding: 40px 0; }
  .page-hero h1 { font-size: 1.7rem; }

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

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

  .cta-block { padding: 32px 20px; }

  .sticky-quote-btn {
    right: 50%;
    transform: translateX(50%);
    bottom: 16px;
  }

  .sticky-quote-btn:hover {
    transform: translateX(50%) translateY(-2px);
  }

  .modal-content { padding: 28px 20px; }

  .content-section h2 { font-size: 1.35rem; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.65rem; }
  .container { padding: 0 16px; }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.5s ease forwards; }
