/*
Theme Name: Ronnies Taxis
Author: Shaun Hearnden
Version: 1.0.0
Description: Professional taxi service theme for Ronnies Taxis, Preston
*/

/* ==========================================================================
   LAYER 1: DESIGN TOKENS
   ========================================================================== */

:root {
  /* Colors - Primary (Navy) */
  --primary: hsl(213, 52%, 25%);
  --primary-light: hsl(213, 45%, 35%);
  --primary-dark: hsl(213, 60%, 18%);
  --primary-foreground: hsl(0, 0%, 100%);

  /* Colors - Accent (Yellow) */
  --accent: hsl(47, 91%, 52%);
  --accent-hover: hsl(47, 91%, 45%);
  --accent-light: hsl(47, 80%, 85%);
  --accent-foreground: hsl(220, 25%, 15%);

  /* Colors - Tertiary Accent */
  --tertiary: hsl(198, 69%, 66%);
  --tertiary-hover: hsl(198, 69%, 60%);
  --tertiary-foreground: hsl(218, 30%, 16%);

  /* Colors - Backgrounds */
  --background: hsl(210, 20%, 98%);
  --foreground: hsl(220, 25%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 25%, 15%);
  --secondary: hsl(210, 25%, 95%);
  --secondary-foreground: hsl(213, 52%, 25%);

  /* Colors - Muted */
  --muted: hsl(210, 20%, 94%);
  --muted-foreground: hsl(220, 10%, 45%);
  --grey-warm: hsl(210, 15%, 97%);
  --grey-text: hsl(220, 10%, 40%);

  /* Colors - Borders & Inputs */
  --border: hsl(210, 20%, 88%);
  --input: hsl(210, 20%, 88%);
  --ring: hsl(213, 52%, 25%);

  /* Colors - Destructive */
  --destructive: hsl(0, 84%, 60%);
  --destructive-foreground: hsl(0, 0%, 100%);

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Border Radius */
  --radius: 0.75rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 0.25rem);
  --radius-2xl: calc(var(--radius) + 0.5rem);
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px hsl(220, 25%, 15%, 0.05);
  --shadow-md: 0 4px 12px hsl(220, 25%, 15%, 0.08);
  --shadow-lg: 0 8px 30px hsl(220, 25%, 15%, 0.12);
  --shadow-yellow: 0 4px 20px hsl(47, 91%, 52%, 0.3);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(213, 52%, 25%) 0%, hsl(213, 60%, 18%) 100%);
  --gradient-overlay: linear-gradient(180deg, hsl(213, 52%, 25%, 0.85) 0%, hsl(213, 60%, 18%, 0.95) 100%);

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
}

/* ==========================================================================
   LAYER 2: BASE RESET & TYPOGRAPHY
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

/* Screen Reader Only */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.skip-link {
  left: -9999rem;
  top: 2.5rem;
  z-index: 999999999;
  text-decoration: underline;
}

.skip-link:focus {
  display: block;
  left: 6px;
  top: 7px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  line-height: normal;
  padding: 15px 23px 14px;
  z-index: 100000;
  right: auto;
  background: var(--card);
  color: var(--primary);
}

/* ==========================================================================
   LAYER 3: LAYOUT UTILITIES
   ========================================================================== */

.container-ronnies {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 640px) {
  .container-ronnies {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .container-ronnies {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
}

.section-padding {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
  }
}

/* Flex utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }
.gap-16 { gap: var(--space-16); }
.gap-20 { gap: var(--space-20); }
.gap-24 { gap: var(--space-24); }
.gap-32 { gap: var(--space-32); }

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

/* Grid utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }

@media (min-width: 1024px) {
  .lg\:text-left {
    text-align: left;
  }
}

.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-relaxed { line-height: 1.7; }

/* Spacing utilities */
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }

.mx-auto { margin-left: auto; margin-right: auto; }

.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }

/* Width utilities */
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

/* ==========================================================================
   LAYER 4: COMPONENTS - BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  white-space: nowrap;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  height: 2.75rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Button Variants */
.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  color: var(--primary-foreground);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
  box-shadow: var(--shadow-md);
}

