@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary: #0B192C;      /* Deep Trust Navy */
  --color-accent: #C59B27;       /* Industrial Gold/Bronze */
  --color-dark-slate: #1E293B;   /* Slate Base */
  --color-background: #F8FAFC;   /* Clean Slate Light */
  --color-muted: #64748B;        /* Muted Gray */
  --color-border: #E2E8F0;       /* Solid border line */
  --color-success: #059669;      /* Florida License Active Green */
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-speed: 0.3s;
  --border-radius: 1.25rem;       /* 20px Bento Card Corners */
}

/* Base Settings */
body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-primary);
  /* Blueprint Grid background pattern */
  background-image: linear-gradient(var(--color-border) 1px, transparent 1px),
                    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  scrollbar-gutter: stable;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Premium Bento Card Styling */
.bento-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
  overflow: clip;
  position: relative;
}

/* Hover Micro-Animations */
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px -3px rgba(11, 25, 44, 0.08), 0 4px 12px -2px rgba(11, 25, 44, 0.03);
  border-color: #CBD5E1;
}

/* Dark Bento Card variant (Hero & Highlights) */
.bento-card-dark {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.bento-card-dark:hover {
  border-color: var(--color-accent);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 0 15px rgba(197, 155, 39, 0.15);
}

/* Accent Outline Button */
.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease-in-out;
  border: 1px solid var(--color-accent);
}

.btn-accent:hover {
  background-color: transparent;
  color: var(--color-accent);
  box-shadow: 0 0 12px rgba(197, 155, 39, 0.4);
}

/* Subtext utility */
.text-muted-custom {
  color: var(--color-muted);
}

.bento-card-dark .text-muted-custom {
  color: #94A3B8;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-background);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-muted);
}

/* Decorative blueprint line */
.blueprint-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
}

/* Service Card Micro-Layouts */
.service-pill {
  transition: all 0.2s ease;
}
.service-pill:hover {
  background-color: rgba(197, 155, 39, 0.1);
  border-color: var(--color-accent);
}

/* Trust checkmarks list */
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.trust-icon-wrapper {
  color: var(--color-success);
  flex-shrink: 0;
}

/* Preloader styles */
@keyframes pulse-logo {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(197, 155, 39, 0.2)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(197, 155, 39, 0.5)); }
}

.pulse-logo {
  animation: pulse-logo 2.5s infinite ease-in-out;
}

#page-content {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#page-content.loaded {
  opacity: 1;
  transform: translateY(0);
}
