/* ========================================
   BILGE BERLIN - Premium Beige Theme
   ======================================== */

:root {
  /* Marka: bilge berlin — lacivert + ayı ikonu vurgu renkleri */
  --brand-navy: #0f2544;
  --brand-navy-soft: #1a3654;
  --brand-accent-pink: #db2777;
  --brand-accent-cyan: #0891b2;
  --brand-accent-lime: #65a30d;
  --bg-primary: #fbfaf8;
  --bg-secondary: #f5f3ef;
  --bg-tertiary: #edeae4;
  --bg-card: #ffffff;
  --bg-card-hover: #fffefa;
  --gold: #a67c52;
  --gold-light: #c49a6c;
  --gold-dark: #8b6340;
  --gold-gradient: linear-gradient(135deg, #a67c52, #c49a6c, #a67c52);
  --accent: var(--brand-navy);
  --accent-light: var(--brand-navy-soft);
  --text-primary: var(--brand-navy);
  --text-secondary: #3d4f66;
  --text-muted: #64748b;
  --border-color: rgba(0, 0, 0, 0.07);
  --border-gold: rgba(166, 124, 82, 0.25);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 8px 30px rgba(166, 124, 82, 0.15);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
}

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

/* ========== UTILITIES ========== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
  overflow-wrap: anywhere;
  word-break: break-word;
}

h2.section-title {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.text-gold {
  color: var(--gold);
}

.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Başlıkta düz metin ile gradient span bitişik yazılmasın (CMS’te sondaki boşluk yoksa) */
.section-title .text-gradient,
.hero-title .text-gradient {
  margin-left: 0.28em;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(166, 124, 82, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 12px 0;
}

.btn-ghost:hover {
  gap: 16px;
}

.btn-dark {
  background: var(--accent);
  color: #FFFFFF;
}

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

/* ========== TOP BANNER ========== */
.top-banner {
  background: var(--accent);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.top-banner-left,
.top-banner-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
}

.top-banner-item span {
  overflow-wrap: anywhere;
}

.top-banner-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-banner-item i {
  color: var(--gold-light);
  font-size: 0.7rem;
}

.top-banner-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
}

.top-banner-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-banner-socials a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  transition: var(--transition);
}

.top-banner-socials a:hover {
  color: var(--gold-light);
}

.top-banner-lang {
  cursor: pointer;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.3s ease;
}

.navbar .nav-link {
  color: rgba(255,255,255,0.75);
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #ffffff;
}
.navbar .nav-logo-img {
  filter: brightness(1.15) contrast(1.05)
    drop-shadow(0 0 2px rgba(255,255,255,0.8))
    drop-shadow(0 0 8px rgba(255,255,255,0.35));
}
.navbar .nav-login {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}
.navbar .nav-login:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.navbar .nav-cta {
  box-shadow: 0 4px 18px rgba(166,124,82,0.4);
}
.navbar.scrolled {
  top: 0;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled .nav-link {
  color: var(--text-secondary);
}
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--text-primary);
}
.navbar.scrolled .nav-logo-img {
  filter: none;
}
.navbar.scrolled .nav-login {
  border-color: var(--border-color);
  color: var(--text-primary);
}
.navbar.scrolled .nav-login:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.navbar.scrolled .nav-cta {
  box-shadow: 0 4px 14px rgba(166,124,82,0.2);
}
.navbar.scrolled .mobile-toggle span {
  background: var(--text-primary);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: min(220px, 52vw);
  object-fit: contain;
  display: block;
}

.navbar.scrolled .nav-logo-img {
  height: 46px;
}

.nav-logo--footer {
  display: inline-flex;
}

.nav-logo-img--footer {
  height: 52px;
  max-width: 220px;
}

/* Koyu footer: açık kutu yok — logo etrafında yumuşak aydınlık hale */
.brand-logo--on-dark {
  filter: brightness(1.18) contrast(1.1)
    drop-shadow(0 0 1px rgba(255, 255, 255, 1))
    drop-shadow(0 0 2px rgba(255, 255, 255, 0.95))
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.6))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.35));
}

/* Eski metin logosu (geri uyumluluk) */
.nav-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 800;
}

