/* ============================================
   Turgut Gökkaya Psikoteknik - Premium kurumsal tema
   Yumuşak off-white arka plan, katmanlı bölümler
   ============================================ */

:root {
  --bg: #f8fafc;
  --bg-secondary: #f4f6f9;
  --bg-soft: #eef2f6;
  --bg-section: #f5f7fa;
  --bg-section-alt: #f0f3f7;
  --card-bg: #ffffff;
  --card-border: rgba(0, 0, 0, 0.06);
  --card-border-soft: rgba(0, 0, 0, 0.04);
  --card-shadow: 0 2px 12px rgba(0, 0, 0, 0.04), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
  --card-shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  --card-accent: rgba(47, 143, 214, 0.12);

  --blue: #2f8fd6;
  --blue-light: #5aaee6;
  --green: #25d366;

  --text: #0f1419;
  --text-secondary: #1a1a1a;
  --text-muted: #4a5568;
  --text-light: #64748b;

  --border-neutral: rgba(0, 0, 0, 0.06);
  --border-dark: rgba(0, 0, 0, 0.1);

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc 0%, #f5f7fa 40%, #f2f5f9 70%, #eef2f6 100%);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 80% at 85% 10%, rgba(248, 250, 253, 0.9) 0%, transparent 50%),
    radial-gradient(ellipse 100% 60% at 10% 70%, rgba(241, 245, 250, 0.7) 0%, transparent 45%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* ----- Vanta background ----- */
.vanta-wrap {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.vanta-wrap canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
}

.vanta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(245, 247, 250, 0.9) 100%);
  pointer-events: none;
}

/* ----- Navbar ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background: rgba(248, 250, 252, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-neutral);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.8);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-company {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.25;
  color: var(--text);
}

.nav-company small {
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.04);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.15rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #2a2a2a 0%, #111111 100%);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  border-radius: 9999px 9999px 0 0;
  pointer-events: none;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  color: #111111;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, transparent 100%);
  border-radius: 9999px 9999px 0 0;
  pointer-events: none;
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #fafafa 0%, #eee 100%);
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.btn-block {
  width: 100%;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

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

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.hero-content {
  max-width: 640px;
  background: transparent;
  padding: 2rem 0 2.25rem;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.hero-logo-wrap {
  margin-bottom: 1rem;
}

.hero-logo {
  width: 100px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  display: block;
}

.hero-title {
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 1px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.75rem;
  line-height: 1.6;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0;
  transition: color var(--transition);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.hero-phone:hover {
  color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  --hero-btn-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hero CTA – premium dark-background styling */
.hero-buttons .btn {
  min-height: 48px;
  padding: 0.65rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.35s var(--hero-btn-ease), box-shadow 0.35s var(--hero-btn-ease),
    border-color 0.3s ease, background 0.3s ease;
}

/* Primary: Randevu Talep Et – navy/anthracite, glass, glow */
.hero-buttons .btn-primary {
  background: linear-gradient(165deg, #1e2a3a 0%, #151c28 50%, #0f1419 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(15, 20, 25, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-buttons .btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-buttons .btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transition: left 0.5s var(--hero-btn-ease);
  pointer-events: none;
}

.hero-buttons .btn-primary:hover {
  background: linear-gradient(165deg, #243044 0%, #1a2432 50%, #131b24 100%);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 28px rgba(15, 25, 40, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 24px rgba(30, 45, 65, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-buttons .btn-primary:hover::after {
  left: 100%;
}

.hero-buttons .btn-primary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Secondary: Yol Tarifi Al – soft glass, off-white */
.hero-buttons .btn-secondary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  color: #1a1d24;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-buttons .btn-secondary::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
}

.hero-buttons .btn-secondary:hover {
  background: linear-gradient(180deg, #ffffff 0%, rgba(252, 253, 255, 0.98) 100%);
  border-color: rgba(255, 255, 255, 0.5);
  color: #0f1114;
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-buttons .btn-secondary:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(0, 0, 0, 0.06);
}

/* Entrance: fade-up for hero CTAs */
.hero-buttons {
  animation: heroCtaFadeUp 0.6s var(--hero-btn-ease) 0.35s both;
}

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

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 500px;
  width: 100%;
}

.hero-image-card img {
  width: 100%;
  height: auto;
}

/* ----- Section common ----- */
.section {
  padding: 4.5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.section-title.text-center {
  text-align: center;
  margin-bottom: 2rem;
}

/* ----- About ----- */
.section-about {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-section-alt) 100%);
}

