/*
Theme Name: Key Healthcare Advisors
Theme URI: https://keyhealthcareadvisors.com
Description: Professional WordPress theme for Key Healthcare Advisors, LLC - The Key to Operational Excellence & Sustainable Growth
Version: 2.0
Author: Key Healthcare Advisors, LLC
Text Domain: keyhca
*/

/* ============================================
   DESIGN TOKENS
   Navy: #1B2A4A  Gold: #C5A55A
   ============================================ */

:root {
  --navy-900: #0F1A2E;
  --navy-800: #152238;
  --navy-700: #1B2A4A;
  --navy-600: #24365E;
  --navy-500: #2E4272;
  --navy-400: #3D5690;
  --navy-300: #5A7AB5;
  --navy-200: #8BA4CE;
  --navy-100: #C0D0E8;
  --navy-50:  #E8EDF5;
  --gold-700: #9A7D3A;
  --gold-600: #B08F45;
  --gold-500: #C5A55A;
  --gold-400: #D4B96F;
  --gold-300: #E0CB8E;
  --gold-200: #ECDDB3;
  --gold-100: #F5EDD5;
  --gold-50:  #FBF7EC;
  --white: #ffffff;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--navy-700);
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 1rem; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }

.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; }

.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

/* Margins */
.mb-1 { margin-bottom: 0.25rem; }
.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; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Padding */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.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; }
.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-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }

/* ============================================
   BRAND COLORS
   ============================================ */

/* Text Colors */
.text-white { color: var(--white); }
.text-navy { color: var(--navy-700); }
.text-navy-800 { color: var(--navy-800); }
.text-navy-900 { color: var(--navy-900); }
.text-navy-600 { color: var(--navy-600); }
.text-gold { color: var(--gold-500); }
.text-gold-600 { color: var(--gold-600); }
.text-gold-700 { color: var(--gold-700); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }

/* Background Colors */
.bg-white { background-color: var(--white); }
.bg-navy { background-color: var(--navy-700); }
.bg-navy-800 { background-color: var(--navy-800); }
.bg-navy-900 { background-color: var(--navy-900); }
.bg-navy-50 { background-color: var(--navy-50); }
.bg-gold { background-color: var(--gold-500); }
.bg-gold-50 { background-color: var(--gold-50); }
.bg-gold-100 { background-color: var(--gold-100); }
.bg-gray-50 { background-color: var(--gray-50); }
.bg-gray-100 { background-color: var(--gray-100); }
.bg-gray-800 { background-color: var(--gray-800); }
.bg-gray-900 { background-color: var(--gray-900); }

/* Border Colors */
.border-navy { border-color: var(--navy-700); }
.border-gold { border-color: var(--gold-500); }
.border-gold-200 { border-color: var(--gold-200); }
.border-gold-300 { border-color: var(--gold-300); }
.border-gray-200 { border-color: var(--gray-200); }
.border-gray-300 { border-color: var(--gray-300); }
.border-gray-700 { border-color: var(--gray-700); }
.border-gray-800 { border-color: var(--gray-800); }

/* ============================================
   FLEXBOX & GRID
   ============================================ */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.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)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ============================================
   POSITIONING & SIZING
   ============================================ */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-50 { z-index: 50; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.h-full { height: 100%; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.min-h-screen { min-height: 100vh; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-none { max-width: none; }
.overflow-hidden { overflow: hidden; }

/* ============================================
   BORDERS & SHADOWS
   ============================================ */
.border { border: 1px solid var(--gray-200); }
.border-t { border-top: 1px solid var(--gray-200); }
.border-b { border-bottom: 1px solid var(--gray-200); }
.border-l { border-left: 1px solid var(--gray-200); }
.border-l-4 { border-left: 4px solid var(--gold-500); }
.border-2 { border-width: 2px; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }

/* ============================================
   OPACITY & TRANSITIONS
   ============================================ */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-100 { opacity: 1; }

.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-shadow { transition: box-shadow 0.3s ease; }
.transition-opacity { transition: opacity 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-1000 { transition-duration: 1000ms; }

.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); }
.hover\:-translate-y-1:hover { transform: translateY(-4px); }

.line-through { text-decoration: line-through; }
.italic { font-style: italic; }

/* ============================================
   UTILITY HEADER
   ============================================ */
.utility-header {
  background: var(--navy-900);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(197, 165, 90, 0.2);
}

.utility-header a {
  color: var(--gray-300);
  transition: color 0.2s ease;
}

.utility-header a:hover {
  color: var(--gold-500);
}

.utility-header .call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 0.8125rem;
  transition: all 0.2s ease;
}

.utility-header .call-btn:hover {
  background: var(--gold-400);
  color: var(--navy-900);
}

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  position: relative;
  z-index: 100;
  border-bottom: 2px solid var(--gold-200);
}

