/* ============================================
   GURUS CONSULTING — styles.css
   Shared styles for all pages
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:       #1a2442;
  --slate:      #2c3e6b;
  --slate-mid:  #3d5080;
  --slate-light:#eef1fa;
  --gold:       #e8a844;
  --gold-light: rgba(232,168,68,0.15);
  --bg:         #f5f7fc;
  --bg-white:   #ffffff;
  --border:     #dde3f0;
  --border-mid: #c8d0e8;
  --text-dark:  #1a2442;
  --text-mid:   #3d4d6e;
  --text-muted: #5a6480;
  --text-hint:  #8892a8;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Plus Jakarta Sans', system-ui, sans-serif;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --shadow-sm:  0 2px 12px rgba(44,62,107,0.08);
  --shadow-md:  0 4px 24px rgba(44,62,107,0.12);
}

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

/* --- Container --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* --- Navigation --- */
.nav {
  background: var(--slate);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(26,36,66,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: var(--font-sans);
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--slate); color: #fff; }
.btn-primary:hover { background: var(--navy); }
.btn-accent { background: var(--gold); color: var(--navy); font-weight: 600; }
.btn-accent:hover { opacity: 0.9; }
.btn-outline {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--slate);
}
.btn-outline:hover { background: var(--slate-light); }
.btn-white {
  background: #fff;
  color: var(--navy);
  font-weight: 600;
}

/* --- Section base --- */
section { padding: 72px 0; }
.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 40px;
}

/* --- Hero --- */
.hero {
  background: var(--bg);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,62,107,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--slate);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-mid);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-tag svg { width: 12px; height: 12px; }
.hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero h1 em {
  color: var(--slate);
  font-style: italic;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.badge {
  background: #fff;
  border: 1px solid var(--border-mid);
  color: var(--slate);
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
}

/* Hero card */
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow-md);
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.2s;
}
.hero-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate), #4a6098);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero-card-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.hero-card-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.cert-row {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.cert {
  background: var(--slate);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.mini-stat {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.mini-stat-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--slate);
  line-height: 1;
}
.mini-stat-label {
  font-size: 10px;
  color: var(--text-hint);
  margin-top: 2px;
}
.book-strip {
  background: var(--slate-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.book-strip-text {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.book-strip-btn {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 5px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  transition: opacity 0.2s;
}
.book-strip-btn:hover { opacity: 0.85; }

/* --- Stats Bar --- */
.stats-bar {
  background: var(--slate);
  padding: 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1160px;
  margin: 0 auto;
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* --- Services --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  border-left: 3px solid var(--gold);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.service-icon {
  width: 40px;
  height: 40px;
  background: var(--slate-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--slate);
  font-size: 18px;
}
.service-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 6px;
}
.service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* --- Booking Section --- */
.booking-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.booking-features {
  margin: 20px 0 32px;
}
.booking-features li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.booking-features li svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  flex-shrink: 0;
}
.booking-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.booking-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg);
}
.booking-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate), #4a6098);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
.booking-card-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.booking-card-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}
.booking-type {
  background: var(--slate-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.booking-type-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.booking-type-meta {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.booking-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.booking-free {
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.booking-cta-btn {
  width: 100%;
  background: var(--slate);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
  text-decoration: none;
}
.booking-cta-btn:hover { background: var(--navy); }
.zoom-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-hint);
  margin-top: 10px;
}

/* --- Newsletter --- */
.newsletter {
  background: linear-gradient(135deg, var(--slate) 0%, var(--navy) 100%);
  padding: 72px 0;
  text-align: center;
}
.newsletter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,168,68,0.15);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid rgba(232,168,68,0.25);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.newsletter h2 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.newsletter-sub {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 24px;
}
.newsletter-perks {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.newsletter-perk {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
}
.newsletter-perk svg { color: var(--gold); width: 14px; height: 14px; }
.newsletter-note {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  margin-top: 14px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 28px;
}

/* --- Footer --- */
.footer {
  background: #0d1526;
  padding: 48px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all 0.2s;
}
.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-col-title {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* --- Popups --- */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,18,40,0.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}
.popup-overlay.open { display: flex; }
.popup {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 420px;
  max-width: calc(100vw - 32px);
  position: relative;
  animation: popIn 0.25s ease both;
}
.popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 20px;
  color: var(--text-hint);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.popup-close:hover { color: var(--navy); }
.popup-icon {
  width: 52px;
  height: 52px;
  background: var(--slate-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--slate);
  margin: 0 auto 16px;
}
.popup h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}
.popup-sub {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.65;
  font-weight: 300;
}
.popup-perks {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
}
.popup-perks li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.popup-perks li svg { color: var(--gold); width: 14px; height: 14px; flex-shrink: 0; }
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.popup-input {
  padding: 11px 14px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--navy);
  transition: border-color 0.2s;
  width: 100%;
}
.popup-input:focus { outline: none; border-color: var(--slate); }
.popup-submit {
  background: var(--slate);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s;
  width: 100%;
}
.popup-submit:hover { background: var(--navy); }
.popup-disclaimer {
  font-size: 11px;
  color: var(--text-hint);
  text-align: center;
  margin-top: 10px;
}
.popup-acuity-note {
  background: var(--slate-light);
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  margin-top: 8px;
}
.popup-acuity-note p {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 300;
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--bg);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.animate-up {
  animation: fadeUp 0.55s ease both;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-grid,
  .booking-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 38px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--slate);
    padding: 16px 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 28px; }
  .newsletter h2 { font-size: 28px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-perks { flex-direction: column; align-items: center; }
}