.psiko-bottom-image {
  width: 100%;
  max-width: 560px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.psiko-bottom-image img {
  width: 100%;
  height: auto;
  display: block;
}

.psiko-gallery {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.psiko-gallery img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  object-fit: cover;
}

@media (max-width: 768px) {
  .psiko-gallery {
    margin-top: 1rem;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.about-content {
  order: 1;
}

.about-image-wrap {
  order: 2;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.about-image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border-soft);
  background: var(--card-bg);
}

.about-image-card img {
  width: 100%;
  height: auto;
}

.about-text,
.about-mission {
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.about-mission {
  padding-left: 1rem;
  border-left: 3px solid #111111;
  color: var(--text-muted);
}

.about-content .btn {
  margin-top: 0.5rem;
}

/* ----- Psikoteknik (glassmorphism bilgi kartları) ----- */
.section-psikoteknik {
  background: linear-gradient(165deg, #eef2f7 0%, #f2f5f9 45%, #e8ecf2 100%);
  position: relative;
}

.psiko-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.psiko-text {
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.psiko-content .btn {
  margin-top: 0.5rem;
}

.psiko-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Bilgi kartı – premium dark (antrasit), beyaz/siyah tema */
.info-card {
  position: relative;
  background: #161616;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

/* Hafif arka plan dokusu (subtle grid) */
.info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border-color: rgba(255, 255, 255, 0.12);
}

/* İkon kutusu – odak noktası, beyaz/soft gri */
.info-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.info-card-icon svg {
  width: 24px;
  height: 24px;
}

.info-card:hover .info-card-icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.info-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
  position: relative;
}

.info-card p {
  font-size: 0.9rem;
  color: #cfcfcf;
  margin: 0;
  line-height: 1.65;
  position: relative;
}

/* Scroll reveal – kartlar fade-up staggered (~0.3s) */
.psiko-grid.reveal .psiko-cards .info-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease, border-color 0.3s ease;
}

.psiko-grid.revealed .psiko-cards .info-card {
  opacity: 1;
  transform: translateY(0);
}

.psiko-grid.revealed .psiko-cards .info-card:nth-child(1) { transition-delay: 0.05s; }
.psiko-grid.revealed .psiko-cards .info-card:nth-child(2) { transition-delay: 0.12s; }
.psiko-grid.revealed .psiko-cards .info-card:nth-child(3) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .info-card,
  .info-card-icon { transition: none; }
  .psiko-grid.reveal .psiko-cards .info-card,
  .psiko-grid.revealed .psiko-cards .info-card { transition: none; }
  .psiko-grid.reveal .psiko-cards .info-card { opacity: 1; transform: none; }
}

/* ----- Services ----- */
.section-services {
  background: var(--bg-secondary);
  position: relative;
}

.section-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.6) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.section-services .section-inner {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--card-border-soft);
  border-top: 3px solid var(--blue);
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

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

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-accent);
  border-radius: 12px;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ----- CTA banner ----- */
.section-cta {
  padding: 0;
  background: #0a0a0a;
}

.cta-banner {
  background: linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Ticker: kesintisiz sonsuz kayan metin */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.ticker-track {
  display: inline-flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  padding: 0.75rem 0;
  animation: ticker-scroll 35s linear infinite;
  will-change: transform;
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 1.25rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.ticker-item {
  white-space: nowrap;
}

.ticker-dot {
  color: rgba(212, 212, 212, 0.5);
  font-weight: 700;
  font-size: 0.5rem;
  vertical-align: middle;
  flex-shrink: 0;
}

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

.cta-banner-inner {
  padding: 2rem 1.5rem;
  background: transparent;
}

.cta-text {
  position: relative;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.cta-phone {
  position: relative;
  display: inline-block;
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin: 0;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.cta-phone:hover {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
}

/* ----- Form ----- */
.section-form {
  background: var(--bg-section);
  position: relative;
}

.contact-form {
  max-width: 560px;
  margin: 0 auto;
}

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

.form-group {
  display: block;
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--text);
  background: var(--card-bg);
  border: 1px solid var(--card-border-soft);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06);
}

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

.contact-form .btn {
  margin-top: 0.25rem;
}

/* ----- Google Yorumları (koyu tema, kart yapısı) ----- */
.section-reviews {
  background: #1a1a1a;
  color: #fff;
}

.section-title-light {
  color: #ffffff;
}

.section-subtitle {
  margin: -0.5rem 0 2rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.7);
}

.reviews-scroll-wrap {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
}

.reviews-scroll-wrap::-webkit-scrollbar {
  height: 6px;
}

.reviews-scroll-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.reviews-scroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.reviews-grid {
  display: flex;
  gap: 1.25rem;
  flex-wrap: nowrap;
  padding: 0 0.25rem;
  min-width: min-content;
}

.review-card {
  margin: 0;
  flex: 0 0 min(320px, 100%);
  min-width: 280px;
  max-width: 320px;
}

.review-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  background: #252525;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  text-decoration: none;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.review-card-inner:hover {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.12);
}

