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

:root {
  --navy:        #1E4282;
  --navy-dark:   #152E62;
  --navy-light:  #2A529A;
  --gold:        #D4A843;
  --gold-dark:   #B08930;
  --white:       #FFFFFF;
  --bg:          #0C1A2B;
  --bg-alt:      #101E2E;
  --text:        #C6D6EC;
  --text-muted:  #7898BA;
  --border:      #1B3252;
  --card-bg:     #122035;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 10px rgba(0,0,0,0.25);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.35);
  --shadow-lg:   0 16px 52px rgba(0,0,0,0.45);
  --transition:  0.25s ease;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --nav-h:       84px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 600; }

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

/* ==========================================
   CONTAINER
   ========================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: #0C1A2B;
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,168,67,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn--nav {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
  padding: 8px 18px;
  font-size: 0.875rem;
}
.btn--nav:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn--lg { padding: 14px 30px; font-size: 1rem; }
.btn--xl { padding: 18px 40px; font-size: 1.05rem; border-radius: 10px; }

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

/* ==========================================
   SECTION COMMON
   ========================================== */
.section {
  padding: 88px 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section__eyebrow {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section__title {
  margin-bottom: 12px;
  color: var(--text);
}

.section__desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 22, 38, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Sol grup: logo + AI butonu yan yana */
.navbar__left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex-shrink: 1;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.1;
  min-width: 0;
  flex-shrink: 1;
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.navbar__brand-text span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar__brand small {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}

.navbar__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

/* AI butonu — navbar içi */
.navbar__ai-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 40px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 1px solid rgba(139,92,246,0.5);
  color: var(--white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(139,92,246,0.25);
  transition: border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  animation: aiGlow 3s ease-in-out infinite;
}

.navbar__ai-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%, rgba(139,92,246,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: aiShimmer 3s ease-in-out infinite;
}

.navbar__ai-btn:hover {
  border-color: rgba(139,92,246,0.9);
  box-shadow: 0 4px 24px rgba(139,92,246,0.4);
  transform: translateY(-1px);
}

.navbar__ai-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 5px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.navbar__ai-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.navbar__ai-label {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(139,92,246,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.navbar__ai-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.brand-accent { color: var(--gold); }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.navbar__links a:not(.btn):hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.navbar__links a.active {
  color: var(--gold) !important;
}

/* Sosyal medya ikonları — navbar */
.navbar__social-group {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 6px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.navbar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition), background var(--transition);
  padding: 0;
}

.navbar__social-link svg {
  width: 22px;
  height: 22px;
}

.navbar__social-link:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.navbar__mobile-social {
  display: none;
  align-items: center;
  gap: 6px;
}

.navbar__mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, background 0.2s;
}

.navbar__mobile-social a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.08);
}

.navbar__mobile-social svg {
  width: 20px;
  height: 20px;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, #0A1520 0%, #152E62 50%, #1E4282 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212,168,67,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(30,66,130,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero__text h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero__desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__desc strong { color: var(--gold); font-weight: 600; }

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__image {
  display: flex;
  justify-content: flex-end;
}

.hero__img-wrapper {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(212,168,67,0.25);
  aspect-ratio: 4/5;
  background: #152E62;
}

.hero__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scroll-hint {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.hero__scroll-hint span {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  border-radius: 2px;
  animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6) translateY(-4px); }
  50% { opacity: 0.7; transform: scaleY(1) translateY(4px); }
}

/* ==========================================
   STATS
   ========================================== */
.stats {
  background: var(--bg-alt);
  padding: 0;
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.stat-card:last-child { border-right: none; }

.stat-card:hover { background: rgba(255,255,255,0.03); }

.stat-card__num {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-card__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ==========================================
   HAKKIMDA
   ========================================== */
.hakkimda {
  background: var(--bg-alt);
}

.hakkimda__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  aspect-ratio: 3/4;
  background: var(--card-bg);
  position: relative;
}

.img-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%);
  z-index: -1;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hakkimda__text .section__eyebrow { text-align: left; }

.hakkimda__text h2 {
  color: var(--text);
  margin-bottom: 4px;
}

.hakkimda__subtitle {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.hakkimda__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

.check-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.check-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='3,8 6,11 13,5' stroke='%23D4A843' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

/* ==========================================
   HİZMETLER
   ========================================== */
.hizmetler {
  background: var(--bg);
}

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

.hizmet-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hizmet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-light);
}

