/*
Theme Name: Erol Elektrik Premium v2
Theme URI: https://socialworks.com.tr
Author: Sosyal İşler Medya Ajansı
Author URI: https://socialworks.com.tr
Description: Erol Elektrik premium karanlık tema – v2
Version: 2.0.0
Requires at least: 5.9
Tested up to: 6.5
Requires PHP: 7.4
License: Private
Text Domain: erol-elektrik
*/

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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:           #0A0A0A;
  --bg2:          #0E0E0E;
  --accent:       #FFD000;
  --accent-glow:  rgba(255, 208, 0, 0.25);
  --accent-dim:   rgba(255, 208, 0, 0.08);
  --text:         #F2F2F2;
  --muted:        #6B6B6B;
  --border:       rgba(255,255,255,0.07);
  --card:         #111111;
  --radius:       14px;
  --font:         'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 56px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, border-color 0.4s, height 0.4s;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(10,10,10,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  height: 68px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img.custom-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-bolt {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.logo-name {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
}
.logo-name span { color: var(--accent); }

/* Nav */
#main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
#main-nav a.nav-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
#main-nav a.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
#main-nav a.nav-link:hover { color: var(--text); }
#main-nav a.nav-link:hover::after { width: 100%; }
#main-nav a.nav-link.current-menu-item { color: var(--text); }

.nav-cta {
  background: var(--accent);
  color: #000 !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
#menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
#menu-toggle span:nth-child(1) { width: 22px; }
#menu-toggle span:nth-child(2) { width: 16px; }
#menu-toggle span:nth-child(3) { width: 22px; }

/* Mobile drawer */
#mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
#mobile-drawer.open { transform: translateX(0); }
#mobile-drawer a {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.2s;
}
#mobile-drawer a:hover { color: var(--accent); }
#mobile-drawer .close-btn {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 56px 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,208,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,208,0,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridMove 25s linear infinite;
  pointer-events: none;
}
@keyframes gridMove {
  from { transform: translate(0,0); }
  to   { transform: translate(64px,64px); }
}
.hero-orb {
  position: absolute;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(255,208,0,0.07) 0%, transparent 68%);
  right: -80px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: orbPulse 5s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,100% { opacity: 0.7; transform: translateY(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateY(-50%) scale(1.06); }
}
.hero-inner { position: relative; z-index: 1; max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,208,0,0.18);
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  animation: fadeUp 0.8s 0.1s both;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: blink 1.8s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.hero-title {
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.25s both;
}
.hero-title .hl { color: var(--accent); }

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 44px;
  animation: fadeUp 0.8s 0.4s both;
}

.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.55s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  border-radius: 9px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-yellow {
  background: var(--accent);
  color: #000;
  padding: 13px 28px;
}
.btn-yellow:hover { box-shadow: 0 8px 28px var(--accent-glow); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--muted);
  padding: 13px 22px;
  border: 1px solid var(--border);
}
.btn-outline:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

.hero-stats {
  display: flex;
  gap: 56px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.7s both;
}
.stat-n {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.stat-t {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 5px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════ */
.section { padding: 100px 56px; }
.section-alt { background: var(--bg2); }
.section-divider { height: 1px; background: var(--border); margin: 0 56px; }

.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before { content:''; width:20px; height:1px; background:var(--accent); }

.section-heading {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 14px;
}
.section-heading .hl { color: var(--accent); }

.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
}

/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.svc-card {
  background: var(--card);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), background 0.3s;
}
.svc-card:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.svc-card:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.svc-card:hover { transform: translateY(-6px); background: #141414; }
.svc-card:hover::after { opacity: 1; }
.svc-card:hover .svc-icon { background: var(--accent); box-shadow: 0 4px 20px var(--accent-glow); }

.svc-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 24px;
}
.svc-icon {
  width: 50px; height: 50px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  transition: all 0.3s;
}
.svc-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}
.svc-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}
.svc-bg-num {
  position: absolute;
  bottom: 12px; right: 18px;
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,208,0,0.04);
  letter-spacing: -0.05em;
  line-height: 1;
  transition: color 0.35s;
}
.svc-card:hover .svc-bg-num { color: rgba(255,208,0,0.07); }

/* ═══════════════════════════════════════
   PROJECTS GRID
═══════════════════════════════════════ */
.proj-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  margin-top: 64px;
}
.proj-card {
  background: #111;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
}
.proj-card:first-child { grid-row: span 2; min-height: 520px; border-radius: var(--radius) 0 0 var(--radius); }
.proj-card:nth-child(2) { border-radius: 0 var(--radius) 0 0; }
.proj-card:nth-child(3) { border-radius: 0 0 var(--radius) 0; }