.review-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
  color: #f5a623;
  font-size: 1.1rem;
  line-height: 1;
}

.review-star {
  color: #f5a623;
  font-size: 1.1rem;
  line-height: 1;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 1.25rem;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a3a3a 0%, #2d2d2d 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.review-avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.review-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
}

.review-author-title {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.review-google-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-top: auto;
}

.review-card-inner:hover .review-google-link {
  color: #fff;
  text-decoration: underline;
}

.reviews-scroll-dot {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

@media (min-width: 900px) {
  .reviews-scroll-dot {
    display: none;
  }

  .reviews-scroll-wrap {
    overflow: visible;
    padding-bottom: 0;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-wrap: wrap;
    padding: 0;
    min-width: 0;
  }

  .review-card {
    flex: none;
    min-width: 0;
    max-width: none;
  }
}

@media (max-width: 899px) {
  .reviews-grid {
    padding-right: 2rem;
  }
}

/* ----- Map ----- */
.section-map {
  background: var(--bg-section-alt);
  position: relative;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--card-border-soft);
  margin-bottom: 1rem;
}

.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-secondary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.map-link:hover {
  background: var(--bg);
  border-color: rgba(0, 0, 0, 0.12);
}

.map-address {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  margin-top: 1rem;
}

.map-address a {
  color: inherit;
  text-decoration: none;
}

.map-address a:hover {
  text-decoration: underline;
}

/* ----- Footer ----- */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border-neutral);
  padding: 2.5rem 0 2rem;
}

.footer-inner {
  text-align: center;
}

.footer-brand strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.footer-address,
.footer-phone {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.25rem;
}

.footer-address a {
  color: inherit;
  text-decoration: none;
}

.footer-address a:hover {
  text-decoration: underline;
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin: 1.25rem 0;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 1rem 0 0;
}

