/* ============================================
   ÖZKARDEŞ ELEKTRİK - style.css
   Domain: https://ozkardeslerelektrik.com
   Tema: Siyah / Sarı / Beyaz — Modern Elektrik
   ============================================ */

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

/* ─── CSS DEĞİŞKENLERİ ─── */
:root {
  --black:      #080808;
  --black2:     #111111;
  --black3:     #1a1a1a;
  --card-bg:    #141414;
  --border:     #2a2a2a;
  --yellow:     #ffc400;
  --yellow-dim: #cc9e00;
  --white:      #ffffff;
  --gray:       #cccccc;
  --gray2:      #888888;
  --green:      #25D366;
  --radius:     10px;
  --transition: 0.3s ease;
  --shadow:     0 4px 30px rgba(255,196,0,0.08);
  --glow:       0 0 20px rgba(255,196,0,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black2); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 70px;
  transition: background var(--transition);
}

.navbar.scrolled {
  background: rgba(8,8,8,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span { color: var(--white); }

.nav-logo .bolt {
  font-size: 22px;
  animation: boltPulse 1.5s infinite alternate;
}

@keyframes boltPulse {
  from { filter: drop-shadow(0 0 4px var(--yellow)); }
  to   { filter: drop-shadow(0 0 14px var(--yellow)); }
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--gray);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  background: rgba(255,196,0,0.08);
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}

.nav-cta:hover {
  background: var(--yellow-dim) !important;
  color: var(--black) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--transition);
}

.hamburger:hover { background: rgba(255,196,0,0.1); }

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

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

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 20px 30px 30px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--gray);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-menu a:hover { color: var(--yellow); padding-left: 8px; }

.mobile-menu .mob-cta {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  border: none;
  padding: 0;
}

.mob-cta a {
  flex: 1;
  text-align: center;
  padding: 14px !important;
  border-radius: var(--radius) !important;
  border: none !important;
  font-weight: 700 !important;
  color: var(--black) !important;
}

.mob-call { background: var(--yellow); }
.mob-whatsapp { background: var(--green) !important; color: var(--white) !important; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.6) 0%,
    rgba(8,8,8,0.3) 40%,
    rgba(8,8,8,0.85) 80%,
    var(--black) 100%
  );
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,196,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,196,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,196,0,0.1);
  border: 1px solid rgba(255,196,0,0.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 24px;
  animation: fadeDown 0.8s ease both;
}

.hero-badge .dot {
  width: 7px; height: 7px;
  background: var(--yellow);
  border-radius: 50%;
  animation: dotBlink 1.2s infinite;
}

@keyframes dotBlink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(32px, 6vw, 68px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 3px;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(255,196,0,0.2);
  animation: fadeDown 0.8s 0.1s ease both;
}

.hero-title span { color: var(--yellow); }

.hero-slogan {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 18px;
  animation: fadeDown 0.8s 0.2s ease both;
}

.hero-sub {
  display: inline-block;
  background: linear-gradient(135deg, var(--yellow), #ff9a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: fadeDown 0.8s 0.3s ease both;
}

.hero-phone {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 30px;
  text-shadow: var(--glow);
  animation: fadeDown 0.8s 0.4s ease both;
}

.hero-phone a { color: inherit; }

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown 0.8s 0.5s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  border: 2px solid var(--yellow);
}

.btn-primary:hover {
  background: transparent;
  color: var(--yellow);
  box-shadow: var(--glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  border: 2px solid var(--green);
}

.btn-secondary:hover {
  background: transparent;
  color: var(--green);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gray2);
  font-size: 11px;
  letter-spacing: 2px;
  font-family: 'Rajdhani', sans-serif;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollLine 1.5s infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 20px;
}

.stats-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  border-right: 1px solid var(--border);
  padding: 10px;
}

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

.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--yellow);
  display: block;
}

.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: var(--gray2);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 90px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.section-title span { color: var(--yellow); }

.section-desc {
  color: var(--gray2);
  font-size: 16px;
  max-width: 600px;
  margin: auto;
  line-height: 1.7;
}

/* ============================================
   HİZMETLER
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,196,0,0.4);
  box-shadow: var(--shadow);
}

.service-card-img {
  position: relative;
  overflow: hidden;
  height: 160px;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-img .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(20,20,20,0.9));
}

.service-card-body {
  padding: 18px 18px 14px;
}

.service-card-body h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.service-card-body .short-desc {
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Toggle detail button */
.detail-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--border);
  color: var(--yellow);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
  justify-content: center;
  letter-spacing: 0.3px;
}

