/* ============================================================
   ANER ELEKTRİK — Premium Stylesheet (Modernized)
   ============================================================ */

:root {
  --bg:           #FFFFFF;
  --bg-soft:      #FBFBFD;
  --bg-dark:      #111111;
  --bg-dark2:     #0A0A0A;
  --primary:      #0055FF;
  --cyan:         #00C6FF;
  --gradient:     linear-gradient(135deg, #0055FF 0%, #00C6FF 100%);
  --gradient-45:  linear-gradient(45deg,  #0055FF 0%, #00C6FF 100%);
  --text-h:       #1D1D1F;
  --text-b:       #86868B;
  --text-light:   rgba(255,255,255,0.55);
  --border:       rgba(0,0,0,0.06);
  --border-light: rgba(255,255,255,0.12);
  --glass-bg:     rgba(255,255,255,0.72);
  --glass-dark:   rgba(255,255,255,0.05);
  --shadow-sm:    0 4px 16px rgba(0,0,0,0.05);
  --shadow:       0 20px 40px rgba(0,0,0,0.06);
  --shadow-lg:    0 40px 80px rgba(0,0,0,0.10);
  --shadow-blue:  0 20px 60px rgba(0,85,255,0.25);
  --radius-sm:    12px;
  --radius:       20px;
  --radius-lg:    32px;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h:        70px;
  --ease:         cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out:     cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Background Glow Elements */
.bg-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,85,255,0.12) 0%, transparent 70%);
  border-radius: 50%; filter: blur(80px);
  z-index: -1; pointer-events: none;
  animation: glowMove 20s infinite alternate ease-in-out;
}
@keyframes glowMove {
  0% { transform: translate(-10%, -10%) scale(1); }
  100% { transform: translate(20%, 20%) scale(1.2); }
}

/* ============================================================
   POPUP SYSTEM
============================================================ */
.popup-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(15px);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: all 0.4s var(--ease);
}
.popup-overlay.show { display: flex; opacity: 1; }
.popup-card {
  background: #fff; padding: 48px; border-radius: 32px;
  max-width: 440px; width: 90%; text-align: center;
  transform: scale(0.9); transition: all 0.5s var(--ease);
  box-shadow: var(--shadow-lg);
}
.popup-overlay.show .popup-card { transform: scale(1); }
.popup-icon {
  width: 80px; height: 80px; background: rgba(0,85,255,0.1);
  color: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.popup-icon svg { width: 40px; height: 40px; }
.popup-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; color: var(--text-h); }
.popup-card p { color: var(--text-b); line-height: 1.6; margin-bottom: 32px; font-size: 15px; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body   { font-family: var(--font); background: var(--bg); color: var(--text-h); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img    { max-width: 100%; display: block; }
a      { text-decoration: none; color: inherit; }
ul     { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ============================================================
   LAYOUT HELPERS
============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 120px 0; }
.section-bg { background: var(--bg-soft); }

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block; width: 18px; height: 2px;
  background: var(--gradient);
  border-radius: 99px;
}

.h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.15; color: var(--text-h);
  margin: 0;
}
.h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.25; color: var(--text-h);
}
.h3 {
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.01em; color: var(--text-h);
}
.lead {
  font-size: 1.1rem; font-weight: 400;
  color: var(--text-b); line-height: 1.75;
}
.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-bottom: 0.1em;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 12px 24px;
  border-radius: 999px; font-size: 15px; font-weight: 600;
  transition: all 0.3s var(--ease); cursor: pointer;
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-lg { padding: 18px 42px; font-size: 16px; letter-spacing: -0.01em; }

.btn-grad {
  background: var(--gradient); color: #fff;
  box-shadow: 0 10px 30px rgba(0,85,255,0.3);
}
.btn-grad:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,85,255,0.4);
}

.btn-glass {
  background: rgba(0, 85, 255, 0.04);
  border: 2px solid rgba(0, 85, 255, 0.15);
  color: var(--primary);
}
.btn-glass:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 85, 255, 0.2);
}