.nav-logo span {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-accent-cyan), var(--brand-accent-pink));
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* ===== Navbar Dropdown ===== */
.nav-dropdown {
  position: relative;
}
.nav-link--dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-dd-arrow {
  font-size: 0.6rem;
  transition: transform 0.3s;
}
.nav-dropdown:hover .nav-dd-arrow,
.nav-dropdown.open .nav-dd-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 100;
  list-style: none;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--bg-card);
  border-left: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}
.nav-dropdown-menu li a .fa-youtube { color: #ff0000; }
.nav-dropdown-menu li a .fa-instagram { color: #e1306c; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta {
  padding: 10px 28px;
  font-size: 0.85rem;
}

.nav-login {
  padding: 10px 24px;
  font-size: 0.85rem;
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  border-radius: 60px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-login:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===== Mobile Toggle Button ===== */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1003;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.mobile-toggle span + span {
  margin-top: 5px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Menü açıkken hamburger her zaman beyaz */
.mobile-toggle.active span {
  background: #fff;
}

/* ========== HERO ========== */
/* ═══════════════════════════════════
   HERO — Modern Premium Design
   ═══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 40px;
  background: linear-gradient(165deg, #070e1a 0%, #0f2544 35%, #132d52 55%, #0c1f3d 80%, #060d18 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.hero-orb--1 {
  top: -10%;
  right: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(166,124,82,0.25) 0%, rgba(196,154,108,0.1) 40%, transparent 70%);
  animation: heroOrb1 20s ease-in-out infinite;
}
.hero-orb--2 {
  bottom: -15%;
  left: -8%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, rgba(59,130,246,0.08) 45%, transparent 70%);
  animation: heroOrb2 16s ease-in-out infinite;
}
.hero-orb--3 {
  top: 35%;
  left: 45%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(219,39,119,0.1) 0%, rgba(168,85,247,0.06) 40%, transparent 70%);
  animation: heroOrb3 22s ease-in-out infinite;
}

@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 35px) scale(1.08); }
  66% { transform: translate(25px, -25px) scale(0.94); }
}
@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(35px, -30px) scale(1.1); }
  70% { transform: translate(-25px, 20px) scale(0.95); }
}
@keyframes heroOrb3 {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  50% { transform: translate(-50%, -35px) scale(1.15); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(166,124,82,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166,124,82,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, black 10%, transparent 70%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb { animation: none !important; }
}

/* Hero Container Grid */
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: center;
}

/* Hero Content */
.hero-content {
  max-width: 620px;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(166,124,82,0.1);
  border: 1px solid rgba(166,124,82,0.25);
  border-radius: 60px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-badge i { font-size: 0.72rem; }
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 3px rgba(52,211,153,0.3);
  animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52,211,153,0.3); }
  50% { box-shadow: 0 0 0 7px rgba(52,211,153,0.1); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.2vw, 3.3rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 24px;
  color: #ffffff;
  overflow-wrap: anywhere;
  word-break: break-word;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -2px;
  right: -2px;
  height: 14px;
  background: linear-gradient(90deg, rgba(166,124,82,0.35), rgba(196,154,108,0.2));
  border-radius: 4px;
  z-index: -1;
  transform: skewX(-3deg);
}

.hero-description {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 500px;
  overflow-wrap: anywhere;
}

/* Hero Action Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-btn-glow {
  position: relative;
  box-shadow: 0 4px 24px rgba(166,124,82,0.35), 0 0 0 0 rgba(166,124,82,0);
  transition: box-shadow 0.4s, transform 0.3s;
}
.hero-btn-glow:hover {
  box-shadow: 0 8px 36px rgba(166,124,82,0.5), 0 0 0 4px rgba(166,124,82,0.15);
  transform: translateY(-2px);
}
.hero .btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.hero .btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(166,124,82,0.08);
}
.hero-btn-play {
  gap: 10px;
}
.hero-play-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(166,124,82,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold-light);
  transition: var(--transition);
}
.hero-btn-play:hover .hero-play-circle {
  background: var(--gold);
  color: #fff;
  transform: scale(1.1);
}

/* Hero Live Users */
.hero-live-users {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 60px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.2px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero-live-users i { font-size: 0.78rem; color: var(--gold-light); }
.hlu-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25), 0 0 8px rgba(16,185,129,0.4);
  animation: hluPulse 1.8s ease-in-out infinite;
}
@keyframes hluPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.25), 0 0 8px rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.1), 0 0 14px rgba(16,185,129,0.2); }
}
.hlu-count {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gold-light);
  min-width: 24px;
  text-align: center;
  transition: opacity 0.3s;
  animation: hluGlow 2.4s ease-in-out infinite;
}
.hlu-count.hlu-updating { opacity: 0.4; animation: none; }
.hlu-label {
  color: rgba(255,255,255,0.7);
  animation: hluGlow 2.4s ease-in-out infinite;
  animation-delay: 0.3s;
}
@keyframes hluGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 0;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  align-items: center;
}
.hero-stat {
  text-align: center;
  flex: 1;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(166,124,82,0.4), transparent);
  flex-shrink: 0;
}
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ═══ Hero Visual (Right Side) ═══ */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  perspective: 1000px;
}
.hero-visual-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166,124,82,0.2) 0%, rgba(99,102,241,0.08) 50%, transparent 70%);
  filter: blur(50px);
  animation: float 8s ease-in-out infinite;
}