/* ——— FEATURED KART ——— */
.hizmet-card--featured {
  background: var(--navy);
  border: 2px solid var(--gold);
  transform: scale(1.03);
}

.hizmet-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 16px 48px rgba(212,168,67,0.18);
}

/* Önemli: genel .hizmet-card h3 ve p kuralları aşağıda geldiği için
   featured override'ları daha yüksek specificity ile yazıyoruz */
.hizmet-card--featured h3,
.hizmetler__grid .hizmet-card--featured h3 {
  color: #FFFFFF !important;
}

.hizmet-card--featured p,
.hizmetler__grid .hizmet-card--featured p {
  color: rgba(255,255,255,0.75) !important;
}

.hizmet-card--featured .btn--primary {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}
.hizmet-card--featured .btn--primary:hover {
  background: var(--text);
  border-color: var(--text);
}
/* ——————————————————————— */

.hizmet-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0C1A2B;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.hizmet-card__icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
}

.hizmet-card__icon svg {
  width: 100%;
  height: 100%;
}

.hizmet-card h3 {
  color: var(--text);
  font-size: 1.15rem;
}

.hizmet-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  flex: 1;
}

.hizmet-card .btn { align-self: flex-start; margin-top: 4px; }

/* ==========================================
   NEDEN
   ========================================== */
.neden {
  background: var(--bg-alt);
}

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

.neden-item {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.neden-item:hover {
  border-color: var(--navy-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.neden-item__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 14px;
}

.neden-item__icon svg { width: 100%; height: 100%; }

.neden-item h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.neden-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================
   BAŞARILAR & YORUMLAR
   ========================================== */
.basarilar {
  background: var(--bg);
}

/* ==========================================
   BAŞARI SLİDER
   ========================================== */
.basari-slider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

/* Ok butonları */
.slider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  z-index: 2;
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.08);
}

.slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* Görsel alanı */
.slider-viewport {
  flex: 1;
  overflow: hidden;
  /* height, border, borderRadius → JS tarafından her geçişte dinamik set edilir */
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Tek bir slayt öğesi */
.slider-item {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card-bg);
}

.slider-item img {
  /* Genişlik her zaman %100, yükseklik fotoğrafın oranına göre otomatik */
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.slider-item figcaption {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  background: var(--card-bg);
}

/* Nokta göstergesi */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Mobil */
@media (max-width: 560px) {
  .slider-btn {
    width: 38px;
    height: 38px;
  }
  .slider-btn svg {
    width: 16px;
    height: 16px;
  }
  .basari-slider {
    gap: 10px;
  }
}

.yorumlar__header {
  text-align: center;
  margin-bottom: 32px;
}

.yorumlar__header h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--text);
}

.yorumlar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.yorum-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.yorum-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-light);
}

.yorum-card__stars {
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.yorum-card__text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.yorum-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.yorum-card__author strong {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

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

.google-yorumlar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.google-yorumlar p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.google-yorumlar .btn--ghost {
  color: var(--text);
  border-color: var(--border);
}

.google-yorumlar .btn--ghost:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ==========================================
   İLETİŞİM
   ========================================== */
.iletisim {
  background: linear-gradient(135deg, #0A1520 0%, #152E62 100%);
  position: relative;
  overflow: hidden;
}

.iletisim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(212,168,67,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.iletisim .section__eyebrow { color: var(--gold); }

.iletisim .section__title { color: var(--white); }

.iletisim .section__desc { color: rgba(255,255,255,0.6); }

.iletisim__inner {
  position: relative;
  z-index: 1;
}

.iletisim__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.iletisim__info {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.iletisim__tel-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}

.iletisim__tel-num {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}

.iletisim__tel-num:hover { color: var(--gold); }

.iletisim__bolgeler p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

/* Sosyal medya — iletişim bölümü */
.iletisim__social {
  text-align: center;
}

.iletisim__social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.iletisim__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition);
}

.iletisim__social-link:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.wp-main-btn { font-size: 1.05rem; }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: #070F1A;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.footer p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
}

.footer__seo {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.15) !important;
}

.footer__credit {
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.25) !important;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__github {
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.footer__github:hover {
  color: rgba(255,255,255,0.6);
}

/* ==========================================
   WhatsApp SABIT BUTON
   ========================================== */
/* Gmail sabit buton */
.gmail-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #EA4335;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(234,67,53,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gmail-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.gmail-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(234,67,53,0.5);
}

