/* ============================================================
   The Business Doctor — Main Stylesheet v2.0
   Design: Refined Professional (Navy + Gold + Cream)
   Fonts: Playfair Display + DM Sans
   ============================================================ */

/* =====================
   0. CSS VARIABLES
   ===================== */
:root {
  --navy:        #0A192F;
  --navy-mid:    #112240;
  --navy-light:  #233554;
  --gold:        #C8963E;
  --gold-dark:   #916823;
  --gold-light:  #E8B86D;
  --gold-pale:   #F5E9D4;
  --gold-text:   #8C6212; /* WCAG AA compliant on white */
  --cream:       #F9F5EE;
  --cream-dark:  #EDE8DF;
  --white:       #FFFFFF;
  --text:        #1C2230;
  --text-mid:    #4A5568;
  --text-light:  #8899AA;
  --border:      #DDD8CE;
  --shadow-sm:   0 2px 8px rgba(10,25,47,0.08);
  --shadow:      0 4px 24px rgba(10,25,47,0.12);
  --shadow-lg:   0 16px 56px rgba(10,25,47,0.18);
  --radius:      8px;
  --radius-lg:   16px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:       1200px;
  --nav-h:       80px;
}

/* =====================
   1. RESET & BASE
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

ul {
  list-style: none;
}

/* =====================
   1.5 AODA & ACCESSIBILITY
   ===================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  z-index: 2000;
  transition: top 0.3s;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

/* =====================
   2. TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
}

em {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}

/* =====================
   3. LAYOUT UTILITIES
   ===================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  background: var(--navy);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.section-header h2 {
  margin-top: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--text-mid);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* =====================
   4. NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -10px rgba(10, 25, 47, 0.15);
}

.nav.scrolled .nav-link {
  color: var(--text);
}

.nav.scrolled .nav-link:hover {
  color: var(--gold-text);
}

.nav.nav--dark {
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav.nav--dark .nav-link {
  color: var(--text);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-dark img {
  display: none;
}

.nav.scrolled .nav-logo-light img,
.nav.nav--dark .nav-logo-light img {
  display: none;
}

.nav.scrolled .nav-logo-dark img,
.nav.nav--dark .nav-logo-dark img {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(200,150,62,0.08);
}

.nav.scrolled .nav-link:hover,
.nav.scrolled .nav-link.active,
.nav.nav--dark .nav-link:hover,
.nav.nav--dark .nav-link.active {
  color: var(--gold-text);
}

.nav-cta {
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav.scrolled .nav-toggle span,
.nav.nav--dark .nav-toggle span {
  background: var(--navy);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   5. BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.28s var(--ease);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,150,62,0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12,30,53,0.3);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.8rem;
  padding: 10px 20px;
}

/* =====================
   6. HERO — HOME
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12,30,53,0.97) 0%, rgba(26,51,82,0.85) 100%);
  z-index: 1;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.prod.website-files.com/6074f2225405632ba39b23d2/6734f954844fa02eebd93602_1.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.25;
}

/* Geometric accent */
.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border: 1px solid rgba(200,150,62,0.15);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(200,150,62,0.1);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-h);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid rgba(200,150,62,0.4);
  border-radius: 100px;
}

.hero h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 20px;
}

.hero h1 em {
  color: var(--gold-light);
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 44px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(200,150,62,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* =====================
   7. PAGE HERO (inner pages)
   ===================== */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 60px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,150,62,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}

/* =====================
   8. CARDS
   ===================== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 25, 47, 0.05);
  transition: all 0.4s var(--ease);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(10, 25, 47, 0.2);
  border-color: var(--gold-light);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 28px;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.3rem;
}

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.93rem;
  margin-bottom: 20px;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.card-link:hover {
  gap: 10px;
  color: var(--gold);
}

/* =====================
   9. FIVE-POINT CHECK-UP
   ===================== */
.checkup-section {
  background: var(--cream);
}

.checkup-intro {
  max-width: 600px;
}

.checkup-intro h2 {
  margin: 12px 0 20px;
}

.checkup-intro p {
  margin-bottom: 32px;
}

.checkup-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkup-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease);
}

