@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,800;1,600;1,800&display=swap');

:root {
  --primary-red: #dc2626;
  --primary-red-hover: #b91c1c;
  --dark-navy: #061229;
  --mid-navy: #091b3e;
  --card-navy: #0b1938;
  --cream-bg: #FBF9F5;
  --cream-border: #EDE8E0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #1f2937;
  background-color: #ffffff;
  overflow-x: hidden;
}

.font-serif-accent {
  font-family: 'Playfair Display', Georgia, serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Dropdown styling */
.dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-parent:hover .dropdown-menu,
.dropdown-parent:focus-within .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Drawer */
.mobile-menu-drawer {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
}

.mobile-menu-drawer.open {
  transform: translateX(0);
}

/* FAQ Accordion */
.faq-item {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-collapse-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item.active {
  border-color: #dc2626 !important;
  box-shadow: 0 4px 20px -2px rgba(220, 38, 38, 0.12);
}

.faq-item.active .faq-collapse {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-icon {
  background-color: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #ffffff !important;
}

.faq-item.active .faq-icon svg {
  transform: rotate(45deg);
}

/* Hero background */
.hero-bg {
  background: linear-gradient(135deg, #061229 0%, #091b3e 50%, #061229 100%);
}

.hero-glow-red {
  background: radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.15), transparent 45%);
}

.hero-glow-blue {
  background: radial-gradient(circle at 80% 70%, rgba(30, 58, 138, 0.25), transparent 50%);
}

/* Glass panel */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Sticky Mobile CTA Bar */
@media (max-width: 768px) {
  .mobile-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  }
}