.btn-shine::after {
  content: ''; position: absolute; top: -50%; left: -60%;
  width: 20%; height: 200%; background: rgba(255,255,255,0.3);
  transform: rotate(30deg); transition: none;
  animation: btnShine 4s infinite;
}
@keyframes btnShine {
  0% { left: -60%; }
  15% { left: 140%; }
  100% { left: 140%; }
}
.btn-outline {
  background: #fff; color: var(--text-h);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover {
  border-color: rgba(0,85,255,0.3);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: var(--glass-dark);
  border: 1px solid var(--border-light);
  color: #fff;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.48); }
.btn-outline-wa {
  background: transparent;
  color: var(--text-h);
  border: 2px solid var(--border);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-wa:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 16px; }

/* ============================================================
   WA CTA SECTION
============================================================ */
.wa-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0,85,255,0.06) 0%, rgba(37,211,102,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wa-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.wa-cta-text { flex: 1; min-width: 260px; }
.wa-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.wa-cta-actions .btn { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 640px) {
  .wa-cta-inner { flex-direction: column; text-align: center; }
  .wa-cta-actions { justify-content: center; }
}

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 1px 40px rgba(0,0,0,0.08);
}
.nav-wrap {
  height: var(--nav-h);
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 17px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text-h);
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; font-weight: 900;
  flex-shrink: 0;
}
.nav-logo-text { font-size: 17px; font-weight: 800; line-height: 1.25; letter-spacing: -0.02em; }
.nav-logo-text small { display: block; font-size: 10px; font-weight: 600; color: var(--text-b); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-b);
  padding: 7px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-h); background: rgba(0,0,0,0.04);
}

.nav-cta { flex-shrink: 0; }

.nav-search-btn {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-h); transition: all 0.2s;
  cursor: pointer;
}
.nav-search-btn:hover { background: rgba(0,0,0,0.05); color: var(--primary); }

.nav-hamburger {
  display: none; flex-direction: column;
  justify-content: space-between;
  width: 24px; height: 16px;
  cursor: pointer; background: none; border: none;
}
.nav-hamburger span {
  display: block; height: 1.5px;
  background: var(--text-h); border-radius: 99px;
  transition: all 0.3s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px 24px;
  z-index: 999;
  transform: translateY(-8px); opacity: 0;
  transition: all 0.3s var(--ease);
  pointer-events: none;
}
.nav-drawer.open {
  transform: translateY(0); opacity: 1;
  pointer-events: all; display: block;
}
.nav-drawer a {
  display: block; font-size: 16px; font-weight: 500;
  color: var(--text-h); padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-drawer a:last-child { border-bottom: none; }

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  position: relative; overflow: hidden;
  background: var(--bg);
}

.hero-glow {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(100px);
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(0, 85, 255, 0.07);
  top: -100px; right: -150px;
  animation: float-glow 20s infinite alternate var(--ease);
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: rgba(0, 198, 255, 0.06);
  bottom: 0; left: -100px;
  animation: float-glow 25s infinite alternate-reverse var(--ease);
}
.hero-glow-3 {
  width: 300px; height: 300px;
  background: rgba(0, 85, 255, 0.05);
  top: 40%; left: 50%;
  transform: translateX(-50%);
  animation: float-glow 15s infinite alternate var(--ease);
}

@keyframes float-glow {
  0%   { transform: translate(0, 0) rotate(0deg); }
  50%  { transform: translate(50px, 30px) rotate(10deg); }
  100% { transform: translate(-30px, 50px) rotate(-10deg); }
}

