@import url('https://fonts.cdnfonts.com/css/google-sans');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --color-accent-yellow: #F1C40F;
  --color-accent-green:  #61CE70;
  --color-dark:          #222222;
  --color-navy:          #161530;
  --color-light-cyan:    #D7E8EB;
  --color-peach:         #FDE8C8;
  --color-purple-dark:   #2D1F6E;
  --color-purple-header: #230545;
  --font-primary:        'Google Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================================
   GLOBAL FONT RULE: GOOGLE SANS EVERYWHERE
   ============================================================ */
*, *::before, *::after {
  font-family: var(--font-primary) !important;
  box-sizing: border-box;
}

html, body {
  font-family: var(--font-primary) !important;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6,
p, span, a, li, label,
input, textarea, button, select,
.site-logo, .hero-title, .hero-text {
  font-family: var(--font-primary) !important;
}

/* Override any legacy font classes sitewide */
.font-varela, .font-roboto, .font-slab {
  font-family: var(--font-primary) !important;
}

/* ============================================================
   COLOR UTILITIES
   ============================================================ */
.bg-navy { background-color: var(--color-navy) !important; }
.bg-purple-dark { background-color: var(--color-purple-dark) !important; }
.bg-purple-header { background-color: var(--color-purple-header) !important; }
.bg-accent-yellow { background-color: var(--color-accent-yellow) !important; }
.bg-accent-green { background-color: var(--color-accent-green) !important; }
.bg-dark { background-color: var(--color-dark) !important; }
.bg-peach { background-color: var(--color-peach) !important; }
.bg-light-cyan { background-color: var(--color-light-cyan) !important; }

.text-accent-yellow { color: var(--color-accent-yellow) !important; }
.text-accent-green { color: var(--color-accent-green) !important; }
.text-dark { color: var(--color-dark) !important; }
.text-navy { color: var(--color-navy) !important; }

.border-accent-yellow { border-color: var(--color-accent-yellow) !important; }
.border-accent-green { border-color: var(--color-accent-green) !important; }

/* ============================================================
   HERO / VIDEO SECTION
   ============================================================ */
.hero-section, .video-hero, .hero-video-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  width: 100%;
}

.hero-video, .video-bg, .hero-section video, .video-hero video, .hero-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay, .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.60);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================================
   SITE TEXT-BASED LOGO (MONOCHROME BLACK / WHITE)
   ============================================================ */
.site-logo-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}

.site-logo-brand:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

.site-logo-brand .logo-text {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  color: inherit;
  transition: color 0.25s ease;
}

@media (min-width: 640px) {
  .site-logo-brand .logo-text {
    font-size: 1.85rem;
  }
}

@media (min-width: 1024px) {
  .site-logo-brand .logo-text {
    font-size: 2rem;
  }
}

/* ============================================================
   NAVIGATION & HAMBURGER
   ============================================================ */
.hamburger .bar1,
.hamburger .bar2,
.hamburger .bar3 {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px 0;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.hamburger.open .bar1 {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.open .bar2 {
  opacity: 0;
}
.hamburger.open .bar3 {
  transform: translateY(-6px) rotate(-45deg);
}

#mobile-menu {
  display: none;
}
#mobile-menu.open {
  display: flex !important;
}

/* ============================================================
   404 ERROR PAGE STYLING
   ============================================================ */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: normal;
  max-width: 600px;
  margin: 1.5rem auto 2rem;
  line-height: 1.6;
}

/* ============================================================
   DIVIDERS (UNIFORM SPACING & STYLING SITEWIDE)
   ============================================================ */
.green-divider, .divider-green {
  display: block;
  width: 64px;
  height: 3.5px;
  background-color: var(--color-accent-green);
  border-radius: 2px;
  margin: 14px auto 28px;
  border: none;
}

.green-divider-left, .divider-green-left {
  display: block;
  width: 64px;
  height: 3.5px;
  background-color: var(--color-accent-green);
  border-radius: 2px;
  margin: 14px 0 28px;
  border: none;
}

.yellow-divider, .divider-yellow-left {
  display: block;
  width: 64px;
  height: 3.5px;
  background-color: var(--color-accent-yellow);
  border-radius: 2px;
  margin: 14px 0 28px;
  border: none;
}

.yellow-divider-center, .divider-yellow {
  display: block;
  width: 64px;
  height: 3.5px;
  background-color: var(--color-accent-yellow);
  border-radius: 2px;
  margin: 14px auto 28px;
  border: none;
}

.hero-divider {
  display: block;
  width: 90px;
  height: 3.5px;
  background-color: var(--color-accent-green);
  margin: 16px auto 0;
  border-radius: 2px;
  border: none;
}

/* ============================================================
   BUTTONS (CLEAN, SHARP TYPOGRAPHY & UNIFORM HOVER)
   ============================================================ */
.btn-yellow, .hero-btn, .form-btn, button[type="submit"].btn-submit {
  background-color: var(--color-accent-yellow) !important;
  color: #000000 !important;
  font-family: var(--font-primary) !important;
  font-weight: 700 !important;
  font-size: 0.95rem;
  letter-spacing: normal !important;
  word-spacing: normal !important;
  padding: 12px 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  line-height: 1.25;
}