.checkup-item:hover {
  transform: translateX(10px);
  background: var(--cream);
  border-left-color: var(--navy);
}

.checkup-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  min-width: 36px;
}

.checkup-text h4 {
  color: var(--navy);
  margin-bottom: 4px;
}

.checkup-text p {
  font-size: 0.88rem;
  margin: 0;
}

.checkup-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.checkup-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.checkup-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.checkup-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.checkup-badge span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

/* =====================
   10. TABS (Services)
   ===================== */
.tabs {
  margin-top: 0;
}

.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  background: none;
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  position: relative;
  transition: color 0.25s;
  white-space: nowrap;
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.tab-btn.active {
  color: var(--gold);
}

.tab-btn.active::after {
  transform: scaleX(1);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* =====================
   11. SERVICE GRID
   ===================== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

/* =====================
   12. TESTIMONIALS
   ===================== */
.testimonials-section {
  background: var(--navy);
  padding: 100px 0;
}

.testimonials-section .section-header h2 {
  color: var(--white);
}

.testimonials-section .section-header p {
  color: rgba(255,255,255,0.65);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.4;
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 28px;
  padding-top: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--gold-light);
}

/* =====================
   13. CTA BANNER
   ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(200,150,62,0.15);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(200,150,62,0.1);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--white);
  max-width: 600px;
  margin: 12px auto 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =====================
   14. ABOUT PAGE
   ===================== */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-content h2 {
  margin: 12px 0 20px;
}

.about-story-content p {
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about-stat {
  background: var(--cream);
  padding: 24px;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}

.about-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat span {
  font-size: 0.88rem;
  color: var(--text-mid);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
}

/* Leader card */
.leader-section {
  background: var(--cream);
}

.leader-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.leader-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top center;
}

.leader-content {
  padding: 48px 48px 48px 0;
}

.leader-content h2 {
  margin: 12px 0 8px;
}

.leader-title {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.leader-content p {
  margin-bottom: 16px;
}

.leader-expertise {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.leader-expertise h4 {
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--navy);
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expertise-tag {
  background: var(--gold-pale);
  color: var(--navy-mid);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

/* =====================
   15. TRADING PAGE
   ===================== */
.trading-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trading-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  cursor: pointer;
}

.trading-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.trading-card:hover img {
  transform: scale(1.05);
}

.trading-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,30,53,0.9) 0%, rgba(12,30,53,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s;
}

.trading-card:hover .trading-card-overlay {
  background: linear-gradient(to top, rgba(12,30,53,0.95) 0%, rgba(12,30,53,0.5) 60%, rgba(12,30,53,0.2) 100%);
}

.trading-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.trading-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.trading-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.trading-card .card-link {
  color: var(--gold-light);
}

/* =====================
   16. CONSULTING PAGE
   ===================== */
.consulting-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.consulting-service:last-child {
  border-bottom: none;
}

.consulting-service.reverse {
  direction: rtl;
}

.consulting-service.reverse > * {
  direction: ltr;
}

.consulting-service-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.consulting-service-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.consulting-service-content h3 {
  margin: 12px 0 20px;
  font-size: 2rem;
}

.consulting-service-content p {
  margin-bottom: 16px;
}

/* =====================
   17. CONTACT PAGE
   ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.contact-info h2 {
  margin: 12px 0 20px;
}

.contact-info > p {
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-detail a {
  color: var(--navy);
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-detail p {
  color: var(--text-mid);
  font-size: 0.93rem;
  margin: 0;
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  margin-bottom: 32px;
  font-size: 0.93rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group label .req {
  color: var(--gold);
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,62,0.12);
  background: var(--white);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238899AA' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-msg {
  display: none;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.form-msg.success {
  background: #D4EDDA;
  color: #155724;
  border: 1px solid #C3E6CB;
  display: block;
}

.form-msg.error {
  background: #F8D7DA;
  color: #721C24;
  border: 1px solid #F5C6CB;
  display: block;
}

/* =====================
   18. FOOTER
   ===================== */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  height: 44px;
  margin-bottom: 20px;
  /* If logo on dark bg is dark, use filter to make it white: */
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all 0.25s;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* =====================
   19. ANIMATIONS
   ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
}

