@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #f59e0b;
  --primary-dark: #d97706;
  --primary-light: #fef3c7;
  --dark: #0b1120;
  --dark-2: #0f172a;
  --dark-3: #1e293b;
  --text: #334155;
  --muted: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow: 0 8px 32px rgba(0,0,0,.1);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.16);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
#mainNav {
  background: transparent !important;
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.2rem 0;
}
#mainNav.scrolled {
  background: rgba(11,17,32,.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
  padding: .7rem 0;
}
.navbar-brand {
  font-weight: 900;
  font-size: 1.4rem;
  color: #fff !important;
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.brand-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  margin-left: 1px;
}
.nav-link {
  font-weight: 600;
  font-size: .88rem;
  color: rgba(255,255,255,.75) !important;
  letter-spacing: .3px;
  padding: .4rem .9rem !important;
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: .9rem; right: .9rem;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: #fff !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--primary) !important;
  color: var(--dark) !important;
  border-radius: 50px !important;
  padding: .5rem 1.4rem !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  background: #fbbf24 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(245,158,11,.4);
}
.nav-cta::after { display: none; }
/* Navbar dropdown */
#mainNav .dropdown-menu {
  background: rgba(11,17,32,.97);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: .5rem;
  margin-top: .5rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
  min-width: 200px;
}
#mainNav .dropdown-item {
  color: rgba(255,255,255,.75);
  border-radius: 10px;
  padding: .55rem .85rem;
  font-weight: 700;
  font-size: .88rem;
  transition: background .18s, color .18s;
}
#mainNav .dropdown-item:hover { background: rgba(245,158,11,.15); color: #fff; }
#mainNav .dropdown-toggle::after { border: none; content: "\F282"; font-family: "bootstrap-icons"; font-size: .65rem; vertical-align: middle; margin-left: .25rem; }
.navbar-toggler { border: 1.5px solid rgba(255,255,255,.3); border-radius: 8px; padding: .35rem .6rem; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero-wrap {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--dark);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .45;
  transform: scale(1.05);
  transition: opacity 1s, transform 8s ease;
}
.hero-video {
  pointer-events: none;
}
.carousel-item.active .hero-img { opacity: .45; transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,17,32,.92) 0%,
    rgba(15,23,42,.7) 50%,
    rgba(30,58,95,.5) 100%
  );
  z-index: 1;
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 230px;
  background: linear-gradient(to top, rgba(11,17,32,.72) 0%, rgba(11,17,32,.28) 46%, transparent 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 8rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--primary);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow i { font-size: .85rem; }
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 1.5rem;
}
.hero-title .accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
  opacity: .4;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  background: var(--primary);
  color: var(--dark);
  font-weight: 800;
  font-size: .95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
}
.btn-hero-primary:hover {
  background: #fbbf24;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,158,11,.4);
}
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.2);
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); color: #fff; transform: translateY(-2px); }

.hero-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .6rem 1rem;
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.hero-badge i { color: var(--primary); font-size: 1rem; }

.carousel-control-prev, .carousel-control-next {
  width: 52px;
  top: 50%; bottom: auto;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  height: 52px;
  backdrop-filter: blur(8px);
  z-index: 4;
  opacity: 1 !important;
  transition: background var(--transition);
}
.carousel-control-prev { left: 2rem; }
.carousel-control-next { right: 2rem; }
.carousel-control-prev:hover, .carousel-control-next:hover { background: rgba(255,255,255,.2); }
.carousel-control-prev-icon, .carousel-control-next-icon { width: 18px; height: 18px; }
.carousel-indicators {
  bottom: 5rem !important;
  z-index: 4;
}
.carousel-indicators [data-bs-target] {
  width: 28px; height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,.4);
  border: none;
  transition: all var(--transition);
}
.carousel-indicators .active {
  background: var(--primary);
  width: 48px;
}

/* ═══════════════════════════════
   STATS TICKER
═══════════════════════════════ */
.stats-ribbon {
  background: var(--primary);
  padding: 1.6rem 0;
  position: relative;
  z-index: 5;
}
.home-stats-ribbon {
  background: transparent;
  padding: 0;
  margin-top: -78px;
  margin-bottom: 2.4rem;
}
.home-stats-ribbon .container {
  background: rgba(11,17,32,.82);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(11,17,32,.22);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.home-stats-ribbon .stat-item {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.home-stats-ribbon .stat-icon-wrap {
  background: rgba(245,158,11,.14);
  color: var(--primary);
}
.home-stats-ribbon .stat-num {
  color: #fff;
}
.home-stats-ribbon .stat-label {
  color: rgba(255,255,255,.62);
}
.stats-ribbon .container { position: relative; }
.stat-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 0 2rem;
  border-right: 1px solid rgba(0,0,0,.12);
}
.stat-item:last-child { border-right: none; }
.stat-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(0,0,0,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  font-size: .75rem;
  color: rgba(0,0,0,.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ═══════════════════════════════
   SECTIONS
═══════════════════════════════ */
.section { padding: 6rem 0; }
.section-alt { background: #f8fafc; }
.section-dark { background: var(--dark-2); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 50px;
  padding: .3rem .9rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: .8rem;
}
.tag-dark {
  background: rgba(245,158,11,.12);
  color: var(--primary);
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark-2);
  letter-spacing: -1px;
  line-height: 1.15;
}
.section-heading-white { color: #fff; }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
}

/* ═══════════════════════════════
   PROJE KARTI
═══════════════════════════════ */
.proje-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.proje-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.proje-card-img-wrap {
  position: relative;
  overflow: hidden;
}
.proje-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .6s ease;
}
.proje-card:hover .proje-card-img { transform: scale(1.06); }
.proje-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-3), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.1);
}
.proje-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,17,32,.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
.proje-card:hover .proje-card-overlay { opacity: 1; }
.proje-card-overlay-text {
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.proje-card-body { padding: 1.3rem; }
.proje-card-cats { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .6rem; }
.proje-badge {
  font-size: .68rem;
  font-weight: 700;
  border-radius: 50px;
  padding: .22rem .65rem;
  letter-spacing: .3px;
}
.proje-badge-cat { background: var(--primary-light); color: var(--primary-dark); }
.proje-badge-tamamlandi { background: rgba(16,185,129,.1); color: #10b981; }
.proje-badge-devam { background: rgba(59,130,246,.1); color: #3b82f6; }
.proje-badge-planlama { background: rgba(245,158,11,.1); color: #d97706; }
.proje-card-title {
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark-2);
  margin-bottom: .4rem;
  line-height: 1.35;
}
.proje-card-meta {
  display: flex;
  gap: 1rem;
  font-size: .78rem;
  color: var(--muted);
}
.proje-card-meta i { color: var(--primary); }
.proje-card-link { display: block; text-decoration: none; color: inherit; }
.proje-card-link:hover { color: inherit; }

/* ═══════════════════════════════
   HİZMET KARTI
═══════════════════════════════ */
.hizmet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.hizmet-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.hizmet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.hizmet-card:hover::before { transform: scaleX(1); }
.hizmet-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary-light), #fde68a);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 1.4rem;
  transition: transform var(--transition);
}
.hizmet-card:hover .hizmet-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.hizmet-num {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  letter-spacing: -2px;
  transition: color var(--transition);
}
.hizmet-card:hover .hizmet-num { color: var(--primary-light); }
.hizmet-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark-2);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.hizmet-desc {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
}
.hizmet-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.2rem;
  color: var(--primary);
  font-size: .85rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}
