/* ============================================================
   KADRIYE YAVUZ COACHING — Global Stylesheet
   Design: Calm, Professional, Warm & Nurturing
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;700&family=Noto+Serif:ital,wght@0,400;1,400&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --sage:      #7B9E87;
  --sage-dark: #5a7a64;
  --sage-light:#e8f0ea;
  --gold:      #C4A882;
  --gold-light:#f7f0e6;
  --lavender:  #B8A9C9;
  --lavender-light:#f0ecf6;
  --rose:      #D4A5A5;
  --cream:     #FAF7F4;
  --cream-dark:#F2EDE8;
  --text:      #3D3D3D;
  --text-light:#6B6B6B;
  --text-muted:#9B9B9B;
  --white:     #FFFFFF;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);
  --radius:    16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  /* Prevent long words / URLs from breaking layout on mobile */
  overflow-wrap: break-word;
  word-break: break-word;
}

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

a { color: var(--sage); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--sage-dark); }

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.text-center { text-align: center; }
.text-sage { color: var(--sage); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-sage-light { background: var(--sage-light); }
.bg-white { background: var(--white); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.gap-4 { gap: 32px; }

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

/* ── Section Headers ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  border-radius: 2px;
  margin: 16px auto 32px;
}

.divider-left {
  margin: 16px 0 32px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123,158,135,0.35);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b09070;
  border-color: #b09070;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,168,130,0.35);
}

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* ── Navigation ────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123,158,135,0.12);
  transition: var(--transition);
}

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

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.navbar-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--sage);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar-nav a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-light);
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--sage);
  background: var(--sage-light);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--cream-dark);
  border-radius: 20px;
  padding: 2px;
  gap: 2px;
}

.lang-btn {
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--text-muted);
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--sage);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: none;
  background: transparent;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Nav ────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--text);
  text-decoration: none;
}
.mobile-nav a:hover { color: var(--sage); }

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,169,201,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,158,135,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--sage);
}

.hero h1 { margin-bottom: 20px; }

.hero-italic {
  font-style: italic;
  color: var(--sage);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  width: 400px;
  height: 500px;
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--lavender-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-badge-text { font-size: 0.78rem; }
.hero-badge-text strong { display: block; color: var(--text); font-size: 0.88rem; }

/* ── Floating Elements ─────────────────────────────────────── */
.float-1, .float-2, .float-3 {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.float-1 {
  width: 80px; height: 80px;
  background: rgba(196,168,130,0.15);
  top: 15%; right: 8%;
  animation-delay: 0s;
}
.float-2 {
  width: 50px; height: 50px;
  background: rgba(123,158,135,0.2);
  top: 60%; right: 15%;
  animation-delay: 2s;
}
.float-3 {
  width: 30px; height: 30px;
  background: rgba(184,169,201,0.25);
  top: 35%; left: 5%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* ── Feature Cards ─────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--sage);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; }

/* ── News Carousel ─────────────────────────────────────────── */
.news-section {
  background: var(--cream-dark);
  padding: 60px 0;
  overflow: hidden;
}

.news-track-wrapper {
  overflow: hidden;
  position: relative;
}

.news-track-wrapper::before,
.news-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.news-track-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--cream-dark), transparent);
}

.news-track-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--cream-dark), transparent);
}

.news-track {
  display: flex;
  gap: 20px;
  animation: scroll-news 90s linear infinite;
  width: max-content;
}

.news-track:hover { animation-play-state: paused; }

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

.news-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  width: 320px;
  flex-shrink: 0;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}

.news-card:hover { box-shadow: var(--shadow-hover); }

.news-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-light);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.news-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text);
}

.news-card-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-source-link {
  font-size: 0.75rem;
  color: var(--sage);
  display: block;
  margin-top: 8px;
}

/* ── About Preview ─────────────────────────────────────────── */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 480px;
}

.about-img-main {
  width: 320px;
  height: 400px;
  border-radius: 24px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: var(--shadow-hover);
}