.btn-accent:hover {
  filter: brightness(0.95);
  box-shadow: var(--shadow-yellow);
  color: var(--accent-foreground);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-hero {
  background-color: var(--accent);
  color: var(--accent-foreground);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
  filter: brightness(0.95);
  box-shadow: 0 8px 40px hsl(47, 91%, 52%, 0.4);
  color: var(--accent-foreground);
}

.btn-hero-outline {
  background-color: hsl(0, 0%, 100%, 0.1);
  border: 2px solid hsl(0, 0%, 100%, 0.3);
  color: var(--primary-foreground);
  backdrop-filter: blur(4px);
}

.btn-hero-outline:hover {
  background-color: hsl(0, 0%, 100%, 0.2);
  color: var(--primary-foreground);
}

.btn-tertiary {
  background-color: var(--foreground);
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.btn-tertiary:hover {
  background-color: hsl(220, 25%, 10%);
  box-shadow: var(--shadow-lg);
  color: var(--accent);
}

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

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

/* Button Sizes */
.btn-sm {
  height: 2.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  height: 3rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

.btn-xl {
  height: 3.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ==========================================================================
   LAYER 4: COMPONENTS - CARDS
   ========================================================================== */

.card {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.card-hover {
  transition: all var(--transition-slow);
}

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

.card-secondary {
  background-color: var(--secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

/* Icon Box */
.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-box-lg {
  width: 3.5rem;
  height: 3.5rem;
}

.icon-box-lg svg {
  width: 1.75rem;
  height: 1.75rem;
}

.icon-box-xl {
  width: 4rem;
  height: 4rem;
}

.icon-box-xl svg {
  width: 2rem;
  height: 2rem;
}

.icon-box-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.icon-box-accent {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.icon-box-accent-light {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* Number Circle */
.number-circle {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}

.number-circle-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.number-circle-accent {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

/* ==========================================================================
   LAYER 4: COMPONENTS - NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: hsl(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 768px) {
  .header-inner {
    height: 5rem;
  }
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.logo-icon {
  width: 2.75rem;
  height: 2.75rem;
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .logo-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
}

.logo-text {
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
  }
}

@media (min-width: 768px) {
  .logo-text {
    font-size: 1.25rem;
  }
}

.logo-text-accent {
  color: var(--accent);
}

.logo-image {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-image {
    height: 50px;
  }
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }
}

.nav-link {
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all var(--transition-base);
}

.nav-link:hover {
  color: var(--foreground);
  background-color: hsl(210, 25%, 95%, 0.5);
}

.nav-link.active {
  color: var(--primary);
  background-color: var(--secondary);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

@media (min-width: 768px) {
  .header-actions {
    gap: var(--space-4);
  }
}

.header-phone {
  display: none;
}

@media (min-width: 768px) {
  .header-phone {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
  }
  
  .header-phone svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.header-cta {
  display: none;
}

@media (min-width: 640px) {
  .header-cta {
    display: flex;
  }
}

/* Mobile Menu Toggle - Animated Hamburger */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: #000;
  cursor: pointer;
}


/* Hamburger Box Container */
.hamburger-box {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 14px;
}

/* Hamburger Bars */
.hamburger-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Position the three bars - all using top for consistency */
.hamburger-bar:nth-child(1) {
  top: 0;
}

.hamburger-bar:nth-child(2) {
  top: 6px;
}

.hamburger-bar:nth-child(3) {
  top: 12px;
}

/* Animated state - transforms to X */
.menu-toggle.is-active .hamburger-bar:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.menu-toggle.is-active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.is-active .hamburger-bar:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* Subtle glow when active */
.menu-toggle.is-active {
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Navigation */
.nav-mobile {
  display: grid;
  grid-template-rows: 0fr;
  border-top: 1px solid transparent;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}

.nav-mobile-inner {
  overflow: hidden;
}

.nav-mobile.is-open {
  grid-template-rows: 1fr;
  border-top-color: var(--border);
}

.nav-mobile.is-open .nav-mobile-inner {
  padding: var(--space-4) 0 var(--space-6);
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.nav-mobile-link {
  display: block;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 500;
  color: var(--muted-foreground);
  transition: all var(--transition-base);
  opacity: 0;
  transform: translateY(-10px);
}

.nav-mobile.is-open .nav-mobile-link {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--item-index, 0) * 50ms + 100ms);
}

.nav-mobile-link:hover {
  color: var(--foreground);
  background-color: hsl(210, 25%, 95%, 0.5);
}

.nav-mobile-link.active {
  color: var(--primary);
  background-color: var(--secondary);
}

/* Mobile Phone Section */
.nav-mobile-phone {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(-10px);
}

.nav-mobile.is-open .nav-mobile-phone {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--item-index, 0) * 50ms + 100ms);
}

.nav-mobile-phone-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background-color: var(--secondary);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.nav-mobile-phone-link:hover {
  background-color: hsl(210, 25%, 92%);
}

.nav-mobile-phone-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-mobile-phone-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent-foreground);
}

.nav-mobile-phone-text {
  display: flex;
  flex-direction: column;
}

.nav-mobile-phone-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-mobile-phone-number {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

/* Mobile App Download Section */
.nav-mobile-apps {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(-10px);
}

.nav-mobile.is-open .nav-mobile-apps {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--item-index, 0) * 50ms + 100ms);
}

.nav-mobile-apps-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
  padding-left: var(--space-4);
}

.nav-mobile-apps-buttons {
  display: flex;
  gap: var(--space-3);
  padding: 0 var(--space-4);
}

.nav-mobile-app-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.nav-mobile-app-btn:hover {
  background-color: var(--primary-light);
  color: var(--primary-foreground);
  transform: translateY(-2px);
}

.nav-mobile-app-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.nav-mobile-app-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-weight: 600;
  font-size: 0.8125rem;
}

.nav-mobile-app-btn span small {
  font-size: 0.625rem;
  font-weight: 400;
  opacity: 0.8;
}

/* ==========================================================================
   LAYER 4: COMPONENTS - FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* App Download Strip */
.footer-app-strip {
  background-color: var(--accent);
  padding: var(--space-8) 0;
}

.footer-app-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .footer-app-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-app-content {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer-app-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-app-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

.footer-app-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent-foreground);
  margin-bottom: 0;
}

.footer-app-text p {
  color: hsl(220, 25%, 15%, 0.8);
  margin-bottom: 0;
}

.footer-app-buttons {
  display: flex;
  gap: var(--space-3);
}

.footer-app-buttons a {
  transition: transform var(--transition-base);
}

.footer-app-buttons a:hover {
  transform: scale(1.05);
}

.footer-app-buttons img {
  height: 3rem;
}

/* Footer Main */
.footer-main {
  padding: var(--space-12) 0;
}

@media (min-width: 768px) {
  .footer-main {
    padding: var(--space-16) 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-12);
  }
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--primary-foreground);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-list-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: hsl(0, 0%, 100%, 0.8);
}

