/* ============================================
   HACAMAT EĞİTİM - PREMIUM LANDING PAGE CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --green-dark:    #2d6a4f;
  --green-mid:     #40916c;
  --green-light:   #74c69d;
  --green-pale:    #d8f3dc;
  --green-ultra:   #f0faf3;
  --beige-dark:    #c8a96a;
  --beige-mid:     #e8c97a;
  --beige-light:   #f5e6c0;
  --beige-ultra:   #fdf8ef;
  --white:         #ffffff;
  --off-white:     #fafaf8;
  --gray-100:      #f4f4f2;
  --gray-200:      #e8e8e4;
  --gray-400:      #a0a09a;
  --gray-600:      #6b6b65;
  --gray-800:      #2c2c2a;
  --text-dark:     #1a1a18;
  --text-mid:      #3d3d3a;
  --text-soft:     #6b6b65;
  --shadow-soft:   0 4px 24px rgba(45, 106, 79, 0.10);
  --shadow-card:   0 8px 40px rgba(45, 106, 79, 0.13);
  --shadow-hover:  0 16px 56px rgba(45, 106, 79, 0.20);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-xl:     40px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* === UTILITY === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title span { color: var(--green-mid); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 620px;
  line-height: 1.75;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
}

.nav-logo-sub {
  font-size: 0.7rem;
  color: var(--text-soft);
  font-weight: 400;
}

.nav-cta {
  background: var(--green-dark);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta-icon {
  display: none;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(45,106,79,0.35);
}

/* === HERO === */
.hero {
  background: linear-gradient(165deg, #f0faf3 0%, #fdf8ef 50%, #f0faf3 100%);
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(116,198,157,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(232,201,122,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--green-pale);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
  color: var(--green-dark);
}

.hero-title .accent {
  display: block;
  margin-top: 8px;
  color: var(--beige-dark);
  font-weight: 400;
  font-style: italic;
  font-size: 0.85em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
  opacity: 0.9;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 500;
}

.hero-bullet .check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: white;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(45,106,79,0.30);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(45,106,79,0.40);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37,211,102,0.30);
  text-decoration: none;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(37,211,102,0.40);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-dark);
  padding: 15px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--green-mid);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

/* Hero card */
.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--green-pale);
  position: relative;
}

.hero-card-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--beige-dark), var(--beige-mid));
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 6px;
  margin-top: 10px;
}

.hero-card-sub {
  font-size: 0.85rem;
  color: var(--text-soft);
  text-align: center;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 16px; /* Optimized to prevent iOS auto-zoom */
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: white;
  box-shadow: 0 0 0 3px rgba(64,145,108,0.12);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.35);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: 10px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 24px;
}

.stat-item {
  text-align: center;
  padding: 14px 8px;
  background: var(--green-ultra);
  border-radius: var(--radius-sm);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-soft);
  margin-top: 3px;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--green-dark);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.95);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-item .icon {
  font-size: 1rem;
}

/* === AUTHORITY === */
.authority {
  padding: 90px 0;
  background: var(--white);
}

.authority-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: center;
}

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

.authority-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--green-ultra) 0%, var(--beige-ultra) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green-pale);
  box-shadow: var(--shadow-card);
  gap: 12px;
  overflow: hidden;
  position: relative;
}

.trainer-avatar {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  box-shadow: 0 8px 30px rgba(45,106,79,0.25);
}

.trainer-name-big {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
}

.trainer-title-small {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* === TRAINER REAL PHOTO === */
.trainer-photo-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 3/4;
  overflow: hidden;
}

.trainer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s ease;
}

.trainer-photo-frame:hover .trainer-photo {
  transform: scale(1.04);
}

.trainer-photo-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 55%,
    rgba(45, 106, 79, 0.55) 100%
  );
  pointer-events: none;
}

.trainer-photo-info {
  margin-top: 14px;
  text-align: center;
}

.trainer-photo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.trainer-photo-title {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 500;
}

.authority-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-dark);
  border: 1.5px solid var(--green-pale);
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

.exp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.exp-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--green-ultra);
  border: 1px solid var(--green-pale);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 600;
}

.authority-quote {
  background: linear-gradient(135deg, var(--green-ultra), var(--beige-ultra));
  border-left: 4px solid var(--green-mid);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px;
  font-style: italic;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 20px;
}
/* === GALERİ & VİDEO === */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 0.8fr;
  grid-template-rows: 450px;
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 50px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  background: var(--gray-200);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1) rotate(1deg);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(45,106,79,0.85) 0%,
    rgba(45,106,79,0.2) 60%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay-text {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Video Kartları */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 20px;
}

.video-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0,0,0,0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 60px rgba(45,106,79,0.12);
  border-color: var(--green-pale);
}

.video-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
  overflow: hidden;
}

.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s;
}

.video-card:hover .gallery-video {
  filter: brightness(1.1);
}

.video-card-info {
  padding: 24px 28px 28px;
}

