/* ==========================================================================
   EVERGREEN 24/7 LOCK & KEY - EXACT MATCH MASTER STYLESHEET
   ========================================================================== */

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

:root {
  /* Exact Image Colors */
  --bg-forest: #083220;
  --bg-forest-dark: #052618;
  --bg-forest-light: #0d422c;
  --brand-green: #16a34a;
  --brand-green-bright: #22c55e;
  --brand-emerald: #10b981;

  /* Neutrals */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;

  /* Radius & Elevation */
  --radius-card: 16px;
  --radius-pill: 9999px;
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 15px 35px rgba(8, 50, 32, 0.15);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-top: 0;
  line-height: 1.2;
}

/* Container */
.eg-container {
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Buttons */
.btn-forest {
  background-color: var(--bg-forest);
  color: #ffffff;
  font-weight: 800;
  border-radius: 12px;
  padding: 0.85rem 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-forest:hover {
  background-color: var(--brand-green);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.3);
}

.btn-green-bright {
  background-color: var(--brand-green-bright);
  color: #ffffff;
  font-weight: 900;
  border-radius: 12px;
  padding: 0.85rem 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.btn-green-bright:hover {
  background-color: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.45);
}

.btn-white-outline {
  background-color: #ffffff;
  color: var(--text-dark);
  font-weight: 800;
  border-radius: 12px;
  padding: 0.85rem 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border: 1.5px solid var(--border-light);
  transition: all 0.25s ease;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.btn-white-outline:hover {
  border-color: var(--bg-forest);
  background-color: #f8fafc;
  transform: translateY(-2px);
}

/* Cards & Badges */
.card-white {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: var(--shadow-subtle);
  transition: all 0.3s ease;
}

.card-white:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(22, 163, 74, 0.4);
}

/* ETA Box (Exact Image 1) */
.eta-box {
  background-color: rgba(8, 50, 32, 0.95);
  border: 1.5px solid var(--brand-green-bright);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Quick Category Pill (Exact Image 1 & 2) */
.category-pill-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.25s ease;
}

.category-pill-card:hover {
  border-color: var(--brand-green);
  background-color: #f0fdf4;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.12);
}

/* Section Header Divider Line */
.section-divider-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-divider-line {
  height: 2px;
  background: var(--border-light);
  flex: 1;
  max-width: 140px;
}

/* Animated Pattern Keyframe (Fast Continuous Motion) */
@keyframes patternScroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 240px 240px;
  }
}

.animate-pattern {
  animation: patternScroll 10s linear infinite !important;
  will-change: background-position;
}