.gmail-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #EA4335;
  animation: gmailPulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes gmailPulse {
  0%   { transform: scale(1); opacity: 0.5; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

.gmail-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(6px);
}

.gmail-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--border);
}

.gmail-float:hover .gmail-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

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

.wp-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateX(6px);
}

.wp-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--border);
}

.wp-float:hover .wp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.wp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wpPulse 2.5s ease-out infinite;
  z-index: -1;
}

@keyframes wpPulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ==========================================
   YAPAY ZEKA SABİT BUTON (SOL ALT)
   ========================================== */
.ai-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 1px solid rgba(139,92,246,0.5);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(139,92,246,0.3);
  transition: transform var(--transition), box-shadow var(--transition),
              border-color var(--transition);
  animation: aiGlow 3s ease-in-out infinite;
  overflow: hidden;
}

.ai-float::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%, rgba(139,92,246,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: aiShimmer 3s ease-in-out infinite;
}

.ai-float__logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.ai-float__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.ai-float__label {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(139,92,246,0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ai-float__title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.ai-float:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(139,92,246,0.9);
  box-shadow: 0 8px 32px rgba(139,92,246,0.45);
}

@media (max-width: 560px) {
  .ai-float {
    bottom: 100px;
    left: 16px;
    padding: 10px 14px;
  }
  .ai-float__title { font-size: 0.75rem; }
}

@keyframes aiGlow {
  0%, 100% { box-shadow: 0 2px 16px rgba(139,92,246,0.25), 0 0 0 0 rgba(139,92,246,0.3); }
  50%       { box-shadow: 0 4px 28px rgba(139,92,246,0.5), 0 0 0 5px rgba(139,92,246,0.06); }
}

@keyframes aiShimmer {
  0%        { transform: translateX(-100%); }
  50%, 100% { transform: translateX(200%); }
}


/* ==========================================
   SCROLL REVEAL
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ==========================================
   RESPONSIVE — TABLET (≤ 900px)
   ========================================== */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__desc { margin: 0 auto 36px; }

  .hero__cta { justify-content: center; }

  .hero__image { order: -1; }

  .hero__img-wrapper { max-width: 320px; }

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

  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-card:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .hakkimda__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hakkimda__text .section__eyebrow { text-align: center; }

  .check-list li { justify-content: center; }

  .img-frame { max-width: 360px; margin: 0 auto; }

  .hizmetler__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .hizmet-card--featured { transform: none; }
  .hizmet-card--featured:hover { transform: translateY(-6px); }

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

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

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

  .iletisim__info { flex-direction: column; gap: 28px; }

  .navbar__hamburger { display: flex; }

  .navbar__ai-btn { display: none; }

  .navbar__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #0A1520;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
  }

  .navbar__links.open {
    transform: translateY(0);
  }

  .navbar__links a:not(.btn) {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .navbar__links .btn--nav {
    margin-top: 8px;
    justify-content: center;
  }

  .navbar__social-group {
    flex-direction: row;
    justify-content: center;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 12px;
    margin-top: 4px;
  }
}

/* ==========================================
   RESPONSIVE — MOBILE (≤ 560px)
   ========================================== */
@media (max-width: 560px) {
  .navbar__hamburger { display: none !important; }
  .navbar__inner > nav { display: none !important; }
  .navbar__mobile-social { display: flex !important; }
  .navbar__left {
    flex-shrink: 0 !important;
    min-width: auto !important;
  }
  .navbar__logo { width: 34px; height: 34px; }
  .navbar__brand {
    font-size: 0.95rem;
    gap: 7px;
    flex-shrink: 0 !important;
    min-width: auto !important;
  }
  .navbar__brand-text {
    min-width: auto !important;
  }
  .navbar__brand-text span {
    overflow: visible !important;
  }
  .navbar__brand small { font-size: 0.6rem; }

  .section { padding: 64px 0; }

  /* Hero: metni üstte göster, görseli alta al */
  .hero {
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 48px;
  }

  .hero__text  { order: -1; }
  .hero__image { order: 1; justify-content: center; }

  .hero__img-wrapper { max-width: 220px; }

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

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

  .hero__cta { flex-direction: column; align-items: center; }

  .btn--lg { width: 100%; justify-content: center; max-width: 320px; }

  .wp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }

  .wp-float svg { width: 28px; height: 28px; }

  .iletisim__tel-num { font-size: 1.6rem; }
}