.footer-list-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.footer-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  transition: color var(--transition-base);
}

@media (min-width: 768px) {
  .footer-phone {
    font-size: 1.875rem;
  }
}

.footer-phone:hover {
  color: hsl(47, 91%, 60%);
}

.footer-availability {
  margin-top: var(--space-2);
  font-size: 0.875rem;
  color: hsl(0, 0%, 100%, 0.7);
}

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  color: hsl(0, 0%, 100%, 0.8);
}

.footer-address svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-nav a {
  color: hsl(0, 0%, 100%, 0.8);
  transition: color var(--transition-base);
}

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

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid hsl(0, 0%, 100%, 0.1);
  padding: var(--space-6) 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  font-size: 0.875rem;
  color: hsl(0, 0%, 100%, 0.6);
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==========================================================================
   LAYER 4: COMPONENTS - FORMS
   ========================================================================== */

.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 500;
  color: var(--foreground);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  color: var(--foreground);
  background-color: var(--card);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(213, 52%, 25%, 0.1);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* ==========================================================================
   GRAVITY FORMS - COMPREHENSIVE STYLING
   ========================================================================== */

/* Form Wrapper Card */
.gform_wrapper.gravity-theme {
  background-color: hsl(220, 30%, 96%);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .gform_wrapper.gravity-theme {
    padding: var(--space-10);
  }
}

/* Form Title & Description */
.gform_wrapper.gravity-theme .gform_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--space-2);
}

.gform_wrapper.gravity-theme .gform_description {
  color: var(--muted-foreground);
  margin-bottom: var(--space-6);
}

/* Section Breaks */
.gform_wrapper.gravity-theme .gsection {
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-6);
  margin-top: var(--space-6);
}

.gform_wrapper.gravity-theme .gsection:first-child {
  margin-top: 0;
}

.gform_wrapper.gravity-theme .gsection_title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: var(--space-2);
}

.gform_wrapper.gravity-theme .gsection_description {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

/* Field Container */
.gform_wrapper.gravity-theme .gfield {
  margin-bottom: var(--space-5);
}

.gform_wrapper.gravity-theme .gfield:last-of-type {
  margin-bottom: 0;
}

/* Labels */
.gform_wrapper.gravity-theme .gfield_label,
.gform_wrapper.gravity-theme .gfield_label_before_complex {
  font-weight: 600;
  color: var(--foreground);
  font-size: 0.9375rem;
  margin-bottom: var(--space-2);
  display: block;
}

/* Required Indicator */
.gform_wrapper.gravity-theme .gfield_required {
  color: hsl(10, 80%, 55%);
  font-weight: 500;
  margin-left: var(--space-1);
}

.gform_wrapper.gravity-theme .gfield_required_asterisk {
  display: none;
}

.gform_wrapper.gravity-theme .gfield_required_text {
  font-size: 0.8125rem;
}

/* Sub-labels (First, Last, Email Address, etc.) */
.gform_wrapper.gravity-theme .gform-field-label--type-sub {
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-2);
  margin-top: 0;
}