.hero-inner {
  position: relative; z-index: 10;
  text-align: center;
  padding: 120px 0 180px;
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,85,255,0.06); border: 1px solid rgba(0,85,255,0.15);
  color: var(--primary); font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 32px;
  animation: fadeUp 0.7s var(--ease) both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gradient); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero .h1 {
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s var(--ease) both;
}
.hero .lead {
  max-width: 650px; margin: 0 auto 40px;
  animation: fadeUp 0.7s 0.2s var(--ease) both;
  min-height: 56px;
  display: flex; align-items: center; justify-content: center;
}
#typewriter::after {
  content: '|';
  margin-left: 2px;
  color: var(--primary);
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-btns {
  display: flex; align-items: center;
  justify-content: center; gap: 20px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s var(--ease) both;
  margin-top: 56px;
}
@media (max-width: 600px) {
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: var(--text-b); font-size: 11px;
  font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeUp 0.7s 0.5s var(--ease) both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--text-b), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; } 50% { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-wrap {
  position: relative; z-index: 10;
  margin-top: -60px; padding-bottom: 80px;
  overflow: hidden;
}
.trust-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.03);
  padding: 28px 48px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 0 24px; position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 40px;
  background: rgba(0,0,0,0.08);
}
.trust-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(0,85,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-h); margin-bottom: 2px; }
.trust-text span   { font-size: 12px; color: var(--text-b); }

/* ============================================================
   SERVICES
============================================================ */
.services-section { padding: 120px 0; background: var(--bg-soft); overflow: hidden; position: relative; }
.services-header {
  text-align: center; max-width: 620px;
  margin: 0 auto 72px;
}
.services-header .h2 { margin-bottom: 16px; }

.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.srv-card {
  background: #fff; padding: 48px 40px; border-radius: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex; flex-direction: column;
  transition: all 0.5s var(--ease);
  position: relative; overflow: hidden;
  text-decoration: none;
}
.srv-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient);
  opacity: 0; transition: opacity 0.5s var(--ease);
  z-index: 0;
}
.srv-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 30px 60px rgba(0,85,255,0.15);
}
.srv-card:hover::before { opacity: 1; }

.srv-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--text-b); margin-bottom: 24px;
  position: relative; z-index: 1;
  transition: color 0.4s;
}
.srv-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px; color: var(--primary);
  transition: all 0.5s var(--ease);
  position: relative; z-index: 1;
}
.srv-icon-wrap svg { width: 28px; height: 28px; }

.srv-card .h3 { 
  margin-bottom: 16px; position: relative; z-index: 1;
  transition: color 0.4s;
}
.srv-card p { 
  font-size: 15px; color: var(--text-b); line-height: 1.8;
  position: relative; z-index: 1;
  transition: color 0.4s;
}

.srv-card:hover .h3, 
.srv-card:hover p, 
.srv-card:hover .srv-num {
  color: #fff;
}
.srv-card:hover .srv-icon-wrap {
  background: rgba(255,255,255,0.2);
  color: #fff;
  transform: rotate(10deg);
}

/* ============================================================
   ABOUT
============================================================ */
.about-section { padding: 120px 0; background: var(--bg); overflow: hidden; position: relative; }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-content .eyebrow { margin-bottom: 20px; }
.about-content .h2      { margin-bottom: 24px; }
.about-content .lead    { margin-bottom: 32px; }

.about-features {
  display: flex; flex-direction: column;
  gap: 16px; margin-bottom: 40px;
}
.about-feat {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; color: var(--text-h);
}
.feat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient); flex-shrink: 0;
}

.about-visual { position: relative; }
.about-img {
  width: 100%; height: 520px; border-radius: 24px;
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg);
}
.about-img-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0a1628 0%, #0d3068 50%, #0055ff 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-inner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,85,255,0.2), rgba(0,198,255,0.1));
}
.about-img-icon {
  position: relative; z-index: 1;
  width: 100px; height: 100px; border-radius: 28px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.about-img-icon svg { width: 48px; height: 48px; }

.about-stat-card {
  position: absolute; bottom: -24px; left: -24px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 24px 32px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 4px;
  z-index: 5;
}
.stat-num  { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--text-h); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-b); font-weight: 500; }