.hero-card-main {
  width: 100%;
  max-width: 400px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.25),
    0 8px 24px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transform: rotateY(-2deg) rotateX(1deg);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.hero-card-main:hover {
  transform: rotateY(0) rotateX(0) translateY(-4px);
  border-color: rgba(166,124,82,0.25);
}

.hero-card-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    115deg,
    transparent 40%,
    rgba(255,255,255,0.25) 45%,
    rgba(255,255,255,0.1) 50%,
    transparent 55%
  );
  animation: heroShine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroShine {
  0%, 100% { transform: translateX(-70%) translateY(-20%) rotate(25deg); }
  50% { transform: translateX(70%) translateY(20%) rotate(25deg); }
}

.hero-card-main::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.hero-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(166,124,82,0.2), rgba(196,154,108,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  border: 1px solid rgba(166,124,82,0.2);
}
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
}
.hero-card-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 22px;
  line-height: 1.7;
}
.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  transition: var(--transition);
}
.hero-card-feature:hover {
  color: #ffffff;
  transform: translateX(4px);
}
.hero-card-feature i {
  color: var(--gold-light);
  font-size: 0.82rem;
}

/* Floating Cards */
.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}
.hero-floating-card.card-1 {
  top: 12px;
  right: -24px;
  animation-delay: 0s;
}
.hero-floating-card.card-2 {
  bottom: 60px;
  left: -32px;
  animation-delay: -3s;
}
.hero-floating-card.card-3 {
  bottom: -10px;
  right: 30px;
  animation-delay: -1.5s;
  animation-duration: 7s;
}

.floating-icon {
  width: 38px;
  height: 38px;
  background: rgba(166,124,82,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.floating-text strong {
  display: block;
  font-size: 0.82rem;
  color: #ffffff;
  font-weight: 600;
}
.floating-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}

/* ========== ABOUT ========== */
.about {
  background: var(--bg-secondary);
}

.about .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.about-image--photo {
  background: var(--bg-tertiary);
}

.about-image__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-image-content {
  text-align: center;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.about-image-content--overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  padding: 28px 24px 32px;
  text-align: center;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.35) 55%, transparent 100%);
}

.about-image-content--overlay p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.about-image-content i {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.5;
}

.about-image-content:not(.about-image-content--overlay) p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about-experience-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 4;
  background: var(--gold-gradient);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  text-align: center;
  box-shadow: var(--shadow-gold);
  max-width: calc(100% - 32px);
}

.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #FFFFFF;
  opacity: 0.9;
}

.about-content {
  max-width: 540px;
  min-width: 0;
}

.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.about-feature:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(166, 124, 82, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-feature-text strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.about-feature-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ========== SERVICES ========== */
.services {
  background: var(--bg-primary);
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(166, 124, 82, 0.08);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(166, 124, 82, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-list li i {
  color: var(--gold);
  font-size: 0.5rem;
}


/* ========== ELIGIBILITY BANNER ========== */
.elig-banner {
  position: relative;
  padding: 72px 0 64px;
  background: linear-gradient(135deg, #0f2544 0%, #1a3654 50%, #0a1628 100%);
  color: #fff;
  overflow: hidden;
}

.elig-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 50%, rgba(166,124,82,0.15), transparent),
    radial-gradient(ellipse 500px 350px at 85% 30%, rgba(8,145,178,0.08), transparent);
  pointer-events: none;
}

.elig-banner-head {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.elig-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light, #d4a853);
  margin-bottom: 14px;
}

.elig-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  color: #fff;
}

.elig-banner-title span {
  background: var(--gold-gradient, linear-gradient(135deg, #c9a227, #d4a853));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.elig-banner-sub {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
}

.elig-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
}

.elig-banner-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.elig-banner-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.elig-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(166,124,82,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-light, #d4a853);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.elig-banner-card:hover .elig-banner-icon {
  background: rgba(166,124,82,0.3);
}

.elig-banner-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.elig-banner-card-body strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
}

.elig-banner-card-body span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
}

