/* ============================================
   AT BİNME ÇİFTLİĞİ — CINEMATIC FOREST THEME
   ============================================ */

:root {
  --forest-dark:   #060f09;
  --forest-mid:    #0d1f13;
  --forest-deep:   #142a1a;
  --forest-green:  #1e4d2b;
  --moss:          #2d6a4f;
  --leaf:          #52b788;
  --leaf-light:    #95d5b2;
  --gold:          #c9a84c;
  --gold-light:    #e8c96d;
  --gold-dim:      #a07830;
  --amber:         #d4790a;
  --earth:         #8b5e3c;
  --earth-dark:    #5c3d1e;
  --cream:         #f5f0e6;
  --warm-white:    #fefcf6;
  --text-light:    #d4cbb8;
  --text-mid:      #9e9080;
  --shadow:        0 8px 40px rgba(0,0,0,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--forest-dark);
  color: var(--cream);
  overflow-x: hidden;
}

/* ===== LEAVES CANVAS ===== */
#leaves-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

/* ===== TOP RIBBON ===== */
.top-ribbon {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--gold);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.ribbon-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ribbonScroll 30s linear infinite;
  padding-right: 48px;
}

.ribbon-track span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-dark);
}

@keyframes ribbonScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== HEADER ===== */
.eq-header {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: all 0.4s ease;
}

.eq-header.scrolled {
  background: rgba(6, 15, 9, 0.92);
  backdrop-filter: blur(16px);
  padding: 14px 48px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.eq-back, .eq-call {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.eq-back:hover, .eq-call:hover { color: var(--gold); }

.eq-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-decoration: none;
}
.eq-logo span { color: var(--gold); }

/* ===== HERO ===== */
.eq-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 36px;
}

/* Parallax Layers */
.hero-layer {
  position: absolute;
  inset: -10% -5%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-sky {
  background: linear-gradient(
    180deg,
    #0a2010 0%,
    #142a1a 35%,
    #1e4030 60%,
    #0d1a10 100%
  );
  z-index: 1;
}

.hero-forest-back {
  z-index: 2;
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(52,184,88,0.08) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(10,30,15,0.6) 100%);
}

