/* ============================================
   TRS Multilingual - Corporate Theme (v2)
   Modern, kurumsal, animasyonlu tasarım
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ========== Design Tokens ========== */
:root {
  /* Renk paleti */
  --color-primary: #0f172a;
  --color-primary-light: #1e293b;
  --color-accent: #0ea5e9;
  --color-accent-hover: #0284c7;
  --color-accent-deep: #0369a1;
  --color-accent-soft: rgba(14, 165, 233, 0.10);
  --color-accent-soft2: rgba(14, 165, 233, 0.18);
  --color-surface: #ffffff;
  --color-surface-alt: #f8fafc;
  --color-surface-card: #ffffff;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-subtle: #94a3b8;
  --color-success: #10b981;
  --color-white: #ffffff;

  /* Gölgeler */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.07), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-accent: 0 8px 24px rgba(14, 165, 233, 0.22);

  /* Layout */
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --header-height: 72px;
  --transition: 0.22s ease;
  --transition-slow: 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-surface);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ========== Header & Navigation ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.85;
  color: var(--color-primary);
}

.logo span {
  color: var(--color-accent);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-desktop a {
  color: var(--color-text);
  padding: 8px 13px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition), background var(--transition);
}

.nav-desktop a:hover {
  color: var(--color-accent);
  background: var(--color-accent-soft);
}

.nav-desktop a.active {
  color: var(--color-accent);
  background: var(--color-accent-soft);
}

/* Kariyer nav linki belirgin */
.nav-desktop .nav-cta {
  background: var(--color-accent);
  color: var(--color-white) !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-left: 4px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-desktop .nav-cta:hover {
  background: var(--color-accent-hover);
  color: var(--color-white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

/* Dil Seçici */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: 12px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 3px;
}

.lang-switcher button {
  background: none;
  border: none;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--transition);
  font-family: inherit;
  letter-spacing: 0.04em;
}

.lang-switcher button:hover {
  color: var(--color-accent);
}

.lang-switcher button.active {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-xs);
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  padding: 8px;
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--color-primary);
  transition: border-color var(--transition), background var(--transition);
}

.menu-toggle:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-accent);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: calc(var(--header-height) + 72px) 0 96px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #f8fafc 60%, #ffffff 100%);
  overflow: hidden;
}

/* Hero ızgara arka plan */
.hero-bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-grid {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-accent-soft2);
  color: var(--color-accent-deep);
  border: 1px solid rgba(14, 165, 233, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  width: fit-content;
  animation: fadeSlideDown 0.6s ease both;
}

.hero-badge svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  animation: fadeSlideDown 0.7s 0.05s ease both;
}

.hero h1 span {
  color: inherit;
}

.hero h1 .hero-highlight {
  color: var(--color-accent);
  display: block;
}

.hero-highlight:empty {
  display: none;
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
  animation: fadeSlideDown 0.7s 0.1s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeSlideDown 0.7s 0.15s ease both;
}

/* Hero istatistikler */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeSlideDown 0.7s 0.2s ease both;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* Hero görsel */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
  animation: fadeSlideUp 0.8s 0.1s ease both;
}

.hero-visual-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}

.hero-visual-card--main {
  padding: 24px 28px;
  font-size: 1rem;
  gap: 16px;
}

.hero-visual-card--tr {
  top: 30px;
  right: 0;
}

.hero-visual-card--bl {
  bottom: 20px;
  left: 0;
}

.hero-visual-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-accent-soft), rgba(14, 165, 233, 0.05));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.hero-visual-icon-wrap--sm {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.hero-visual-icon-wrap svg {
  display: block;
}

/* Dekoratif orb'lar */
.hero-visual-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-visual-orb--1 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.10) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-visual-orb--2 {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
  bottom: 10%;
  right: 10%;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
}

.btn svg {
  flex-shrink: 0;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 1px 3px rgba(14, 165, 233, 0.2);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-soft);
  transform: translateY(-1px);
}

.btn-cta {
  background: var(--color-white);
  color: var(--color-accent-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.btn-cta:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ========== Section Badge ========== */
.section-badge {
  display: inline-flex;
  align-items: center;
  background: var(--color-accent-soft2);
  color: var(--color-accent-deep);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ========== Sections ========== */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--color-surface-alt);
}

.section-title {
  text-align: center;
  margin-bottom: 52px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-title p {
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ========== Cards ========== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.card:hover {
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.card:hover::before {
  opacity: 1;
}

/* Card icon — SVG tabanlı */
.card-icon {
  width: 50px;
  height: 50px;
  background: var(--color-accent-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 18px;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  z-index: 1;
}

.card:hover .card-icon {
  background: var(--color-accent);
  color: var(--color-white);
  transform: scale(1.05);
}

.card-icon svg {
  display: block;
}

.card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.card p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Compact card variant */
.card-compact {
  padding: 20px;
}

.card-compact .card-icon {
  margin-bottom: 12px;
}

.card-compact h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.card-compact p {
  display: none;
}

/* ========== CTA Strip ========== */
.cta-strip {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e3a5f 100%);
  padding: 72px 0;
  overflow: hidden;
}

.cta-strip-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: var(--color-white);
  margin-bottom: 14px;
  display: block;
}

.footer-brand .logo span {
  color: var(--color-accent);
}

.footer-brand p {
  opacity: 0.75;
  font-size: 0.92rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-col ul li:not(.email-send-options)>span {
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.92rem;
}

/* Sosyal linkler (footer içi) */
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-2px);
}

.social-links a svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  display: block;
}

/* Footer: e-posta Gmail/Outlook butonları */
.email-send-options {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.email-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}

.email-icon-btn:hover {
  transform: scale(1.12);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.email-icon-letter {
  display: inline;
}

.email-icon-gmail {
  background: #ea4335;
}

.email-icon-outlook {
  background: #0078d4;
}

/* İletişim sayfası e-posta ikonları */
.email-send-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
  margin-left: 6px;
}

.email-send-icons .email-icon-btn {
  width: 26px;
  height: 26px;
  font-size: 0.75rem;
}

.email-send-icons .email-icon-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
  color: #fff;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
  position: relative;
}