.elig-banner-cta {
  text-align: center;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.elig-banner-cta .btn {
  padding: 14px 32px;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .elig-banner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .elig-banner {
    padding: 56px 0 48px;
  }
  .elig-banner-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== PROFESSIONS ========== */
.professions {
  background: var(--bg-primary);
}

.professions-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.professions-header .section-subtitle {
  margin: 0 auto;
}

.professions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.profession-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: default;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.profession-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.profession-icon {
  width: 48px;
  height: 48px;
  background: rgba(166, 124, 82, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.profession-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
  overflow-wrap: anywhere;
}

.profession-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.professions-cta-strip {
  margin-top: 48px;
}

.professions-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-soft) 100%);
  color: #fff;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(15,37,68,0.12);
}

.professions-cta-strip__text {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.professions-cta-strip__text i {
  font-size: 1.4rem;
  color: var(--gold-light);
  flex-shrink: 0;
}

.professions-cta-strip__text strong {
  color: #fff;
}

.professions-cta-strip .btn {
  flex-shrink: 0;
  white-space: nowrap;
}


/* ========== PROCESS ========== */
.process {
  background: var(--bg-secondary);
}

.process-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.process-header .section-subtitle {
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.process-card {
  padding: 0 20px;
  position: relative;
  min-width: 0;
}

.process-card-top {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.process-num {
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-gold);
}

.process-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--bg-tertiary));
  margin-left: -1px;
}

.process-line.last {
  background: transparent;
}

.process-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.process-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.process-card-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.process-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.process-list li i {
  color: var(--gold);
  font-size: 0.6rem;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(166, 124, 82, 0.08);
  border: 1px solid rgba(166, 124, 82, 0.15);
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
}

/* ========== GUARANTEES ========== */
.guarantees {
  background: var(--bg-primary);
  padding: 80px 0;
}

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

.guarantee-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.guarantee-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.guarantee-icon {
  width: 48px;
  height: 48px;
  background: rgba(166, 124, 82, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.guarantee-title {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.guarantee-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ========== TESTIMONIALS SLIDER ========== */
.testimonials {
  background: var(--bg-primary);
}

.testimonials-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.testimonials-top-left {
  flex-shrink: 0;
}

.testimonials-top-left .section-title {
  margin-bottom: 0;
}

.testimonials-top-left .section-title::after {
  display: none;
}

.testimonials-top-right {
  max-width: 400px;
  padding-top: 28px;
}

.testimonials-top-right p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Slider (animasyon üst sarmalayıcıda; transform burada slaytı bozmaz) */
.testimonials-slider-outer {
  width: 100%;
  overflow-anchor: none;
}

.tc-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: height 0.35s ease;
  overflow-anchor: none;
}

.tc-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.tc-page.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .tc-slider {
    transition: none;
  }

  .tc-page {
    transform: none;
  }
}

/* Card */
.tc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-width: 0;
}

.tc-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.tc-avatar {
  width: 52px;
  height: 52px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.tc-avatar::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 13px;
  background: var(--text-muted);
  border-radius: 50% 50% 0 0;
  opacity: 0.25;
}

.tc-avatar i {
  position: relative;
  z-index: 1;
  opacity: 0.4;
}

.tc-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.tc-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #F5A623;
  font-size: 0.75rem;
}

.tc-stars .tc-star--empty {
  opacity: 0.28;
  color: var(--text-muted);
}

.tc-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

/* Dots */
.tc-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.tc-dot.active {
  background: var(--gold);
  width: 12px;
  height: 12px;
  box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.2);
}

/* ========== FAQ ========== */
.faq {
  background: var(--bg-secondary);
}

.faq-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  gap: 16px;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}