.main-header .logo-img {
  height: 60px;
  width: auto;
}

.main-nav {
  display: none;
  gap: 2rem;
  align-items: center;
}

.main-nav a,
.main-nav .menu-item a {
  color: var(--navy-700);
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
  font-family: 'Inter', -apple-system, sans-serif;
}

.main-nav a:hover,
.main-nav .menu-item a:hover {
  color: var(--gold-600);
}

.main-nav a::after,
.main-nav .menu-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav .menu-item a:hover::after {
  width: 100%;
}

.main-nav .current-menu-item a {
  color: var(--gold-600);
}

.main-nav .current-menu-item a::after {
  width: 100%;
}

/* WordPress menu reset */
.main-nav ul,
.main-nav .menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  list-style: none;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--navy-700);
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1rem 0;
}

.mobile-menu.show { display: block; }

.mobile-menu a,
.mobile-menu .menu-item a {
  display: block;
  padding: 0.75rem 0;
  color: var(--navy-700);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:hover,
.mobile-menu .menu-item a:hover {
  color: var(--gold-600);
}

.mobile-menu ul,
.mobile-menu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  height: 650px;
  overflow: hidden;
  position: relative;
  background: var(--navy-900);
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,46,0.85) 0%, rgba(27,42,74,0.7) 100%);
  z-index: 1;
}

.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-slide .hero-text { max-width: 42rem; }

.hero-slide .hero-badge {
  display: inline-block;
  background: rgba(197, 165, 90, 0.2);
  border: 1px solid var(--gold-500);
  color: var(--gold-300);
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.hero-slide h1 {
  font-size: 3.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--white);
  line-height: 1.1;
}

.hero-slide h1 .gold-text {
  color: var(--gold-400);
}

.hero-slide p {
  font-size: 1.1875rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197,165,90,0.4);
}

.hero-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}

.hero-cta-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

/* Hero Nav */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.hero-nav-btn:hover {
  background: rgba(197,165,90,0.3);
  border-color: var(--gold-500);
}

.hero-prev { left: 1.5rem; }
.hero-next { right: 1.5rem; }

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--gold-500);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(197,165,90,0.5);
}

.hero-dot:hover { background: rgba(255,255,255,0.7); }

/* ============================================
   SECTION STYLES
   ============================================ */
.section-label {
  display: inline-block;
  color: var(--gold-600);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  font-family: 'Inter', -apple-system, sans-serif;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy-700);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 42rem;
  line-height: 1.7;
}

.section-subtitle.centered {
  margin-left: auto;
  margin-right: auto;
}

.gold-divider {
  width: 4rem;
  height: 3px;
  background: var(--gold-500);
  border: none;
  margin-bottom: 1.5rem;
}

.gold-divider.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-700), var(--gold-500));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 12px 24px rgba(27,42,74,0.12);
  transform: translateY(-4px);
  border-color: var(--gold-200);
}

.service-card:hover::before { opacity: 1; }

.service-card .icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--navy-50);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy-700);
  transition: all 0.3s ease;
}

.service-card:hover .icon-wrap {
  background: var(--navy-700);
  color: var(--gold-400);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy-700);
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-600);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 1.25rem;
  transition: all 0.2s ease;
}

.service-card .learn-more:hover {
  color: var(--navy-700);
  gap: 0.75rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  font-family: 'Inter', -apple-system, sans-serif;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(197,165,90,0.3);
}

.btn-navy {
  background: var(--navy-700);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-600);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy-700);
  border: 2px solid var(--navy-700);
}
.btn-outline:hover {
  background: var(--navy-700);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-600);
  border: 2px solid var(--gold-500);
}
.btn-outline-gold:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block { width: 100%; }

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(27,42,74,0.1);
}