.hizmet-card:hover .hizmet-arrow { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════
   EKİP KARTI
═══════════════════════════════ */
.ekip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  text-align: center;
}
.ekip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ekip-img-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-3), var(--dark));
  aspect-ratio: 1;
}
.ekip-foto {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.ekip-card:hover .ekip-foto { transform: scale(1.05); }
.ekip-foto-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,.15);
  background: linear-gradient(135deg, var(--dark-3), var(--dark));
}
.ekip-body {
  padding: 1.2rem 1rem 1.4rem;
  background: var(--white);
  border-top: 3px solid var(--primary);
}
.ekip-ad { font-weight: 800; font-size: 1rem; color: var(--dark-2); }
.ekip-unvan { font-size: .78rem; color: var(--primary); font-weight: 700; letter-spacing: .3px; margin-top: .2rem; }
.ekip-card-full .ekip-img-wrap { aspect-ratio: 3/4; }

/* ═══════════════════════════════
   BLOG KARTI
═══════════════════════════════ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card-img-wrap { position: relative; overflow: hidden; }
.blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.06); }
.blog-card-img-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark-3), var(--dark));
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.1); font-size: 2.5rem;
}
.blog-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .7rem;
}
.blog-card-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark-2);
  line-height: 1.4;
  margin-bottom: .6rem;
  transition: color var(--transition);
}
.blog-card:hover .blog-card-title { color: var(--primary-dark); }
.blog-card-excerpt { font-size: .875rem; color: var(--muted); line-height: 1.65; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--primary-dark);
  font-size: .82rem;
  font-weight: 700;
  border-top: 1px solid var(--border);
}

/* ═══════════════════════════════
   NEDEN BİZ — özellik listesi
═══════════════════════════════ */
.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.feature-item:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgba(245,158,11,.12); transform: translateX(4px); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-dark);
  flex-shrink: 0;
  transition: all var(--transition);
}
.feature-item:hover .feature-icon {
  background: var(--primary);
  color: var(--dark);
}
.feature-title { font-weight: 700; font-size: .95rem; color: var(--dark-2); margin-bottom: .2rem; }
.feature-desc { font-size: .82rem; color: var(--muted); line-height: 1.55; }

/* ═══════════════════════════════
   SAYILAR — büyük rakam blokları
═══════════════════════════════ */
.big-stat {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.big-stat-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
}
.big-stat-dark { background: var(--dark-2); color: #fff; }
.big-stat-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}
.big-stat-label { font-size: .8rem; font-weight: 600; opacity: .7; margin-top: .4rem; text-transform: uppercase; letter-spacing: .5px; }
.big-stat::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

/* ═══════════════════════════════
   PROJE GRID — featured büyük kart
═══════════════════════════════ */
.proje-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/2;
  display: block;
  text-decoration: none;
}
.proje-featured img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.proje-featured:hover img { transform: scale(1.04); }
.proje-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,17,32,.9) 0%, rgba(11,17,32,.2) 60%, transparent 100%);
}
.proje-featured-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem;
  color: #fff;
}
.proje-featured-body .proje-badge { margin-bottom: .6rem; }
.proje-featured-title { font-weight: 800; font-size: 1.25rem; line-height: 1.25; margin-bottom: .4rem; }
.proje-featured-meta { font-size: .78rem; color: rgba(255,255,255,.6); display: flex; gap: 1rem; }
.proje-featured-meta i { color: var(--primary); }

/* ═══════════════════════════════
   MÜŞTERİ YORUMLARI
═══════════════════════════════ */
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.testimonial-stars { color: #f59e0b; font-size: .9rem; display: flex; gap: .15rem; }
.testimonial-text {
  font-size: .96rem;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
  font-style: italic;
  position: relative;
  padding-left: 1.1rem;
}
.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -.2rem;
  font-size: 2rem;
  color: var(--primary);
  font-style: normal;
  line-height: 1;
}
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: #111;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-name { font-weight: 800; font-size: .9rem; color: var(--dark-2); }
.testimonial-title { font-size: .78rem; color: var(--muted); }

/* ═══════════════════════════════
   HAKKIMIZDA HOME ÖNİZLEME
═══════════════════════════════ */
.about-home-section { background: var(--white); }
.about-home-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-home-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.about-home-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark-3), var(--dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,.08);
}
.about-home-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: var(--dark);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245,158,11,.35);
}
.about-home-badge-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.about-home-badge-txt {
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: .2rem;
}
.about-home-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.about-home-text p { margin-bottom: 1rem; }
.about-home-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.about-home-feat {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark-2);
}
.about-home-feat i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }

/* ═══════════════════════════════
   CTA BAND
═══════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.15;
}
.cta-title span { color: var(--primary); }
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--primary);
  color: var(--dark);
  font-weight: 800;
  padding: .85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: .95rem;
  transition: all var(--transition);
  border: none;
}
.btn-cta-primary:hover {
  background: #fbbf24;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,158,11,.4);
}
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: .95rem;
  border: 1.5px solid rgba(255,255,255,.3);
  transition: all var(--transition);
}
.btn-cta-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); color: #fff; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 5rem 0 0;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark), var(--primary));
}
.footer-brand { font-size: 1.5rem; font-weight: 900; color: #fff; letter-spacing: -.5px; }
.footer-brand .dot { color: var(--primary); }
.footer-desc { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.45); margin-top: .6rem; }
.footer-heading { color: rgba(255,255,255,.9); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.2rem; }
footer a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .88rem; transition: color var(--transition); }
footer a:hover { color: var(--primary); }
.footer-link-list { list-style: none; padding: 0; }
.footer-link-list li { margin-bottom: .6rem; }
.footer-link-list a { display: flex; align-items: center; gap: .5rem; }
.footer-link-list a::before { content: '→'; font-size: .7rem; color: var(--primary); opacity: 0; transition: opacity var(--transition), transform var(--transition); transform: translateX(-4px); }
.footer-link-list a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .85rem; font-size: .88rem; }
.footer-contact-icon { color: var(--primary); font-size: 1rem; margin-top: .1rem; flex-shrink: 0; }
.footer-bottom {
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.4rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--dark); transform: translateY(-2px); }
.whatsapp-fab {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 999;
  text-decoration: none;
  transition: all var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,.5); color: #fff; }

.floating-contact {
  position: fixed;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.floating-contact-toggle {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 14px 34px rgba(15,23,42,.2);
  transition: transform .2s, background .2s;
}
.floating-contact-toggle:hover {
  transform: translateX(3px);
  background: var(--primary-dark);
  color: #fff;
}
.floating-contact-panel {
  width: 260px;
  background: rgba(255,255,255,.96);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(15,23,42,.2);
  backdrop-filter: blur(14px);
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-12px) scale(.98);
  transition: opacity .22s, transform .22s;
}
.floating-contact.open .floating-contact-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}
.floating-contact-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: .9rem;
}
.floating-contact-title {
  font-size: .95rem;
  font-weight: 900;
  color: var(--dark-2);
}
.floating-contact-sub {
  font-size: .76rem;
  color: var(--muted);
  margin-top: .1rem;
}
.floating-contact-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-contact-actions {
  display: grid;
  gap: .55rem;
}
.floating-contact-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: #334155;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: .72rem .8rem;
  font-size: .86rem;
  font-weight: 800;
  transition: transform .2s, border-color .2s, background .2s;
}
.floating-contact-link i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(245,158,11,.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.floating-contact-link:hover {
  transform: translateX(3px);
  border-color: var(--primary);
  background: rgba(245,158,11,.08);
  color: var(--primary-dark);
}
.floating-contact-link.whatsapp i {
  background: rgba(37,211,102,.13);
  color: #25d366;
}
.floating-contact-link.primary {
  background: var(--dark-2);
  color: #fff;
  border-color: var(--dark-2);
}
.floating-contact-link.primary i {
  background: rgba(255,255,255,.12);
  color: var(--primary);
}
.floating-socials {
  display: flex;
  gap: .45rem;
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border);
}
.floating-socials a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  text-decoration: none;
  transition: transform .2s, border-color .2s, color .2s;
}
.floating-socials a:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* ═══════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 100%);
  min-height: 58vh;
  padding: 8rem 0 3.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.06);
}
.page-hero-bg-text {
  position: absolute;
  bottom: -.5rem; right: 2rem;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255,255,255,.03);
  line-height: 1;
  letter-spacing: -6px;
  pointer-events: none;
  user-select: none;
}
.page-hero > .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  max-width: 760px;
  letter-spacing: -1px;
}
.page-hero p {
  color: rgba(255,255,255,.68);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 680px;
}
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); content: '›'; }
.breadcrumb-item a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .85rem; }
.breadcrumb-item.active { color: rgba(255,255,255,.85); font-size: .85rem; }

/* ═══════════════════════════════
   PROJE DETAY
═══════════════════════════════ */
.proje-detay-img { width: 100%; border-radius: var(--radius-lg); max-height: 500px; object-fit: cover; }
.proje-bilgi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.proje-bilgi-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: .875rem;
}
.proje-bilgi-item:last-child { border-bottom: none; }
.proje-bilgi-item .key { color: var(--muted); font-weight: 500; }
.proje-bilgi-item .val { font-weight: 700; color: var(--dark-2); }
.galeri-thumb { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; cursor: pointer; transition: all var(--transition); }
.galeri-thumb:hover { opacity: .85; transform: scale(1.02); }

/* ═══════════════════════════════
   FORM
═══════════════════════════════ */
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: .75rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
  outline: none;
}
.form-label { font-weight: 700; font-size: .82rem; color: #475569; margin-bottom: .4rem; text-transform: uppercase; letter-spacing: .5px; }

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.btn-primary { background: var(--primary); border-color: var(--primary); color: var(--dark); font-weight: 700; }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--dark); }
.btn-outline-primary { border-color: var(--primary); color: var(--primary-dark); font-weight: 700; }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); color: var(--dark); }