.about-badge-card {
  position: absolute; top: -20px; right: -20px;
  background: var(--gradient);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-blue);
  color: #fff; text-align: center;
  z-index: 5;
}
.badge-num  { font-size: 1.8rem; font-weight: 800; line-height: 1; margin-bottom: 4px; display: block; }
.badge-label { font-size: 12px; font-weight: 600; opacity: 0.9; }


/* ============================================================
   PROJECTS
============================================================ */
.projects-section { padding: 120px 0; background: var(--bg-soft); overflow: hidden; position: relative; }
.projects-header {
  text-align: center; max-width: 560px;
  margin: 0 auto 64px;
}
.projects-header .h2 { margin-bottom: 14px; }

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}
.proj-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: pointer;
  background: #0a1020;
}
.proj-card.tall { grid-row: span 2; }

.proj-bg {
  width: 100%; height: 100%;
  position: relative; overflow: hidden;
}
.proj-bg-1 { background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #0055ff 100%); }
.proj-bg-2 { background: linear-gradient(135deg, #0a1628 0%, #0d2a50 50%, #00c6ff 100%); }
.proj-bg-3 { background: linear-gradient(135deg, #111827 0%, #1f2d47 50%, #0073e6 100%); }
.proj-bg-4 { background: linear-gradient(135deg, #0f1f3a 0%, #0e2d55 50%, #0055ff 100%); }
.proj-bg-5 { background: linear-gradient(135deg, #0d2010 0%, #1a4020 50%, #22c55e 100%); }

.card-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 1.4s ease, transform 8s ease;
  transform: scale(1.04);
}
.card-slide.active {
  opacity: 1;
  transform: scale(1);
}
.proj-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at 70% 30%, rgba(0,198,255,0.12), transparent 70%);
  pointer-events: none;
}

.proj-card:hover .proj-bg { transform: scale(1.03); transition: transform 0.5s var(--ease); }

.proj-overlay {
  position: absolute; inset: 0; z-index: 5;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 40px;
  opacity: 0; transition: all 0.5s var(--ease);
  pointer-events: none;
}
.proj-card:hover .proj-overlay { opacity: 1; pointer-events: all; }

.proj-overlay h3 { color: #fff; font-size: 24px; font-weight: 700; margin-bottom: 12px; transform: translateY(20px); transition: transform 0.5s var(--ease); }
.proj-overlay p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; margin-bottom: 24px; transform: translateY(20px); transition: transform 0.5s var(--ease) 0.1s; }
.proj-actions { transform: translateY(20px); transition: transform 0.5s var(--ease) 0.2s; }

.proj-card:hover .proj-overlay h3,
.proj-card:hover .proj-overlay p,
.proj-card:hover .proj-actions { transform: translateY(0); }

.proj-always {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 40%);
}
.proj-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--primary); color: #fff;
  padding: 4px 10px; border-radius: 6px;
  margin-bottom: 8px; width: fit-content;
}
.proj-title-always {
  font-size: 18px; font-weight: 700; color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.proj-desc {
  font-size: 13px; color: rgba(255,255,255,0.8);
  line-height: 1.6; margin-top: 8px;
}
.proj-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-top: 16px; color: #fff; flex-shrink: 0;
  transition: background 0.2s;
}
.proj-card:hover .proj-arrow { background: var(--primary); }

/* ============================================================
   QUOTE FORM (DARK)
============================================================ */
.quote-section { padding: 120px 0; background: var(--bg); overflow: hidden; position: relative; }
.quote-box {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
}

.quote-glow {
  position: absolute; pointer-events: none;
  border-radius: 50%; filter: blur(80px);
}
.quote-glow-1 {
  width: 400px; height: 400px;
  background: rgba(0,85,255,0.18);
  top: -100px; right: -100px;
}
.quote-glow-2 {
  width: 300px; height: 300px;
  background: rgba(0,198,255,0.1);
  bottom: -80px; left: -60px;
}

.quote-left {
  padding: 72px 56px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  justify-content: center;
}
.quote-left .eyebrow { color: rgba(0,198,255,0.9); }
.quote-left .eyebrow::before { background: linear-gradient(90deg, #0055FF, #00C6FF); }
.quote-left .h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.6rem); margin-bottom: 20px; }
.quote-left .lead { color: rgba(255,255,255,0.5); margin-bottom: 40px; }

.qt-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.75); margin-bottom: 14px;
}
.qt-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,85,255,0.25);
  border: 1px solid rgba(0,85,255,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #60a5fa;
}
.qt-check svg { width: 12px; height: 12px; }

