/* ============================================
   SAYILARLA YOLCULUK - PREMIUM CSS
   ============================================ */

:root {
  --bg-primary: #0a0a1a;
  --bg-secondary: #0f0f2e;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --gold: #c8a45e;
  --gold-light: #e8d5a3;
  --gold-dark: #a07d3a;
  --text-primary: #e8e8f0;
  --text-secondary: #9595b5;
  --text-muted: #6a6a8a;
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.02);
  --shadow-gold: 0 0 30px rgba(200, 164, 94, 0.1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "Raleway", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-symbol {
  font-family: "Alex Brush", cursive;
  font-size: 3rem;
  color: var(--gold);
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* ============ PARTICLES ============ */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.7rem 2rem;
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: "Alex Brush", cursive;
  font-size: 1.8rem;
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
.nav-logo:hover {
  color: var(--gold-light);
  text-shadow: 0 0 20px rgba(200, 164, 94, 0.3);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.3rem;
  align-items: center;
}
.nav-menu > li {
  position: relative;
}
.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--transition);
  padding: 0.6rem 0.9rem;
  display: block;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(200, 164, 94, 0.3);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  padding: 5px;
}
.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  z-index: 1;
}
.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(123, 94, 167, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(74, 111, 165, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 0%,
      rgba(200, 164, 94, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200, 164, 94, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s both;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero h1 .gold {
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.6s both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeInUp 1s ease 1.2s both;
}
.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(200, 164, 94, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-indicator .wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--bg-primary);
  padding: 0.9rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 164, 94, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  padding: 0.9rem 2.5rem;
  border: 1px solid rgba(200, 164, 94, 0.3);
  border-radius: 50px;
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-secondary:hover {
  background: rgba(200, 164, 94, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ============ DAILY ENERGY ============ */
.daily-energy {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
}
.energy-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.energy-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(200, 164, 94, 0.03) 0%,
    transparent 50%
  );
  animation: rotateGlow 20s linear infinite;
}
@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.energy-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}
.energy-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  position: relative;
}
.energy-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin: 1rem 0;
  text-shadow: 0 0 40px rgba(200, 164, 94, 0.2);
  position: relative;
}
.energy-theme {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
}
.energy-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ============ SECTIONS ============ */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-badge {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.section-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ============ QUOTE ============ */
.quote-section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
  text-align: center;
}
.quote-container {
  max-width: 800px;
  margin: 0 auto;
}
.quote-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}
.quote-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 1rem 0 1.5rem;
}
.quote-author {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============ FEATURE CARDS ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-dark)
  );
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  border-color: rgba(200, 164, 94, 0.15);
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.feature-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}
.feature-link:hover {
  gap: 1rem;
}

/* ============ PAGE HERO (alt sayfalar) ============ */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 10rem 2rem 4rem;
  text-align: center;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(123, 94, 167, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(74, 111, 165, 0.06) 0%,
      transparent 50%
    );
}
.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1rem;
}
.page-hero h1 .gold {
  color: var(--gold);
}
.page-hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

/* ============ CONTENT AREA (içerik sayfaları) ============ */
.content-area {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}
.content-area h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold-light);
  margin: 3rem 0 1rem;
}
.content-area h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  margin: 2rem 0 0.8rem;
}
.content-area p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.content-area strong {
  color: var(--text-primary);
}
.content-area a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 164, 94, 0.3);
  transition: var(--transition);
}
.content-area a:hover {
  border-bottom-color: var(--gold);
}

/* Content card - her bölüm için */
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}
.content-card:hover {
  border-color: rgba(200, 164, 94, 0.12);
}
.content-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--glass-border);
}
.content-card-header h3 {
  margin: 0;
}
.content-card-badge {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============ SERVICE CARDS ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  border-color: rgba(200, 164, 94, 0.15);
}
.service-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(200, 164, 94, 0.1);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}
.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--gold-light);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============ CALCULATOR ============ */
.calc-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  backdrop-filter: blur(10px);
}
.calc-input-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.calc-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  text-align: center;
  width: 100px;
  transition: var(--transition);
}
.calc-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(200, 164, 94, 0.1);
}
.calc-input::placeholder {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.calc-input-wide {
  width: 100%;
  max-width: 400px;
}
.calc-result {
  margin-top: 2rem;
  display: none;
}
.calc-result.active {
  display: block;
}
.calc-result-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(200, 164, 94, 0.2);
}
.calc-result-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* ============ BLOG ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 164, 94, 0.15);
}
.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-card-body {
  padding: 1.5rem;
}
.blog-card-category {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.blog-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ============ CONTACT FORM ============ */
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(200, 164, 94, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* ============ FOOTER ============ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--glass-border);
  padding: 4rem 2rem 2rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .nav-logo {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.footer h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: rgba(200, 164, 94, 0.15);
  border: 1px solid rgba(200, 164, 94, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: rgba(200, 164, 94, 0.25);
  transform: translateY(-3px);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============ ALERT ============ */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.alert-success {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}
.alert-error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 420px;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.4s ease;
    border-left: 1px solid var(--glass-border);
    gap: 0;
  }
  .nav-menu.active {
    right: 0;
  }
  .hamburger {
    display: flex;
  }
  .nav-link {
    padding: 0.9rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--glass-border);
    width: 100%;
  }
  .nav-link::after {
    display: none;
  }
  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    display: block;
  }
}
@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .calc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .features-grid,
  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 8rem 1.5rem 3rem;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
}
/* =============================================
   İÇERİK SAYFALARI EK STİLLER
   ============================================= */