.about-img-secondary {
  width: 200px;
  height: 260px;
  border-radius: 20px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  box-shadow: var(--shadow-hover);
  border: 6px solid var(--white);
}

.about-quote {
  background: var(--sage-light);
  border-left: 4px solid var(--sage);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--cream-dark);
  color: var(--text-light);
}

/* ── Story Cards ───────────────────────────────────────────── */
.story-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.story-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  height: 340px;
  cursor: pointer;
  display: block;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.story-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.28);
  transform: translateY(-4px);
}

/* Photo fills entire card */
.story-card-bg {
  position: absolute;
  inset: 0;
}

.story-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-card:hover .story-card-bg img {
  transform: scale(1.09);
}

/* Base dark wash across whole card + strong gradient at bottom */
.story-card-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.22) 35%,
      rgba(0,0,0,0.82) 100%
    );
  transition: background 0.45s ease;
}

.story-card:hover .story-card-gradient {
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.18) 0%,
      rgba(0,0,0,0.32) 35%,
      rgba(0,0,0,0.90) 100%
    );
}

/* Text sits at the bottom of the card */
.story-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 24px 24px;
  color: white;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.story-card:hover .story-card-content {
  transform: translateY(-5px);
}

.story-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);
}

/* Subtitle hidden by default, fades in on hover */
.story-card-sub {
  font-size: 0.84rem;
  line-height: 1.55;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
}

.story-card:hover .story-card-sub {
  opacity: 0.92;
  transform: translateY(0);
}

/* Arrow appears on hover */
.story-card-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
  color: rgba(255,255,255,0.9);
}

.story-card:hover .story-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Testimonial ───────────────────────────────────────────── */
.testimonials { background: var(--sage-light); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 20px;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testimonial-name { font-weight: 700; font-size: 0.92rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--sage-light), var(--lavender-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body { padding: 24px; }

.blog-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── Booking Section ───────────────────────────────────────── */
.calendly-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 700px;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(123,158,135,0.15);
}

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

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

/* ── Social Links ──────────────────────────────────────────── */
.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--cream-dark);
  color: var(--text-light);
  transition: var(--transition);
  text-decoration: none;
}

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