.faq-toggle {
  width: 36px;
  height: 36px;
  background: rgba(166, 124, 82, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  background: var(--gold);
  color: #FFFFFF;
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 32px 24px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.faq-answer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.faq-answer ul li i {
  color: var(--gold);
  font-size: 0.5rem;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--accent);
  color: #FFFFFF;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 64px;
}

.footer .nav-logo {
  color: #ffffff;
}

.footer .nav-logo .logo-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.footer .nav-logo span {
  color: var(--gold-light);
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 320px;
}

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

.footer-social {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-link:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--gold-light);
  font-size: 0.85rem;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: flex-end;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ========== BLOG ========== */
.blog {
  background: var(--bg-primary);
}

.blog-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.blog-header .section-subtitle {
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.blog-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.blog-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  overflow: hidden;
}

.blog-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.blog-image-placeholder i {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  transition: var(--transition);
}

.blog-card:hover .blog-image-placeholder i {
  opacity: 0.5;
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg-card);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 60px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.blog-category i {
  font-size: 0.62rem;
}

.blog-content {
  padding: 28px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.blog-meta span i {
  color: var(--gold);
  font-size: 0.65rem;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--text-primary);
  transition: var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--gold);
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}

.blog-link:hover {
  gap: 12px;
  color: var(--gold-dark);
}

.blog-link i {
  font-size: 0.7rem;
}

/* Blog kart anahtar kelimeler */
.blog-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}
.blog-kw {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(166,124,82,0.06);
  color: var(--gold);
  border: 1px solid rgba(166,124,82,0.12);
  border-radius: 12px;
}

.blog-cta {
  text-align: center;
}