/* Input Fields */
.gform_wrapper.gravity-theme input[type="text"],
.gform_wrapper.gravity-theme input[type="email"],
.gform_wrapper.gravity-theme input[type="tel"],
.gform_wrapper.gravity-theme input[type="number"],
.gform_wrapper.gravity-theme input[type="url"],
.gform_wrapper.gravity-theme input[type="password"],
.gform_wrapper.gravity-theme input[type="date"],
.gform_wrapper.gravity-theme textarea,
.gform_wrapper.gravity-theme select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--foreground);
  background-color: var(--card);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.gform_wrapper.gravity-theme input[type="text"]:hover,
.gform_wrapper.gravity-theme input[type="email"]:hover,
.gform_wrapper.gravity-theme input[type="tel"]:hover,
.gform_wrapper.gravity-theme input[type="number"]:hover,
.gform_wrapper.gravity-theme input[type="url"]:hover,
.gform_wrapper.gravity-theme input[type="password"]:hover,
.gform_wrapper.gravity-theme input[type="date"]:hover,
.gform_wrapper.gravity-theme textarea:hover,
.gform_wrapper.gravity-theme select:hover {
  border-color: hsl(210, 20%, 78%);
}

.gform_wrapper.gravity-theme input:focus,
.gform_wrapper.gravity-theme textarea:focus,
.gform_wrapper.gravity-theme select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(213, 52%, 25%, 0.1);
}

.gform_wrapper.gravity-theme input:focus-visible,
.gform_wrapper.gravity-theme textarea:focus-visible,
.gform_wrapper.gravity-theme select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(213, 52%, 25%, 0.12);
}

.gform_wrapper.gravity-theme input::placeholder,
.gform_wrapper.gravity-theme textarea::placeholder {
  color: var(--muted-foreground);
}

/* Textarea */
.gform_wrapper.gravity-theme textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

/* Select Dropdown */
.gform_wrapper.gravity-theme select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  padding-right: var(--space-10);
  cursor: pointer;
}

/* Complex Fields (Name, Address) */
.gform_wrapper.gravity-theme .ginput_complex {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.gform_wrapper.gravity-theme .ginput_complex > span {
  flex: 1 1 calc(50% - var(--space-2));
  min-width: 200px;
}

.gform_wrapper.gravity-theme .ginput_complex.ginput_container_name > span {
  flex: 1 1 calc(50% - var(--space-2));
}

.gform_wrapper.gravity-theme .ginput_complex.ginput_container_email > span {
  flex: 1 1 calc(50% - var(--space-2));
}

@media (max-width: 640px) {
  .gform_wrapper.gravity-theme .ginput_complex > span {
    flex: 1 1 100%;
  }
}

/* Checkbox & Radio */
.gform_wrapper.gravity-theme .gfield_checkbox,
.gform_wrapper.gravity-theme .gfield_radio {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.gform_wrapper.gravity-theme .gchoice {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.gform_wrapper.gravity-theme input[type="checkbox"],
.gform_wrapper.gravity-theme input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
}

.gform_wrapper.gravity-theme .gchoice_label {
  font-weight: 400;
  color: var(--foreground);
  cursor: pointer;
}

/* Field Descriptions */
.gform_wrapper.gravity-theme .gfield_description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: var(--space-2);
}

/* Validation - Error States */
.gform_wrapper.gravity-theme .gfield_error input,
.gform_wrapper.gravity-theme .gfield_error textarea,
.gform_wrapper.gravity-theme .gfield_error select {
  border-color: var(--destructive);
}

.gform_wrapper.gravity-theme .gfield_error input:focus,
.gform_wrapper.gravity-theme .gfield_error textarea:focus,
.gform_wrapper.gravity-theme .gfield_error select:focus {
  box-shadow: 0 0 0 3px hsl(0, 84%, 60%, 0.1);
}

.gform_wrapper.gravity-theme .validation_message {
  color: var(--destructive);
  font-size: 0.875rem;
  margin-top: var(--space-2);
}

.gform_wrapper.gravity-theme .gform_validation_errors {
  background-color: hsl(0, 84%, 60%, 0.1);
  border: 1px solid hsl(0, 84%, 60%, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-6);
}

.gform_wrapper.gravity-theme .gform_validation_errors h2 {
  color: var(--destructive);
  font-size: 1rem;
  margin-bottom: var(--space-2);
}

.gform_wrapper.gravity-theme .gform_validation_errors ol {
  color: var(--destructive);
  padding-left: var(--space-4);
  list-style: disc;
}

/* Confirmation Message */
.gform_confirmation_wrapper {
  background-color: hsl(142, 76%, 36%, 0.1);
  border: 1px solid hsl(142, 76%, 36%, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
}

.gform_confirmation_message {
  color: hsl(142, 76%, 28%);
  font-weight: 500;
}

/* Submit Button */
.gform_wrapper.gravity-theme .gform_footer {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
}

.gform_wrapper.gravity-theme .gform_button,
.gform_wrapper.gravity-theme input[type="submit"],
.gform_wrapper.gravity-theme button[type="submit"],
.gform_wrapper input[type="submit"].gform_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background-color: var(--primary) !important;
  color: var(--primary-foreground) !important;
  font-family: var(--font-sans);
  font-weight: 600;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-lg) !important;
  border: none !important;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.gform_wrapper.gravity-theme .gform_button:hover,
.gform_wrapper.gravity-theme input[type="submit"]:hover,
.gform_wrapper.gravity-theme button[type="submit"]:hover,
.gform_wrapper input[type="submit"].gform_button:hover {
  background-color: var(--primary-light) !important;
  box-shadow: var(--shadow-lg);
}

.gform_wrapper.gravity-theme .gform_button:focus,
.gform_wrapper.gravity-theme input[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px hsl(213, 52%, 25%, 0.3);
}

/* Footer Note */
.gform_wrapper.gravity-theme .gform_footer + p,
.gform_wrapper.gravity-theme .gform-body + p {
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: var(--space-6);
}

/* Consent Field */
.gform_wrapper.gravity-theme .gfield--type-consent .gfield_consent_description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: var(--space-2);
  padding: var(--space-3);
  background-color: var(--secondary);
  border-radius: var(--radius-md);
}