.footer-legal a:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -12px;
  color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.footer-legal a:hover {
  color: var(--color-white);
}

/* ========== Page content (iç sayfalar) ========== */
.page-hero {
  padding: calc(var(--header-height) + 52px) 0 52px;
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--color-text-muted);
  font-size: 1.08rem;
  max-width: 560px;
}

.page-content {
  padding: 52px 0 88px;
}

.page-content .content-block {
  max-width: 720px;
  margin: 0 auto 36px;
}

.page-content .content-block h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 28px 0 12px;
  letter-spacing: -0.02em;
}

.page-content .content-block p {
  color: var(--color-text-muted);
  margin-bottom: 18px;
  line-height: 1.75;
}

/* ========== Forms ========== */
.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-actions {
  margin-top: 28px;
}

.form-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 14px;
}

/* ========== Admin ========== */
.admin-page .admin-main {
  min-height: calc(100vh - var(--header-height) - 80px);
  padding: 80px 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-card {
  width: 100%;
  max-width: 400px;
  padding: 36px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.admin-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.admin-desc {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.admin-form .form-group:last-of-type {
  margin-bottom: 8px;
}

.admin-message {
  font-size: 0.88rem;
  margin-top: 12px;
  min-height: 1.4em;
}

.admin-back {
  margin-top: 24px;
  font-size: 0.88rem;
}

.admin-back a {
  color: var(--color-text-muted);
}

.admin-back a:hover {
  color: var(--color-accent);
}

.admin-info {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 16px;
}

.admin-footer {
  text-align: center;
  padding: 24px;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--color-border);
}

.admin-page .nav-desktop .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* ========== Floating Sosyal Butonlar ========== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.floating-actions a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.floating-actions a:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.floating-actions a svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.floating-actions .whatsapp {
  background: #25d366;
}

.floating-actions .facebook {
  background: #1877f2;
}

.floating-actions .instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.floating-actions .linkedin {
  background: #0a66c2;
}

/* ========== Mobile Menu ========== */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 100px 40px 40px;
  z-index: 999;
  overflow-y: auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-20px);
  opacity: 0;
}

.nav-mobile.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile a {
  display: block;
  width: 100%;
  padding: 20px 0;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border-light);
  transition: color var(--transition), background var(--transition);
}

.nav-mobile a:hover {
  color: var(--color-accent);
  background: var(--color-surface-alt);
}

.nav-mobile .nav-cta {
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius);
  margin-top: 8px;
}

.nav-mobile .lang-switcher {
  margin-top: 40px;
  justify-content: center;
  width: fit-content;
}

/* ========== Honeypot ========== */
.honeypot-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ========== Animations ========== */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* floatCard & orbPulse animations removed for stability */

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual {
    height: 220px;
    order: -1;
    transform: scale(0.85);
    transform-origin: center;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .section {
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-brand .social-links {
    justify-content: center;
  }

  /* QA: Sosyal medya ikonları çakışmasını engellemek için mobilde gizlenir */
  .floating-actions {
    display: none;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  /* QA: Yüzen kartlar mobilde çok yer kaplıyor, küçültüldü */
  .hero-visual {
    transform: scale(0.7);
    height: 180px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding: calc(var(--header-height) + 40px) 0 60px;
    overflow-x: hidden;
  }

  /* QA: Butonların sıkışmasını engelleme (flex-direction: column) */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
  }

  /* QA: Başlık taşmasını engellemek için daha dinamik ve küçük font */
  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 1.85rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.25;
  }

  .section-title h2 {
    font-size: 1.6rem;
  }

  .footer-grid {
    text-align: left;
  }

  .footer-brand .social-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    width: 100%;
  }

  /* QA: Mobilde alan kazanmak için yüzen kartlar iyice küçültüldü */
  .hero-visual {
    transform: scale(0.55);
    height: 130px;
    margin-bottom: 10px;
  }
}

/* ========== Back to Top ========== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
  z-index: 998;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.back-to-top svg {
  display: block;
}

/* ========== Scroll Animations ========== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}