/* ========== BLOG DETAY ========== */
.blog-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-detail-back {
  font-size: 0.85rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: gap 0.2s;
}
.blog-detail-back:hover {
  gap: 10px;
}
.blog-detail-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: 60px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(166,124,82,0.06);
  color: var(--bd-cat-color, var(--gold));
  border: 1px solid rgba(166,124,82,0.12);
}
.blog-detail-cat i {
  font-size: 0.65rem;
}
.blog-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.blog-detail-meta i {
  color: var(--gold);
  font-size: 0.75rem;
  margin-right: 2px;
}
.blog-detail-meta-sep {
  opacity: 0.3;
}
.blog-detail-image {
  margin-bottom: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.blog-detail-image img {
  width: 100%;
  display: block;
}
.blog-detail-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 48px;
}
.blog-detail-keywords {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(166,124,82,0.04), rgba(166,124,82,0.01));
  border: 1px solid rgba(166,124,82,0.1);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
}
.blog-detail-kw-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-detail-kw-label i {
  font-size: 0.72rem;
}
.blog-detail-kw-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-detail-kw {
  display: inline-block;
  padding: 5px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: var(--transition);
}
.blog-detail-kw:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.blog-detail-footer {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* ========== MARQUEE ========== */
.marquee-section {
  background: var(--gold-gradient);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.marquee-item i {
  font-size: 0.5rem;
  opacity: 0.6;
}

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

/* ========== SECTION DIVIDER ========== */
.section-divider {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gold);
}

.divider-ornament span {
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.divider-ornament i {
  font-size: 0.45rem;
  opacity: 0.5;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* ========== WHATSAPP FLOATING ========== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  z-index: 900;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  left: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-tooltip::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #FFFFFF;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}

/* ========== PREMIUM DECORATIONS ========== */
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin-top: 16px;
}

.services-header .section-title::after,
.professions-header .section-title::after,
.faq-header .section-title::after,
.process-header .section-title::after,
.sample-jobs-header .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* ========== ANIMATIONS ========== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes _revealFallback {
  to { opacity: 1; transform: none; }
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  animation: _revealFallback 0.8s ease 1.2s forwards;
}

[data-animate].visible {
  opacity: 1;
  transform: none;
  animation: none;
}

[data-animate="left"] {
  transform: translateX(-30px);
}

[data-animate="left"].visible {
  transform: none;
}

[data-animate="right"] {
  transform: translateX(30px);
}

[data-animate="right"].visible {
  transform: none;
}

[data-animate="scale"] {
  transform: scale(0.9);
}

[data-animate="scale"].visible {
  transform: none;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .top-banner-left .top-banner-item:nth-child(5),
  .top-banner-left .top-banner-divider:nth-child(4) {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .professions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    max-width: 520px;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }


  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .top-banner {
    display: none;
  }

  .navbar {
    top: 0;
  }

  .hero {
    padding-top: 80px;
  }

  .section {
    padding: 80px 0;
  }

  .marquee-item {
    font-size: 0.78rem;
    padding: 0 20px;
    letter-spacing: 1px;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  /* ===== Mobile: hide desktop nav, show toggle ===== */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-actions .nav-cta,
  .nav-actions .nav-login {
    display: none;
  }

  .nav-menu {
    display: none !important;
  }

  .hero-stats {
    flex-direction: row;
    gap: 0;
    padding: 20px 16px;
    max-width: 100%;
  }
  .hero-stat-number { font-size: 1.6rem; }
  .hero-stat-label { font-size: 0.72rem; }
  .hero-stat-divider { height: 30px; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .professions-grid {
    grid-template-columns: 1fr;
  }

  .professions-cta-strip__inner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .professions-cta-strip__text {
    flex-direction: column;
    gap: 8px;
  }

  .testimonials-top {
    flex-direction: column;
    gap: 16px;
  }

  .testimonials-top-right {
    padding-top: 0;
    max-width: 100%;
  }

  .tc-page {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-stat-number {
    font-size: 1.4rem;
  }
  .hero-stats {
    padding: 16px 12px;
    border-radius: var(--radius-md);
  }
  .hero-stat-divider { height: 24px; }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobil menü auth linkleri: desktop'ta gizle */
.nav-menu-auth { display: none; }

/* ═══════════════════════════════════════
   MOBILE PANEL — Premium Slide-in Menu
   ═══════════════════════════════════════ */
.mob-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 88vw;
  height: 100%;
  height: 100dvh;
  background: var(--brand-navy);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 30px rgba(0,0,0,0.25);
}
.mob-panel.active {
  transform: translateX(0);
}

.mob-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.mob-panel-logo img {
  height: 36px;
  width: auto;
  filter: brightness(1.2) drop-shadow(0 0 4px rgba(255,255,255,0.3));
}

.mob-panel-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.25rem;
  padding: 8px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.mob-panel-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.mob-panel-nav {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
}

.mob-nav-item {
  display: block;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-align: right;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  background: none;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  position: relative;
}
.mob-nav-item:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.mob-nav-item.active {
  color: var(--gold-light);
  background: rgba(166,124,82,0.08);
}
.mob-nav-item.active::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--gold-light);
  border-radius: 3px 0 0 3px;
}

.mob-nav-item i {
  margin-right: 8px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.mob-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 12px 24px;
}

.mob-nav-cta {
  color: var(--gold-light) !important;
  font-weight: 600;
}

/* Dropdown inside mobile panel */
.mob-nav-dropdown {
  display: flex;
  flex-direction: column;
}

.mob-nav-dd-trigger {
  text-align: right;
}
.mob-dd-arrow {
  font-size: 0.7rem;
  margin-left: 6px;
  transition: transform 0.25s ease;
  display: inline-block;
}
.mob-nav-dropdown.open .mob-dd-arrow {
  transform: rotate(180deg);
}

.mob-nav-dd-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255,255,255,0.03);
}
.mob-nav-dropdown.open .mob-nav-dd-content {
  max-height: 200px;
}

.mob-nav-sub {
  display: block;
  padding: 11px 28px 11px 28px;
  text-align: right;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.2s ease;
}
.mob-nav-sub i {
  margin-right: 6px;
  font-size: 0.85rem;
}
.mob-nav-sub:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.mob-nav-sub.active {
  color: var(--gold-light);
}

/* Overlay */
.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
.mob-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop: hide mobile panel */
@media (min-width: 769px) {
  .mob-panel,
  .mob-overlay {
    display: none !important;
  }
}

/* ========== PAGINATION (Public) ========== */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 40px 0 0;
  justify-content: center;
  flex-wrap: wrap;
}
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  transition: all 0.25s;
  text-decoration: none;
  cursor: pointer;
}
.page-link:hover {
  background: rgba(166,124,82,0.1);
  color: var(--gold);
  border-color: var(--gold);
}
.page-link.active {
  background: var(--gold-gradient);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 3px 12px rgba(166,124,82,0.3);
  pointer-events: none;
}
.page-link.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.page-link.page-dots {
  border: none;
  background: none;
  pointer-events: none;
  min-width: 28px;
  font-size: 1rem;
  letter-spacing: 2px;
}
.page-link.page-prev,
.page-link.page-next {
  font-size: 0.75rem;
  color: var(--text-primary);
}
.page-link.page-prev:hover,
.page-link.page-next:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ========== STATİK / YASAL SAYFALAR ========== */
.page-static {
  background: var(--bg-primary);
}