/* Progress Bar (Multi-page forms) */
.gform_wrapper.gravity-theme .gf_progressbar {
  background-color: var(--secondary);
  border-radius: var(--radius-full);
  height: 0.5rem;
  margin-bottom: var(--space-6);
  overflow: hidden;
}

.gform_wrapper.gravity-theme .gf_progressbar_percentage {
  background-color: var(--primary);
  height: 100%;
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

.gform_wrapper.gravity-theme .gf_progressbar_title {
  font-weight: 600;
  margin-bottom: var(--space-2);
  font-size: 0.875rem;
}

/* Page Navigation (Multi-page forms) */
.gform_wrapper.gravity-theme .gform_page_footer {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
}

.gform_wrapper.gravity-theme .gform_previous_button {
  background-color: var(--secondary);
  color: var(--foreground);
}

.gform_wrapper.gravity-theme .gform_previous_button:hover {
  background-color: hsl(210, 25%, 88%);
}

/* File Upload */
.gform_wrapper.gravity-theme .gform_drop_area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-align: center;
  background-color: var(--card);
  transition: all var(--transition-base);
}

.gform_wrapper.gravity-theme .gform_drop_area:hover {
  border-color: var(--primary);
  background-color: hsl(213, 52%, 25%, 0.02);
}

.gform_wrapper.gravity-theme .gform_drop_instructions {
  color: var(--muted-foreground);
  margin-bottom: var(--space-3);
}

.gform_wrapper.gravity-theme .gform_button_select_files {
  background-color: var(--secondary);
  color: var(--foreground);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
}

.gform_wrapper.gravity-theme .gform_button_select_files:hover {
  background-color: hsl(210, 25%, 88%);
}

/* Honeypot (hidden) */
.gform_wrapper.gravity-theme .gform_validation_container {
  display: none !important;
}

/* AJAX Spinner */
.gform_wrapper.gravity-theme .gform_ajax_spinner {
  margin-left: var(--space-3);
}

/* ==========================================================================
   LAYER 4: COMPONENTS - BADGES & TAGS
   ========================================================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-accent {
  background-color: hsla(47, 91%, 52%, 0.15);
  color: var(--accent);
  border: 1px solid hsla(47, 91%, 52%, 0.3);
}

.tag {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background-color: var(--secondary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--foreground);
}

/* ==========================================================================
   LAYER 4: COMPONENTS - STARS
   ========================================================================== */

.stars {
  display: flex;
  gap: var(--space-1);
}

.stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--accent);
  color: var(--accent);
}

/* ==========================================================================
   LAYER 4: COMPONENTS - CHECK LIST
   ========================================================================== */

.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.check-list-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.check-list-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

.check-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 640px) {
  .check-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   LAYER 5: PAGE - HERO SECTIONS
   ========================================================================== */

.hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: var(--space-20) 0;
  max-width: 48rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: var(--space-24) 0;
  }
}

.hero-title,
.page-hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: var(--space-2);
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero-title-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.25rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--tertiary, var(--accent));
  color: var(--tertiary, var(--accent));
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(0, 0%, 100%, 0.9);
  margin-bottom: var(--space-8);
  max-width: 42rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* Page Hero (Shorter) */
.page-hero {
  background-color: var(--primary);
  padding: var(--space-16) 0;
}

