/* UNUSED RULES — commented out
2025-10-11
Reviewed via Codex CSS audit
*/
/*
Theme Name: NEAB Theme
Description: A professional WordPress theme for the National Excellence Advisory Board
Version: 1.0
Author: NEAB Team
*/

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

/* CSS Variables - NEAB Brand Colors */
:root {
  --font-size: 16px;
  --background: #ffffff;
  --foreground: #0f1d30;
  --card: #ffffff;
  --card-foreground: #0f1d30;
  --popover: #ffffff;
  --popover-foreground: #0f1d30;
  --primary: #030213;
  --primary-foreground: #ffffff;
  --secondary: #faf8f5;
  --secondary-foreground: #030213;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --destructive: #d4183d;
  --destructive-foreground: #ffffff;
  --border: rgba(0, 0, 0, 0.1);
  --input: transparent;
  --input-background: #f3f3f5;
  --switch-background: #cbced4;
  --font-weight-medium: 500;
  --font-weight-normal: 400;
  --ring: #717182;
  
  /* NEAB Luxury Brand Colors */
  --burgundy: #8B1538;
  --burgundy-dark: #6B0F2A;
  --gold: #D4AF37;
  --gold-light: #E8D090;
  --navy: #1E3A5F;
  --navy-dark: #0F1D30;
  --cream: #FAF8F5;
  
  /* Spacing */
  --spacing: 0.25rem;
  --container-3xl: 48rem;
  --container-4xl: 56rem;
  --container-5xl: 64rem;
  --container-7xl: 80rem;
  
  /* Typography */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;
  
  /* Border Radius */
  --radius: 0.625rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-colors: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size);
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-medium);
  line-height: 1.2;
 /* margin-bottom: 1rem;*/
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
 /* margin-bottom: 1rem;*/
  line-height: 1.6;
}

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: var(--transition-colors);
}

a:hover {
  color: var(--burgundy-dark);
}

/* Utility Classes */
.container {
  max-width: var(--container-7xl);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flexbox */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

/* Grid */
/* UNUSED: .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); } */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Spacing */
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 1.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }

/* Padding */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
/* UNUSED: .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; } */
/* UNUSED: .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; } */
/* UNUSED: .px-4 { padding-left: 1rem; padding-right: 1rem; } */
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
/* UNUSED: .px-16 { padding-left: 4rem; padding-right: 4rem; } */
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
/* UNUSED: .pt-0 { padding-top: 0; } */
.pt-2 { padding-top: 0.5rem; }
.pt-4 { padding-top: 1rem; }
/*.pt-20 { padding-top: 5rem; }*/
/* UNUSED: .pb-4 { padding-bottom: 1rem; } */
/* UNUSED: .pb-6 { padding-bottom: 1.5rem; } */