.page-static-inner {
  max-width: 720px;
  margin: 0 auto;
}

.page-static-inner--wide {
  max-width: 960px;
}

.page-static-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.page-static-header .section-subtitle {
  margin: 0 auto;
}

.page-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 28px;
  transition: var(--transition);
}

.page-back:hover {
  color: var(--gold-light);
}

.page-static-prose {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
}

.page-static-prose > p {
  margin-bottom: 1rem;
}

.page-static-prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  color: var(--text-primary);
  font-size: 1.08rem;
  font-weight: 700;
}

.page-static-prose ul {
  margin: 0.5rem 0 1.25rem 1.1rem;
  padding: 0;
  list-style: disc;
}

.page-static-prose ol {
  margin: 0.5rem 0 1.25rem 1.1rem;
  padding: 0;
  list-style: decimal;
}

.page-static-prose li {
  margin-bottom: 0.4rem;
}

.page-static-prose a {
  color: var(--gold);
  font-weight: 600;
}

.page-static-cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.service-detail-block {
  scroll-margin-top: 120px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.service-detail-block h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-detail-block .service-detail-lead {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.75;
  font-size: 0.94rem;
}

.service-detail-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-detail-block li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-detail-block li i {
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ==================== SAMPLE JOBS SECTION ==================== */
.sample-jobs { background: var(--bg-secondary, #faf9f7); }
.sample-jobs-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.sample-jobs-header .section-subtitle { margin: 0 auto; }

.sample-jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sj-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.sj-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sj-color);
  opacity: 0;
  transition: opacity 0.3s;
}
.sj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: color-mix(in srgb, var(--sj-color) 30%, transparent);
}
.sj-card:hover::before { opacity: 1; }

.sj-card-sector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sj-color);
  background: color-mix(in srgb, var(--sj-color) 8%, transparent);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.sj-card-sector i { font-size: 0.72rem; }

.sj-card-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary, #1a1a2e);
  margin-bottom: 10px;
  line-height: 1.35;
}

.sj-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.sj-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-secondary, #64748b);
}
.sj-card-meta span i {
  font-size: 0.7rem;
  color: var(--sj-color);
}