@media (min-width: 768px) {
  .page-hero {
    padding: var(--space-24) 0;
  }
}

.page-hero-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: var(--space-6);
}

.page-hero-description {
  font-size: 1.25rem;
  color: hsl(0, 0%, 100%, 0.9);
}

/* ==========================================================================
   LAYER 5: PAGE - STATS BAR
   ========================================================================== */

.stats-bar {
  padding: var(--space-12) 0;
}

.stats-bar--accent {
  background-color: var(--accent);
}

.stats-bar--primary {
  background-color: var(--primary);
}

.stats-bar--secondary {
  background-color: var(--secondary);
}

.stats-bar--tertiary {
  background-color: var(--tertiary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--accent-foreground);
  margin-bottom: var(--space-1);
}

.stat-label {
  color: hsl(220, 25%, 15%, 0.8);
}

.stats-bar--primary .stat-value {
  color: var(--primary-foreground);
}

.stats-bar--primary .stat-label {
  color: hsl(0, 0%, 100%, 0.85);
}

.stats-bar--secondary .stat-value {
  color: var(--foreground);
}

.stats-bar--secondary .stat-label {
  color: var(--muted-foreground);
}

.stats-bar--tertiary .stat-value {
  color: var(--tertiary-foreground);
}

.stats-bar--tertiary .stat-label {
  color: hsl(218, 30%, 16%, 0.8);
}

/* ==========================================================================
   LAYER 5: PAGE - SECTIONS
   ========================================================================== */

.section-bg-card {
  background-color: var(--card);
}

.section-bg-secondary {
  background-color: var(--secondary);
}

.section-bg-primary {
  background-color: var(--primary);
}

.section-bg-accent {
  background-color: var(--accent);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   LAYER 5: PAGE - CTA SECTIONS
   ========================================================================== */

.cta-section {
  padding: var(--space-16) 0;
}

.cta-primary {
  background-color: var(--primary);
}

.cta-primary .cta-title,
.cta-primary .cta-description {
  color: var(--primary-foreground);
}

.cta-primary .cta-description {
  color: hsl(0, 0%, 100%, 0.8);
}

.cta-secondary {
  background-color: var(--secondary);
}

.cta-secondary .cta-title,
.cta-secondary .cta-description {
  color: var(--secondary-foreground);
}

.cta-secondary .cta-description {
  color: hsl(213, 52%, 25%, 0.8);
}

.cta-accent {
  background-color: var(--accent);
}

.cta-accent .cta-title,
.cta-accent .cta-description {
  color: var(--accent-foreground);
}

.cta-accent .cta-description {
  color: hsl(220, 25%, 15%, 0.8);
}

.cta-tertiary {
  background-color: var(--tertiary);
}

.cta-tertiary .cta-title,
.cta-tertiary .cta-description {
  color: var(--tertiary-foreground);
}

.cta-tertiary .cta-description {
  color: hsl(218, 30%, 16%, 0.8);
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: var(--space-8);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

/* CTA Split Layout */
.cta-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .cta-split {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .cta-split .cta-content {
    text-align: left;
  }
}

/* ==========================================================================
   LAYER 5: PAGE - TRUST BANNER
   ========================================================================== */

.trust-banner {
  padding: var(--space-16) 0;
  background-color: var(--primary);
}

.trust-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .trust-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.trust-text {
  text-align: center;
}

@media (min-width: 1024px) {
  .trust-text {
    text-align: left;
  }
}

.trust-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: var(--space-4);
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.trust-list-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: hsl(0, 0%, 100%, 0.9);
}

.trust-list-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ==========================================================================
   LAYER 5: PAGE - SERVICE CARDS
   ========================================================================== */

.service-card {
  display: block;
  background-color: var(--secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-slow);
}

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

.service-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.service-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

.service-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-4);
  background-color: var(--muted);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.service-card-description {
  color: var(--muted-foreground);
  margin-bottom: var(--space-4);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--primary);
  font-weight: 500;
  transition: color var(--transition-base);
}

.service-card-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform var(--transition-base);
}

.service-card:hover .service-card-link {
  color: var(--accent);
}

.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   LAYER 5: PAGE - FEATURE GRID
   ========================================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-slow);
}

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

.feature-card-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.feature-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.feature-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.feature-card-description {
  color: var(--muted-foreground);
  margin-bottom: 0;
}

/* ==========================================================================
   LAYER 5: PAGE - TESTIMONIALS
   ========================================================================== */

.testimonial-card {
  --star-color: #ffd700;
  --star-border-color: #e6c200;
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--star-color);
  color: var(--star-border-color);
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: var(--space-4);
}

.testimonial-author {
  font-weight: 600;
  color: var(--muted-foreground);
}