/* BACK LINK */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 25px;
  transition: opacity 0.3s;
}
.back-link:hover {
  opacity: 0.7;
}

/* DETAY KART */
.detail-card {
  padding: 40px;
}
.detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.detail-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1;
  min-width: 80px;
  text-align: center;
}
.detail-image {
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
}
.detail-image img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.detail-short {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.7;
  font-style: italic;
}
.detail-content {
  line-height: 1.8;
}
.detail-content h2,
.detail-content h3 {
  color: var(--gold);
  margin: 25px 0 15px;
}
.detail-content p {
  margin-bottom: 15px;
}
.detail-content ul,
.detail-content ol {
  margin: 15px 0 15px 25px;
}
.detail-content li {
  margin-bottom: 8px;
}

/* DİĞER ÖĞE NAV */
.other-items {
  margin-top: 40px;
}
.other-items h3 {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.number-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.number-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.number-nav-item:hover,
.number-nav-item.active {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

/* SAYILAR GRİD */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.number-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.number-card-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  margin-bottom: 10px;
}
.number-card h3 {
  margin-bottom: 10px;
  color: var(--text-primary);
  font-size: 1.1rem;
}
.number-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.numbers-grid-master {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.number-card-master {
  border: 1px solid rgba(212, 175, 55, 0.3);
}
.number-card-master .number-card-value {
  font-size: 3.5rem;
}

/* HARFLER */
.letters-overview {
  padding: 30px;
  margin-bottom: 40px;
}
.letters-overview h2 {
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}
.letters-grid-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 10px;
}
.letter-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition: all 0.3s;
}
.letter-mini:hover {
  border-color: var(--gold);
}
.letter-char {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
}
.letter-num {
  font-size: 0.8rem;
  color: var(--gold);
}

.letters-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.letter-detail-card {
  padding: 25px;
}
.letter-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.letter-big {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  min-width: 60px;
  text-align: center;
}
.letter-value-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 5px;
}

/* YASALAR GRİD */
.laws-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.law-card {
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.law-card-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.law-card-icon {
  font-size: 3rem;
  text-align: center;
  padding: 30px;
}
.law-card-body {
  padding: 20px;
}
.law-card-body h3 {
  margin-bottom: 8px;
  color: var(--text-primary);
}
.law-card-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ÇAKRA SÜTUN */
.chakra-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.chakra-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.chakra-row:hover {
  transform: translateX(10px);
}
.chakra-circle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}
.chakra-info {
  flex: 1;
}
.chakra-info h3 {
  margin-bottom: 4px;
  color: var(--text-primary);
}
.chakra-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.chakra-sanskrit {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: italic;
}
.chakra-location {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-left: 10px;
}

.chakra-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
.chakra-circle-big {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chakra-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chakra-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.chakra-nav-item:hover,
.chakra-nav-item.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}
.chakra-nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* MANİFEST */
.manifest-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.manifest-block {
  padding: 35px;
}
.manifest-block h2 {
  color: var(--gold);
  margin-bottom: 20px;
}
.manifest-image {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}
.manifest-image img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}

/* ANLAMLAR GRİD */
.meanings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.meaning-card {
  padding: 25px;
  text-decoration: none;
  color: inherit;
}
.meaning-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  margin-bottom: 10px;
  display: block;
}
.meaning-card h3 {
  margin-bottom: 10px;
  color: var(--text-primary);
}