/* Margin */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 0.5rem; }
/* UNUSED: .mt-10 { margin-top: 2.5rem; } */
/* UNUSED: .mt-12 { margin-top: 3rem; } */
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mr-2 { margin-right: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
/* UNUSED: .ml-3 { margin-left: 0.75rem; } */

/* Width & Height */
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
/* UNUSED: .w-12 { width: 3rem; } */
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
/* UNUSED: .w-72 { width: 18rem; } */
.w-96 { width: 24rem; }
/* UNUSED: .w-fit { width: fit-content; } */
.w-full { width: 100%; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
/* UNUSED: .max-w-7xl { max-width: 80rem; } */
.max-w-none { max-width: none; }
/* UNUSED: .min-w-0 { min-width: 0; } */

.h-0\.5 { height: 0.125rem; }
.h-1 { height: 0.25rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
/* UNUSED: .h-12 { height: 3rem; } */
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
/* UNUSED: .h-72 { height: 18rem; } */
.h-96 { height: 24rem; }
/* UNUSED: .h-auto { height: auto; } */
.h-full { height: 100%; }
/* UNUSED: .min-h-16 { min-height: 4rem; } */
.min-h-screen { min-height: 100vh; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.-inset-4 { top: -1rem; right: -1rem; bottom: -1rem; left: -1rem; }
.top-0 { top: 0; }
.top-1\/4 { top: 25%; }
.top-20 { top: 5rem; }
.right-0 { right: 0; }
.right-1\/4 { right: 25%; }
.right-10 { right: 2.5rem; }
.right-20 { right: 5rem; }
.bottom-0 { bottom: 0; }
.bottom-1\/4 { bottom: 25%; }
.bottom-10 { bottom: 2.5rem; }
.bottom-20 { bottom: 5rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.left-1\/4 { left: 25%; }
.left-10 { left: 2.5rem; }
.left-20 { left: 5rem; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-\[1\] { z-index: 1; }

/* Text */
.text-center { text-align: center; }
.text-left { text-align: left; }
/* UNUSED: .text-right { text-align: right; } */
/* UNUSED: .text-xs { font-size: 0.75rem; } */
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.25rem; }
.text-7xl { font-size: 3.5rem; }
.text-8xl { font-size: 4rem!important; }

.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.leading-relaxed { line-height: 1.625; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.underline { text-decoration-line: underline; }
/* UNUSED: .underline-offset-4 { text-underline-offset: 4px; } */

/* Colors */
.text-white { color: white; }
.text-white\/30 { color: rgba(255, 255, 255, 0.3); }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }

.text-navy { color: var(--navy); }
.text-navy\/70 { color: rgba(30, 58, 95, 0.7); }
.text-navy\/80 { color: rgba(30, 58, 95, 0.8); }
.text-navy-dark { color: var(--navy-dark); }
.text-burgundy { color: var(--burgundy); }
.text-gold { color: var(--gold); /*padding-left:20px;padding-right:20px;*/}
.text-gold-light { color: var(--gold-light);/*padding-bottom:20px!important;*/ }

/* Background Colors */
.bg-white { background-color: white; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }

.bg-navy { background-color: var(--navy); }
.bg-navy-dark { background-color: var(--navy-dark); }
.bg-burgundy { background-color: var(--burgundy); }
.bg-burgundy-dark { background-color: var(--burgundy-dark); }
.bg-gold { background-color: var(--gold); }
/* UNUSED: .bg-gold-light { background-color: var(--gold-light); } */
.bg-cream { background-color: var(--cream); }

/* Gradients */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
/* UNUSED: .bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); } */

.from-navy-dark { --tw-gradient-from: var(--navy-dark); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 29, 48, 0)); }
.from-navy { --tw-gradient-from: var(--navy); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(30, 58, 95, 0)); }
.from-burgundy { --tw-gradient-from: var(--burgundy); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 21, 56, 0)); }
.from-burgundy-dark { --tw-gradient-from: var(--burgundy-dark); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(107, 15, 42, 0)); }
.from-gold { --tw-gradient-from: var(--gold); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(212, 175, 55, 0)); }
.from-cream { --tw-gradient-from: var(--cream); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 248, 245, 0)); }
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }

.via-navy { --tw-gradient-via: var(--navy); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(30, 58, 95, 0)); }
.via-burgundy { --tw-gradient-via: var(--burgundy); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(139, 21, 56, 0)); }
.via-burgundy-dark { --tw-gradient-via: var(--burgundy-dark); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(107, 15, 42, 0)); }
.via-gold { --tw-gradient-via: var(--gold); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(212, 175, 55, 0)); }
.via-transparent { --tw-gradient-via: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }

.to-navy { --tw-gradient-to: var(--navy); color:#ffffff;}
.to-navy-dark { --tw-gradient-to: var(--navy-dark); }
.to-burgundy { --tw-gradient-to: var(--burgundy); }
.to-burgundy-dark { --tw-gradient-to: var(--burgundy-dark); }
.to-gold-light { --tw-gradient-to: var(--gold-light); }
.to-transparent { --tw-gradient-to: transparent; }
.to-white { --tw-gradient-to: white; }

/* Border */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
/* UNUSED: .border-4 { border-width: 4px; } */
.border-t { border-top-width: 1px; }
.border-t-4 { border-top-width: 4px; }
.border-b { border-bottom-width: 1px; }

.border-burgundy { border-color: var(--burgundy); }
.border-gold { border-color: var(--gold); }
.border-gold\/10 { border-color: rgba(212, 175, 55, 0.1); }
.border-gold\/20 { border-color: rgba(212, 175, 55, 0.2); }
.border-gold\/30 { border-color: rgba(212, 175, 55, 0.3); }
.border-navy { border-color: var(--navy); }
.border-transparent { border-color: transparent; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }

/* Border Radius */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Shadows */
/* UNUSED: .shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); } */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* Effects */
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.blur-3xl { filter: blur(64px); }
.blur-xl { filter: blur(24px); }

/* Transitions */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Transform */
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.-translate-x-1\/2 { --tw-translate-x: -50%; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.translate-y-0\.5 { --tw-translate-y: 0.125rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Cursor */
/* UNUSED: .cursor-pointer { cursor: pointer; } */

/* Resize */
/* UNUSED: .resize-none { resize: none; } */

/* Whitespace */
/* UNUSED: .whitespace-nowrap { white-space: nowrap; } */

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--burgundy);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--text-lg);
}