.detail-toggle:hover {
  background: rgba(255,196,0,0.1);
  border-color: var(--yellow);
}

.detail-toggle .toggle-icon {
  transition: transform 0.3s ease;
  font-style: normal;
  font-size: 16px;
}

.detail-toggle.active .toggle-icon { transform: rotate(180deg); }

/* Detail panel */
.detail-panel {
  display: none;
  padding: 0 18px 16px;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}

.detail-panel.open { display: block; }

.detail-panel p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 10px;
}

.detail-panel ul {
  padding-left: 0;
  margin-bottom: 10px;
}

.detail-panel ul li {
  font-size: 13px;
  color: var(--gray2);
  padding: 3px 0 3px 18px;
  position: relative;
}

.detail-panel ul li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  font-size: 10px;
}

/* ============================================
   HAKKIMIZDA
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border: 2px solid rgba(255,196,0,0.3);
  border-radius: calc(var(--radius) + 2px);
  z-index: 1;
  pointer-events: none;
}

.about-img-wrap .year-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Orbitron', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 2;
  line-height: 1.3;
  text-align: center;
}

.about-text p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-feat .feat-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feat h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.about-feat p {
  font-size: 13px;
  color: var(--gray2);
  line-height: 1.5;
  margin: 0;
}

/* ============================================
   NEDEN BİZ
   ============================================ */
.why-section { background: var(--black2); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { border-color: rgba(255,196,0,0.3); transform: translateY(-4px); }

.why-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.why-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray2);
  line-height: 1.6;
}

/* ============================================
   SERVİS BÖLGELERİ
   ============================================ */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.area-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray);
  transition: all var(--transition);
  cursor: default;
}

.area-item:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(255,196,0,0.05);
}

.area-item .area-pin { display: block; font-size: 22px; margin-bottom: 6px; }

/* ============================================
   İLETİŞİM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-info-box h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-row-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,196,0,0.1);
  border: 1px solid rgba(255,196,0,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-row-text strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray2);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.contact-row-text span,
.contact-row-text a {
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
}

.contact-row-text a:hover { color: var(--yellow); }

.contact-map-box {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  min-height: 340px;
}

.contact-map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  padding: 50px 20px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray2);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--gray2);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray2);
}

.footer-bottom a {
  color: var(--gray2);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: var(--yellow); }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.float-buttons {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floatPulse 2.5s infinite;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,0.5);
  animation: none;
}

.float-phone { background: var(--yellow); color: var(--black); animation-delay: 0s; }
.float-wp    { background: var(--green);  color: var(--white); animation-delay: 0.3s; }

@keyframes floatPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
  50%      { box-shadow: 0 4px 30px rgba(255,196,0,0.35); }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-hero {
  background: var(--black2);
  padding: 120px 20px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,196,0,0.35);
}

.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body { padding: 22px; }

.blog-tag {
  display: inline-block;
  background: rgba(255,196,0,0.1);
  border: 1px solid rgba(255,196,0,0.25);
  color: var(--yellow);
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-card-body h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 14px;
  color: var(--gray2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: gap var(--transition);
}

.blog-card-body .read-more:hover { gap: 10px; }

/* Blog Article */
.blog-article {
  max-width: 800px;
  margin: auto;
  padding: 100px 20px 80px;
}

.blog-article h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-article .meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--gray2);
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.blog-article .meta span { display: flex; align-items: center; gap: 4px; }

.blog-article img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 30px;
  border: 1px solid var(--border);
}

.blog-article h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--yellow);
  margin: 36px 0 14px;
}

.blog-article h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  margin: 26px 0 10px;
}

.blog-article p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-article ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.blog-article ul li {
  list-style: disc;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.blog-article .highlight-box {
  background: rgba(255,196,0,0.07);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.blog-article .highlight-box p { margin: 0; color: var(--white); font-size: 15px; }

/* ============================================
   GİZLİLİK PAGE
   ============================================ */
.privacy-article {
  max-width: 860px;
  margin: auto;
  padding: 100px 20px 80px;
}

.privacy-article h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 10px;
}

.privacy-article .updated {
  font-size: 13px;
  color: var(--gray2);
  margin-bottom: 36px;
}

.privacy-article h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.privacy-article p,
.privacy-article li {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 12px;
}

.privacy-article ul { padding-left: 20px; }
.privacy-article ul li { list-style: disc; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

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

  .footer-top { grid-template-columns: 1fr; }

  .about-features { grid-template-columns: 1fr; }

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

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

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}