.fade-right {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }
.delay-5 { transition-delay: 0.75s; }

/* =====================
   20. LEGAL PAGE
   ===================== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p, .legal-content li {
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
}

.legal-toc {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
  border-left: 3px solid var(--gold);
}

.legal-toc h4 {
  margin-bottom: 14px;
}

.legal-toc a {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  padding: 4px 0;
}

.legal-toc a:hover {
  color: var(--navy);
}

/* =====================
   21. MISCELLANEOUS
   ===================== */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0;
}

.divider--center {
  margin: 16px auto;
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s var(--ease);
  z-index: 999;
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* =====================
   22. RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .leader-card {
    grid-template-columns: 320px 1fr;
  }

  .about-story {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* ── NAV ── */
  .nav-container { padding: 0 20px; }

  /* Hide menu by default on mobile — shown via JS .open class */
  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 96px 32px 48px;
    z-index: 998;
    overflow-y: auto;
  }

  .nav-menu.open {
    display: flex;
    animation: mobileNavIn 0.25s ease both;
  }

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

  .nav-menu li { width: 100%; text-align: center; }

  .nav-link {
    color: var(--white) !important;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    width: 100%;
    text-align: center;
    padding: 14px 0;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-link:hover,
  .nav-link.active { color: var(--gold) !important; background: none; }

  .nav-link::after { display: none !important; }

  .nav-menu .nav-cta-mobile {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    border-radius: var(--radius);
    font-size: 1rem;
    text-decoration: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 1000;
    position: relative;
  }

  .nav-toggle.open span { background: var(--white) !important; }

  .nav-cta { display: none; }
  .nav-logo { position: relative; z-index: 1000; }

  /* ── HERO ── */
  .hero {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 48px) 0 64px;
  }

  .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-eyebrow { font-size: 0.7rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn { text-align: center; width: 100%; }

  /* ── SECTIONS ── */
  .section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* ── GRIDS ── */
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 24px; }

  /* ── TABS ── */
  .tabs-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  .tab-btn {
    flex: 1 1 auto;
    min-width: 120px;
    padding: 12px 14px;
    font-size: 0.85rem;
    text-align: center;
  }

  /* ── CHECKUP ── */
  .checkup-section .grid-2 { grid-template-columns: 1fr; }
  .checkup-image { display: none; }
  .checkup-item:hover { transform: none; }

  /* ── CARDS ── */
  .card-body { padding: 22px; }
  .card:hover { transform: translateY(-4px); }

  /* ── TESTIMONIALS ── */
  .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ── ABOUT ── */
  .about-story { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .leader-card { grid-template-columns: 1fr; }
  .leader-img { height: 300px; }
  .leader-content { padding: 28px 24px; }

  /* ── CONSULTING ── */
  .consulting-service { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .consulting-service.reverse { direction: ltr; }
  .consulting-service-img { height: 240px; border-radius: var(--radius); overflow: hidden; }
  .consulting-service-img img { width: 100%; height: 100%; object-fit: cover; }

  /* ── TRADING ── */
  .trading-hero-cards { grid-template-columns: 1fr; }
  .trading-card { height: 280px; }

  /* ── CONTACT ── */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { position: static; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* ── FACEBOOK ── */
  .fb-plugin-container { width: 100%; }
  .fb-plugin-container .fb-page { width: 100% !important; }

  /* ── CTA ── */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* ── PAGE HEROES (inner pages) ── */
  .page-hero { padding: calc(var(--nav-h) + 40px) 0 48px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* ── INTRO GOLD STRIP ── */
  .intro-strip { padding: 36px 0; }
  .intro-strip p { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  :root { --nav-h: 62px; }

  .nav-logo img { height: 38px; }

  .hero-title { font-size: clamp(1.8rem, 10vw, 2.4rem); }

  .tab-btn { font-size: 0.8rem; padding: 10px 12px; min-width: 100px; }

  .about-stats { grid-template-columns: 1fr; }

  .about-stat { padding: 20px 16px; }

  .section-header h2 { font-size: clamp(1.5rem, 7vw, 2rem); }

  .checkup-num { font-size: 2rem; }

  .card-img { height: 180px; }

  .testimonial-card { padding: 24px 20px; }

  .contact-detail { padding: 16px; }

  .footer-col { text-align: center; }
  .footer-links { align-items: center; }
  .social-links { justify-content: center; }
}

/* ============================================================
   ENHANCED INTERACTIVITY v2.0 — Hover Animations & Micro-interactions
   ============================================================ */

/* --- Checkup Items --- */
.checkup-item {
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.35s ease,
              border-left-color 0.3s ease;
}

.checkup-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(200,150,62,0.06) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.checkup-item:hover::before { transform: translateX(100%); }

.checkup-item:hover {
  transform: translateX(10px) scale(1.01);
  box-shadow: 0 8px 32px rgba(12,30,53,0.15);
  border-left-color: var(--gold-light);
}

.checkup-num {
  transition: color 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  display: inline-block;
}

.checkup-item:hover .checkup-num { color: var(--gold); transform: scale(1.15); }
.checkup-text h4 { transition: color 0.25s ease; }
.checkup-item:hover .checkup-text h4 { color: var(--gold); }

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.checkup-item.visible { animation: slideInLeft 0.5s cubic-bezier(0.22,1,0.36,1) both; }
.checkup-item.visible:nth-child(1) { animation-delay: 0.05s; }
.checkup-item.visible:nth-child(2) { animation-delay: 0.13s; }
.checkup-item.visible:nth-child(3) { animation-delay: 0.21s; }
.checkup-item.visible:nth-child(4) { animation-delay: 0.29s; }
.checkup-item.visible:nth-child(5) { animation-delay: 0.37s; }

/* --- Service Cards --- */
.card {
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-10px) scale(1.015); box-shadow: 0 20px 60px rgba(12,30,53,0.18); }

.card-icon {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease, color 0.3s ease;
}
.card:hover .card-icon { transform: scale(1.2) rotate(-8deg); background: var(--gold); color: var(--white); }

.card-img { transition: transform 0.5s ease; }
.card:hover .card-img { transform: scale(1.04); }

/* --- Tab buttons --- */
.tab-btn { transition: color 0.25s ease, background 0.25s ease, transform 0.2s ease; }
.tab-btn:hover:not(.active) { color: var(--navy); background: var(--cream); transform: translateY(-2px); }
.tab-btn.active { transform: translateY(-1px); }

/* --- Buttons ripple --- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: scale(0);
  border-radius: inherit;
  transition: transform 0.4s ease;
}
.btn:hover::after { transform: scale(1); }

/* --- Phone icon wiggle --- */
@keyframes wiggle {
  0%,100% { transform: rotate(0deg); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  60% { transform: rotate(-4deg); }
  80% { transform: rotate(4deg); }
}
.cta-section a[href^="tel"]:hover i,
.page-hero a[href^="tel"]:hover i { animation: wiggle 0.5s ease; }
a[href^="tel"]:hover i { animation: wiggle 0.5s ease; display: inline-block; }

/* --- Testimonials --- */
.testimonial-card { transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; }
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,0.25); border-color: rgba(200,150,62,0.4); }

/* --- Social links --- */
.social-link { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.25s ease, border-color 0.25s ease, color 0.25s ease; }
.social-link:hover { transform: translateY(-5px) scale(1.15); }

/* --- Trading cards --- */
.trading-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.trading-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(12,30,53,0.3); }

/* --- Consulting service image --- */
.consulting-service-img { transition: transform 0.35s ease; overflow: hidden; border-radius: var(--radius-lg); }
.consulting-service-img img { transition: transform 0.5s ease; }
.consulting-service:hover .consulting-service-img img { transform: scale(1.03); }

/* --- About stat cards --- */
.about-stat {
  transition: transform 0.3s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.3s ease;
}
.about-stat:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

/* --- Contact detail cards --- */
.contact-detail { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.contact-detail:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.contact-detail-icon { transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease; }
.contact-detail:hover .contact-detail-icon { transform: scale(1.15) rotate(-8deg); background: var(--gold); color: var(--white); }

/* --- Footer links --- */
.footer-links a { transition: color 0.2s ease, transform 0.2s ease, padding-left 0.2s ease; display: inline-block; }
.footer-links a:hover { padding-left: 6px; }

/* --- Checkup badge pulse --- */
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,150,62,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(200,150,62,0); }
}
.checkup-badge { animation: badgePulse 3s ease-in-out infinite; }

/* --- Hero eyebrow shimmer --- */
@keyframes borderShimmer {
  0%,100% { border-color: rgba(200,150,62,0.4); }
  50% { border-color: rgba(200,150,62,0.9); }
}
.hero-eyebrow { animation: borderShimmer 2.5s ease-in-out infinite; }

/* --- Nav link underline slide --- */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); transform-origin: left; }