/* Responsive Design */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-2xl { font-size: 1.5rem; }
}

@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\:text-2xl { font-size: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:text-sm { font-size: 0.875rem; }
}

@media (min-width: 1024px) {
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:text-8xl { font-size: 4rem; }
}

/* Hover Effects */
.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:border-gold:hover {
  border-color: var(--gold);
}

.hover\:border-gold\/50:hover {
  border-color: rgba(212, 175, 55, 0.5);
}

.hover\:bg-burgundy-dark:hover {
  background-color: var(--burgundy-dark);
}

/* UNUSED:
.hover\:bg-cream:hover {
  background-color: var(--cream);
}
*/

/* UNUSED:
.hover\:bg-gold-light:hover {
  background-color: var(--gold-light);
}
*/

.hover\:text-burgundy:hover {
  color: var(--burgundy);
}

.hover\:text-gold:hover {
  color: var(--gold);
}

/* UNUSED:
.hover\:underline:hover {
  text-decoration-line: underline;
}
*/

/* UNUSED:
.hover\:opacity-80:hover {
  opacity: 0.8;
}
*/

.hover\:shadow-2xl:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.hover\:shadow-lg:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

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

.animate-bounce {
  animation: bounce 1s infinite;
}

/* Premium Navigation Styles */
.main-navigation {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.98) 100%);
  border-bottom: 1px solid;
  border-image: linear-gradient(90deg, rgba(212, 175, 55, 0.3) 0%, rgba(139, 21, 56, 0.2) 50%, rgba(212, 175, 55, 0.3) 100%) 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.main-navigation.scrolled {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 50%, rgba(255, 255, 255, 0.99) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.3);
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Premium Navigation Buttons */
.main-navigation .group:hover .absolute {
  opacity: 1 !important;
  transform: scale(1.02);
}

.main-navigation button {
  position: relative;
  overflow: hidden;
}

.main-navigation button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.main-navigation button:hover::before {
  left: 100%;
}

/* Premium CTA Button */
.main-navigation .relative .absolute {
  animation: premium-glow 3s ease-in-out infinite alternate;
}

@keyframes premium-glow {
  from {
    opacity: 0.5;
    transform: scale(1);
  }
  to {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

/* Mobile Menu Premium Styling */
#mobile-menu {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid;
  border-image: linear-gradient(90deg, rgba(212, 175, 55, 0.3) 0%, rgba(139, 21, 56, 0.2) 50%, rgba(212, 175, 55, 0.3) 100%) 1;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.1);
}

/* Active Navigation State Enhancement */
.main-navigation .active {
  animation: active-pulse 2s ease-in-out infinite;
}

@keyframes active-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.1);
  }
}

/* Enhanced Hero Text Readability */
.hero-section h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-section p {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Site Branding */
.site-branding h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
}