/* ==========================================================================
   LAYER 5: PAGE - CONTACT INFO CARDS
   ========================================================================== */

/* Contact cards grid - 2x2 on desktop, stacked on mobile */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  background-color: var(--secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

/* Centered variant for contact info cards */
.contact-card-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: var(--space-4);
}

.contact-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-card-title {
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.contact-card-phone {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  transition: color var(--transition-base);
}

.contact-card-phone:hover {
  color: var(--accent);
}

.contact-card-email {
  color: var(--primary);
  font-weight: 500;
  transition: color var(--transition-base);
}

.contact-card-email:hover {
  color: var(--accent);
}

.contact-card-address {
  color: var(--muted-foreground);
  font-style: normal;
  line-height: 1.6;
}

.contact-card-hours {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.contact-card-hours strong {
  color: var(--foreground);
}

.contact-card-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: var(--space-2);
}

/* ==========================================================================
   LAYER 5: PAGE - STEP CARDS
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
}

.step-number {
  position: relative;
  width: 4rem;
  height: 4rem;
  margin: 0 auto var(--space-5);
  display: grid;
  place-items: center;
  color: var(--primary-foreground);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 15px 30px hsla(213, 52%, 25%, 0.25);
  overflow: hidden;
  z-index: 1;
  transition: transform 400ms ease;
}

.step-number-accent {
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--accent-foreground);
  box-shadow: 0 15px 30px hsla(47, 91%, 52%, 0.35);
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -30%;
  border-radius: inherit;
  background: conic-gradient(
    from 120deg,
    hsla(47, 91%, 52%, 0.4),
    hsla(198, 69%, 66%, 0.35),
    hsla(47, 91%, 52%, 0.4)
  );
  animation: stepOrbit 12s linear infinite;
  opacity: 0.7;
  z-index: -1;
  filter: blur(6px);
}

.step-number::after {
  content: '';
  position: absolute;
  inset: 12%;
  border-radius: inherit;
  background: radial-gradient(circle, hsla(0, 0%, 100%, 0.24), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.step-description {
  color: var(--muted-foreground);
}

/* ==========================================================================
   LAYER 5: PAGE - PROMISE CARD
   ========================================================================== */

.promise-card {
  background-color: var(--primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
}

@media (min-width: 768px) {
  .promise-card {
    padding: var(--space-12);
  }
}

.promise-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: var(--space-6);
  text-align: center;
}

.promise-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .promise-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.promise-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--primary-foreground);
}

.promise-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ==========================================================================
   LAYER 5: PAGE - SERVICE AREA
   ========================================================================== */

.service-area-card {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}

.service-area-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .service-area-inner {
    flex-direction: row;
  }
}

.service-area-icon {
  width: 8rem;
  height: 8rem;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-area-icon svg {
  width: 4rem;
  height: 4rem;
  color: var(--primary-foreground);
}

.service-area-content {
  text-align: center;
}

@media (min-width: 768px) {
  .service-area-content {
    text-align: left;
  }
}

.service-area-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.service-area-description {
  color: var(--muted-foreground);
  margin-bottom: var(--space-4);
}

.service-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
}

@media (min-width: 768px) {
  .service-area-tags {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   LAYER 5: PAGE - SAFEGUARDING CARD
   ========================================================================== */

.safeguarding-card {
  background-color: var(--card);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .safeguarding-card {
    padding: var(--space-12);
  }
}

.safeguarding-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .safeguarding-inner {
    flex-direction: row;
  }
}

.safeguarding-icon {
  width: 5rem;
  height: 5rem;
  background-color: var(--primary);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safeguarding-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary-foreground);
}

.safeguarding-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.safeguarding-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: var(--space-6);
}

/* ==========================================================================
   LAYER 5: PAGE - VALUE CARDS
   ========================================================================== */

.value-card {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: var(--space-4);
}

.value-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

.value-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.value-card-description {
  color: var(--muted-foreground);
  margin-bottom: 0;
}

/* ==========================================================================
   LAYER 5: PAGE - AIRPORT CARDS
   ========================================================================== */

.airport-card {
  background-color: var(--secondary);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.airport-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.airport-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.airport-name {
  font-weight: 700;
}

.airport-distance {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ==========================================================================
   LAYER 5: PAGE - FLEET CARDS
   ========================================================================== */

.fleet-card {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.fleet-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
}

.fleet-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary-foreground);
}

.fleet-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.fleet-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0;
}

/* ==========================================================================
   LAYER 5: PAGE - USE CASE CARDS
   ========================================================================== */

.use-case-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.use-case-card svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  flex-shrink: 0;
}

/* ==========================================================================
   LAYER 5: PAGE - STORY SECTION
   ========================================================================== */