.sj-card-desc {
  font-size: 0.82rem;
  color: var(--text-secondary, #64748b);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 14px;
}

.sj-card-footer {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sj-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold, #A67C52);
  background: rgba(166,124,82,0.08);
  padding: 4px 10px;
  border-radius: 6px;
}
.sj-card-badge i { font-size: 0.68rem; }

.sample-jobs-cta {
  text-align: center;
  margin-top: 36px;
}
.sample-jobs-cta-text {
  font-size: 0.95rem;
  color: var(--text-secondary, #64748b);
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .sample-jobs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sample-jobs-grid { grid-template-columns: 1fr; gap: 14px; }
  .sj-card { padding: 18px; }
  .sj-card-title { font-size: 0.95rem; }
}

/* ═══════════════════════════════════════════════
   ÇEREZ ONAY BİLDİRİMİ
   ═══════════════════════════════════════════════ */
.cc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.cc-overlay--visible { opacity: 1; visibility: visible; }

.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  transform: translateY(110%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cc-banner--visible { transform: translateY(0); }

.cc-inner {
  max-width: 720px;
  margin: 0 auto 24px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow:
    0 -4px 24px rgba(0,0,0,0.08),
    0 8px 40px rgba(0,0,0,0.12),
    0 0 0 1px rgba(0,0,0,0.04);
  padding: 28px 30px 24px;
  animation: ccFloat 0.6s ease-out both;
}
@keyframes ccFloat {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}
.cc-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}
.cc-subtitle {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: #94a3b8;
}
.cc-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 16px;
}
.cc-link {
  color: #b68d40;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(182,141,64,0.3);
  transition: border-color 0.2s;
}
.cc-link:hover { border-color: #b68d40; }

/* Kategoriler */
.cc-categories {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin 0.3s;
  margin: 0;
}
.cc-categories--open {
  max-height: 400px;
  margin: 0 0 16px;
}
.cc-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.cc-cat:hover { border-color: #cbd5e1; background: #f1f5f9; }
.cc-cat:last-child { margin-bottom: 0; }

.cc-cat-info { flex: 1; min-width: 0; }
.cc-cat-name {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}
.cc-cat-desc {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.4;
}

/* Toggle Switch */
.cc-toggle {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
}
.cc-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cc-slider {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 24px;
  transition: background 0.3s;
  cursor: pointer;
}
.cc-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.cc-toggle input:checked + .cc-slider {
  background: linear-gradient(135deg, #b68d40, #d4a94c);
}
.cc-toggle input:checked + .cc-slider::before {
  transform: translateX(20px);
}
.cc-toggle--locked .cc-slider {
  background: #a3cfbb;
  cursor: not-allowed;
}
.cc-toggle--locked .cc-slider::before {
  transform: translateX(20px);
}
.cc-lock {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  color: #fff;
  box-shadow: 0 1px 4px rgba(16,185,129,0.3);
}

/* Butonlar */
.cc-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.cc-actions-right {
  display: flex;
  gap: 8px;
}
.cc-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.82rem;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cc-btn--settings {
  background: transparent;
  color: #64748b;
  padding: 10px 12px;
}
.cc-btn--settings:hover { color: #b68d40; }
.cc-btn--reject {
  background: #f1f5f9;
  color: #475569;
}
.cc-btn--reject:hover { background: #e2e8f0; }
.cc-btn--save {
  background: #1e293b;
  color: #fff;
}
.cc-btn--save:hover { background: #334155; }
.cc-btn--accept {
  background: linear-gradient(135deg, #b68d40 0%, #d4a94c 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(182,141,64,0.3);
}
.cc-btn--accept:hover {
  box-shadow: 0 6px 20px rgba(182,141,64,0.4);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .cc-inner {
    margin: 0 10px 12px;
    padding: 22px 20px 20px;
    border-radius: 16px;
  }
  .cc-header { gap: 10px; }
  .cc-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 10px; }
  .cc-title { font-size: 1rem; }
  .cc-desc { font-size: 0.8rem; }
  .cc-cat { padding: 10px 12px; }
  .cc-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cc-actions-right {
    flex-direction: column;
  }
  .cc-btn { justify-content: center; width: 100%; }
  .cc-btn--settings { order: 3; }
}

/* ========== ERROR PAGES ========== */
.error-page {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  overflow: hidden;
}
.error-page-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.error-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.error-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(166,124,82,0.35), transparent 70%);
  top: -10%; right: -5%;
  animation: errOrb1 8s ease-in-out infinite;
}
.error-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(15,37,68,0.2), transparent 70%);
  bottom: -5%; left: -5%;
  animation: errOrb2 10s ease-in-out infinite;
}
.error-orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(196,154,108,0.25), transparent 70%);
  top: 40%; left: 50%;
  animation: errOrb3 7s ease-in-out infinite;
}
@keyframes errOrb1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,20px)} }
@keyframes errOrb2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-25px)} }
@keyframes errOrb3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-15px,15px) scale(1.1)} }

.error-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.error-code-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.error-code {
  font-family: var(--font-heading);
  font-size: clamp(80px, 15vw, 150px);
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1;
  opacity: 0.12;
  user-select: none;
}
.error-code-mid {
  font-size: clamp(56px, 11vw, 110px);
  color: var(--gold);
  opacity: 0.65;
  animation: errPulse 3s ease-in-out infinite;
}
@keyframes errPulse {
  0%,100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}
.error-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.error-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
}
.error-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.error-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}
.error-btn--primary {
  background: var(--gold-gradient);
  color: #fff;
  box-shadow: 0 4px 18px rgba(166,124,82,0.25);
}
.error-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(166,124,82,0.35);
}
.error-btn--outline {
  border: 2px solid var(--border-color);
  color: var(--text-primary);
  background: transparent;
}
.error-btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.error-suggestions {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.error-suggestions-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.error-suggestions-title i {
  color: var(--gold);
  margin-right: 6px;
}
.error-suggestions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.error-suggestion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.error-suggestion-card i {
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}
.error-suggestion-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.error-suggestion-card:hover i {
  color: var(--gold-dark);
  transform: scale(1.15);
}

@media (max-width: 640px) {
  .error-suggestions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  .error-btn { width: 100%; justify-content: center; }
}