.quote-right {
  padding: 72px 56px;
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  justify-content: center; gap: 20px;
}

.dark-field { display: flex; flex-direction: column; gap: 0; }
.dark-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}
.dark-input, .dark-select {
  width: 100%; background: rgba(255,255,255,0.05);
  border: none; border-bottom: 1px solid rgba(255,255,255,0.12);
  color: #fff; font-family: var(--font); font-size: 16px;
  font-weight: 500; padding: 12px 0;
  outline: none; transition: border-color 0.2s;
  border-radius: 0;
}
.dark-input::placeholder { color: rgba(255,255,255,0.2); }
.dark-input:focus, .dark-select:focus { border-bottom-color: var(--cyan); }
.dark-select { cursor: pointer; }
.dark-select option { background: #111; color: #fff; }
.dark-textarea { resize: none; min-height: 90px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ============================================================
   CONTACT
============================================================ */
.contact-section { padding: 120px 0; background: var(--bg-soft); overflow: hidden; position: relative; }
.contact-header { text-align: center; max-width: 500px; margin: 0 auto 64px; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.cinfo-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease); margin-bottom: 20px;
}
.cinfo-item:hover {
  border-color: rgba(0,85,255,0.2);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.cinfo-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: rgba(0,85,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); transition: all 0.25s;
}
.cinfo-icon svg { width: 19px; height: 19px; }
.cinfo-item:hover .cinfo-icon { background: var(--gradient); color: #fff; }
.cinfo-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-b); margin-bottom: 4px; }
.cinfo-val { font-size: 15px; font-weight: 600; color: var(--text-h); }

.contact-map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  height: 380px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================================
   FOOTER
============================================================ */
.footer { background: var(--bg-dark2); color: rgba(255,255,255,0.5); padding: 100px 0 0; margin-top: 120px; width: 100%; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 80px; }
.footer-brand .nav-logo { margin-bottom: 24px; pointer-events: none; height: auto; }
.footer-brand .nav-logo-text { color: #fff !important; font-size: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 300px; color: rgba(255,255,255,0.4); margin-bottom: 32px; }

.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all 0.3s var(--ease);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { 
  background: var(--primary); 
  color: #fff; 
  transform: translateY(-5px); 
  border-color: var(--primary); 
  box-shadow: 0 10px 20px rgba(0,85,255,0.2);
}

.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ============================================================
   SEARCH OVERLAY
============================================================ */
.search-overlay {
  position: fixed; inset: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: all 0.4s var(--ease);
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-container { width: 90%; max-width: 600px; text-align: center; }
.search-input { width: 100%; background: transparent; border: none; border-bottom: 2px solid var(--primary); padding: 15px 0; font-size: 32px; font-weight: 700; color: var(--text-h); outline: none; }
.search-close { position: absolute; top: 30px; right: 40px; font-size: 40px; cursor: pointer; color: var(--text-b); transition: color 0.3s; }

/* ============================================================
   REVEAL & ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* Stagger Children Support */
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease);
}
.stagger-reveal.in > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.stagger-reveal.in > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.stagger-reveal.in > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.stagger-reveal.in > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.stagger-reveal.in > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.stagger-reveal.in > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