.video-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.video-card-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  object-fit: contain;
  transform: scale(0.88);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.28);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--wide { grid-column: span 2; height: 220px; }
  .gallery-item { height: 180px; }
  .video-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--wide { grid-column: span 1; height: 220px; }
  .gallery-item { height: 200px; }
  .video-grid { grid-template-columns: 1fr; }
}

/* === PROBLEM === */
.problem {
  padding: 90px 0;
  background: var(--gray-100);
}


.problem-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 50px;
}

.problem-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e57373, #ef9a9a);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.problem-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.problem-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* === SOLUTION === */
.solution {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--green-ultra) 0%, white 100%);
}

.solution-steps {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
  margin-top: 50px;
}

.solution-step {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--green-pale);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.solution-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.step-num {
  min-width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* === TESTIMONIALS === */
.testimonials {
  padding: 90px 0;
  background: var(--beige-ultra);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 50px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--beige-light);
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--green-pale);
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.star { color: #f59e0b; font-size: 0.9rem; }

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.author-city {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.author-result {
  display: inline-block;
  margin-top: 4px;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
}

/* === CURRICULUM === */
.curriculum {
  padding: 90px 0;
  background: white;
}

.modules {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 50px;
}

.module-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  transition: var(--transition);
  cursor: pointer;
}

.module-card:hover {
  background: var(--green-ultra);
  border-color: var(--green-pale);
  transform: translateX(4px);
}

.module-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.module-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
}

.module-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.module-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 50px;
}

.module-topics li {
  font-size: 0.84rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 7px;
}

.module-topics li::before {
  content: '▹';
  color: var(--green-mid);
  font-size: 0.8rem;
}

/* === BONUSES SECTION REMOVED DUPLICATE === */

/* === SCARCITY === */
.scarcity {
  padding: 70px 0;
  background: #fff8f0;
  border-top: 3px solid #f59e0b;
  border-bottom: 3px solid #f59e0b;
}

.scarcity-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.scarcity-label {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.scarcity h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.scarcity p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.quota-bar-wrap {
  margin-bottom: 20px;
}

.quota-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 600;
  margin-bottom: 8px;
}

.quota-bar {
  height: 12px;
  background: var(--gray-200);
  border-radius: 50px;
  overflow: hidden;
}

.quota-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: 50px;
  width: 78%;
  animation: fill-bar 2s ease-out;
}

@keyframes fill-bar {
  from { width: 0; }
  to   { width: 78%; }
}

.countdown-wrap {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  text-align: center;
  border: 2px solid #f59e0b;
}

.countdown-title {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 20px;
  font-weight: 600;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.timer-box {
  background: var(--text-dark);
  color: white;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-width: 68px;
}

.timer-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.timer-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* === CTA SECTION === */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(145deg, var(--green-ultra), var(--beige-ultra));
  text-align: center;
}

.cta-section .section-title { margin-bottom: 20px; }

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* === FAQ === */
.faq {
  padding: 90px 0;
  background: white;
}

.faq-list {
  max-width: 1100px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start; /* Fixes "side-by-side stretching" issue */
}

@media (max-width: 991px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--green-pale);
  background: var(--green-ultra);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  gap: 16px;
}

.faq-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green-dark);
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--green-mid);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.75;
}

/* === FOOTER === */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 30px;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 14px 0;
  flex-wrap: wrap;
}

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

.footer-links a:hover { color: white; }

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 14px;
}

/* === STICKY CONTACT === */
.sticky-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sticky-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.sticky-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.sticky-btn.wa { background-color: #25D366; }
.sticky-btn.tel { background-color: #ef4444; }

/* Pulse Animation */
.sticky-btn::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.6;
  z-index: -1;
  animation: ripple 2s infinite;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.sticky-btn:hover {
  transform: scale(1.1);
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* === BONUSES === */
.bonuses { padding: 90px 0; background: var(--off-white) !important; position: relative; z-index: 1; }
.bonuses .section-title { color: var(--text-dark) !important; }
.bonuses .section-sub { color: var(--text-soft) !important; }

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.bonus-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-5px); border-color: var(--beige-mid); }
.bonus-icon { font-size: 2rem; margin-bottom: 12px; }
.bonus-text { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }

/* === SUPPORT === */
.support { padding: 90px 0; background: var(--green-ultra); }
.support-inner {
  background: white !important;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex !important;
  align-items: center;
  gap: 40px;
}
.support-header { flex: 1; }
.support-list { 
  flex: 1.2; 
  display: grid !important; 
  grid-template-columns: 1fr; 
  gap: 15px; 
}
.support-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-mid);
}
.support-item .check {
  color: var(--green-dark);
  font-weight: bold;
}

/* Specific adjustments for Bonuses to match user request */
.bonuses .step-num {
  background: none !important;
  box-shadow: none !important;
  font-size: 2rem !important;
  width: auto !important;
  height: auto !important;
}

