/* GymBro genel stiller - tum sayfalarda kullaniliyor */

/* Tema renklerini CSS variable olarak tanimliyorum, light/dark mode icin lazim olacak */
:root {
  --primary: #1a4d2e;
  --primary-dark: #0f2e1c;
  --primary-light: #2d6a44;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --bg: #ffffff;
  --bg-soft: #f8f9fa;
  --bg-card: #ffffff;
  --text: #1f2937;
  --text-soft: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

/* Dark mode degiskenleri, body'ye .dark class'i eklenince devreye giriyor */
body.dark {
  --bg: #0f1419;
  --bg-soft: #1a1f26;
  --bg-card: #1e2530;
  --text: #f3f4f6;
  --text-soft: #9ca3af;
  --border: #374151;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Reset, butun tarayicilarda ayni baslangic noktasi olsun */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

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

/* Container, sayfa icerigini ortaliyor */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER STILLERI */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
  padding: 4px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.logo i {
  color: var(--accent);
}

body.dark .logo {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

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

.theme-toggle {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
  color: var(--text);
}

.theme-toggle:hover {
  background: var(--accent);
  color: white;
  transform: rotate(15deg);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
}

/* BUTONLAR */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.btn-accent:hover {
  background: var(--accent-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

body.dark .btn-outline {
  color: var(--accent);
  border-color: var(--accent);
}

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

.btn-lg {
  padding: 16px 32px;
  font-size: 17px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* HERO BOLUMU - anasayfa */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 46, 28, 0.85), rgba(26, 77, 46, 0.75)),
              url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1600&q=80') center/cover;
  color: white;
  padding: 80px 0;
  overflow: hidden;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
  /* Animasyon icin baslangicta gizli, JS ile animate edecegiz */
  opacity: 0;
  margin-top: 40px;
}

.hero h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0;
  margin-top: 20px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}

/* SECTION ortak stilleri */
.section {
  padding: 80px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
  font-size: 36px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 48px;
  font-size: 17px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* COUNTER bolumu */
.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.counter-item {
  padding: 32px 16px;
}

.counter-item i {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 12px;
}

.counter-number {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

body.dark .counter-number {
  color: var(--accent);
}

.counter-label {
  font-size: 16px;
  color: var(--text-soft);
}

/* CARD genel stilleri */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 20px;
  margin-bottom: 8px;
}

.card-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-text {
  color: var(--text-soft);
  margin-bottom: 16px;
  flex: 1;
}

/* BADGE etiketler */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-primary { background: rgba(26, 77, 46, 0.15); color: var(--primary); }
.badge-accent { background: rgba(245, 158, 11, 0.15); color: var(--accent-dark); }
.badge-easy { background: rgba(34, 197, 94, 0.15); color: #16a34a; }
.badge-medium { background: rgba(245, 158, 11, 0.15); color: var(--accent-dark); }
.badge-hard { background: rgba(239, 68, 68, 0.15); color: #dc2626; }

/* OZELLIKLER (neden gymbro) */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-soft);
  font-size: 14px;
}

/* TESTIMONIALS swiper */
.testimonial {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  height: 100%;
}

.testimonial-quote {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
}

.testimonial-author small {
  color: var(--text-soft);
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 60px 40px;
  border-radius: var(--radius);
  color: white;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 12px;
}

.newsletter p {
  margin-bottom: 24px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
}

/* FOOTER */
.footer {
  background: var(--primary-dark);
  color: #cbd5e1;
  padding: 60px 0 20px;
  margin-top: 60px;
}

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

.footer h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer a {
  color: #cbd5e1;
  font-size: 14px;
}

.footer a:hover {
  color: var(--accent);
}

.footer-about p {
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.7;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}

/* YUKARI CIK BUTONU */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: none;
  z-index: 99;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.scroll-top:hover {
  background: var(--accent-dark);
  transform: translateY(-4px);
}

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

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
}

body.dark .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

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

label.error {
  color: #dc2626;
  font-size: 13px;
  margin-top: 4px;
  font-weight: normal;
}

.form-control.error {
  border-color: #dc2626;
}

/* AUTH login/kayit kutusu */
.auth-wrap {
  max-width: 480px;
  margin: 60px auto;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.auth-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-soft);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-size: 16px;
}

.auth-tab.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}

body.dark .auth-tab.active {
  color: var(--accent);
}

/* SIFRE GUCLULUK BAR */
.password-strength {
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  margin-top: 6px;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0;
  background: #dc2626;
  transition: width 0.4s, background 0.4s;
}