/* ============================================================
   FLOATING & WIDGETS
============================================================ */
.float-wrap { position: fixed; bottom: 28px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: all 0.25s var(--ease); position: relative; }
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; animation: wa-pulse 2s infinite; }
.float-tel { background: var(--gradient); }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

.wa-widget { 
  position: absolute; right: 0; bottom: calc(100% + 20px); 
  width: 360px; background: #fff; border-radius: 28px; 
  box-shadow: 0 30px 60px rgba(0,0,0,0.15); overflow: hidden; 
  opacity: 0; transform: translateY(20px) scale(0.95); 
  pointer-events: none; transition: all 0.4s var(--ease); z-index: 1000; 
  border: 1px solid rgba(0,0,0,0.05);
}
.wa-widget.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }

.wa-header { 
  background: #25D366; padding: 24px; color: #fff; 
  display: flex; justify-content: space-between; align-items: center; 
  position: relative; overflow: hidden;
}
.wa-header::after {
  content: ''; position: absolute; top: -50%; left: -60%;
  width: 20%; height: 200%; background: rgba(255,255,255,0.2);
  transform: rotate(30deg); animation: headerShine 6s infinite;
}
@keyframes headerShine {
  0% { left: -60%; }
  15% { left: 140%; }
  100% { left: 140%; }
}