.btn-yellow:hover, .hero-btn:hover, .form-btn:hover, button[type="submit"].btn-submit:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-yellow:active, .hero-btn:active, .form-btn:active {
  transform: translateY(0);
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--color-dark);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.social-btn:hover {
  background: #3a3a3a;
  color: var(--color-accent-yellow);
  transform: translateY(-2px);
}

/* ============================================================
   GET IN TOUCH & CONTACT INFO BOXES
   ============================================================ */
.get-in-touch-section {
  background: linear-gradient(135deg, #141228 0%, #161530 50%, #0d0c18 100%);
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #141228 0%, #161530 50%, #0d0c18 100%);
  background-size: 24px 24px, 100% 100%;
  position: relative;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  color: #ffffff;
  transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.2s ease;
}
.info-box:hover {
  border-color: rgba(97, 206, 112, 0.45);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.info-box-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(97, 206, 112, 0.12);
  border: 1px solid rgba(97, 206, 112, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent-green);
  transition: all 0.25s ease;
}
.info-box:hover .info-box-icon {
  background: var(--color-accent-green);
  color: #111111;
}
.info-box-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 0.2rem;
}
.info-box-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}
.info-box-value a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.info-box-value a:hover {
  color: var(--color-accent-yellow);
  text-decoration: underline;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  color: #e5e7eb;
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}
.trust-pill:hover {
  border-color: rgba(97, 206, 112, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ============================================================
   FORMS & INPUTS
   ============================================================ */
.form-card {
  background: #FDE8C8;
  border-radius: 12px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d0b090;
  border-radius: 6px;
  background: #ffffff;
  font-size: 0.95rem;
  color: #222222;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus {
  border-color: #222222;
  box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.1);
}
.form-input::placeholder {
  color: #999999;
}

/* ============================================================
   MATH CAPTCHA COMPONENT (SITEWIDE UNIFORM STYLING)
   ============================================================ */
.math-captcha-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem !important;
  background: rgba(255, 255, 255, 0.85) !important;
  padding: 0.55rem 0.85rem !important;
  border-radius: 8px !important;
  border: 1px solid #d4c2aa !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.math-captcha-label {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #111111 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.math-captcha-input {
  width: 90px !important;
  max-width: 90px !important;
  min-width: 80px !important;
  padding: 0.45rem 0.5rem !important;
  border: 1.5px solid #bba388 !important;
  border-radius: 6px !important;
  background: #ffffff !important;
  color: #111111 !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-align: center !important;
  outline: none !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.math-captcha-input:focus {
  border-color: #111111 !important;
  box-shadow: 0 0 0 2px rgba(241, 196, 15, 0.4) !important;
}

/* ============================================================
   WHY US PILLS & GRID (PERSONAL TRAINER PAGE)
   ============================================================ */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
  width: 100%;
}

.why-us-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
}
.why-us-pill:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(241, 196, 15, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   WORKOUT CARDS (PERSONAL TRAINER PAGE)
   ============================================================ */
.workout-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.workout-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-green), var(--color-accent-yellow));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.workout-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #d1d5db;
}

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

.workout-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(97, 206, 112, 0.12);
  border: 1px solid rgba(97, 206, 112, 0.25);
  color: var(--color-accent-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  transition: all 0.3s ease;
}

.workout-card:hover .workout-icon-wrap {
  background: #111111;
  color: var(--color-accent-yellow);
  border-color: #111111;
  transform: scale(1.08);
}

/* ============================================================
   DARK GLASS CARDS & SECTION GRAPHICS
   ============================================================ */
.glass-card-dark {
  background: rgba(22, 21, 48, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.glass-card-dark:hover {
  border-color: rgba(97, 206, 112, 0.4);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.feature-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
  border-color: rgba(97, 206, 112, 0.5);
}

.icon-badge-yellow {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(241, 196, 15, 0.15);
  border: 1px solid rgba(241, 196, 15, 0.35);
  color: #F1C40F;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-badge-green {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(97, 206, 112, 0.15);
  border: 1px solid rgba(97, 206, 112, 0.35);
  color: #61CE70;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-badge-cyan {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(110, 193, 228, 0.15);
  border: 1px solid rgba(110, 193, 228, 0.35);
  color: #6EC1E4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   CARDS, TESTIMONIALS & TEAM
   ============================================================ */
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.team-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.why-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222222;
}
.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent-green);
  flex-shrink: 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
}
.service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent-yellow);
  flex-shrink: 0;
}

/* ============================================================
   ACCORDIONS & FAQS (ACCESSIBLE & THEMED)
   ============================================================ */
.faq-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(30, 30, 46, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(97, 206, 112, 0.4);
}

.faq-btn {
  background: transparent;
  color: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}

.faq-btn[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.06);
}

.faq-btn[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: var(--color-accent-yellow);
}

.faq-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
  color: var(--color-accent-green);
}

.faq-answer {
  background: rgba(22, 22, 42, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-answer[hidden] {
  display: none !important;
}

/* ============================================================
   UNIFORM SITE FOOTER (ACROSS ALL PAGES)
   ============================================================ */
.site-footer, footer {
  background-color: #161530 !important;
  color: #ffffff !important;
  text-align: center;
  padding: 1.75rem 1.5rem;
  font-family: var(--font-primary) !important;
  font-size: 0.9rem;
  line-height: 1.5;
  width: 100%;
}
.site-footer p, footer p {
  color: #ffffff !important;
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}