/* Simulate tree silhouettes with box-shadow/gradients */
.hero-forest-back::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background:
    /* Trees - many overlapping shapes */
    radial-gradient(ellipse 3% 30% at 5% 100%, #071208 0%, transparent 100%),
    radial-gradient(ellipse 2% 40% at 8% 100%, #0a1a0c 0%, transparent 100%),
    radial-gradient(ellipse 4% 35% at 12% 100%, #071208 0%, transparent 100%),
    radial-gradient(ellipse 3% 45% at 16% 100%, #0d1f10 0%, transparent 100%),
    radial-gradient(ellipse 5% 38% at 20% 100%, #071208 0%, transparent 100%),
    radial-gradient(ellipse 3% 50% at 24% 100%, #0a1a0c 0%, transparent 100%),
    radial-gradient(ellipse 4% 42% at 29% 100%, #071208 0%, transparent 100%),
    radial-gradient(ellipse 3% 35% at 33% 100%, #0d1f10 0%, transparent 100%),
    radial-gradient(ellipse 5% 48% at 38% 100%, #071208 0%, transparent 100%),
    radial-gradient(ellipse 3% 40% at 43% 100%, #0a1a0c 0%, transparent 100%),
    radial-gradient(ellipse 4% 44% at 48% 100%, #071208 0%, transparent 100%),
    radial-gradient(ellipse 3% 36% at 53% 100%, #0d1f10 0%, transparent 100%),
    radial-gradient(ellipse 5% 50% at 58% 100%, #071208 0%, transparent 100%),
    radial-gradient(ellipse 3% 38% at 63% 100%, #0a1a0c 0%, transparent 100%),
    radial-gradient(ellipse 4% 42% at 68% 100%, #071208 0%, transparent 100%),
    radial-gradient(ellipse 3% 46% at 73% 100%, #0d1f10 0%, transparent 100%),
    radial-gradient(ellipse 5% 40% at 78% 100%, #071208 0%, transparent 100%),
    radial-gradient(ellipse 3% 35% at 83% 100%, #0a1a0c 0%, transparent 100%),
    radial-gradient(ellipse 4% 48% at 88% 100%, #071208 0%, transparent 100%),
    radial-gradient(ellipse 3% 42% at 93% 100%, #0d1f10 0%, transparent 100%),
    radial-gradient(ellipse 5% 38% at 97% 100%, #071208 0%, transparent 100%);
  z-index: 2;
}

.hero-mist {
  z-index: 3;
  background: radial-gradient(ellipse 100% 40% at 50% 75%, rgba(120,200,140,0.06) 0%, transparent 70%);
  animation: mistDrift 12s ease-in-out infinite alternate;
}
@keyframes mistDrift {
  from { opacity: 0.6; transform: translateX(-1%) scaleX(1); }
  to   { opacity: 1; transform: translateX(1%) scaleX(1.03); }
}

.hero-forest-front {
  z-index: 4;
  bottom: 0;
  top: auto;
  height: 45%;
  background: linear-gradient(0deg, #060f09 0%, transparent 100%);
}

.hero-forest-front::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
  background:
    radial-gradient(ellipse 6% 60% at 0% 100%, #040b06 0%, transparent 100%),
    radial-gradient(ellipse 8% 80% at 4% 100%, #060e08 0%, transparent 100%),
    radial-gradient(ellipse 7% 70% at 9% 100%, #040b06 0%, transparent 100%),
    radial-gradient(ellipse 9% 85% at 15% 100%, #060e08 0%, transparent 100%),
    radial-gradient(ellipse 6% 65% at 22% 100%, #040b06 0%, transparent 100%),
    radial-gradient(ellipse 8% 90% at 30% 100%, #060e08 0%, transparent 100%),
    radial-gradient(ellipse 7% 75% at 38% 100%, #040b06 0%, transparent 100%),
    radial-gradient(ellipse 9% 80% at 47% 100%, #060e08 0%, transparent 100%),
    radial-gradient(ellipse 6% 70% at 55% 100%, #040b06 0%, transparent 100%),
    radial-gradient(ellipse 8% 88% at 63% 100%, #060e08 0%, transparent 100%),
    radial-gradient(ellipse 7% 78% at 71% 100%, #040b06 0%, transparent 100%),
    radial-gradient(ellipse 9% 85% at 79% 100%, #060e08 0%, transparent 100%),
    radial-gradient(ellipse 6% 72% at 87% 100%, #040b06 0%, transparent 100%),
    radial-gradient(ellipse 8% 80% at 93% 100%, #060e08 0%, transparent 100%),
    radial-gradient(ellipse 7% 68% at 98% 100%, #040b06 0%, transparent 100%);
}

.hero-ground {
  z-index: 5;
  bottom: 0; top: auto;
  height: 25%;
  background: linear-gradient(0deg, #030806 0%, rgba(6,15,9,0.8) 70%, transparent 100%);
}

/* Ambient light glow */
.eq-hero::after {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%);
  z-index: 6;
  pointer-events: none;
}

/* ===== HORSE SVG ===== */
.hero-horse-wrap {
  position: absolute;
  bottom: 4%;
  right: 3%;
  width: min(440px, 42vw);
  z-index: 7;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16,1,0.3,1);
}
.hero-horse-wrap.visible {
  opacity: 1;
  transform: translateX(0);
}

.horse-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.7));
  animation: horseBreath 4s ease-in-out infinite;
}
@keyframes horseBreath {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-6px) rotate(0.3deg); }
}

.horse-glow {
  position: absolute;
  bottom: -10px; left: 10%; right: 10%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.25) 0%, transparent 70%);
  animation: horseBreath 4s ease-in-out infinite;
}

/* ===== HERO CONTENT ===== */
.eq-hero-content {
  position: relative;
  z-index: 8;
  text-align: left;
  max-width: 600px;
  padding: 0 48px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}

/* ===== HERO LOGO ===== */
.hero-logo-emblem {
  position: absolute;
  right: calc(3% + min(440px, 42vw) + 36px);
  bottom: 8%;
  z-index: 12;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.hero-logo-emblem.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(201,168,76,0.5);
  box-shadow:
    0 0 0 6px rgba(201,168,76,0.1),
    0 8px 32px rgba(0,0,0,0.5),
    0 0 60px rgba(201,168,76,0.12);
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(201,168,76,0.1), 0 8px 32px rgba(0,0,0,0.5), 0 0 60px rgba(201,168,76,0.12); }
  50%       { box-shadow: 0 0 0 10px rgba(201,168,76,0.18), 0 8px 32px rgba(0,0,0,0.5), 0 0 80px rgba(201,168,76,0.2); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.hero-badge.visible { opacity: 1; transform: translateY(0); }

.badge-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.title-line.visible { opacity: 1; transform: translateY(0); }

.title-l1 { color: var(--cream); }
.title-l2 {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201,168,76,0.6);
}
.title-l3 {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.6s;
}
.hero-sub.visible { opacity: 1; transform: translateY(0); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease 0.8s;
}
.hero-actions.visible { opacity: 1; transform: translateY(0); }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--forest-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn-gold.btn-lg { font-size: 0.95rem; padding: 18px 36px; }

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid rgba(201,168,76,0.5);
  transition: all 0.3s ease;
}
.btn-outline-gold:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-gold.btn-lg { font-size: 0.95rem; padding: 18px 36px; }

/* ===== HERO SCROLL ===== */
.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245,240,230,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-horse-track {
  display: flex;
  gap: 6px;
}

.scroll-hoof {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.3;
  animation: hoofbeat 1.2s ease-in-out infinite;
}
.scroll-hoof:nth-child(2) { animation-delay: 0.2s; }
.scroll-hoof:nth-child(3) { animation-delay: 0.4s; }
@keyframes hoofbeat {
  0%, 100% { opacity: 0.2; transform: translateY(0); }
  50%       { opacity: 1; transform: translateY(-4px); }
}

/* ===== RUNNING HORSE STRIP ===== */
.run-strip {
  position: absolute;
  bottom: 68px;
  left: 0; right: 0;
  height: 130px;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.ground-line {
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.12) 15%,
    rgba(201,168,76,0.18) 50%,
    rgba(201,168,76,0.12) 85%,
    transparent 100%);
}

/* Moving wrapper: starts off right edge, animates to off left edge */
.run-horse-track {
  position: absolute;
  left: 110%;
  bottom: 10px;
  width: 110px;
  animation: horseRunAcross 9s linear infinite;
}

/* Original SVG faces left — flip to face right, matching left-to-right movement */
.run-horse-flip {
  transform: scaleX(-1);
}

/* Gallop bounce: up-down rhythm */
.run-horse-bounce {
  animation: horseGallopBounce 0.40s ease-in-out infinite;
}

.run-horse-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.55));
}

/* Dust clouds offset slightly behind horse */
.run-dust-track {
  position: absolute;
  left: 110%;
  bottom: 12px;
  width: 100px;
  animation: horseRunAcross 9s linear infinite;
  /* shift 160px "behind" the horse (horse travels left, so dust is to the right in unflipped coords) */
  margin-left: 200px;
}

.dust-cloud {
  position: absolute;
  left: var(--dl, 0px);
  bottom: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.28) 0%, transparent 70%);
  animation: dustPuff 0.42s ease-out infinite var(--dd, 0s);
  transform: scale(var(--ds, 1));
}

@keyframes horseRunAcross {
  from { left: -220px; }
  to   { left: 110%; }
}

@keyframes horseGallopBounce {
  0%   { transform: translateY(0px) rotate(0deg); }
  20%  { transform: translateY(-9px) rotate(1.2deg); }
  45%  { transform: translateY(-3px) rotate(0deg); }
  65%  { transform: translateY(-11px) rotate(-1deg); }
  85%  { transform: translateY(-4px) rotate(0.4deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes dustPuff {
  0%   { transform: scale(0.2) translateY(0); opacity: 0.9; }
  100% { transform: scale(2) translateY(-12px); opacity: 0; }
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: relative;
  z-index: 10;
  margin-top: -2px;
  line-height: 0;
}
.wave-divider svg { width: 100%; height: 80px; }

/* ===== CONTAINER ===== */
.eq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ===== STATS ===== */
.eq-stats {
  position: relative;
  z-index: 10;
  background: var(--forest-dark);
  padding: 60px 48px;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.1);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}

.stat-item {
  background: rgba(20,42,26,0.9);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease var(--d), transform 0.6s cubic-bezier(0.16,1,0.3,1) var(--d);
}
.stat-item.visible { opacity: 1; transform: translateY(0); }

.stat-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== SECTION COMMONS ===== */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-eyebrow.center { justify-content: center; }

.eyebrow-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-eyebrow.center .eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.center { text-align: center; }
.section-title em { color: var(--gold); font-style: italic; }

.section-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.section-header { margin-bottom: 56px; }

.section-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-top: -10px;
}

/* ===== INTRO ===== */
.eq-intro {
  position: relative;
  z-index: 10;
  background: var(--forest-dark);
  padding: 100px 0;
}

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

/* Slide animations */
.anim-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.anim-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.anim-slide-left.visible, .anim-slide-right.visible { opacity: 1; transform: translateX(0); }

.img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.img-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.img-frame:hover img { transform: scale(1.04); }

.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(6,15,9,0.7) 100%
  );
  z-index: 1;
}

.img-overlay-badge {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 2;
  background: rgba(45,106,79,0.9);
  backdrop-filter: blur(8px);
  color: var(--leaf-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(82,183,136,0.3);
}

.img-accent-card {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  background: rgba(6,15,9,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: calc(100% - 48px);
}

.iac-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.img-accent-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 600;
}
.img-accent-card span {
  font-size: 0.78rem;
  color: var(--text-mid);
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.intro-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}
.intro-feat i { color: var(--leaf); font-size: 1rem; }

/* ===== SERVICES ===== */
.eq-services {
  position: relative;
  z-index: 10;
  background: var(--forest-mid);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  background: var(--forest-dark);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.sc-img-wrap {
  position: relative;
  overflow: hidden;
}
.sc-img-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.service-card:hover .sc-img-wrap img { transform: scale(1.06); }

.sc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,15,9,0.9) 100%);
}

.sc-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(45,106,79,0.9);
  backdrop-filter: blur(8px);
  color: var(--leaf-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(82,183,136,0.3);
  z-index: 2;
}
.sc-badge-amber {
  background: rgba(140,80,10,0.9);
  color: #fcd29a;
  border-color: rgba(212,121,10,0.4);
}

.sc-body { padding: 32px; }

.sc-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(45,106,79,0.25);
  border: 1px solid rgba(82,183,136,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--leaf);
  margin-bottom: 20px;
  margin-top: -52px;
  position: relative;
  z-index: 3;
}
.sc-icon-amber {
  background: rgba(140,80,10,0.25);
  border-color: rgba(212,121,10,0.25);
  color: var(--amber);
}

.sc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.sc-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.sc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}
.sc-features i { color: var(--leaf); width: 16px; }
.sc-lesson .sc-features i { color: var(--amber); }

.sc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf);
  text-decoration: none;
  transition: gap 0.3s ease;
}
.sc-btn:hover { gap: 14px; }
.sc-btn-amber { color: var(--amber); }

/* ===== EXPERIENCE STRIP ===== */
.eq-experience {
  position: relative;
  z-index: 10;
}

.exp-parallax-wrap {
  height: 380px;
  background-image: url('https://images.pexels.com/photos/9480688/pexels-photo-9480688.jpeg?auto=compress&cs=tinysrgb&w=1400');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,15,9,0.85) 0%,
    rgba(20,42,26,0.75) 50%,
    rgba(6,15,9,0.85) 100%
  );
}

.exp-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 48px;
  max-width: 800px;
}

.exp-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 20px;
  quotes: none;
}
.exp-quote em { color: var(--gold); }

.exp-tagline {
  font-size: 0.9rem;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== PRICING ===== */
.eq-pricing {
  position: relative;
  z-index: 10;
  background: var(--forest-dark);
  padding: 100px 0;
}

.pricing-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.ptab {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  color: var(--text-mid);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.ptab:hover { border-color: rgba(201,168,76,0.3); color: var(--cream); }
.ptab.active {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

.pricing-panel { display: block; }
.pricing-panel.hidden { display: none; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--forest-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease var(--d), transform 0.6s cubic-bezier(0.16,1,0.3,1) var(--d), box-shadow 0.3s ease;
}
.price-card:not(.pc-popular):hover { transform: translateY(-4px); }
.price-card.visible { opacity: 1; transform: translateY(0); }
.price-card.pc-popular.visible {
  opacity: 1;
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(201,168,76,0.15);
}
.price-card.pc-popular.visible:hover { transform: translateY(-12px); }

.pc-popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pc-header { text-align: center; margin-bottom: 24px; }

.pc-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--leaf);
  margin: 0 auto 16px;
}
.pc-icon-gold { background: rgba(201,168,76,0.12); color: var(--gold); }
.pc-icon-sunset { background: rgba(212,121,10,0.12); color: var(--amber); }

.pc-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.pc-header p { font-size: 0.82rem; color: var(--text-mid); }

.pc-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
}
.pc-amount {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.pc-popular .pc-amount { color: var(--gold); }
.pc-currency {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-mid);
  padding-bottom: 6px;
}
.pc-per {
  font-size: 0.8rem;
  color: var(--text-mid);
  padding-bottom: 8px;
}

.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}
.pc-features i { color: var(--leaf); font-size: 0.85rem; }
.pc-popular .pc-features i { color: var(--gold); }

.pc-btn {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pc-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.pc-btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: var(--forest-dark);
}
.pc-btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.pricing-note {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.85rem;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pricing-note i { color: var(--gold); }

/* ===== GALLERY ===== */
.eq-gallery {
  position: relative;
  z-index: 10;
  background: var(--forest-mid);
  padding: 100px 0 0;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
  margin-top: 56px;
}

.gm-item {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.7s ease var(--fd, 0s);
}
.gm-item.visible { opacity: 1; }
.gm-tall { grid-row: span 2; }
.gm-wide { grid-column: span 2; }

.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gm-item:hover img { transform: scale(1.07); }

.gm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,15,9,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gm-item:hover .gm-overlay { opacity: 1; }

.gm-overlay span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
}

/* ===== REVIEWS ===== */
.eq-reviews {
  position: relative;
  z-index: 10;
  background: var(--forest-dark);
  padding: 100px 0;
}

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

.review-card {
  background: var(--forest-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease var(--d, 0s), transform 0.6s cubic-bezier(0.16,1,0.3,1) var(--d, 0s);
}
.review-card.visible { opacity: 1; transform: translateY(0); }

.rv-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.6;
  margin-bottom: 20px;
}

.rv-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

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

.rv-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
}

.rv-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--cream);
}
.rv-author span {
  font-size: 0.78rem;
  color: var(--text-mid);
}

/* ===== CTA ===== */
.eq-cta {
  position: relative;
  z-index: 10;
  background: var(--forest-mid);
  padding: 100px 48px;
}

.cta-bg-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 24px;
}

.cta-particle {
  position: absolute;
  top: -20px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: ctaParticleFall linear infinite;
}
@keyframes ctaParticleFall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 0.5; }
  100% { transform: translateY(400px) rotate(360deg); opacity: 0; }
}

.cta-box {
  background: linear-gradient(135deg, rgba(20,42,26,0.9) 0%, rgba(30,60,35,0.9) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.cta-horse-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  animation: horseBreath 3s ease-in-out infinite;
  display: block;
}

.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 20px;
}
.cta-box h2 em { color: var(--gold); font-style: italic; }

.cta-box p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.cta-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-mid);
}
.cta-badges i { color: var(--leaf); }

/* ===== FOOTER ===== */
.eq-footer {
  background: var(--forest-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
}
.footer-brand span { color: var(--gold); }

.footer-grid > div > p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-grid h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid ul a {
  font-size: 0.88rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-grid ul a:hover { color: var(--gold); }

.footer-contact { gap: 12px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.footer-contact i { color: var(--gold); margin-top: 2px; width: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* ===== ANIMATIONS ===== */
.anim-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease var(--d, 0s), transform 0.7s cubic-bezier(0.16,1,0.3,1) var(--d, 0s);
}
.anim-up.visible { opacity: 1; transform: translateY(0); }

.anim-fade {
  opacity: 0;
  transition: opacity 0.8s ease var(--fd, 0s);
}
.anim-fade.visible { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .eq-container { padding: 0 32px; }
  .eq-header { padding: 16px 32px; }
  .eq-header.scrolled { padding: 12px 32px; }
  .eq-hero-content { padding: 0 32px; }
  .hero-horse-wrap { width: 45vw; }
  .intro-grid { gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .top-ribbon { height: 30px; }
  .ribbon-track span { font-size: 0.65rem; }

  .eq-header {
    top: 30px;
    padding: 14px 20px;
    background: rgba(6,15,9,0.85);
    backdrop-filter: blur(12px);
  }
  .eq-header.scrolled { padding: 12px 20px; }
  .eq-logo { font-size: 0.9rem; }
  .eq-back, .eq-call { font-size: 0.78rem; }

  .eq-hero-content {
    padding: 0 24px;
    text-align: center;
    margin: 0 auto;
  }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .hero-horse-wrap {
    width: 80vw;
    right: 50%;
    bottom: 15%;
    transform: translateX(50%);
    opacity: 0.3;
  }
  .hero-horse-wrap.visible {
    opacity: 0.35;
    transform: translateX(50%);
  }
  .hero-actions { justify-content: center; }
  .hero-sub { max-width: 100%; }

  .eq-stats { padding: 48px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .eq-intro { padding: 70px 0; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .eq-container { padding: 0 24px; }
  .img-frame img { aspect-ratio: 16/10; }

  .eq-services { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .exp-parallax-wrap {
    height: 280px;
    background-attachment: scroll;
  }
  .exp-content { padding: 0 24px; }
  .exp-quote { font-size: 1.2rem; }

  .eq-pricing { padding: 70px 0; }
  .pricing-tabs { flex-direction: column; align-items: center; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .price-card.pc-popular.visible { transform: translateY(0); }

  .gallery-masonry {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gm-tall, .gm-wide { grid-column: auto; grid-row: auto; }

  .eq-reviews { padding: 70px 0; }
  .reviews-track { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .eq-cta { padding: 70px 24px; }
  .cta-box { padding: 40px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-badges { flex-direction: column; align-items: center; gap: 12px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .eq-footer { padding: 60px 0 0; }
  .eq-container { padding: 0 24px; }
}