.wa-header-left { display: flex; align-items: center; gap: 12px; }
.wa-header-left svg { width: 32px; height: 32px; }
.wa-header h3 { font-size: 18px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.wa-close { 
  width: 32px; height: 32px; background: rgba(0,0,0,0.1); 
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; transition: all 0.2s; 
  position: relative; z-index: 2;
}
.wa-close:hover { background: rgba(0,0,0,0.2); }

.wa-body { 
  padding: 32px 24px; background: #f0f2f5; 
  background-image: url("https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png");
  background-size: contain;
}
.wa-msg {
  background: #fff; padding: 16px 20px; border-radius: 0 20px 20px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); max-width: 85%;
  position: relative; margin-bottom: 40px;
  opacity: 0; transform: translateY(10px);
  transition: all 0.5s var(--ease) 0.3s;
}
.wa-widget.show .wa-msg { opacity: 1; transform: translateY(0); }

.wa-msg::before {
  content: ''; position: absolute; left: -10px; top: 0;
  width: 20px; height: 20px; background: #fff;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.wa-msg p { font-size: 15px; color: #111; line-height: 1.6; margin: 0; font-weight: 500; }
.wa-msg .wave { display: inline-block; animation: wave 2s infinite; transform-origin: 70% 70%; }

@keyframes wave {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.wa-footer { padding: 0 24px 24px; background: transparent; display: flex; justify-content: flex-end; }
.wa-btn-reply {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 28px; background: #25D366; border-radius: 40px;
  color: #fff; font-size: 16px; font-weight: 700;
  box-shadow: 0 10px 25px rgba(37,211,102,0.3);
  transition: all 0.3s var(--ease);
  animation: btnPulse 2s infinite;
}
@keyframes btnPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.wa-btn-reply:hover { animation-play-state: paused; transform: translateY(-3px) scale(1.05); box-shadow: 0 15px 35px rgba(37,211,102,0.45); }
.wa-btn-reply svg { transform: rotate(-45deg); margin-top: -2px; }


.float-tip {
  position: absolute; right: calc(100% + 20px);
  background: #fff; color: #111;
  padding: 12px 20px; border-radius: 20px 20px 0 20px;
  font-size: 14px; font-weight: 600;
  opacity: 0; pointer-events: none;
  transform: translateX(10px); transition: all 0.3s var(--ease);
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
}
.float-tip::after {
  content: ''; position: absolute; right: -10px; bottom: 0;
  width: 20px; height: 20px; background: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.float-btn:hover .float-tip { opacity: 1; transform: translateX(0); }


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .proj-card.tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quote-box { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 80px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero mobil düzeltme */
  .hero { min-height: auto; padding-top: var(--nav-h); padding-bottom: 60px; }
  .hero-inner { padding: 40px 0 20px; }
  .hero .h1 br { display: none; }
  .hero .h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero .lead { max-width: 100%; font-size: 15px; }
  .hero-btns { margin-top: 32px; }
  .hero-scroll { display: none; }

  /* Section padding küçült */
  .services-section, .about-section, .projects-section, .quote-section, .contact-section { padding: 72px 0; }
  .trust-wrap { padding-bottom: 40px; }

  /* Stats kartı — 2x2 grid, padding küçült */
  .trust-card { grid-template-columns: 1fr 1fr; padding: 20px 16px; gap: 16px; }
  .trust-item { padding: 12px 8px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .trust-item + .trust-item::before { display: none; }

  /* Hizmet kartları */
  .srv-grid { grid-template-columns: 1fr; }

  /* Hakkımızda */
  .about-inner { grid-template-columns: 1fr; }
  .about-stat-card, .about-badge-card { display: none; }

  /* Proje kartları */
  .proj-grid { grid-template-columns: 1fr; }
  .proj-card { height: 240px; }

  /* Form — 2 sütun → 1 sütun */
  .form-row { grid-template-columns: 1fr; }
  .quote-box { grid-template-columns: 1fr; }
  .quote-left { padding: 40px 24px 24px; }
  .quote-right { padding: 24px; }

  /* İletişim */
  .contact-inner { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }

  /* Modal */
  .modal-card { grid-template-columns: 1fr; }
  .modal-img { height: 220px; }

  /* WhatsApp */
  .wa-widget { width: calc(100vw - 48px); right: 0; }
  .float-tip { display: none; }
}

/* ============================================================
   PAGE SPECIFIC: PROJECTS & MODAL
============================================================ */
.sub-header { padding: 180px 0 100px; position: relative; overflow: hidden; background: var(--bg-soft); text-align: center; }
.header-glow { position: absolute; width: 600px; height: 600px; background: rgba(0,198,255,0.06); filter: blur(120px); bottom: -300px; left: -150px; }

.proj-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 40px; }
.proj-gallery .proj-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 20px); margin: 0 auto; width: 100%; }
@media (max-width: 767px) { .proj-gallery .proj-card:last-child:nth-child(odd) { grid-column: auto; max-width: 100%; } }
.proj-gallery .proj-card { position: relative; border-radius: 32px; overflow: hidden; height: 500px; background: #000; box-shadow: var(--shadow); transition: all 0.4s var(--ease); cursor: pointer; }
.proj-gallery .proj-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.proj-gallery .proj-bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }

/* HORIZONTAL SLIDER RESTORED */
.proj-slider { 
  position: absolute; 
  inset: 0; 
  display: flex; 
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1); 
  z-index: 1;
}
.proj-slide { 
  min-width: 100%; 
  height: 100%; 
  position: relative; 
  overflow: hidden;
}
.proj-slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  opacity: 0.85; 
  transition: transform 1.2s var(--ease); 
}
.proj-card:hover .proj-slide img { 
  transform: scale(1.1); 
  opacity: 1; 
}

/* Pagination Dots */
.proj-dots { 
  position: absolute; 
  bottom: 24px; 
  right: 24px; 
  display: flex; 
  gap: 8px; 
  z-index: 15; 
}
.dot { 
  width: 8px; 
  height: 8px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.4); 
  transition: all 0.3s; 
  cursor: pointer;
}
.dot.active { 
  width: 24px; 
  border-radius: 10px; 
  background: #fff; 
}