.social-link--instagram:hover { background: #e1306c; }
.social-link--linkedin:hover  { background: #0a66c2; }
.social-link--whatsapp:hover  { background: #25d366; }

/* ── Book Cards ────────────────────────────────────────────── */
.book-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

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

.book-cover {
  width: 80px;
  height: 110px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.book-info h4 { margin-bottom: 6px; }
.book-author { font-size: 0.85rem; color: var(--sage); font-weight: 700; margin-bottom: 8px; }
.book-description { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }

/* ── Events ────────────────────────────────────────────────── */
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.event-date-box {
  background: var(--sage-light);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  flex-shrink: 0;
  min-width: 64px;
}

.event-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
}

.event-month {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-top: 2px;
}

/* ── Downloadable Cards ────────────────────────────────────── */
.download-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.download-preview {
  padding: 40px 24px 32px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.download-preview-emoji { font-size: 3rem; margin-bottom: 12px; }
.download-preview-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.download-card-footer {
  padding: 16px 24px;
  background: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(to bottom, var(--sage-light), var(--cream));
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237B9E87' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ── FAQ Accordion ─────────────────────────────────────────── */
.accordion-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text);
  user-select: none;
  transition: var(--transition);
}

.accordion-header:hover { color: var(--sage); }

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
  color: var(--sage);
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Inspiration Quote ─────────────────────────────────────── */
.inspiration-banner {
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: var(--white);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.inspiration-banner::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20rem;
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
  line-height: 1;
}

.inspiration-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.inspiration-attribution {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ── Instagram Feed Section ─────────────────────────────────── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.instagram-item {
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--sage-light);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.instagram-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.instagram-item::after {
  content: '📷 Ver no Instagram';
  position: absolute;
  inset: 0;
  background: rgba(123,158,135,0.85);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  transition: var(--transition);
}

.instagram-item:hover::after { opacity: 1; }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #2D3B33;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

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

.footer-brand .logo-name { color: var(--white); font-size: 1.4rem; }
.footer-brand .logo-tagline { color: var(--sage); }

.footer-brand-desc {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--sage); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--sage); }

/* ── Admin Panel ───────────────────────────────────────────── */
.admin-sidebar {
  width: 260px;
  background: var(--white);
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  box-shadow: var(--shadow);
  padding: 24px 0;
  z-index: 100;
  overflow-y: auto;
}

.admin-content {
  margin-left: 260px;
  padding: 32px;
  min-height: 100vh;
  background: var(--cream);
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.admin-nav-item:hover,
.admin-nav-item.active {
  color: var(--sage);
  background: var(--sage-light);
}

.admin-nav-item span:first-child { font-size: 1.1rem; }

/* ── Turkish Post Card ─────────────────────────────────────── */
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.post-card-header {
  padding: 32px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: auto;
}

.post-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  margin-top: 16px;
}

.post-card-body { padding: 20px 24px; }
.post-card-excerpt { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }

/* ── Scroll to Top ─────────────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 500;
}

.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--sage-dark); transform: translateY(-3px); }

/* ── Cookie Banner ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2D3B33;
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.88rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }
.cookie-banner a { color: var(--sage); }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Loading Spinner ────────────────────────────────────────── */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--sage-light);
  border-top-color: var(--sage);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Animations ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* ── Nav ── */
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .navbar-inner { padding: 12px 16px; }

  /* ── Typography ── */
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  /* ── Hero ── */
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrapper { display: none; }
  .hero-cta { justify-content: center; flex-wrap: wrap; gap: 12px; }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-description { max-width: 100%; }

  /* ── About preview ── */
  .about-preview { grid-template-columns: 1fr; }
  .about-image-stack { display: none; }

  /* ── Grids ── */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .story-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Forms & Footer ── */
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ── Story pages ── */
  .story-hero-banner { padding: 110px 0 60px; }
  .story-step { gap: 16px; }

  /* ── Admin ── */
  .admin-sidebar { display: none; }
  .admin-content { margin-left: 0; padding: 16px; }
}

@media (max-width: 480px) {
  /* ── Layout ── */
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  /* ── Nav: hide tagline on very small screens ── */
  .logo-tagline { display: none; }

  /* ── Typography ── */
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  /* ── Buttons ── */
  .btn    { padding: 11px 22px; font-size: 0.9rem; }
  .btn-lg { padding: 13px 28px; font-size: 0.95rem; }
  .btn-sm { padding: 9px 18px;  font-size: 0.82rem; }

  /* ── Hero stats: wrap into 2-column grid ── */
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: center;
  }

  /* ── Story cards ── */
  .story-card { height: 280px; }
  .story-hero-banner { padding: 90px 0 48px; }

  /* ── News cards (scrolling carousel) ── */
  .news-card { width: 260px; padding: 16px 18px; }

  /* ── Feature cards ── */
  .feature-card { padding: 24px 20px; }

  /* ── Section headings ── */
  .section-subtitle { font-size: 1rem; }

  /* ── Footer ── */
  .footer-bottom { font-size: 0.8rem; }
}

/* ── Mindfulness Page ───────────────────────────────────────── */
.myth-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.myth-card::before {
  content: '✗';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.2rem;
  color: var(--rose);
  font-weight: 900;
}

.myth-card.truth::before {
  content: '✓';
  color: var(--sage);
}

.myth-label {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.myth-label.myth { color: var(--rose); }
.myth-label.truth { color: var(--sage); }

/* ── Story Pages ────────────────────────────────────────────── */
.story-hero-banner {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
}

.story-hero-banner h1,
.story-hero-banner p { color: white; }

.story-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.story-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sage);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Progress dots ──────────────────────────────────────────── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--sage);
  width: 24px;
  border-radius: 4px;
}

/* ── Sticky WhatsApp button ─────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  z-index: 500;
  animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

.whatsapp-btn:hover {
  background: #128C7E;
  color: white;
  transform: scale(1.1);
}