/* ============================================================
   FACEBOOK FEED SECTION
   ============================================================ */
.fb-section { background: var(--cream); padding: 100px 0; }
.fb-feed-wrap { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.fb-plugin-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--white); }

/* ============================================================
   LOGO — White on dark hero, animated entrance
   ============================================================ */

/* Make the light logo actually white when on dark background */
.nav-logo-light img {
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

/* When scrolled (white bg), light logo hides — dark logo takes over normally */
.nav.scrolled .nav-logo-dark img,
.nav.nav--dark .nav-logo-dark img {
  filter: none;
}

/* Logo entrance animation on page load */
@keyframes logoReveal {
  0%   { opacity: 0; transform: translateY(-12px) scale(0.88); filter: brightness(0) invert(1) drop-shadow(0 0 0px rgba(200,150,62,0)); }
  60%  { opacity: 1; transform: translateY(2px) scale(1.03);   filter: brightness(0) invert(1) drop-shadow(0 0 18px rgba(200,150,62,0.55)); }
  100% { opacity: 1; transform: translateY(0) scale(1);        filter: brightness(0) invert(1) drop-shadow(0 0 0px rgba(200,150,62,0)); }
}

.nav-logo-light img {
  animation: logoReveal 0.9s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}

/* Subtle hover glow on logo */
.nav-logo:hover .nav-logo-light img {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(200,150,62,0.6));
}
.nav-logo:hover .nav-logo-dark img {
  filter: drop-shadow(0 2px 8px rgba(12,30,53,0.25));
}