/* Mobile Menu */
#mobile-menu {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Hero Section */
.hero-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-background {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Pattern Background */
.bg-pattern {
  background-size: 60px 60px;
  background-repeat: repeat;
}

/* FAQ Accordion - Premium Smooth Animations */
.faq-accordion .faq-item {
  animation: fadeInUp 0.6s ease-out forwards;
  animation-play-state: running;
}

.faq-accordion .faq-question {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion .faq-question:hover {
  transform: translateY(-2px);
}

.faq-accordion .faq-answer {
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease;
}

.faq-accordion .faq-icon {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth pulse animation for stats */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.animate-pulse {
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hover lift effect for stat cards */
.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

/* Form Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 0.5rem;
  background-color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
}

/* WordPress Specific */
.wp-block-group {
  margin-bottom: 2rem;
}

.wp-block-image {
  margin-bottom: 1rem;
}

.wp-block-image img {
  max-width: 100%;
  height: auto;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
/* Use focus-visible on interactive elements to avoid showing a gold ring on non-controls (e.g., logo). */
*:focus { outline: none; }
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
}

/* ---------------------------------
   Section-specific layout adjustments
   --------------------------------- */
/* Center the Our Mission header block precisely within the container */
.about-section .container > .text-center {
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}


/* ===========================
   PREMIUM FAQ ACCORDION STYLE
   =========================== */
.faq-accordion .faq-item {
  border: none !important;
  box-shadow: none !important;
}

.faq-accordion .faq-item .bg-white {
  background: linear-gradient(145deg, #ffffff, #f8f8f8);
  border: none !important;
  box-shadow: 0 10px 25px rgba(15, 29, 48, 0.08);
  border-radius: 1.25rem;
  transition: all 0.4s ease;
}

.faq-accordion .faq-item:hover .bg-white {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(15, 29, 48, 0.12);
}

.faq-accordion .faq-question {
  padding: 1.75rem 2rem;
  border: none;
}

.faq-accordion .faq-question h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  transition: color 0.3s ease;
}

.faq-accordion .faq-item.active .faq-question h3 {
  color: var(--burgundy);
}

.faq-accordion .faq-answer {
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  background: linear-gradient(to right, rgba(212, 175, 55, 0.03), rgba(250, 248, 245, 0.5));
  border-radius: 0 0 1.25rem 1.25rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 2rem;
}

.faq-accordion .faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 1rem 2rem 2rem;
}

.faq-accordion .faq-answer p {
  color: rgba(15, 29, 48, 0.8);
  line-height: 1.7;
  padding-bottom: 15px!important;
}

/* Chevron animation */
.faq-accordion .faq-icon {
  transition: transform 0.4s ease;
}
.faq-accordion .faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Hover ring accent */
.faq-accordion .faq-item:hover .faq-question {
  background: linear-gradient(90deg, rgba(212,175,55,0.05), transparent);
}

/* Remove double shadow glow layers */
.faq-accordion .faq-item .absolute {
  display: none !important;
}


/* Remove ugly black border around active nav button */
.main-navigation .current-menu-item a,
.main-navigation .current_page_item a,
.main-navigation .active a {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 600;
  border: none !important;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.35);
  outline: none !important;
}

/* Remove hover darkening on active item */
.main-navigation .current-menu-item a:hover,
.main-navigation .current_page_item a:hover {
  background: var(--gold-light) !important;
  box-shadow: 0 6px 14px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}


.main-navigation .menu-item > a {
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 1.5rem;
  padding: 0.6rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.main-navigation .menu-item > a:hover {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

/* ===========================
   FORMINATOR FORM STYLING
   =========================== */

/* Match font family with the rest of the site */
.forminator-custom-form,
.forminator-custom-form input,
.forminator-custom-form textarea,
.forminator-custom-form select,
.forminator-custom-form label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Increase input field heights */
.forminator-custom-form input[type="text"],
.forminator-custom-form input[type="email"],
.forminator-custom-form input[type="tel"],
.forminator-custom-form input[type="number"],
.forminator-custom-form select {
  height: 56px !important;
  padding: 0.875rem 1.25rem !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
  border: 2px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 0.75rem !important;
  background-color: white !important;
  transition: all 0.3s ease !important;
}

/* Textarea styling */
.forminator-custom-form textarea {
  min-height: 160px !important;
  padding: 0.875rem 1.25rem !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  border: 2px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 0.75rem !important;
  background-color: white !important;
  resize: vertical !important;
  transition: all 0.3s ease !important;
}

/* Focus states */
.forminator-custom-form input[type="text"]:focus,
.forminator-custom-form input[type="email"]:focus,
.forminator-custom-form input[type="tel"]:focus,
.forminator-custom-form input[type="number"]:focus,
.forminator-custom-form select:focus,
.forminator-custom-form textarea:focus {
  outline: none !important;
  border-color: var(--burgundy) !important;
  box-shadow: 0 0 0 4px rgba(139, 21, 56, 0.1) !important;
}

/* Label styling */
.forminator-custom-form label {
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  color: var(--navy-dark) !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
}

/* Submit button styling */
.forminator-custom-form button[type="submit"],
.forminator-custom-form .forminator-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: var(--navy-dark) !important;
  border: none !important;
  border-radius: 0.75rem !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3) !important;
  text-transform: none !important;
  letter-spacing: 0.025em !important;
}

.forminator-custom-form button[type="submit"]:hover,
.forminator-custom-form .forminator-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4) !important;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
}

.forminator-custom-form button[type="submit"]:active,
.forminator-custom-form .forminator-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3) !important;
}

/* Field wrapper spacing */
.forminator-custom-form .forminator-field {
  margin-bottom: 1.125rem !important;
}

/* Error message styling */
.forminator-custom-form .forminator-error-message {
  font-size: 0.875rem !important;
  color: var(--destructive) !important;
  margin-top: 0.5rem !important;
  font-family: 'Inter', sans-serif !important;
}

/* Placeholder styling */
.forminator-custom-form input::placeholder,
.forminator-custom-form textarea::placeholder {
  color: rgba(15, 29, 48, 0.4) !important;
  font-family: 'Inter', sans-serif !important;
}