/* TAB NAV */
.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  justify-content: center;
}
.tab-btn {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.tab-btn:hover,
.tab-btn.active {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* DÖNGÜ TIMELINE */
.cycle-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}
.cycle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.cycle-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  margin-bottom: 10px;
}
.cycle-item h3 {
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* HİZMETLER SAYFA */

.service-card-reverse {
  flex-direction: row-reverse;
}
.service-card-image {
  flex: 0 0 300px;
  border-radius: 12px;
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-content {
  flex: 1;
}
.service-card-content h2 {
  color: var(--gold);
  margin-bottom: 15px;
}
.service-short {
  color: var(--text-secondary);
  margin-bottom: 15px;
  font-size: 1.05rem;
}
.service-detail {
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-price {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* CTA SECTION */
.cta-section {
  padding: 40px 0;
}
.cta-card {
  padding: 50px;
  text-align: center;
}
.cta-card h2 {
  color: var(--gold);
  margin-bottom: 15px;
}
.cta-card p {
  color: var(--text-secondary);
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* HAKKIMDA */
.about-layout {
  display: flex;
  gap: 40px;
  padding: 40px;
  align-items: flex-start;
}
.about-image {
  flex: 0 0 300px;
}
.about-image img {
  width: 100%;
  border-radius: 12px;
}
.about-content {
  flex: 1;
}

/* İLETİŞİM */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
}
.contact-info {
  padding: 30px;
}
.contact-info h2 {
  color: var(--gold);
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-icon {
  font-size: 1.5rem;
}
.contact-item strong {
  display: block;
  margin-bottom: 4px;
}
.contact-item a {
  color: var(--gold);
  text-decoration: none;
}
.contact-item a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  padding: 30px;
}
.contact-form-wrapper h2 {
  color: var(--gold);
  margin-bottom: 20px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
.contact-form .form-group {
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.required {
  color: #e74c3c;
}

.btn-full {
  width: 100%;
}

.alert-success {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}
.alert-error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}
.empty-state h3 {
  color: var(--text-primary);
  margin-bottom: 10px;
}
.empty-state p {
  color: var(--text-secondary);
}

/* HESAPLAYICI */
.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.calc-option-card {
  padding: 30px;
  text-align: center;
}
.calc-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}
.calc-option-card h2 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.calc-option-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.calculator-card {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}
.calculator-card h2 {
  color: var(--gold);
  margin-bottom: 10px;
}
.calc-back {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: inline-block;
}
.calc-form {
  margin: 25px 0;
}
.calc-inputs {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.calc-inputs-single {
  display: block;
}
.calc-field {
  flex: 1;
}
.calc-field-wide {
  width: 100%;
}
.calc-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.calc-field input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  outline: none;
}
.calc-field input:focus {
  border-color: var(--gold);
}

.calc-result {
  margin-top: 30px;
  text-align: center;
}
.result-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  margin-bottom: 10px;
}
.result-title {
  color: var(--text-primary);
  margin-bottom: 15px;
}
.result-content {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.calc-disclaimer {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.calc-disclaimer p {
  font-size: 0.8rem;
  color: #888;
}
.calc-disclaimer a {
  color: var(--gold);
}

/* PIN CODE DISPLAY */
.pin-digits {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.pin-digit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 15px;
  min-width: 70px;
}
.pin-digit-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.pin-digit-label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 5px;
}

/* BLOG */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}
.filter-btn {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.blog-detail {
  padding: 40px;
}
.blog-detail-header {
  margin-bottom: 25px;
}
.blog-detail-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 12px;
}
.blog-detail-header h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-primary);
}
.blog-detail-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.blog-detail-image {
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
}
.blog-detail-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.blog-detail-content {
  line-height: 1.8;
}
.blog-detail-content h2,
.blog-detail-content h3 {
  color: var(--gold);
  margin: 25px 0 15px;
}
.blog-detail-content p {
  margin-bottom: 15px;
}
.blog-detail-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 15px 0;
}

.blog-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.tag {
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.blog-detail-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.blog-detail-share span {
  color: var(--text-secondary);
}
.share-btn {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s;
}
.share-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.related-posts {
  margin-top: 50px;
}
.related-posts h2 {
  color: var(--gold);
  margin-bottom: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.page-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s;
}
.page-btn:hover,
.page-btn.active {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

.page-hero-compact {
  padding: 20px 0;
}

/* RESPONSIVE EKLENTILER */
@media (max-width: 768px) {
  .detail-card {
    padding: 25px;
  }
  .detail-header {
    flex-direction: column;
    text-align: center;
  }
  .detail-number {
    font-size: 2.5rem;
  }

  .service-card,
  .service-card-reverse {
    flex-direction: column;
  }
  .service-card-image {
    flex: none;
    width: 100%;
  }

  .about-layout {
    flex-direction: column;
  }
  .about-image {
    flex: none;
    width: 100%;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .calc-inputs {
    flex-direction: column;
  }

  .chakra-detail-header {
    flex-direction: column;
    text-align: center;
  }

  .blog-detail {
    padding: 20px;
  }
  .blog-detail-header h1 {
    font-size: 1.4rem;
  }
}
/* PIN AÇIKLAMA GRİD */
.pin-explain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 15px;
}
.pin-explain-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.pin-explain-num {
  font-weight: 700;
  color: var(--gold);
  min-width: 70px;
  font-size: 0.85rem;
}
.pin-explain-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* PIN RESULT DETAILS */
.pin-result-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  text-align: left;
}
.pin-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.pin-result-pos {
  color: var(--gold);
  font-size: 0.9rem;
}
.pin-result-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* HARF TABLOSU GRİD */
.letter-table-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(55px, 1fr));
  gap: 8px;
}

/* KİŞİSEL YIL MİNİ DÖNGÜ */
.cycle-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 15px;
}
.cycle-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.cycle-mini span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 30px;
  text-align: center;
}