.testimonial-card .quote-icon {
  color: var(--gold-300);
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.testimonial-card .author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--navy-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-700);
  font-size: 0.875rem;
}

.testimonial-card .stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.testimonial-card .stars svg {
  color: var(--gold-500);
  fill: var(--gold-500);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 12px 32px rgba(27,42,74,0.12);
}

.pricing-card.featured {
  border: 2px solid var(--gold-500);
  position: relative;
  transform: scale(1.02);
}

.pricing-card.featured .badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.375rem 1.25rem;
  border-radius: 0 0 0.5rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy-700);
  font-family: 'Playfair Display', serif;
}

.pricing-card .features { list-style: none; padding: 0; margin: 0; }

.pricing-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.pricing-card .features .check-icon { color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }
.pricing-card .features .x-icon { color: var(--gray-300); flex-shrink: 0; margin-top: 2px; }
.pricing-card .features .disabled { color: var(--gray-400); }

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197,165,90,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 30rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  border-radius: 0.375rem;
  color: var(--white);
  font-size: 1rem;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(255,255,255,0.15);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-900);
  color: var(--gray-400);
}

.site-footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', -apple-system, sans-serif;
}

.site-footer a {
  color: var(--gray-400);
  transition: color 0.2s ease;
}

.site-footer a:hover { color: var(--gold-500); }

.site-footer .footer-logo { height: 50px; width: auto; margin-bottom: 1rem; }

.site-footer .footer-divider {
  border-top: 1px solid rgba(197,165,90,0.15);
  margin-top: 2.5rem;
  padding-top: 2rem;
}

.site-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.2s ease;
}

.site-footer .social-links a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}

/* WordPress Footer Menu Reset */
.site-footer ul,
.site-footer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

/* ============================================
   FORMS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-700);
  background: var(--white);
  transition: all 0.2s ease;
  font-family: 'Inter', -apple-system, sans-serif;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(197,165,90,0.15);
}

label {
  display: block;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}

/* ============================================
   YELLOW / GOLD STAR OVERRIDES
   ============================================ */
.text-yellow-400 { color: var(--gold-500); }
.fill-current { fill: currentColor; }

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-left { text-align: left; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .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)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:text-left { text-align: left; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:items-center { align-items: center; }

  .main-nav { display: flex; }
  .mobile-menu-toggle { display: none; }

  .hero-slider { height: 680px; }
  .hero-slide h1 { font-size: 3.5rem; }
  .hero-nav-btn { width: 56px; height: 56px; }
  .hero-prev { left: 2rem; }
  .hero-next { right: 2rem; }
}

@media (min-width: 1024px) {
  .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\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:col-span-1 { grid-column: span 1; }
  .lg\:col-span-2 { grid-column: span 2; }
  .lg\:text-left { text-align: left; }

  .hero-slide h1 { font-size: 3.75rem; }
}

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

@media (max-width: 767px) {
  .hero-slider { height: 550px; }
  .hero-slide h1 { font-size: 2rem; }
  .hero-slide p { font-size: 1rem; }
  .hero-nav-btn { width: 40px; height: 40px; }
  .hero-prev { left: 0.75rem; }
  .hero-next { right: 0.75rem; }
  .section-title { font-size: 1.75rem; }
  .newsletter-form { flex-direction: column; }
  .pricing-card.featured { transform: none; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-open .faq-chevron { transform: rotate(90deg); }
.faq-open .faq-answer { max-height: 12rem !important; padding-top: 0 !important; }

/* ============================================
   Buttons - navy & gold
   ============================================ */
.btn-navy {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy-800); color: var(--white);
  padding: 0.75rem 2rem; border-radius: 0.5rem;
  font-weight: 700; font-size: 0.9375rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-navy:hover { background: var(--navy-700); transform: translateY(-1px); }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-500); color: var(--navy-900);
  padding: 0.75rem 2rem; border-radius: 0.5rem;
  font-weight: 700; font-size: 0.9375rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-gold:hover { background: var(--gold-600); transform: translateY(-1px); }

/* ============================================
   Form Inputs
   ============================================ */
.form-input {
  display: block; width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: var(--navy-800);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.form-input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(197,165,90,0.15);
}
select.form-input { appearance: auto; }
textarea.form-input { resize: vertical; }