/* ============================================================
   TESTIMONIAL — Stars & Google source badge
   ============================================================ */
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #F4B942;
  font-size: 1.1rem;
}

.testimonial-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

.testimonial-source i {
  font-size: 0.95rem;
  color: #4285F4;
}



/* ── GLOBAL OVERFLOW FIX ── */
html, body { overflow-x: hidden; }
.nav { z-index: 999; }

/* ── PILLARS GRID (Diagnose / Prescribe / Grow) ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
}

/* ── FACEBOOK SECTION — better desktop layout ── */
@media (min-width: 769px) {
  .fb-plugin-container .fb-page { width: 600px !important; }
  .fb-feed-wrap { justify-content: center; }
}

@media (max-width: 768px) {
  .fb-section { padding: 64px 0; }
  .fb-feed-wrap { padding: 0 16px; }
  .fb-plugin-container { width: 100%; max-width: 100%; }
}

/* ── SCROLL-REVEAL for mobile (replaces hover-only interactions) ── */
@media (max-width: 768px) {
  /* Disable all hover transforms — don't feel right on touch */
  .checkup-item:hover,
  .card:hover,
  .testimonial-card:hover,
  .about-stat:hover,
  .trading-card:hover,
  .contact-detail:hover { transform: none !important; box-shadow: none !important; }

  /* Keep scroll-triggered fade-up working on mobile */
  .fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
  .fade-up.visible { opacity: 1; transform: none; }

  /* Stagger checkup items on scroll instead */
  .checkup-item { opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease; }
  .checkup-item.visible { opacity: 1; transform: none; animation: none; }
}

/* ── BREADCRUMB — don't look like a second nav bar on mobile ── */
@media (max-width: 768px) {
  .breadcrumb { font-size: 0.78rem; margin-bottom: 12px; }
}