@media (max-width: 768px) {
  .bonuses .solution-steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
  }
  .bonuses .solution-step {
    padding: 20px 15px !important;
    flex-direction: column !important;
    text-align: center !important;
    background: white !important; /* Restore box background */
    border: 1px solid var(--gray-200) !important;
    box-shadow: var(--shadow-soft) !important;
  }
  .bonuses .step-num {
    margin: 0 auto 10px !important;
    font-size: 1.8rem !important;
  }
  .bonuses .step-body h3 {
    font-size: 0.85rem !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
  }
  .bonuses .step-body p {
    font-size: 0.72rem !important;
    display: block !important;
    line-height: 1.4 !important;
  }
}

/* === SUCCESS MODAL === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: white;
  border-radius: 24px;
  padding: 50px 40px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.show .modal-box {
  transform: scale(1);
}

.modal-icon { 
  font-size: 4rem; 
  margin-bottom: 24px;
  background: var(--green-pale);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.modal-text { 
  color: var(--text-soft); 
  font-size: 0.95rem; 
  line-height: 1.6; 
  margin-bottom: 30px; 
}

/* === GALLERY === */
.gallery-section {
  padding: 100px 0;
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #111827;
  aspect-ratio: 3 / 4;
}

.gallery-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(45, 106, 79, 0.85);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  pointer-events: none;
  backdrop-filter: blur(4px);
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { max-width: 480px; margin: 0 auto; }
  .authority-inner { grid-template-columns: 1fr; }
  .authority-image-wrap { max-width: 340px; margin: 0 auto; }
  .problem-cards { grid-template-columns: 1fr; }
  .solution-steps { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .modules { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .scarcity-inner { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-text { padding-top: 0; }
  .hero-sub { margin: 0 auto 30px; }
  .hero-cta { justify-content: center; }
  .hero-form-card { width: 100%; max-width: 500px; margin: 0 auto; }
}

.marquee-container { overflow: hidden; padding: 0 !important; max-width: 100% !important; }
.trust-bar-inner {
  display: flex;
  white-space: nowrap;
  width: max-content;
  gap: 60px;
  animation: marquee 35s linear infinite;
}
.trust-item { flex-shrink: 0; min-width: max-content; }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #111827;
  aspect-ratio: 3 / 4;
}

.gallery-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(45, 106, 79, 0.85);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  pointer-events: none;
  backdrop-filter: blur(4px);
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* === REGIONS GRID === */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 50px;
}

.region-pill {
  background: white;
  border: 1px solid var(--gray-200);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.region-pill:hover {
  border-color: var(--green-dark);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.region-pill-icon {
  font-size: 0.75rem;
  color: var(--gray-400);
  opacity: 0.5;
}
/* === GALLERY VIDEO OVERLAY === */
.gallery-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: #000;
}

.gallery-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(45, 106, 79, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 5;
}

.gallery-video-wrap:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--green-dark);
}

.gallery-video-wrap.is-playing .play-overlay {
  display: none;
}

.play-overlay svg {
  width: 30px;
  height: 30px;
  fill: white;
  margin-left: 4px; /* Optical centering */
}

/* === FOOTER === */
footer {
  background: #000000;
  color: rgba(255,255,255,0.4);
  padding: 60px 0 40px;
  text-align: center;
}

@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-logo-sub { display: block; font-size: 0.7rem; opacity: 0.8; margin-top: -2px; }
  .nav-cta-text { display: block !important; font-size: 0.8rem; font-weight: 700; white-space: nowrap; }
  .nav-cta-icon { display: none !important; }
  .nav-cta { padding: 8px 14px !important; border-radius: 8px !important; width: auto !important; height: auto !important; }

  .hero { padding: 60px 0 40px !important; }
  .hero-inner { gap: 40px !important; }
  .hero-badge { font-size: 0.7rem !important; padding: 6px 14px !important; }
  .hero-title { font-size: 26px !important; }
  .hero-sub { font-size: 14px !important; }

  .section-tag { font-size: 0.7rem !important; padding: 4px 14px !important; }
  .section-title { font-size: 24px !important; }
  .section-sub { font-size: 14px !important; margin: 0 auto; }

  .trust-bar { padding: 12px 0 !important; }
  .trust-item { font-size: 0.7rem !important; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .gallery-badge { font-size: 0.65rem; padding: 4px 8px; bottom: 8px; left: 8px; }
  
  .solution-steps { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; }
  .solution-step { padding: 20px 15px !important; flex-direction: column !important; text-align: center !important; gap: 10px !important; }
  .step-num { margin: 0 auto !important; font-size: 0.7rem !important; width: 30px !important; height: 30px !important; }
  
  .support-inner { flex-direction: column !important; text-align: center !important; padding: 30px 20px !important; }
  .support-list { grid-template-columns: 1fr !important; text-align: left !important; font-size: 14px !important; }

  .regions-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
  .region-pill { padding: 10px 6px !important; font-size: 0.75rem !important; border-radius: 8px !important; }

  .module-topics li { font-size: 14px !important; }
  .faq-answer { font-size: 14px !important; }
}