.slider-nav { 
  position: absolute; 
  top: 50%; 
  transform: translateY(-50%); 
  width: 100%; 
  display: flex; 
  justify-content: space-between; 
  padding: 0 20px; 
  z-index: 20; 
  opacity: 0; 
  transition: opacity 0.3s; 
  pointer-events: none; 
}
.proj-card:hover .slider-nav { opacity: 1; }
.nav-arrow { 
  width: 48px; 
  height: 48px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.15); 
  backdrop-filter: blur(12px); 
  color: #fff; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.3s var(--ease); 
  cursor: pointer; 
  border: 1px solid rgba(255,255,255,0.2); 
  pointer-events: auto; 
}
.nav-arrow:hover { background: #fff; color: var(--primary); transform: scale(1.1); }

.btn-project {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 28px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 99px; color: #fff; font-weight: 600; font-size: 14px;
  transition: all 0.3s var(--ease); background: transparent;
  backdrop-filter: blur(5px);
}
.btn-project:hover {
  background: #fff; color: var(--bg-dark); border-color: #fff;
  transform: scale(1.05);
}
.btn-project svg { transition: transform 0.3s; }
.btn-project:hover svg { transform: translateX(5px); }

/* MODAL SYSTEM */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(15px); z-index: 3000; display: none; align-items: center; justify-content: center; opacity: 0; transition: all 0.4s var(--ease); padding: 20px; }
.modal-overlay.open { display: flex; opacity: 1; }
.modal-card { background: var(--bg); width: 100%; max-width: 1000px; max-height: 90vh; border-radius: 32px; overflow-y: auto; position: relative; display: grid; grid-template-columns: 1.2fr 1fr; box-shadow: var(--shadow-lg); transform: scale(0.95); transition: all 0.5s var(--ease); }
.modal-overlay.open .modal-card { transform: scale(1); }
.modal-close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: #eee; display: flex; align-items: center; justify-content: center; font-size: 24px; cursor: pointer; z-index: 10; transition: all 0.2s; }
.modal-close:hover { background: var(--primary); color: #fff; }

.modal-visual { background: #000; height: 100%; min-height: 500px; }
.modal-visual img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 60px; }
.modal-info h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 24px; }
.modal-desc { color: var(--text-b); line-height: 1.8; margin-bottom: 40px; }
.modal-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.stat-item { border-left: 3px solid var(--primary); padding-left: 16px; }
.stat-val { display: block; font-weight: 700; font-size: 16px; }
.stat-lab { display: block; font-size: 12px; color: var(--text-b); text-transform: uppercase; margin-top: 4px; }

@media (max-width: 860px) {
  .proj-gallery { grid-template-columns: 1fr; }
  .modal-card { grid-template-columns: 1fr; }
  .modal-visual { min-height: 300px; }
  .modal-info { padding: 40px 30px; }
}

/* ============================================================
   PAGE SPECIFIC: SERVICES (Hizmetler Detay)
============================================================ */
.srv-detail-item { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 120px; }
.srv-detail-item:nth-child(even) { direction: rtl; }
.srv-detail-item:nth-child(even) .srv-detail-content { direction: ltr; }
.srv-detail-visual { position: relative; border-radius: 24px; overflow: hidden; height: 480px; box-shadow: var(--shadow-lg); background: #eee; }
.srv-detail-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.srv-detail-item:hover .srv-detail-visual img { transform: scale(1.1); }

/* Premium Shine Effect */
.srv-detail-visual::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
}
.srv-detail-item:hover .srv-detail-visual::after {
  animation: srvShine 0.8s var(--ease);
}
@keyframes srvShine {
  100% { left: 150%; }
}

.srv-detail-content .h2 { margin-bottom: 24px; font-size: 2.2rem; }
.srv-detail-content p { color: var(--text-b); font-size: 1.1rem; line-height: 1.8; margin-bottom: 32px; }
.srv-feat-list { display: flex; flex-direction: column; gap: 16px; }
.srv-feat-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--text-h); font-size: 15px; }
.srv-feat-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gradient); }

@media (max-width: 992px) {
  .srv-detail-item { grid-template-columns: 1fr; gap: 40px; }
  .srv-detail-visual { height: 320px; }
}