.proj-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  opacity: 0.04;
  transition: opacity 0.4s;
  background-size: cover;
  background-position: center;
}
.proj-card:hover .proj-bg { opacity: 0.08; }
.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.1) 60%, transparent);
}
.proj-info { position: relative; z-index: 2; padding: 32px; }
.proj-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.proj-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.proj-card:first-child .proj-name { font-size: 32px; }

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-masonry {
  columns: 3;
  column-gap: 3px;
  margin-top: 64px;
}
.gal-item {
  break-inside: avoid;
  margin-bottom: 3px;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.gal-item img { width: 100%; display: block; transition: transform 0.5s; }
.gal-item:hover img { transform: scale(1.04); }
.gal-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #131313, #181818);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  opacity: 0.15;
  transition: opacity 0.3s;
}
.gal-item:hover .gal-placeholder { opacity: 0.25; }
.gal-caption {
  position: absolute;
  bottom: 12px; left: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.gh1{height:250px} .gh2{height:175px} .gh3{height:310px}
.gh4{height:195px} .gh5{height:275px} .gh6{height:150px}
.gh7{height:235px} .gh8{height:205px} .gh9{height:265px}

/* ═══════════════════════════════════════
   BRANDS MARQUEE
═══════════════════════════════════════ */
.brands-section { padding: 64px 56px; }
.brands-label {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
  margin-bottom: 40px;
}
.brands-track-wrap {
  overflow: hidden;
  position: relative;
}
.brands-track-wrap::before,
.brands-track-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
}
.brands-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.brands-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
.brands-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.brand-pill {
  padding: 0 48px;
  border-left: 1px solid var(--border);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: color 0.3s;
}
.brand-pill:hover { color: var(--accent); }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.about-visual { position: relative; height: 500px; }
.about-img-box {
  position: absolute; inset: 0;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-img-box img { width: 100%; height: 100%; object-fit: cover; }
.about-img-box .about-icon { font-size: 100px; opacity: 0.06; }
.about-img-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 25% 25%, rgba(255,208,0,0.06), transparent 60%);
  z-index: 1;
}
.about-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--accent);
  color: #000;
  padding: 20px 26px;
  border-radius: 14px;
  z-index: 2;
  box-shadow: 0 12px 36px var(--accent-glow);
}
.about-badge-n {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-badge-t {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.about-text .section-heading { margin-bottom: 20px; }
.about-p { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 32px;
}
.about-val {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}
.about-val-icon { font-size: 17px; margin-bottom: 6px; }
.about-val-name { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 3px; }
.about-val-desc { font-size: 11px; color: var(--muted); font-weight: 300; }

/* ═══════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.blog-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.blog-card:hover { transform: translateY(-5px); border-color: rgba(255,208,0,0.12); }
.blog-thumb {
  height: 190px;
  overflow: hidden;
  background: #161616;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  opacity: 0.25;
  transition: opacity 0.3s;
  position: relative;
}
.blog-card:hover .blog-thumb { opacity: 0.45; }
.blog-thumb img { width:100%; height:100%; object-fit:cover; opacity:1 !important; }
.blog-body { padding: 26px; }
.blog-meta { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.blog-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 9px;
  color: var(--text);
  display: block;
  transition: color 0.2s;
}
.blog-card:hover .blog-title { color: var(--accent); }
.blog-excerpt { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-section {
  padding: 130px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,208,0,0.08), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(44px, 6.5vw, 90px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 32px;
  position: relative;
}
.cta-title .hl { color: var(--accent); }
.cta-sub { font-size: 15px; font-weight: 300; color: var(--muted); margin-bottom: 36px; position: relative; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  margin-top: 64px;
}
.c-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.c-item:last-child { border-bottom: none; margin-bottom: 0; }
.c-icon-box {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.c-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.c-value { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }

.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-field {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 15px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.25s;
}
.form-field:focus { border-color: rgba(255,208,0,0.28); }
.form-textarea { min-height: 120px; resize: none; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: #070707;
  padding: 72px 56px 36px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand {}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
.footer-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.7; max-width: 230px; }
.footer-col-head { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 13px; font-weight: 300; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-contact-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; }
.footer-contact-icon { font-size: 13px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.footer-contact-text { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.4; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.2); }
.footer-copy a { color: var(--accent); }
.footer-live { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 300; color: rgba(255,255,255,0.2); }
.footer-live::before { content:''; width:6px; height:6px; background:#4ade80; border-radius:50%; animation: blink 2s infinite; }

/* ═══════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════ */
.float-whatsapp {
  position: fixed; bottom: 26px; right: 26px; z-index: 500;
  width: 52px; height: 52px; border-radius: 14px;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
}
.float-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
.float-email {
  position: fixed; bottom: 26px; left: 26px; z-index: 500;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; text-decoration: none;
  box-shadow: 0 4px 20px var(--accent-glow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.float-email:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(255,208,0,0.4); }

/* ═══════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════ */
.page-hero {
  padding: 150px 56px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(255,208,0,0.05), transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.page-hero-title {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 16px;
}
.page-hero-title .hl { color: var(--accent); }
.page-hero-desc { font-size: 16px; font-weight: 300; color: var(--muted); max-width: 480px; line-height: 1.7; }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ═══════════════════════════════════════
   INNER PAGE: HİZMETLER
═══════════════════════════════════════ */
.hizmet-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.hizmet-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.hizmet-card:hover { border-color: rgba(255,208,0,0.15); transform: translateY(-4px); }
.hizmet-icon { font-size: 32px; margin-bottom: 18px; }
.hizmet-name { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.hizmet-desc { font-size: 14px; font-weight: 300; color: var(--muted); line-height: 1.75; }
.hizmet-features { list-style: none; margin-top: 18px; }
.hizmet-features li { font-size: 13px; color: var(--muted); font-weight: 300; padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.hizmet-features li::before { content: '⚡'; font-size: 11px; }
.hizmet-features li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════
   INNER PAGE: PROJELERe
═══════════════════════════════════════ */
.projeler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.proje-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.proje-card:hover { transform: translateY(-5px); border-color: rgba(255,208,0,0.12); }
.proje-thumb {
  height: 200px;
  background: #141414;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
  opacity: 0.2;
  overflow: hidden;
  position: relative;
  transition: opacity 0.3s;
}
.proje-card:hover .proje-thumb { opacity: 0.35; }
.proje-thumb img { width:100%;height:100%;object-fit:cover; opacity:1 !important; position:absolute; inset:0; }
.proje-body { padding: 24px; }
.proje-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.proje-name { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.proje-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════
   INNER PAGE: GALERİ
═══════════════════════════════════════ */
.galeri-page { padding: 64px 56px 100px; }
.galeri-filter {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 7px 16px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover, .filter-btn.active { background: var(--accent); border-color: var(--accent); color: #000; }

/* ═══════════════════════════════════════
   SINGLE POST / BLOG
═══════════════════════════════════════ */
.post-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 56px 100px;
}
.post-content { font-size: 16px; font-weight: 300; color: var(--muted); line-height: 1.85; }
.post-content h2,h3 { color: var(--text); font-weight: 800; letter-spacing: -0.02em; margin: 36px 0 14px; }
.post-content h2 { font-size: 26px; }
.post-content h3 { font-size: 20px; }
.post-content p { margin-bottom: 18px; }
.post-content strong { color: var(--text); font-weight: 600; }
.post-content a { color: var(--accent); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .svc-card:nth-child(1){border-radius:var(--radius) 0 0 0}
  .svc-card:nth-child(2){border-radius:0 var(--radius) 0 0}
  .svc-card:nth-child(3){border-radius:0 0 0 var(--radius)}
  .svc-card:nth-child(4){border-radius:0 0 var(--radius) 0}
  .proj-grid { grid-template-columns: 1fr; }
  .proj-card:first-child { grid-row: unset; min-height: 260px; border-radius: var(--radius) var(--radius) 0 0; }
  .proj-card:nth-child(2) { border-radius: 0; }
  .proj-card:nth-child(3) { border-radius: 0 0 var(--radius) var(--radius); }
  .about-wrap { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { height: 340px; }
  .hizmet-cards { grid-template-columns: 1fr; }
  .projeler-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .gallery-masonry { columns: 2; }
}
@media (max-width: 768px) {
  #site-header, #site-header.scrolled { padding: 0 24px; }
  #main-nav { display: none; }
  #menu-toggle { display: flex; }
  .hero, .section, .cta-section, .page-hero { padding-left: 24px; padding-right: 24px; }
  .section-divider, .brands-section { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 110px; padding-bottom: 64px; }
  .hero-stats { gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { border-radius: 10px !important; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .projeler-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .post-wrap { padding: 40px 24px 80px; }
  .galeri-page { padding: 40px 24px 80px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ═══════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════ */
.hero-slider-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 640px;
}

.hero-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 56px 180px; /* top=header yüksekliği, bottom=stats için */
}

/* Slide background */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.swiper-slide-active .slide-bg {
  transform: scale(1.0);
}

/* Dark overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.94) 0%,
    rgba(10,10,10,0.70) 55%,
    rgba(10,10,10,0.35) 100%
  );
  z-index: 1;
}

/* Grid lines */
.slide-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,208,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,208,0,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 2;
  pointer-events: none;
}

/* İçerik wrapper — slide içinde akışta */
.slide-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  width: 100%;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,208,0,0.1);
  border: 1px solid rgba(255,208,0,0.2);
  padding: 5px 14px 5px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s 0.1s, transform 0.6s 0.1s;
}
.slide-tag-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: blink 1.8s infinite;
}
.swiper-slide-active .slide-tag {
  opacity: 1;
  transform: translateY(0);
}

.slide-title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s 0.25s, transform 0.7s 0.25s;
}
.slide-title .hl { color: var(--accent); }
.swiper-slide-active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.4s, transform 0.7s 0.4s;
}
.swiper-slide-active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}

.slide-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s 0.55s, transform 0.7s 0.55s;
}
.swiper-slide-active .slide-btns {
  opacity: 1;
  transform: translateY(0);
}

/* Slider controls */
.hero-slider-nav {
  position: absolute;
  bottom: 32px;
  left: 56px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  transition: all 0.25s;
}
.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
}

.slider-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
}
.slider-pagination .swiper-pagination-bullet {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  transition: all 0.3s;
  opacity: 1;
}
.slider-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--accent);
}