.password-strength-text {
  font-size: 12px;
  margin-top: 4px;
  color: var(--text-soft);
}

/* HESAPLAYICILAR */
.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.calc-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.calc-card h3 i {
  color: var(--accent);
}

.calc-card .help-text {
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 20px;
}

.calc-result {
  margin-top: 20px;
  padding: 20px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
  display: none;
}

.calc-result.show {
  display: block;
}

.calc-result-value {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}

body.dark .calc-result-value {
  color: var(--accent);
}

.calc-result-label {
  color: var(--text-soft);
  font-size: 14px;
}

.calc-result-info {
  margin-top: 8px;
  font-size: 14px;
}

/* WORKOUTS sayfa filtreleri */
.filters {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.filter-search {
  margin-bottom: 16px;
  position: relative;
}

.filter-search i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-soft);
}

.filter-search input {
  padding-left: 44px;
}

/* Workout detail */
.workout-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)), center/cover;
  color: white;
  padding: 60px 0;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.workout-hero h1 { color: white; margin-bottom: 12px; }

.workout-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}

.workout-meta div i {
  color: var(--accent);
  margin-right: 6px;
}

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

.exercise-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.exercise-item img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.exercise-info { flex: 1; }
.exercise-info h3 { margin-bottom: 6px; }
.exercise-info p { color: var(--text-soft); font-size: 14px; }

.exercise-stats {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 13px;
}

.exercise-stats span i { color: var(--accent); margin-right: 4px; }

/* YILDIZ PUAN */
.rating {
  display: inline-flex;
  gap: 4px;
  font-size: 24px;
  cursor: pointer;
}

.rating i {
  color: #d1d5db;
  transition: color 0.2s;
}

.rating i.active,
.rating i.hover {
  color: var(--accent);
}

/* NUTRITION sayfa */
.nutrition-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.macro-card {
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.macro-card h4 {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.macro-card .value {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

body.dark .macro-card .value { color: var(--accent); }

.macro-progress {
  margin-top: 8px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.macro-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0;
  transition: width 0.4s;
}

.meal-section {
  background: var(--bg-card);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.meal-section h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.food-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.food-item-info { flex: 1; }
.food-item-info strong { display: block; }
.food-item-info small { color: var(--text-soft); font-size: 13px; }
.food-item-delete {
  background: transparent;
  border: none;
  color: #dc2626;
  cursor: pointer;
  font-size: 18px;
  padding: 4px 8px;
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal h3 {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-soft);
}

/* PROGRESS sayfa */
.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.chart-card {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.chart-card.full { grid-column: 1 / -1; }
.chart-card h3 { margin-bottom: 16px; }

/* BLOG */
.blog-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.blog-detail-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.blog-content {
  font-size: 17px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.blog-content p { margin-bottom: 20px; }
.blog-content h2 { margin: 32px 0 16px; }
.blog-content ul { margin: 16px 0 16px 24px; }

/* PROFILE */
.profile-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 40px;
  border-radius: var(--radius);
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.profile-header h2 { color: white; margin-bottom: 4px; }
.profile-header p { opacity: 0.9; }

.profile-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

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

.badge-item {
  text-align: center;
  padding: 16px 8px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.badge-item i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 6px;
}

.badge-item small {
  display: block;
  font-size: 12px;
  color: var(--text-soft);
}

/* PREMIUM */
.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
}

.toggle-switch {
  width: 56px;
  height: 28px;
  background: var(--border);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  border: none;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  transition: 0.3s;
}

.toggle-switch.active {
  background: var(--primary);
}

.toggle-switch.active::after {
  left: 31px;
}

.discount-bubble {
  position: absolute;
  top: -8px;
  right: -90px;
  background: var(--accent);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  display: none;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'EN POPULER';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin: 16px 0;
}

body.dark .pricing-price { color: var(--accent); }

.pricing-price small {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-soft);
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 24px 0;
}

.pricing-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.pricing-features li i.fa-check { color: #16a34a; }
.pricing-features li i.fa-times { color: #dc2626; }

/* ACCORDION */
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-head {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.accordion-body {
  display: none;
  padding: 0 20px 16px;
  color: var(--text-soft);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-info-item i {
  width: 40px;
  height: 40px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item strong { display: block; }
.contact-info-item small { color: var(--text-soft); }

.map-wrap {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ANIMASYON YARDIMCILARI */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 60px 0;
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  color: white;
  font-size: 42px;
  margin-bottom: 8px;
}

.page-header p { opacity: 0.9; }
