/* ═══════════════════════════════════════════════════
   Dizayn Elektronik — Ana CSS Dosyası (Profesyonel)
   ═══════════════════════════════════════════════════ */

/* Google Fonts artık HTML <head>'de async (media="print" onload) olarak yükleniyor — bkz. her sayfanın <head> kısmı. @import burada render-blocking olduğu için kaldırıldı. */

:root {
  /* Koyu lacivert / kurumsal arka plan */
  --navy:        #0D1B2A;
  --navy-mid:    #142233;
  --navy-card:   #1A2B3D;

  /* Ana aksan: derin safir mavi — parlak değil, kurumsal */
  --blue:        #1A56DB;
  --blue-light:  #3B82F6;
  --blue-dim:    rgba(26,86,219,0.10);

  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --text:        #1E293B;
  --muted:       #64748B;
  --border:      #E2E8F0;
  --radius:      10px;
  --radius-lg:   16px;
  --transition:  0.22s ease;

  /* Instagram gradient */
  --ig-grad: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; width: 100%; max-width: 100%; }
body { font-family: 'Inter', sans-serif; background: var(--off-white); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; max-width: 100%; position: relative; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; }

.section-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 14px; }
.section-head p { color: var(--muted); max-width: 520px; margin: 0 auto; font-size: 0.97rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-wrap { padding: 88px 28px; max-width: 1200px; margin: 0 auto; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 999; background: rgba(13,27,42,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); transition: box-shadow var(--transition); }
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.3); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo { font-family: 'Syne', sans-serif; font-size: 1.55rem; font-weight: 800; color: var(--white); letter-spacing: -0.5px; white-space: nowrap; }
.logo em { color: var(--blue-light); font-style: normal; }
.logo sup { font-size: 0.5rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.08em; color: #93C5FD; vertical-align: super; margin-left: 2px; }
.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav a { color: #94A3B8; font-size: 0.88rem; font-weight: 500; letter-spacing: 0.01em; transition: color var(--transition); position: relative; }
.site-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--blue-light); border-radius: 2px; transform: scaleX(0); transition: transform var(--transition); }
.site-nav a:hover, .site-nav a.active { color: var(--white); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.nav-phone { display: flex; align-items: center; gap: 8px; background: var(--blue); color: var(--white) !important; padding: 10px 20px; border-radius: 6px; font-size: 0.85rem !important; font-weight: 600 !important; transition: background var(--transition) !important; }
.nav-phone::after { display: none !important; }
.nav-phone:hover { background: #1347BF !important; transform: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.06); gap: 4px; }
.mobile-nav a { color: #94A3B8; font-size: 0.95rem; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color var(--transition); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--white); }
.mobile-nav .mob-phone { margin-top: 12px; background: var(--blue); color: white !important; text-align: center; padding: 12px; border-radius: var(--radius); font-weight: 600 !important; border-bottom: none !important; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 28px; border-radius: 6px; font-weight: 600; font-size: 0.93rem; cursor: pointer; border: none; transition: all var(--transition); }
.btn-primary { background: var(--blue); color: white; }
.btn-primary:hover { background: #1347BF; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,219,0.3); }
.btn-ghost { background: rgba(255,255,255,0.10); color: white; border: 1px solid rgba(255,255,255,0.18); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: white; }

/* BTN INSTAGRAM */
.btn-instagram { background: var(--ig-grad); color: white !important; border: none; }
.btn-instagram:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(131,58,180,0.35); }
.blog-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.blog-cta p { width: 100%; margin: 0 0 4px 0; }
@media (max-width: 600px) { .blog-cta .btn { width: 100%; justify-content: center; } }

/* PAGE HERO */
.page-hero { background: var(--navy); position: relative; overflow: hidden; padding: 72px 28px 68px; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(26,86,219,0.12) 0%, transparent 70%); pointer-events: none; }
.page-hero-grid { 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: 44px 44px; pointer-events: none; }
.page-hero-inner { position: relative; max-width: 700px; margin: 0 auto; }
.breadcrumb { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #64748B; margin-bottom: 18px; }
.breadcrumb a { color: #93C5FD; }
.page-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 14px; }
.page-hero h1 em { color: var(--blue-light); font-style: normal; }
.page-hero p { color: #94A3B8; font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* TRUST STRIP */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-strip-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 22px 20px; border-right: 1px solid var(--border); transition: background var(--transition); }
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--off-white); }
.trust-icon { width: 44px; height: 44px; border-radius: 8px; background: var(--blue-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon i { font-size: 1.1rem; color: var(--blue); }
.trust-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.trust-text span { font-size: 0.76rem; color: var(--muted); }

/* STATS BAR */
.stats-bar { background: var(--navy); position: relative; overflow: hidden; }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 64px 28px; display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.stat-item { text-align: center; padding: 16px; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2.8rem; font-weight: 800; color: #93C5FD; line-height: 1; margin-bottom: 10px; }
.stat-label { color: #94A3B8; font-size: 0.88rem; font-weight: 500; }

/* CTA BAND */
.cta-band { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 60px 28px; text-align: center; position: relative; overflow: hidden; }
.cta-band-inner { position: relative; max-width: 680px; margin: 0 auto; }
.cta-band h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.7rem,3vw,2.3rem); font-weight: 800; color: white; margin-bottom: 14px; }
.cta-band p { color: #94A3B8; margin-bottom: 32px; }
.cta-band-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* FOOTER */
.site-footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 60px 28px 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 14px; display: inline-block; }
.footer-brand p { color: #64748B; font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 6px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #94A3B8; font-size: 0.95rem; transition: all var(--transition); }
.footer-socials a:hover { background: var(--blue); border-color: var(--blue); color: white; }
.footer-socials a.ig-link:hover { background: var(--ig-grad); border-color: transparent; color: white; }
.footer-col h2 { font-family: 'Syne', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #94A3B8; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: #64748B; font-size: 0.88rem; transition: color var(--transition); display: flex; align-items: center; gap: 7px; }
.footer-col ul li a:hover { color: #93C5FD; }
.footer-col ul li a i { font-size: 0.75rem; color: var(--blue); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; color: #64748B; font-size: 0.88rem; margin-bottom: 12px; }
.footer-contact-item i { color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: #64748B; transition: color var(--transition); }
.footer-contact-item a:hover { color: #93C5FD; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 18px 28px; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-bottom p { color: #94A3B8; font-size: 0.82rem; }
.footer-bottom a { color: var(--blue-light); }

/* WHATSAPP FLOAT */
.wa-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.6rem; z-index: 900; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform var(--transition), box-shadow var(--transition); }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }
.wa-float::before { content: ''; position: absolute; inset: -5px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.4); animation: pulse-ring 2s infinite; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; color: white; font-size: 2rem; cursor: pointer; background: none; border: none; opacity: 0.7; transition: opacity var(--transition); line-height: 1; }
.lightbox-close:hover { opacity: 1; }

/* ANIMATIONS */
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.5s ease both; }

.bg-white { background: var(--white); }
.bg-navy  { background: var(--navy); }
.bg-off   { background: var(--off-white); }

/* ══════════════════════════
   INSTAGRAM SECTION
   ══════════════════════════ */
.instagram-hero-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 580px;
  margin: 40px auto 0;
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
}
.instagram-hero-block:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.ig-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--ig-grad); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ig-avatar i { color: white; font-size: 2rem; }
.ig-info { flex: 1; }
.ig-handle { display: block; font-weight: 700; font-size: 1rem; color: var(--text); margin-bottom: 4px; }
.ig-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.ig-cta-badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 0.78rem; font-weight: 700; padding: 5px 12px; border-radius: 50px; background: var(--ig-grad); color: white; }

/* Ana sayfadaki büyük Instagram bölümü */
.instagram-section { background: var(--off-white); }
.instagram-showcase { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.ig-left {}
.ig-left .section-label { color: #833AB4; }
.ig-left h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.7rem,3vw,2.2rem); font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 12px; }
.ig-left p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }
.ig-profile-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 20px; }
.ig-profile-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--ig-grad); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ig-profile-avatar i { color: white; font-size: 1.5rem; }
.ig-profile-info strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); }
.ig-profile-info span { font-size: 0.82rem; color: var(--muted); }
.ig-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.ig-feature { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--muted); }
.ig-feature i { width: 28px; height: 28px; background: rgba(131,58,180,0.10); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #833AB4; font-size: 0.8rem; flex-shrink: 0; }

.ig-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.ig-thumb { border-radius: 8px; overflow: hidden; aspect-ratio: 1; position: relative; background: var(--navy-card); cursor: pointer; }
.ig-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.ig-thumb::after { content: '\f16d'; font-family: 'Font Awesome 6 Brands'; position: absolute; inset: 0; background: rgba(131,58,180,0.6); color: white; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.ig-thumb:hover::after { opacity: 1; }
.ig-thumb:hover img { transform: scale(1.06); }
.ig-thumb-placeholder { background: linear-gradient(135deg, #1A2B3D, #142233); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.15); font-size: 1.8rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 30px; }
  .trust-strip-inner { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--border); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .instagram-showcase { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .section-wrap { padding: 60px 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .instagram-hero-block { flex-direction: column; text-align: center; }
}

/* Mobil iyileştirmeler */
@media (max-width: 480px) {
  html { font-size: 15px; }
  .section-wrap { padding: 48px 16px; }
  .hero { padding: 80px 16px 72px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero h1 { font-size: 2rem; letter-spacing: -1px; }
  .hero-sub { font-size: 0.93rem; }
  .hero-badges { gap: 10px; }
  .hero-badge { font-size: 0.76rem; padding: 7px 14px; }
  .header-inner { padding: 0 16px; height: 64px; }
  .logo { font-size: 1.2rem; }
  .mobile-nav a { padding: 14px 0; }
  .mobile-nav { padding: 12px 20px 20px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-num { font-size: 2.2rem; }
  .footer-main { padding: 40px 16px 28px; }
  .footer-bottom { padding: 14px 16px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
  .ig-grid { grid-template-columns: repeat(3,1fr); gap: 6px; }
}

/* ══════════════════════════
   REELS KAYDIRMA ŞERİDİ
   ══════════════════════════ */

/* Showcase layout: sol bilgi, sağ reels — tam genişlik */
.instagram-showcase {
  display: grid;
  /* Tüm sayfanın kaymasını engelleyen kritik kod: minmax(0, 1fr) */
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 52px;
  align-items: flex-start;
}

.ig-right {
  min-width: 0; /* Flex çocuklarının ızgarayı patlatmasını önler */
  width: 100%;
}

.reels-scroll-wrap {
  width: 100%;
}

.reels-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 24px; /* Scrollbar ve gölge için boşluk */
  
  /* Scrollbar ince ve şık */
  scrollbar-width: thin;
  scrollbar-color: rgba(26,86,219,0.5) rgba(0,0,0,0.05);
}

/* Şık Kaydırma Çubuğu (Webkit Tarayıcılar İçin) */
.reels-strip::-webkit-scrollbar { height: 8px; }
.reels-strip::-webkit-scrollbar-track { background: rgba(0,0,0,0.04); border-radius: 10px; }
.reels-strip::-webkit-scrollbar-thumb { background: rgba(26,86,219,0.3); border-radius: 10px; }
.reels-strip::-webkit-scrollbar-thumb:hover { background: rgba(26,86,219,0.6); }

.reel-item {
  flex: 0 0 320px; /* Videolar için ideal genişlik */
  scroll-snap-align: start;
  border-radius: 12px;
}

/* Tıklanana kadar yüklenmeyen Instagram önizleme kartı (lazy-load) */
.reel-preview {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  padding: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.reel-preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(18px) brightness(0.7) saturate(1.1);
  transform: scale(1.15); /* blur kenar boşluğunu gizler */
}
.reel-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
}
.reel-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ig-grad, linear-gradient(45deg,#833AB4,#FD1D1D,#FCAF45));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.2s ease;
}
.reel-preview:hover .reel-play-icon,
.reel-preview:focus-visible .reel-play-icon {
  transform: translate(-50%, -50%) scale(1.08);
}
.reel-preview-label {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.reel-preview:focus-visible {
  outline: 3px solid var(--blue-light, #1a56db);
  outline-offset: 3px;
}
/* Embed yüklendikten sonra Instagram'ın kendi stillerini eziyoruz */
.reel-item .instagram-media {
  min-width: unset !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
}
.reel-item .reel-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background: #f3f4f6;
  color: var(--muted);
  font-size: 0.85rem;
}

.reels-hint {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.reels-hint i { margin-right: 4px; color: var(--blue-light); }
.reels-hint a { color: #833AB4; font-weight: 600; transition: color 0.2s; }
.reels-hint a:hover { color: #FD1D1D; text-decoration: none; }

/* Mobil Uyum (Responsive) Ayarları */
@media (max-width: 1024px) {
  .instagram-showcase { grid-template-columns: 1fr; gap: 32px; }
  .reel-item { flex: 0 0 300px; }
}
@media (max-width: 480px) {
  .reel-item { flex: 0 0 280px; }
  .reels-strip { gap: 12px; padding-bottom: 16px; }
}


/* ═══════════════════════════════════════════════════
   ANASAYFA (index.html) SAYFASINA ÖZEL STİLLER
   Not: Önceden index.html içinde <style> bloğu olarak
   duruyordu; ayrı dosya yapısı için buraya taşındı.
   ═══════════════════════════════════════════════════ */
    /* HERO */
    .hero { background: var(--navy); position: relative; overflow: hidden; padding: 100px 28px 90px; text-align: center; }
    .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% -10%, rgba(26,86,219,0.14) 0%, transparent 70%); pointer-events: none; }
    .hero-grid { position: absolute; inset: 0; 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: 44px 44px; pointer-events: none; }
    .hero-inner { position: relative; max-width: 820px; margin: 0 auto; }
    .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(26,86,219,0.12); border: 1px solid rgba(26,86,219,0.25); color: #93C5FD; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 16px; border-radius: 4px; margin-bottom: 28px; }
    .hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: #3B82F6; border-radius: 50%; animation: blink 1.8s infinite; }
    .hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -1px; margin-bottom: 22px; }
    .hero h1 em { color: #93C5FD; font-style: normal; }
    .hero-sub { color: #94A3B8; font-size: 1.05rem; max-width: 600px; margin: 0 auto 40px; }
    .hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
    .hero-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 48px; }
    .hero-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); color: #CBD5E1; font-size: 0.82rem; font-weight: 500; padding: 8px 16px; border-radius: 4px; }
    .hero-badge i { color: #93C5FD; }
    /* Hero Instagram CTA */
    .hero-ig-strip { display: inline-flex; align-items: center; gap: 12px; margin-top: 36px; padding: 14px 22px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: 8px; color: white; text-decoration: none; transition: background 0.2s, transform 0.2s; }
    .hero-ig-strip:hover { background: rgba(255,255,255,0.10); transform: translateY(-2px); }
    .hero-ig-icon { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .hero-ig-icon i { color: white; font-size: 1.1rem; }
    .hero-ig-text strong { display: block; font-size: 0.88rem; font-weight: 700; }
    .hero-ig-text span { font-size: 0.78rem; color: #94A3B8; }
    .hero-ig-arrow { margin-left: 8px; color: #64748B; font-size: 0.85rem; }

    /* SERVICES */
    .services-section { background: var(--off-white); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
    .svc-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: transform .25s, box-shadow .25s, border-color .25s; }
    .svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.10); border-color: rgba(26,86,219,0.3); }
    .svc-img { width: 100%; height: 185px; object-fit: cover; background: var(--navy-card); }
    .svc-body { padding: 24px; }
    .svc-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--blue-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
    .svc-icon i { color: var(--blue); font-size: 0.95rem; }
    .svc-body h3 { font-family: 'Syne', sans-serif; font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
    .svc-body p { color: var(--muted); font-size: 0.86rem; line-height: 1.65; margin-bottom: 14px; }
    .svc-link { color: var(--blue); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
    .svc-link:hover { gap: 9px; }

    /* WHY US */
    .why-section { background: var(--white); }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .why-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
    .why-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
    .why-badge-float { position: absolute; bottom: 24px; left: 24px; background: var(--navy); color: white; padding: 16px 20px; border-radius: var(--radius); border-left: 4px solid var(--blue); }
    .why-badge-float strong { display: block; font-family: 'Syne', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--blue-light); }
    .why-badge-float span { font-size: 0.8rem; color: #94A3B8; }
    .why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
    .why-item { display: flex; gap: 16px; align-items: flex-start; }
    .why-item-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--blue-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
    .why-item-icon i { color: var(--blue); }
    .why-item h3 { font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
    .why-item p { font-size: 0.85rem; color: var(--muted); }

    /* GALLERY PREVIEW */
    .gallery-prev-section { background: var(--off-white); }
    .gallery-prev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
    .gp-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
    .gp-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .gp-item::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; inset: 0; background: rgba(10,22,40,0.6); color: white; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; }
    .gp-item:hover::after { opacity: 1; }
    .gp-item:hover img { transform: scale(1.06); }

    /* TESTIMONIALS - MÜŞTERİ YORUMLARI */
    .testimonials-section { background: var(--off-white); padding: 88px 0; }
    .testimonial-carousel {
      display: flex;
      gap: 30px;
      overflow-x: auto;
      padding: 20px 4px 30px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    .testimonial-carousel::-webkit-scrollbar { height: 6px; }
    .testimonial-carousel::-webkit-scrollbar-track { background: var(--border); border-radius: 10px; }
    .testimonial-carousel::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 10px; }
    .testimonial-item {
      flex: 0 0 340px;
      background: var(--white);
      padding: 32px 28px;
      border-radius: var(--radius);
      box-shadow: 0 8px 30px rgba(0,0,0,0.06);
      scroll-snap-align: start;
      border: 1px solid var(--border);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .testimonial-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    }
    .testimonial-stars {
      color: #F59E0B;
      margin-bottom: 14px;
      font-size: 0.9rem;
      letter-spacing: 2px;
    }
    .testimonial-text {
      font-style: italic;
      color: var(--text);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-bottom: 18px;
    }
    .testimonial-text::before {
      content: '"';
      color: var(--blue);
      font-size: 1.4rem;
      font-weight: 700;
      opacity: 0.4;
      margin-right: 4px;
    }
    .testimonial-text::after {
      content: '"';
      color: var(--blue);
      font-size: 1.4rem;
      font-weight: 700;
      opacity: 0.4;
      margin-left: 4px;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
      border-top: 1px solid var(--border);
      padding-top: 16px;
    }
    .testimonial-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, #2563EB, #3B82F6);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .testimonial-name {
      font-weight: 700;
      color: var(--text);
      font-size: 0.95rem;
    }
    .testimonial-title {
      font-size: 0.8rem;
      color: var(--muted);
    }
    .testimonial-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(26,86,219,0.08);
      color: var(--blue);
      font-size: 0.7rem;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 20px;
      margin-top: 4px;
    }

    /* FAQ - SIKÇA SORULAN SORULAR */
    .faq-section { background: var(--white); padding: 88px 0; }
    .faq-wrapper { max-width: 820px; margin: 0 auto; }
    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 18px 0;
      cursor: pointer;
      transition: all 0.2s;
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-item:hover .faq-question { color: var(--blue); }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 1rem;
      color: var(--text);
      transition: color 0.2s;
      gap: 16px;
    }
    .faq-question i {
      transition: transform 0.35s ease;
      color: var(--blue);
      font-size: 0.9rem;
      flex-shrink: 0;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s ease;
      opacity: 0;
      padding-top: 0;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.7;
    }
    .faq-item.active .faq-answer {
      max-height: 300px;
      opacity: 1;
      padding-top: 14px;
    }

    /* CONTACT SECTION */
    .contact-section { background: var(--white); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
    .contact-left h3 { font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
    .contact-left > p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 28px; }
    .contact-links { display: flex; flex-direction: column; gap: 14px; }
    .contact-link { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); transition: all var(--transition); }
    .contact-link:hover { border-color: var(--blue); background: var(--white); transform: translateX(4px); }
    .contact-link-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
    .contact-link-icon.phone { background: rgba(26,86,219,0.10); color: var(--blue); }
    .contact-link-icon.wa    { background: rgba(37,211,102,0.12); color: #25D366; }
    .contact-link-icon.loc   { background: rgba(239,68,68,0.12);  color: #EF4444; }
    .contact-link strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 2px; }
    .contact-link span { font-size: 0.82rem; color: var(--muted); }
    .contact-right { background: var(--navy); border-radius: var(--radius-lg); padding: 32px; }
    .open-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #4ADE80; font-size: 0.78rem; font-weight: 700; padding: 5px 14px; border-radius: 6px; margin-bottom: 20px; }
    .open-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #22C55E; animation: blink 1.8s infinite; }
    .contact-right h4 { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: white; margin-bottom: 6px; }
    .contact-right .sub { color: #64748B; font-size: 0.85rem; margin-bottom: 24px; }
    .hours-list { display: flex; flex-direction: column; gap: 12px; }
    .hours-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; background: rgba(255,255,255,0.04); border-radius: 8px; border: 1px solid rgba(255,255,255,0.06); }
    .hours-row .day { color: #94A3B8; font-size: 0.87rem; }
    .hours-row .time { color: white; font-weight: 600; font-size: 0.87rem; }
    .map-embed { margin-top: 24px; border-radius: var(--radius); overflow: hidden; }
    .map-embed iframe { width: 100%; height: 220px; border: none; display: block; border-radius: var(--radius); }

    /* RESPONSIVE - DÜZELTİLDİ */
    .section-wrap { padding: 88px 20px; max-width: 1200px; margin: 0 auto; overflow: hidden; }

    /* INSTAGRAM SECTION - DÜZELTİLDİ */
    .instagram-section { background: var(--off-white); overflow: hidden; }
    .instagram-showcase { 
      display: grid; 
      grid-template-columns: minmax(0, 380px) minmax(0, 1fr); 
      gap: 48px; 
      align-items: start; 
    }
    
    .ig-left { min-width: 0; }
    .ig-left .section-label { color: #833AB4; }
    .ig-left h2 { font-family: 'Syne', sans-serif; font-size: clamp(1.7rem,3vw,2.2rem); font-weight: 800; color: var(--navy); letter-spacing: -0.5px; margin-bottom: 12px; }
    .ig-left p { color: var(--muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 24px; }
    .ig-profile-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 20px; }
    .ig-profile-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--ig-grad); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .ig-profile-avatar i { color: white; font-size: 1.5rem; }
    .ig-profile-info strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text); }
    .ig-profile-info span { font-size: 0.82rem; color: var(--muted); }
    .ig-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
    .ig-feature { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; color: var(--muted); }
    .ig-feature i { width: 28px; height: 28px; background: rgba(131,58,180,0.10); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: #833AB4; font-size: 0.8rem; flex-shrink: 0; }

    .ig-right { 
      min-width: 0; 
      width: 100%;
      overflow: hidden;
    }

    .reels-scroll-wrap {
      width: 100%;
      overflow: hidden;
    }

    .reels-strip {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 24px;
      padding-left: 2px;
      padding-right: 2px;
      scrollbar-width: thin;
      scrollbar-color: rgba(26,86,219,0.5) rgba(0,0,0,0.05);
    }
    .reels-strip::-webkit-scrollbar { height: 6px; }
    .reels-strip::-webkit-scrollbar-track { background: rgba(0,0,0,0.04); border-radius: 10px; }
    .reels-strip::-webkit-scrollbar-thumb { background: rgba(26,86,219,0.3); border-radius: 10px; }
    .reels-strip::-webkit-scrollbar-thumb:hover { background: rgba(26,86,219,0.6); }

    .reel-item {
      flex: 0 0 320px;
      scroll-snap-align: start;
      border-radius: 12px;
      min-width: 0;
    }
    .reel-item .instagram-media {
      min-width: unset !important;
      max-width: 100% !important;
      width: 100% !important;
      margin: 0 !important;
      border-radius: 12px !important;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    }
    .reel-preview { width: 100%; }
    .reels-hint { margin-top: 14px; font-size: 0.85rem; color: var(--muted); text-align: center; }
    .reels-hint i { margin-right: 4px; color: var(--blue-light); }
    .reels-hint a { color: #833AB4; font-weight: 600; }
    .reels-hint a:hover { color: #FD1D1D; }

    @media(max-width:1024px) { 
      .instagram-showcase { grid-template-columns: 1fr; gap: 32px; }
      .reel-item { flex: 0 0 300px; }
    }

    @media(max-width:900px) { 
      .why-grid { grid-template-columns: 1fr; } 
      .why-img-wrap { display: none; } 
      .contact-grid { grid-template-columns: 1fr; } 
      .gallery-prev-grid { grid-template-columns: repeat(2,1fr); }
      .testimonial-item { flex: 0 0 300px; }
      .section-wrap { padding: 60px 16px; }
    }

    @media(max-width:600px) { 
      .gallery-prev-grid { grid-template-columns: 1fr; }
      .testimonial-item { flex: 0 0 280px; padding: 24px 20px; }
      .faq-question { font-size: 0.93rem; }
      .reel-item { flex: 0 0 280px; }
      .hero { padding: 80px 16px 60px; }
      .hero h1 { font-size: 1.8rem; }
      .hero-actions { flex-direction: column; align-items: center; }
      .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
      .hero-badges { gap: 8px; }
      .hero-badge { font-size: 0.7rem; padding: 6px 12px; }
      .stats-inner { grid-template-columns: repeat(2,1fr); }
      .stat-num { font-size: 2rem; }
      .footer-main { grid-template-columns: 1fr; gap: 24px; }
      .trust-strip-inner { grid-template-columns: 1fr; }
      .trust-item { border-right: none !important; border-bottom: 1px solid var(--border); }
    }

    @media(max-width:480px) {
      html { font-size: 15px; }
      .header-inner { padding: 0 16px; height: 60px; }
      .logo { font-size: 1.1rem; }
      .section-wrap { padding: 40px 12px; }
      .mobile-nav { padding: 12px 16px 20px; }
      .footer-main { padding: 30px 12px 20px; }
      .footer-bottom { padding: 12px 16px; flex-direction: column; text-align: center; }
      .wa-float { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 1.2rem; }
      .reel-item { flex: 0 0 260px; }
      .reels-strip { gap: 12px; }
      .hero-ig-strip { flex-wrap: wrap; justify-content: center; text-align: center; }
    }
/* Erişilebilirlik: ekran okuyucu için görsel olarak gizli başlık */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