/* Slide counter */
.slide-counter {
  position: absolute;
  bottom: 38px;
  right: 56px;
  z-index: 10;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.slide-counter .current { color: var(--accent); font-size: 20px; font-weight: 900; }

/* ═══════════════════════════════════════
   PROJELER SLIDER
═══════════════════════════════════════ */
.proj-slider-section {
  padding: 100px 0 100px 56px;
  overflow: hidden;
}
.proj-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-right: 56px;
  margin-bottom: 52px;
}
.proj-slider-nav {
  display: flex;
  gap: 10px;
}
.proj-nav-btn {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--muted);
  font-size: 15px;
  transition: all 0.25s;
}
.proj-nav-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.proj-swiper {
  width: 100%;
  overflow: visible !important;
}
.proj-swiper .swiper-wrapper {
  align-items: stretch;
}
.proj-swiper .swiper-slide {
  width: 360px;
  flex-shrink: 0;
}

.proj-slide-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
  height: 100%;
}
.proj-slide-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,208,0,0.15);
}
.proj-slide-thumb {
  height: 220px;
  background: #141414;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  opacity: 0.18;
  overflow: hidden;
  position: relative;
  transition: opacity 0.3s;
}
.proj-slide-card:hover .proj-slide-thumb { opacity: 0.32; }
.proj-slide-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1 !important;
}
.proj-slide-body {
  padding: 24px;
}
.proj-slide-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 8px;
}
.proj-slide-name {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 8px;
}
.proj-slide-desc {
  font-size: 13px; font-weight: 300;
  color: var(--muted); line-height: 1.6;
}
.proj-slide-meta {
  display: flex; gap: 16px; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.proj-meta-item {
  font-size: 11px; color: var(--muted); font-weight: 300;
}
.proj-meta-item strong { color: var(--text); font-weight: 600; display: block; font-size: 12px; }

/* ═══════════════════════════════════════
   GALERİ SLIDER (anasayfa)
═══════════════════════════════════════ */
.gal-slider-section {
  padding: 100px 0 100px 56px;
  background: var(--bg2);
  overflow: hidden;
}
.gal-slider-header {
  padding-right: 56px;
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gal-swiper {
  overflow: visible !important;
}
.gal-swiper .swiper-slide {
  width: 300px;
}

.gal-slide-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gal-slide-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s;
}
.gal-slide-item:hover img { transform: scale(1.04); }
.gal-slide-placeholder {
  width: 100%; height: 240px;
  background: linear-gradient(135deg, #141414, #1a1a1a);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; opacity: 0.15;
  transition: opacity 0.3s;
}
.gal-slide-item:hover .gal-slide-placeholder { opacity: 0.28; }
.gal-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 16px 14px;
  background: linear-gradient(to top, rgba(10,10,10,0.85), transparent);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  opacity: 0;
  transition: opacity 0.3s;
}
.gal-slide-item:hover .gal-slide-caption { opacity: 1; }

/* ═══════════════════════════════════════
   PAGE FIX: Galeri sayfası auto-match
═══════════════════════════════════════ */
body.page-template-page-galeri .galeri-page,
body.page-template-default.slug-galeri .galeri-page {
  display: block;
}