/* ----- Floating Action Menu (FAM): sağ alt köşede sabit, "Bizimle iletişime geç" FAB yanında ----- */
.fam-viewport {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

.fam-wrap {
  pointer-events: auto;
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  left: auto;
  font-family: var(--font);
  cursor: pointer;
}

.fam {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.fam-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.fam-label {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  background: var(--card-bg);
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s ease;
  pointer-events: none;
}

.fam-wrap:hover .fam-label {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.fam-items {
  display: flex;
  flex-direction: column-reverse;
  align-self: flex-end;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.fam.is-open .fam-items {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Stagger: alttan yukarı (DOM sırası: Instagram, Phone, WhatsApp → görselde en altta WhatsApp) */
.fam.is-open .fam-item-whatsapp { transition-delay: 0.05s; }
.fam.is-open .fam-item-phone    { transition-delay: 0.12s; }
.fam.is-open .fam-item-instagram { transition-delay: 0.19s; }

.fam-item {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.fam.is-open .fam-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fam-item:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.22);
}

.fam-item:active {
  transform: scale(0.96);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.fam-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.fam-item-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.fam-item-phone {
  background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
}

.fam-item-whatsapp {
  background: #25d366;
}

/* Toggle: tek ana buton */
.fam-toggle {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #1a1a1a;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s ease;
  position: relative;
}

.fam-toggle:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.fam-toggle:active {
  transform: scale(0.97);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.fam-toggle-burger {
  position: relative;
  width: 20px;
  height: 26px;
}

.fam-toggle-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: absolute;
  left: 0;
  margin-left: 0;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.fam-toggle-burger span:nth-child(1) { top: 6px; }
.fam-toggle-burger span:nth-child(2) { top: 50%; margin-top: -1px; }
.fam-toggle-burger span:nth-child(3) { bottom: 6px; }

.fam.is-open .fam-toggle-burger span:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(45deg);
}

.fam.is-open .fam-toggle-burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.fam.is-open .fam-toggle-burger span:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  transform: rotate(-45deg);
}

/* ----- Scroll reveal (initial state) ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.hero-title.reveal { transition-delay: 0.1s; }
.hero-subtitle.reveal { transition-delay: 0.2s; }
.hero-cta.reveal { transition-delay: 0.35s; }
.hero-visual.reveal { transition-delay: 0.2s; }

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .hero-content {
    max-width: 100%;
  }

  .about-grid,
  .psiko-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content {
    text-align: center;
  }

  .psiko-content {
    text-align: center;
  }

  .psiko-content .btn {
    margin-left: auto;
    margin-right: auto;
  }

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

  .section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .navbar-inner {
    padding: 0 1rem;
  }

  .nav-logo {
    width: 40px;
    height: 40px;
  }

  .nav-company {
    font-size: 0.8rem;
  }

  .nav-company small {
    font-size: 0.65rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.25rem 1.5rem;
    gap: 0;
    border-left: 1px solid var(--border-neutral);
    box-shadow: -4px 0 24px var(--shadow-neutral);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-neutral);
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-cta {
    margin: 1rem 0 0;
    margin-left: 0;
    min-height: 48px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 5rem 1rem 3rem;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-video-wrap {
    position: absolute;
    inset: 0;
  }

  .hero-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .hero-inner {
    gap: 2rem;
    padding: 0 0.5rem;
  }

  .hero-content {
    padding: 1.25rem 0.5rem;
    max-width: 100%;
  }

  .hero-logo-wrap {
    margin-bottom: 0.75rem;
  }

  .hero-logo {
    width: 80px;
    max-height: 80px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 44px;
    padding: 0.6rem 1.25rem;
    font-size: 0.82rem;
  }

  .hero-phone {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .hero-image-card {
    max-width: 100%;
  }

  .section {
    padding: 3rem 0;
  }

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

  .section-title.text-center {
    margin-bottom: 1.5rem;
  }

  .about-mission {
    padding-left: 0.75rem;
  }

  .service-card {
    padding: 1.75rem 1.25rem;
  }

  .services-grid {
    gap: 1.25rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .info-card {
    padding: 1.5rem 1.25rem;
  }

  .psiko-cards {
    gap: 1.25rem;
  }

  .info-card h3 {
    font-size: 0.95rem;
  }

  .cta-banner {
    padding: 1.75rem 1rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-phone {
    font-size: 1.35rem;
    display: block;
    margin-top: 0.25rem;
  }

  .contact-form {
    margin: 0 auto;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-input,
  .form-textarea {
    min-height: 48px;
    padding: 0.875rem 1rem;
    font-size: 16px;
  }

  .form-textarea {
    min-height: 120px;
  }

  .contact-form .btn {
    min-height: 52px;
    padding: 1rem;
  }

  .map-wrap {
    border-radius: 10px;
    margin-bottom: 1rem;
  }

  .map-wrap iframe {
    height: 280px;
    border-radius: 10px;
  }

  .map-address {
    font-size: 0.85rem;
    margin-top: 0.5rem;
  }

  .psiko-bottom-image {
    margin-top: 2rem;
    border-radius: var(--radius);
  }

  .about-grid {
    gap: 2rem;
  }

  .about-image-card {
    margin-top: 0.5rem;
  }

  .footer {
    padding: 2.5rem 1.25rem calc(2rem + 60px + env(safe-area-inset-bottom));
  }

  .footer-inner {
    padding: 0;
    max-width: 100%;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }

  .footer-brand strong {
    font-size: 0.95rem;
    line-height: 1.4;
    display: block;
    margin-bottom: 0.5rem;
  }

  .footer-address,
  .footer-phone {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.35rem;
  }

  .footer-nav {
    gap: 0.6rem 1.25rem;
    margin: 1.25rem 0;
    line-height: 1.5;
  }

  .footer-nav a {
    font-size: 0.85rem;
  }

  .fam-wrap {
    right: 1rem;
    bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .fam-label {
    font-size: 0.85rem;
    padding: 0.45rem 0.65rem;
  }

  .fam-item {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }

  .fam-toggle {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
  }
  }

@media (max-width: 480px) {
  .hero {
    padding: 5rem 1rem 2.5rem;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-content {
    padding: 1rem 0.25rem;
  }

  .hero-title {
    font-size: 1.35rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section {
    padding: 2rem 0;
  }

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

  .cta-phone {
    font-size: 1.2rem;
  }

  .navbar-inner {
    padding: 0 0.75rem;
  }

  .nav-company {
    font-size: 0.72rem;
  }

  .nav-company small {
    font-size: 0.6rem;
  }

  .container {
    padding: 0 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