/* ═══════════════════════════════
   İLETİŞİM
═══════════════════════════════ */
.iletisim-card {
  background: var(--dark-2);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.iletisim-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,158,11,.15) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(245,158,11,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* quick-contact kartları */
.quick-contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  color: var(--dark-2);
}
.quick-contact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); color: var(--dark-2); }
.quick-contact-card:hover .qc-icon { background: var(--primary); color: #fff; }
.qc-icon {
  width: 60px; height: 60px;
  background: rgba(245,158,11,.1);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin: 0 auto 1rem;
  transition: all var(--transition);
}
.qc-icon.whatsapp { background: rgba(37,211,102,.1); color: #25d366; }
.quick-contact-card:hover .qc-icon.whatsapp { background: #25d366; color: #fff; }

/* form - konu chips */
.konu-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.konu-chip input[type=radio] { display: none; }
.konu-chip label {
  cursor: pointer;
  padding: .4rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .2s;
}
.konu-chip input:checked + label { background: var(--primary); border-color: var(--primary); color: #fff; }
.konu-chip label:hover { border-color: var(--primary); color: var(--primary); }

/* iletişim bilgi kutuları */
.info-box {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; border-radius: 14px;
  background: var(--light);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.info-box:hover { border-color: var(--primary); }
.info-box-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(245,158,11,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.15rem;
}

/* çalışma saatleri */
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today { font-weight: 700; color: var(--dark-2); }
.hours-badge { font-size: .7rem; padding: .15rem .5rem; border-radius: 50px; font-weight: 700; }

/* başarı animasyonu */
@keyframes checkPop {
  0%   { transform: scale(0) rotate(-10deg); opacity:0; }
  70%  { transform: scale(1.15) rotate(3deg); }
  100% { transform: scale(1) rotate(0); opacity:1; }
}
.success-check {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: #fff;
  margin: 0 auto 1.5rem;
  animation: checkPop .5s cubic-bezier(.175,.885,.32,1.275) forwards;
}

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: .5; }
}
.animate-fadeup { animation: fadeUp .7s ease both; }
.animate-fadeup-1 { animation-delay: .1s; }
.animate-fadeup-2 { animation-delay: .2s; }
.animate-fadeup-3 { animation-delay: .3s; }
.animate-fadeup-4 { animation-delay: .4s; }

/* ═══════════════════════════════
   PROJE DETAY
═══════════════════════════════ */
.pd-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}
.pd-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.pd-hero:hover .pd-hero-img { transform: scale(1); }
.pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,17,32,.95) 0%, rgba(11,17,32,.5) 50%, rgba(11,17,32,.2) 100%);
}
.pd-hero-content {
  position: relative;
  width: 100%;
  padding: 5rem 0 3rem;
}
.pd-meta-ribbon {
  background: #fff;
  border-bottom: 1.5px solid var(--border);
}
.pd-meta-item {
  display: flex; align-items: center; gap: .8rem;
  padding: 1.2rem 0;
  border-right: 1.5px solid var(--border);
  flex: 1;
}
.pd-meta-item:last-child { border-right: none; }
.pd-meta-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(245,158,11,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem;
}
.pd-meta-label { font-size: .72rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.pd-meta-val { font-weight: 800; font-size: .95rem; color: var(--dark-2); margin-top: .1rem; }

/* progress indicator */
.pd-progress-wrap {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}
.pd-progress-bar {
  height: 10px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: .75rem;
}
.pd-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  width: 0;
}

/* teknik detaylar */
.teknik-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.teknik-row:last-child { border-bottom: none; }
.teknik-label { color: var(--muted); font-weight: 600; }
.teknik-val { font-weight: 800; color: var(--dark-2); text-align: right; max-width: 55%; }

/* sosyal donatılar */
.donat-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: .5rem 1rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--dark-2);
  transition: all .2s;
}
.donat-chip:hover { border-color: var(--primary); background: var(--primary-light); }
.donat-chip i { color: var(--primary); font-size: 1rem; }

/* daire tipleri */
.daire-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  transition: all var(--transition);
  text-align: center;
}
.daire-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.daire-tip { font-size: 1.4rem; font-weight: 900; color: var(--primary); }
.daire-m2 { font-size: .85rem; color: var(--muted); margin-top: .2rem; font-weight: 600; }
.daire-adet { font-size: .78rem; margin-top: .5rem; background: var(--primary-light); color: var(--primary-dark); border-radius: 50px; display: inline-block; padding: .15rem .6rem; font-weight: 700; }

/* güven unsurları */
.guven-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .9rem 1.1rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark-2);
}
.guven-item i { color: var(--primary); font-size: 1.1rem; }

/* galeri lightbox */
.galeri-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; }
.galeri-grid .galeri-item:first-child { grid-column: span 2; grid-row: span 2; }
.galeri-thumb-wrap { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; background: var(--dark-3); }
.galeri-thumb-wrap::after {
  content: '\F52A'; font-family: 'bootstrap-icons'; /* bi-zoom-in */
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
  background: rgba(11,17,32,.4);
  opacity: 0; transition: opacity .3s;
}
.galeri-thumb-wrap:hover::after { opacity: 1; }
.galeri-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; aspect-ratio: 4/3; }
.galeri-grid .galeri-item:first-child .galeri-thumb-wrap img { aspect-ratio: auto; height: 100%; }
.galeri-thumb-wrap:hover img { transform: scale(1.06); }

/* hizmet detay */
.hd-feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: #fff;
  transition: all var(--transition);
}
.hd-feature-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.hd-feature-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(245,158,11,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.2rem;
}
.hd-step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.5rem;
  border-radius: 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  position: relative;
}
.hd-step-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
}

