/* ===========================
   ANKARA SERVER — STYLE.CSS
   Deep navy + electric green industrial theme
   =========================== */

:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --accent: #3b82f6;
  --accent2: #f59e0b;
  --dark: #030712;
  --dark-2: #0a0f1e;
  --dark-3: #0f1629;
  --card-bg: #0d1526;
  --card-border: rgba(16,185,129,0.12);
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --font-display: 'Exo 2', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 30px rgba(0,0,0,0.5);
  --glow: 0 0 24px rgba(16,185,129,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.highlight { color: var(--primary); }

/* ====== NAVBAR ====== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 18px 0;
  background: rgba(3,7,18,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(16,185,129,0.08);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(3,7,18,0.97);
  border-bottom-color: rgba(16,185,129,0.2);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--dark);
  box-shadow: var(--glow);
}
.brand-main { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: 2px; line-height: 1; }
.brand-sub { display: block; font-family: var(--font-display); font-size: 11px; font-weight: 500; color: var(--primary); letter-spacing: 3px; line-height: 1.4; }
.nav-links { display: flex; list-style: none; gap: 8px; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(16,185,129,0.08); }
.nav-cta { background: var(--primary) !important; color: var(--dark) !important; font-weight: 600 !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ====== HERO ====== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 45%, rgba(16,185,129,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 20%, rgba(59,130,246,0.05) 0%, transparent 60%),
              linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(16,185,129,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,185,129,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: var(--primary); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 500; margin-bottom: 24px; }
.hero-content h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 700; line-height: 1.15; color: var(--white); margin-bottom: 20px; }
.hero-desc { color: var(--text-muted); font-size: 17px; line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--dark); font-weight: 600; padding: 14px 28px; border-radius: var(--radius); text-decoration: none; font-size: 15px; transition: all 0.3s; box-shadow: 0 4px 20px rgba(16,185,129,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,185,129,0.4); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; color: var(--text); font-weight: 500; padding: 14px 24px; border-radius: var(--radius); text-decoration: none; font-size: 15px; border: 1px solid rgba(255,255,255,0.12); transition: all 0.3s; }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat .stat-num { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--primary); }
.stat .stat-lbl { display: block; font-size: 12px; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Server Visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.server-rack {
  width: 220px; background: linear-gradient(180deg, #0f1a2e, #071020);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 12px; padding: 20px 16px;
  box-shadow: 0 0 60px rgba(16,185,129,0.15), var(--shadow);
  position: relative;
}
.server-rack::before {
  content: '';
  position: absolute; left: -12px; top: 20px; bottom: 20px;
  width: 4px; background: rgba(16,185,129,0.15);
  border-radius: 4px;
}
.rack-unit {
  background: linear-gradient(135deg, #0d1f35, #071828);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 6px; padding: 10px 12px;
  margin-bottom: 8px; display: flex;
  align-items: center; gap: 8px;
  position: relative; overflow: hidden;
}
.rack-unit::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 3px; border-radius: 0 6px 6px 0;
}
.rack-unit.active::after { background: var(--primary); box-shadow: 0 0 8px var(--primary); }
.rack-unit.accent::after { background: var(--accent); }
.rack-unit.warn::after { background: var(--accent2); }
.rack-led { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.rack-led.green { background: var(--primary); box-shadow: 0 0 6px var(--primary); animation: blink 2s infinite; }
.rack-led.blue { background: var(--accent); box-shadow: 0 0 6px var(--accent); }
.rack-led.yellow { background: var(--accent2); box-shadow: 0 0 6px var(--accent2); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
.rack-info { flex: 1; }
.rack-info .ri-name { font-size: 10px; font-weight: 600; color: var(--text); font-family: var(--font-display); letter-spacing: 0.5px; }
.rack-info .ri-stat { font-size: 9px; color: var(--text-muted); }
.rack-bars { display: flex; gap: 2px; align-items: flex-end; }
.rack-bar { width: 4px; background: rgba(16,185,129,0.3); border-radius: 2px; animation: barAnim 1.5s ease-in-out infinite; }
.rack-bar:nth-child(1) { height: 8px; animation-delay: 0s; }
.rack-bar:nth-child(2) { height: 14px; animation-delay: 0.2s; }
.rack-bar:nth-child(3) { height: 10px; animation-delay: 0.4s; }
.rack-bar:nth-child(4) { height: 6px; animation-delay: 0.6s; }
@keyframes barAnim { 0%,100%{opacity:0.4; transform:scaleY(1)} 50%{opacity:1; transform:scaleY(1.3)} }
.rack-status { text-align: center; margin-top: 12px; font-size: 10px; color: var(--primary); font-family: var(--font-display); letter-spacing: 1px; }
.rack-status span { display: inline-flex; align-items: center; gap: 4px; }

/* ====== BRANDS ====== */
.brands-section { padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(255,255,255,0.02); }
.brands-label { text-align: center; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 24px; }
.brands-row { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.brand-item img { height: 28px; opacity: 0.45; filter: grayscale(1) brightness(1.5); transition: all 0.3s; object-fit: contain; }
.brand-item:hover img { opacity: 0.85; filter: none; }

/* ====== SECTIONS ====== */
section { padding: 96px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { display: inline-block; background: rgba(16,185,129,0.1); color: var(--primary); padding: 4px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.6rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ====== SERVICES ====== */
.services-section { background: var(--dark-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 32px; transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 40px rgba(16,185,129,0.06); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: rgba(16,185,129,0.35); background: linear-gradient(135deg, #0d1526, #0a1f30); }
.featured-badge { position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--dark); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.service-icon { width: 52px; height: 52px; background: rgba(16,185,129,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.service-list { list-style: none; margin-bottom: 24px; }
.service-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); padding: 4px 0; }
.service-list i { color: var(--primary); font-size: 11px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: 13px; font-weight: 600; text-decoration: none; transition: gap 0.2s; }
.service-link:hover { gap: 10px; }

/* ====== PROCESS ====== */
.process-section { background: var(--dark); }
.process-steps { display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap; }
.process-step { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 32px 24px; text-align: center; flex: 1; min-width: 180px; max-width: 220px; transition: all 0.3s; }
.process-step:hover { border-color: rgba(16,185,129,0.3); transform: translateY(-4px); }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: rgba(16,185,129,0.08); line-height: 1; margin-bottom: 8px; }
.step-icon { width: 48px; height: 48px; background: rgba(16,185,129,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); margin: 0 auto 16px; }
.process-step h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.process-arrow { color: rgba(16,185,129,0.3); font-size: 20px; }

/* ====== WHY ====== */
.why-section { background: var(--dark-2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.why-content > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 40px; height: 40px; background: rgba(16,185,129,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--primary); flex-shrink: 0; }
.why-feature h4 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.why-feature p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.why-visual { position: relative; }
.why-visual img { width: 100%; border-radius: 20px; object-fit: cover; height: 460px; border: 1px solid var(--card-border); }
.why-card { position: absolute; background: var(--card-bg); border: 1px solid rgba(16,185,129,0.2); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; backdrop-filter: blur(10px); box-shadow: var(--shadow); }
.why-card i { font-size: 22px; color: var(--primary); }
.why-card strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
.why-card span { font-size: 12px; color: var(--text-muted); }
.why-card-1 { top: 24px; left: -24px; }
.why-card-2 { bottom: 24px; right: -24px; }

/* ====== TESTIMONIALS ====== */
.testimonials-section { background: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 28px; transition: all 0.3s; }
.testimonial-card:hover { border-color: rgba(16,185,129,0.25); transform: translateY(-4px); }
.stars { color: #fbbf24; font-size: 16px; margin-bottom: 16px; }
.testimonial-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--dark); }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* ====== CTA ====== */
.cta-section { background: var(--dark-2); padding: 64px 0; }
.cta-box { background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(59,130,246,0.06)); border: 1px solid rgba(16,185,129,0.2); border-radius: 20px; padding: 56px 48px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-content h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.cta-content p { color: var(--text-muted); font-size: 15px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-weight: 500; padding: 16px 28px; border-radius: var(--radius); text-decoration: none; font-size: 15px; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

/* ====== FOOTER ====== */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand > p { color: var(--text-muted); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; font-size: 14px; transition: all 0.2s; }
.footer-social a:hover { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3); color: var(--primary); }
.footer-col h4 { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 13px; color: var(--text-muted); }
.footer-contact-item i { color: var(--primary); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: var(--text-muted); text-decoration: none; }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: var(--text-muted); font-size: 12px; }
.footer-bottom a { color: var(--primary); text-decoration: none; }

/* ====== PAGE HERO ====== */
.page-hero { padding: 140px 0 80px; background: var(--dark-2); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(16,185,129,0.06), transparent); }
.page-hero .container { position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; list-style: none; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--primary); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.page-hero p { color: var(--text-muted); font-size: 16px; max-width: 560px; line-height: 1.7; }

/* ====== HIZMET DETAIL ====== */
.hizmet-detail { padding: 80px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hizmet-detail:nth-child(even) .hizmet-grid { direction: rtl; }
.hizmet-detail:nth-child(even) .hizmet-grid > * { direction: ltr; }
.hizmet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hizmet-img { border-radius: 16px; overflow: hidden; border: 1px solid var(--card-border); }
.hizmet-img img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform 0.5s; }
.hizmet-img:hover img { transform: scale(1.03); }
.hizmet-content h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.hizmet-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.hizmet-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tag { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); color: var(--primary); padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 500; }

/* ====== CONTACT ====== */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--white); margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; margin-bottom: 16px; transition: all 0.3s; }
.contact-item:hover { border-color: rgba(16,185,129,0.3); }
.contact-item-icon { width: 44px; height: 44px; background: rgba(16,185,129,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--primary); flex-shrink: 0; }
.contact-item h4 { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.8px; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--white); text-decoration: none; line-height: 1.5; }
.contact-form-box { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 20px; padding: 40px; }
.contact-form-box h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.contact-form-box > p { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 8px; }
input, textarea, select { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 12px 16px; color: var(--white); font-family: var(--font-body); font-size: 14px; transition: all 0.3s; outline: none; }
input:focus, textarea:focus, select:focus { border-color: rgba(16,185,129,0.5); background: rgba(16,185,129,0.03); box-shadow: 0 0 0 3px rgba(16,185,129,0.08); }
textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--dark); font-weight: 600; padding: 14px; border: none; border-radius: var(--radius); font-size: 15px; cursor: pointer; transition: all 0.3s; font-family: var(--font-body); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,185,129,0.4); }
.map-container { margin-top: 64px; border-radius: 20px; overflow: hidden; border: 1px solid var(--card-border); }
.map-container iframe { width: 100%; height: 380px; display: block; filter: grayscale(0.7) invert(0.9) brightness(0.8); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; }
.about-img { border-radius: 20px; overflow: hidden; border: 1px solid var(--card-border); }
.about-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
.about-content h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.cert-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 32px; }
.cert-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px; padding: 16px; display: flex; align-items: center; gap: 12px; transition: all 0.3s; }
.cert-item:hover { border-color: rgba(16,185,129,0.3); }
.cert-item i { font-size: 24px; color: var(--primary); }
.cert-item strong { display: block; font-size: 13px; font-weight: 600; color: var(--white); }
.cert-item span { font-size: 11px; color: var(--text-muted); }
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.stat-box { text-align: center; padding: 32px 16px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; }
.stat-box .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--primary); display: block; }
.stat-box .lbl { font-size: 13px; color: var(--text-muted); }

/* ANIMATIONS */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(3,7,18,0.98); padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid, .hizmet-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hizmet-detail:nth-child(even) .hizmet-grid { direction: ltr; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
  .cta-box { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .cert-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-card-1, .why-card-2 { position: static; margin-top: 12px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 480px) {
  section { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; }
}