.story-section {
  max-width: 56rem;
  margin: 0 auto;
}

.story-text {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  text-align: center;
}

.story-text p {
  margin-bottom: var(--space-6);
}

.story-text p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   LAYER 5: PAGE - SERVICE DETAIL
   ========================================================================== */

.service-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 1024px) {
  .service-detail {
    flex-direction: row;
    gap: var(--space-16);
  }
}

.service-detail.reverse {
  flex-direction: column;
}

@media (min-width: 1024px) {
  .service-detail.reverse {
    flex-direction: row-reverse;
  }
}

.service-detail-content {
  flex: 1;
}

.service-detail-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.service-detail-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary-foreground);
}

.service-detail-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.service-detail-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.service-detail-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

@media (min-width: 640px) {
  .service-detail-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-detail-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.service-detail-feature svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.service-detail-image {
  flex: 1;
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background-color: var(--secondary);
}

.service-detail-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-detail-placeholder {
  position: absolute;
  inset: 0;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .service-detail-image {
    max-height: 400px;
    /* aspect-ratio: auto; */
    height: 100%;
    min-height: 300px;
  }
}

.service-detail-placeholder svg {
  width: 8rem;
  height: 8rem;
  color: hsl(213, 52%, 25%, 0.2);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.4s ease-out forwards;
}

/* Animation delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* ==========================================================================
   EASTER EGG - KONAMI CODE TOAST
   ========================================================================== */

.konami-toast {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.konami-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.konami-toast__panel {
  min-width: 280px;
  max-width: 360px;
  padding: var(--space-5);
  border-radius: var(--radius-2xl);
  background: #3ad64a;
  color: #0b1a0f;
  box-shadow: 4px 4px 0 #0b2f15, 8px 8px 0 #061a0c, 0 15px 40px hsla(213, 52%, 12%, 0.35);
  border: 3px solid #0f4a1f;
  text-align: left;
  position: relative;
  overflow: hidden;
  font-family: "Press Start 2P", "VT323", "Courier New", monospace;
  line-height: 1.4;
  image-rendering: pixelated;
}

.konami-toast__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      hsla(0, 0%, 100%, 0.06),
      hsla(0, 0%, 100%, 0.06) 2px,
      transparent 2px,
      transparent 4px
    ),
    repeating-linear-gradient(
      90deg,
      hsla(0, 0%, 100%, 0.04),
      hsla(0, 0%, 100%, 0.04) 2px,
      transparent 2px,
      transparent 4px
    );
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

.konami-toast__panel::after {
  content: '';
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 90deg,
    hsla(47, 91%, 52%, 0.25),
    hsla(198, 69%, 66%, 0.18),
    hsla(47, 91%, 52%, 0.25)
  );
  filter: blur(28px);
  opacity: 0.5;
  z-index: 0;
  animation: konami-orbit 12s linear infinite;
}

.konami-toast__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  background: #ffe066;
  color: #0b1a0f;
  border: 2px solid #0f4a1f;
  box-shadow: 2px 2px 0 #0b2f15;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.konami-toast__title {
  margin: var(--space-4) 0 var(--space-2);
  font-size: 1.25rem;
  color: #0b1a0f;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.konami-toast__subtitle {
  margin-bottom: var(--space-4);
  color: hsl(0, 0%, 0%, 0.75);
  position: relative;
  z-index: 1;
}

.konami-toast__close {
  position: relative;
  z-index: 1;
  box-shadow: 2px 2px 0 #0b2f15;
  border: 2px solid #0f4a1f;
  background: #ffe066;
  color: #0b1a0f;
  font-family: inherit;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .konami-toast {
    left: var(--space-4);
    right: var(--space-4);
    bottom: var(--space-4);
  }

  .konami-toast__panel {
    width: 100%;
  }
}

.konami-confetti {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 9998;
}

.konami-confetti__piece {
  position: absolute;
  top: -10%;
  width: 10px;
  height: 16px;
  border-radius: 2px;
  opacity: 0.9;
  --konami-scale: 1;
  animation-name: konami-confetti-fall;
  animation-timing-function: ease-out;
  animation-iteration-count: 1;
}

@keyframes konami-confetti-fall {
  0% {
    transform: translate3d(0, -20vh, 0) scale(var(--konami-scale)) rotate(0deg) rotateY(0deg);
  }
  100% {
    transform: translate3d(0, 110vh, 0) scale(var(--konami-scale)) rotate(720deg) rotateY(360deg);
  }
}

@keyframes konami-orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .site-header,
  .site-footer,
  .menu-toggle,
  .nav-mobile {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .hero-bg,
  .hero-overlay {
    display: none;
  }
  
  .hero-title,
  .hero-description {
    color: #000 !important;
  }
}
