/* =============================================
   NAVARRA COACH CONSULT — Global Styles
   ============================================= */

/* --- Variables --- */
:root {
  --navy: #1a2744;
  --navy-light: #243259;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --cream: #f8f5f0;
  --white: #ffffff;
  --grey-light: #f2f2f2;
  --grey-mid: #e0e0e0;
  --text-dark: #1a1a2e;
  --text-body: #3d3d3d;
  --text-muted: #7a7a8a;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1160px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(26, 39, 68, 0.10);
  --shadow-lg: 0 8px 40px rgba(26, 39, 68, 0.16);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Utility Classes --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.2rem 0 1.8rem;
}
.divider-center { margin: 1.2rem auto 1.8rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,39,68,0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-mark {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.logo-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-body);
  padding: 0.5rem 0.75rem;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.75rem; right: 0.75rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 2rem;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; flex-direction: column; gap: 0.5rem; }
.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-mid);
  display: block;
}
.nav-mobile .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  padding: 9rem 0 5rem;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.15rem; max-width: 600px; margin-top: 1rem; }

/* =============================================
   SERVICE CARDS
   ============================================= */
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 4px;
  padding: 2.5rem;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card .icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: var(--gold);
}
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.service-card p { color: var(--text-body); font-size: 0.95rem; }

/* =============================================
   CHECK LIST
   ============================================= */
.check-list { display: flex; flex-direction: column; gap: 0.85rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--text-body);
}
.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 2rem;
  position: relative;
  padding-bottom: 2.5rem;
}
.process-step:last-child { padding-bottom: 0; }
.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.process-step:not(:last-child) .step-number::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 1.5rem);
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.step-content { padding-top: 0.5rem; }
.step-content h4 { margin-bottom: 0.4rem; color: var(--navy); }
.step-content p { font-size: 0.95rem; color: var(--text-body); }

/* =============================================
   STAT BLOCKS
   ============================================= */
.stat-block { text-align: center; padding: 2rem; }
.stat-block .stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-block p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* =============================================
   TESTIMONIAL CARDS
   ============================================= */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-mid);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonial-card blockquote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.author-info .role { font-size: 0.8rem; color: var(--text-muted); }
.star-rating { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; }

/* =============================================
   FORM STYLES
   ============================================= */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--grey-mid);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 2rem; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #0f1826;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 1.25rem; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.6rem; font-size: 0.88rem; }
.footer-contact-item i { color: var(--gold); margin-top: 0.15rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   GRID LAYOUTS
   ============================================= */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

/* Specific layouts */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-layout .image-wrap {
  position: relative;
}
.split-layout .image-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.split-layout .image-wrap::after {
  content: none !important;
  display: none !important;
  border: none !important;
}

/* =============================================
   ALERT / NOTICE BOXES
   ============================================= */
.info-box {
  background: rgba(201,168,76,0.08);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin: 1.5rem 0;
}
.info-box p { font-size: 0.95rem; margin: 0; }

/* =============================================
   SUCCESS / NOTIFICATION
   ============================================= */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(150%);
  transition: transform 0.4s ease;
}
.toast.show { transform: translateY(0); }

.footer-bottom {
  max-width: 1140px;
  width: calc(100% - 140px);
  margin: 0 auto;
  padding: 24px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split-layout { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4, .split-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .split-layout .image-wrap::after { display: none; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .process-step { gap: 1.25rem; }
  .section-pad { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.8rem; }
}