/* ═══════════════════════════════
   WHATSAPP CHAT WIDGET
═══════════════════════════════ */
.wa-chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1050;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-chat-fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  color: #fff;
  font-size: 1.65rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  position: relative;
  animation: waPulse 2.4s ease-out infinite;
}
.wa-chat-fab:hover { transform: scale(1.08); box-shadow: 0 12px 36px rgba(37,211,102,.55); }
.wa-chat-widget.open .wa-chat-fab { animation: none; background: #128c5e; }
.wa-chat-notify {
  position: absolute;
  top: -3px; right: -3px;
  width: 20px; height: 20px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  transition: opacity .2s, transform .2s;
}
.wa-chat-widget.open .wa-chat-notify { opacity: 0; transform: scale(0); }

.wa-chat-popup {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 330px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.97);
  transform-origin: bottom right;
  transition: opacity .22s ease, transform .22s ease;
}
.wa-chat-widget.open .wa-chat-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.wa-chat-header {
  background: linear-gradient(135deg,#075e54,#128c5e);
  padding: .9rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.wa-chat-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  flex-shrink: 0;
}
.wa-chat-info { flex: 1; }
.wa-chat-name  { color: #fff; font-weight: 800; font-size: .95rem; }
.wa-chat-status { color: rgba(255,255,255,.75); font-size: .72rem; margin-top: .1rem; }
.wa-chat-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: .75rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.wa-chat-close:hover { background: rgba(255,255,255,.25); }

.wa-chat-body {
  background: #e5ddd5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' opacity='.04'%3E%3Ctext y='50' font-size='40'%3E💬%3C/text%3E%3C/svg%3E");
  padding: 1rem;
  min-height: 120px;
}
.wa-chat-date {
  text-align: center;
  font-size: .68rem;
  color: #667781;
  background: rgba(255,255,255,.6);
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 8px;
  margin: 0 auto .75rem;
  display: block;
  width: fit-content;
  margin-inline: auto;
}
.wa-chat-bubble {
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: .65rem .85rem .45rem;
  max-width: 88%;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
  position: relative;
}
.wa-chat-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border: 8px solid transparent;
  border-top-color: #fff;
  border-left: none;
}
.wa-chat-bubble p {
  margin: 0 0 .3rem;
  font-size: .87rem;
  color: #111;
  line-height: 1.45;
}
.wa-chat-bubble p:last-of-type { margin-bottom: .35rem; }
.wa-chat-time {
  font-size: .65rem;
  color: #667781;
  text-align: right;
  display: block;
}

.wa-chat-input-area {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .75rem;
  background: #f0f2f5;
  border-top: 1px solid #e9ecef;
}
.wa-chat-input {
  flex: 1;
  border: none;
  border-radius: 22px;
  background: #fff;
  padding: .55rem .9rem;
  font-size: .88rem;
  font-family: 'Outfit', sans-serif;
  color: #111;
  outline: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}
.wa-chat-input::placeholder { color: #aab; }
.wa-chat-send {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  color: #fff;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.wa-chat-send:hover { background: #128c5e; transform: scale(1.08); }

/* ═══════════════════════════════
   COOKIE BANNER
═══════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(11,17,32,.97);
  backdrop-filter: blur(16px);
  z-index: 2000;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  transform: translateY(0);
  transition: transform .4s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner p { margin: 0; color: rgba(255,255,255,.75); font-size: .87rem; }
.cookie-banner a { color: var(--primary); }
.cookie-accept { background: #25d366; border: none; color: #fff; border-radius: 10px; padding: .52rem 1.1rem; font-weight: 800; font-size: .85rem; cursor: pointer; transition: background .2s; white-space: nowrap; }
.cookie-accept:hover { background: #128c5e; }
.cookie-reject { background: transparent; border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.6); border-radius: 10px; padding: .52rem 1rem; font-weight: 700; font-size: .85rem; cursor: pointer; transition: all .2s; white-space: nowrap; }
.cookie-reject:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ═══════════════════════════════
   POPUP
═══════════════════════════════ */
.site-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.site-popup-overlay.show { opacity: 1; pointer-events: auto; }
.site-popup {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  position: relative;
  transform: scale(.92) translateY(20px);
  transition: transform .3s;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.site-popup-overlay.show .site-popup { transform: scale(1) translateY(0); }
.site-popup-img img { width: 100%; max-height: 220px; object-fit: cover; display: block; }
.site-popup-body { padding: 1.75rem; }
.site-popup-title { font-size: 1.35rem; font-weight: 900; color: var(--dark-2); margin-bottom: .65rem; }
.site-popup-text { color: var(--text); line-height: 1.6; font-size: .95rem; }
.site-popup-close {
  position: absolute; top: .75rem; right: .75rem;
  width: 32px; height: 32px;
  background: rgba(0,0,0,.55); color: #fff; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .8rem; z-index: 1;
  transition: background .2s;
}
.site-popup-close:hover { background: rgba(0,0,0,.8); }

/* ═══════════════════════════════
   G-TRANSLATE
═══════════════════════════════ */
.lang-switcher .dropdown-toggle {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  border-radius: 8px;
  padding: .38rem .75rem;
  font-size: .82rem;
  font-weight: 700;
  display: flex; align-items: center; gap: .4rem;
  transition: background .2s;
}
.lang-switcher .dropdown-toggle:hover,
.lang-switcher .dropdown-toggle:focus { background: rgba(255,255,255,.18); color: #fff; box-shadow: none; }
.lang-switcher .dropdown-toggle::after { display: none; }
.lang-switcher .dropdown-menu { min-width: 140px; border: 1.5px solid var(--border); border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.lang-switcher .dropdown-item { font-size: .85rem; font-weight: 600; padding: .45rem .9rem; }
.lang-switcher .dropdown-item:hover { background: var(--primary-light); color: var(--dark-2); }
#google_translate_element { display: none !important; }
body > .skiptranslate { display: none !important; }
body { top: 0 !important; }
.goog-te-banner-frame { display: none !important; }

/* ═══════════════════════════════
   FOTO GALERİ
═══════════════════════════════ */
.foto-galeri-grid { columns: 4; column-gap: .75rem; }
.foto-galeri-item { break-inside: avoid; margin-bottom: .75rem; border-radius: 12px; overflow: hidden; position: relative; cursor: pointer; }
.foto-galeri-item img { width: 100%; display: block; transition: transform .35s; }
.foto-galeri-item:hover img { transform: scale(1.04); }
.foto-galeri-item .fg-overlay { position: absolute; inset: 0; background: rgba(11,17,32,0); display: flex; align-items: center; justify-content: center; transition: background .25s; }
.foto-galeri-item:hover .fg-overlay { background: rgba(11,17,32,.35); }
.foto-galeri-item .fg-overlay i { color: #fff; font-size: 1.5rem; opacity: 0; transform: scale(.7); transition: all .25s; }
.foto-galeri-item:hover .fg-overlay i { opacity: 1; transform: scale(1); }
@media (max-width: 991px) { .foto-galeri-grid { columns: 3; } }
@media (max-width: 600px)  { .foto-galeri-grid { columns: 2; } }

/* ═══════════════════════════════
   VIDEO GALERİ
═══════════════════════════════ */
.video-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); transition: .25s; }
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.video-embed-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; background: #111; }
.video-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-card-body { padding: .9rem 1rem; }
.video-card-title { font-weight: 800; color: var(--dark-2); font-size: .95rem; }
.video-card-desc { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

/* ═══════════════════════════════
   E-KATALOG
═══════════════════════════════ */
.katalog-card { background: #fff; border-radius: 16px; border: 1.5px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); transition: .25s; display: flex; flex-direction: column; }
.katalog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.katalog-cover { aspect-ratio: 3/4; background: linear-gradient(135deg,#1e293b,#334155); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.katalog-cover img { width: 100%; height: 100%; object-fit: cover; }
.katalog-cover-icon { font-size: 3rem; color: rgba(255,255,255,.3); }
.katalog-badge { position: absolute; top: .65rem; right: .65rem; background: var(--primary); color: #111; border-radius: 8px; padding: .2rem .55rem; font-size: .68rem; font-weight: 900; }
.katalog-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.katalog-title { font-weight: 800; color: var(--dark-2); margin-bottom: .4rem; }
.katalog-desc { font-size: .83rem; color: var(--muted); flex: 1; }
.katalog-btn { display: flex; align-items: center; gap: .4rem; background: var(--dark-2); color: #fff; border-radius: 10px; padding: .6rem 1rem; font-weight: 800; font-size: .85rem; text-decoration: none; margin-top: 1rem; justify-content: center; transition: background .2s; }
.katalog-btn:hover { background: var(--primary); color: #111; }
.katalog-btn i { font-size: 1rem; }

/* ═══════════════════════════════
   BANKA HESAPLARI
═══════════════════════════════ */
.banka-card { background: #fff; border-radius: 16px; border: 1.5px solid var(--border); padding: 1.5rem; box-shadow: var(--shadow-sm); transition: .25s; }
.banka-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.banka-logo-wrap { width: 56px; height: 56px; border-radius: 14px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; }
.banka-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.banka-logo-wrap i { font-size: 1.6rem; color: var(--primary-dark); }
.banka-adi { font-weight: 900; font-size: 1.05rem; color: var(--dark-2); }
.banka-row { display: flex; align-items: center; justify-content: space-between; gap: .5rem; padding: .55rem 0; border-bottom: 1px solid var(--border); }
.banka-row:last-child { border-bottom: none; }
.banka-label { font-size: .72rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.banka-val { font-weight: 700; color: var(--dark-2); font-size: .9rem; font-family: monospace; }
.copy-btn { background: var(--primary-light); border: none; border-radius: 7px; padding: .25rem .5rem; color: var(--primary-dark); font-size: .78rem; cursor: pointer; transition: background .2s; white-space: nowrap; }
.copy-btn:hover { background: var(--primary); color: #111; }
.copy-btn.copied { background: #d1fae5; color: #065f46; }

/* ═══════════════════════════════
   KARİYER
═══════════════════════════════ */
.kariyer-card { background: #fff; border-radius: 16px; border: 1.5px solid var(--border); padding: 1.35rem 1.5rem; box-shadow: var(--shadow-sm); transition: .25s; }
.kariyer-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(245,158,11,.12); }
.kariyer-badge { display: inline-flex; align-items: center; gap: .3rem; background: var(--primary-light); color: var(--primary-dark); border-radius: 8px; padding: .25rem .6rem; font-size: .72rem; font-weight: 800; }
.kariyer-badge.blue { background: #dbeafe; color: #1d4ed8; }
.kariyer-badge.green { background: #d1fae5; color: #065f46; }
.kariyer-baslik { font-weight: 900; font-size: 1.1rem; color: var(--dark-2); margin: .6rem 0 .35rem; }
.kariyer-meta { display: flex; flex-wrap: wrap; gap: .6rem; font-size: .82rem; color: var(--muted); }
.kariyer-meta span { display: flex; align-items: center; gap: .3rem; }
.kariyer-aciklama { font-size: .88rem; color: var(--text); margin-top: .6rem; line-height: 1.55; }
.cv-form-wrap { background: linear-gradient(135deg,#111827,#1e293b); border-radius: 20px; padding: 2.5rem; color: #fff; }
.cv-form-wrap .form-control, .cv-form-wrap .form-select {
  background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.15);
  color: #fff; border-radius: 12px;
}
.cv-form-wrap .form-control:focus, .cv-form-wrap .form-select:focus {
  background: rgba(255,255,255,.1); border-color: var(--primary);
  box-shadow: 0 0 0 .15rem rgba(245,158,11,.2); color: #fff;
}
.cv-form-wrap .form-control::placeholder { color: rgba(255,255,255,.35); }
.cv-form-wrap .form-label { color: rgba(255,255,255,.75); font-weight: 700; }
.cv-form-wrap .form-select option { background: #1e293b; color: #fff; }

/* ═══════════════════════════════
   ÖZEL SAYFALAR
═══════════════════════════════ */
.custom-page-content { line-height: 1.8; font-size: 1rem; color: var(--text); }
.custom-page-content h1,.custom-page-content h2,.custom-page-content h3 { color: var(--dark-2); font-weight: 900; margin: 1.5rem 0 .75rem; }
.custom-page-content p { margin-bottom: 1rem; }
.custom-page-content img { border-radius: 12px; margin: 1rem 0; }
.custom-page-content ul,.custom-page-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.custom-page-content table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.custom-page-content table th,.custom-page-content table td { border: 1.5px solid var(--border); padding: .6rem .9rem; }
.custom-page-content table th { background: #f8fafc; font-weight: 800; }

/* ═══════════════════════════════
   REFERANSLAR
═══════════════════════════════ */
.ref-marquee-section { padding: 4rem 0; overflow: hidden; }
.ref-marquee-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
  mask: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
}
.ref-marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.ref-marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ref-marquee-item {
  flex-shrink: 0;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 160px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.ref-marquee-item:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(0,0,0,.08); transform: translateY(-2px); }
.ref-marquee-item img { max-height: 44px; max-width: 130px; object-fit: contain; filter: grayscale(1); transition: filter .3s; }
.ref-marquee-item:hover img { filter: grayscale(0); }
.ref-marquee-item a { display: flex; align-items: center; justify-content: center; }

/* Referanslar sayfası grid */
.ref-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  height: 100%;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
}
.ref-card:hover { border-color: var(--primary); box-shadow: 0 8px 28px rgba(0,0,0,.09); transform: translateY(-3px); }
.ref-card img { max-height: 64px; max-width: 140px; object-fit: contain; filter: grayscale(.4); transition: filter .3s; }
.ref-card:hover img { filter: grayscale(0); }
.ref-card-name { font-size: .82rem; font-weight: 700; color: var(--muted); text-align: center; }
a .ref-card { text-decoration: none; }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {
  .carousel-control-prev, .carousel-control-next { display: none; }
  #mainNav { background: rgba(11,17,32,.95) !important; backdrop-filter: blur(20px); padding: .75rem 0; }
  .navbar-collapse {
    background: rgba(11,17,32,.98);
    border-radius: 16px;
    padding: 1rem;
    margin-top: .5rem;
    border: 1px solid rgba(255,255,255,.08);
    max-height: 80vh;
    overflow-y: auto;
  }
  .navbar-nav { gap: .25rem !important; }
  .lang-switcher { margin-top: .5rem; }
  .lang-switcher .dropdown-toggle { width: 100%; justify-content: flex-start; }
  .hero-title { font-size: 2.8rem; }
  .stats-ribbon .stat-item { padding: 1rem .75rem; }
  .pd-hero { min-height: 55vh; }
  .pd-meta-ribbon { flex-wrap: wrap; gap: .5rem; }
  .pd-meta-item { flex: 1 1 auto; min-width: 140px; }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {
  /* Floating widgets */
  .floating-contact {
    left: .75rem;
    top: auto;
    bottom: 1rem;
    transform: none;
    align-items: flex-end;
  }
  .floating-contact-panel {
    position: absolute;
    left: 0;
    bottom: 62px;
    width: min(280px, calc(100vw - 1.5rem));
  }
  .wa-chat-widget { bottom: 5.5rem; right: .75rem; }
  #scrollTopBtn { bottom: 10rem; right: .75rem; }
  .wa-chat-fab { width: 50px; height: 50px; font-size: 1.4rem; }
  .wa-chat-popup { width: min(320px, calc(100vw - 1.5rem)); right: 0; }

  /* Hero */
  .hero-content { padding: 6rem 0 7rem; }
  .hero-title { font-size: 2rem; letter-spacing: -.5px; }
  .hero-sub { font-size: .95rem; }
  .hero-badges { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: .65rem !important; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Page hero */
  .page-hero { min-height: 42vh; padding: 5.5rem 0 2rem; }
  .page-hero-bg-text { display: none; }
  .page-hero-title { font-size: 1.6rem; }

  /* Sections */
  .section { padding: 3.5rem 0; }
  .section-title { font-size: 1.55rem; }

  /* Stats */
  .stats-ribbon .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.08); padding: .75rem 1rem; }
  .stats-ribbon .stat-item:last-child { border-bottom: none; }
  .home-stats-ribbon { margin-top: -40px; margin-bottom: 1rem; padding: 0 .75rem; }
  .home-stats-ribbon .container { border-radius: 12px; }
  .home-stats-ribbon .stat-item { padding: 1rem .75rem; border-right: none; }
  .stat-num { font-size: 1.5rem; }

  /* Cards */
  .proje-card, .hizmet-card, .blog-card, .ekip-card { border-radius: 14px; }
  .katalog-card { max-width: 320px; margin-inline: auto; }

  /* Hakkımızda önizleme */
  .about-home-feats { grid-template-columns: 1fr; }
  .about-home-badge { bottom: 1rem; right: 1rem; padding: .75rem 1rem; }
  .about-home-badge-num { font-size: 1.5rem; }

  /* Öne çıkan projeler — mobile overflow fix */
  .proje-featured { min-height: 260px !important; height: 260px !important; }
  .col-lg-6 > .row.h-100 { height: auto !important; }
  .col-sm-6 { width: 50%; }
  .proje-card { transform: none !important; }
  .proje-card:hover { transform: none !important; }

  /* Footer */
  footer { padding: 3rem 0 0; }
  .footer-brand { font-size: 1.4rem; }
  .footer-contact-item { margin-bottom: .6rem; }

  /* Cookie banner */
  .cookie-banner .d-flex { flex-direction: column; align-items: flex-start !important; gap: .75rem !important; }
  .cookie-banner .d-flex > p { width: 100%; }
  .cookie-banner .d-flex > .d-flex { width: 100%; }
  .cookie-accept, .cookie-reject { flex: 1; text-align: center; }

  /* Popup */
  .site-popup { margin: .5rem; max-width: calc(100vw - 1rem); }
  .site-popup-body { padding: 1.25rem; }
  .site-popup-title { font-size: 1.15rem; }

  /* Kariyer */
  .cv-form-wrap { padding: 1.5rem; border-radius: 14px; }
  .kariyer-card { padding: 1rem; }

  /* Banka */
  .banka-card { padding: 1.1rem; }
  .banka-val { font-size: .8rem; word-break: break-all; }

  /* Galeri */
  .foto-galeri-grid { columns: 2; }

  /* Proje detay */
  .pd-hero { min-height: 50vh; padding: 5rem 0 1.5rem; }
  .pd-hero-content h1 { font-size: 1.5rem; }
  .pd-meta-ribbon { padding: .75rem; gap: .4rem; }
  .pd-meta-item { min-width: 120px; }
  .galeri-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Hizmet detay */
  .hd-step { flex-direction: column; text-align: center; }
  .hd-step-num { margin: 0 auto .5rem; }

  /* Navbar lang switcher on mobile */
  .lang-switcher .dropdown-menu { width: 100%; }

  /* Tables - horizontal scroll */
  .table-responsive-always { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ══════════════════════════════════════
   Preloader
════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #080f1e;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity .8s cubic-bezier(.4,0,.2,1), visibility .8s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

/* Hareketli ızgara arka plan */
.pre-grid {
  position: absolute;
  inset: -60px;
  background-image:
    linear-gradient(rgba(245,158,11,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: pre-grid-drift 12s linear infinite;
}
@keyframes pre-grid-drift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(64px,64px); }
}

/* Partiküller */
.pre-particles { position: absolute; inset: 0; pointer-events: none; }
.pre-particles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--primary, #f59e0b);
  opacity: 0;
  animation: pre-particle 6s ease-in-out infinite;
}
.pre-particles span:nth-child(1)  { left:10%; top:20%; animation-delay:0s;    animation-duration:7s; }
.pre-particles span:nth-child(2)  { left:25%; top:70%; animation-delay:.8s;   animation-duration:8s; }
.pre-particles span:nth-child(3)  { left:40%; top:15%; animation-delay:1.4s;  animation-duration:6s; }
.pre-particles span:nth-child(4)  { left:60%; top:80%; animation-delay:.4s;   animation-duration:9s; }
.pre-particles span:nth-child(5)  { left:75%; top:30%; animation-delay:2s;    animation-duration:7s; }
.pre-particles span:nth-child(6)  { left:85%; top:60%; animation-delay:1s;    animation-duration:8s; }
.pre-particles span:nth-child(7)  { left:15%; top:85%; animation-delay:3s;    animation-duration:6s; }
.pre-particles span:nth-child(8)  { left:50%; top:50%; animation-delay:1.6s;  animation-duration:10s; }
.pre-particles span:nth-child(9)  { left:90%; top:10%; animation-delay:.2s;   animation-duration:7s; }
.pre-particles span:nth-child(10) { left:5%;  top:45%; animation-delay:2.5s;  animation-duration:9s; }
.pre-particles span:nth-child(11) { left:68%; top:55%; animation-delay:3.5s;  animation-duration:6s; }
.pre-particles span:nth-child(12) { left:35%; top:40%; animation-delay:4s;    animation-duration:8s; }
@keyframes pre-particle {
  0%,100% { opacity:0; transform:translateY(0) scale(1); }
  30%,70%  { opacity:.6; }
  50%      { opacity:1; transform:translateY(-30px) scale(1.5); }
}

/* Köşe braketler */
.pre-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  opacity: 0;
  animation: pre-corner-in .7s ease forwards;
}
.pre-tl { top: 1.8rem; left: 1.8rem;  border-top: 2px solid rgba(245,158,11,.6); border-left: 2px solid rgba(245,158,11,.6); animation-delay: .2s; }
.pre-br { bottom: 1.8rem; right: 1.8rem; border-bottom: 2px solid rgba(245,158,11,.6); border-right: 2px solid rgba(245,158,11,.6); animation-delay: .4s; }
.pre-tr { top: 1.8rem; right: 1.8rem; border-top: 2px solid rgba(245,158,11,.25); border-right: 2px solid rgba(245,158,11,.25); animation-delay: .6s; }
.pre-bl { bottom: 1.8rem; left: 1.8rem; border-bottom: 2px solid rgba(245,158,11,.25); border-left: 2px solid rgba(245,158,11,.25); animation-delay: .8s; }
@keyframes pre-corner-in {
  from { opacity: 0; transform: scale(.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* Ana içerik */
.pre-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: pre-content-rise .9s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes pre-content-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Üst etiket */
.pre-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(245,158,11,.7);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

/* Logo */
.pre-logo-wrap img {
  max-height: 70px;
  max-width: 220px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  filter: drop-shadow(0 0 18px rgba(245,158,11,.3)) brightness(0) invert(1);
}
.pre-brand {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  text-shadow: 0 0 30px rgba(245,158,11,.3);
}

/* Çizgi */
.pre-divider {
  margin: 1.4rem auto;
  height: 1px;
  width: 240px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,.5), transparent);
  position: relative;
}
.pre-divider span {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary, #f59e0b);
  box-shadow: 0 0 12px rgba(245,158,11,.8);
  animation: pre-dot-pulse 1.5s ease-in-out infinite;
}
@keyframes pre-dot-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity:1; }
  50%      { transform: translate(-50%,-50%) scale(1.8); opacity:.5; }
}

/* Tagline */
.pre-tagline {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}

/* İlerleme çubuğu */
.pre-progress-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
}
.pre-bar {
  width: 220px;
  height: 2px;
  background: rgba(255,255,255,.08);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}
.pre-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f59e0b, #f97316, #f59e0b);
  background-size: 200% 100%;
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(245,158,11,.7);
  animation: pre-shimmer 2s linear infinite;
  transition: width .1s linear;
}
@keyframes pre-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.pre-pct {
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary, #f59e0b);
  min-width: 2.8rem;
  text-align: left;
  font-variant-numeric: tabular-nums;
}

/* ══════════════════════════════════════
   Scroll to Top
════════════════════════════════════════ */
#scrollTopBtn {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary, #f59e0b);
  color: #111;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(245,158,11,.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background .2s;
}
#scrollTopBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTopBtn:hover {
  background: var(--primary-dark, #d97706);
  transform: translateY(-2px);
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .page-hero-title { font-size: 1.35rem; }
  .section-title { font-size: 1.35rem; }
  .stat-num { font-size: 1.35rem; }
  .wa-chat-popup { width: calc(100vw - 1.5rem); }
  .foto-galeri-grid { columns: 1; }
  .kariyer-meta { flex-direction: column; gap: .3rem; }
  .banka-row { flex-direction: column; align-items: flex-start; gap: .3rem; }
  .navbar-brand img { height: 30px !important; }
  .floating-contact-toggle { width: 46px; height: 46px; }
}
