/*
Theme Name: Boratav Bilisim
Theme URI: https://eboratav.com
Author: Boratav Bilisim
Author URI: https://eboratav.com
Description: Boratav Bilisim kurumsal web sitesi temasi
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
License: Proprietary
Text Domain: boratav-bilisim
*/

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #1e40af;
  --blue-light: #3b82f6;
  --blue-dark: #1e3a8a;
  --blue-bg: #eff6ff;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #475569;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --gray-bg: #f8fafc;
  --white: #ffffff;
  --success: #059669;
  --purple: #7c3aed;
  --gradient-blue: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 0; background: #ffffff;
  backdrop-filter: blur(20px); transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 42px; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  color: var(--dark-3); padding: 8px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 500; transition: all 0.3s;
}
.nav-links a:hover { color: var(--blue); background: var(--blue-bg); }
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--blue); font-weight: 600;
}
.nav-dropdown { position: relative; }
.nav-dropdown > .dd-menu,
.nav-links .menu-item-has-children .sub-menu {
  position: absolute; top: calc(100% + 8px); left: -20px;
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 16px; padding: 10px; min-width: 260px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.3s; box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  list-style: none;
}
.nav-dropdown:hover > .dd-menu,
.nav-links .menu-item-has-children:hover > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dd-menu a,
.nav-links .menu-item-has-children .sub-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; color: var(--dark-3) !important;
  border-radius: 10px; font-size: 13px;
}
.dd-menu a:hover,
.nav-links .menu-item-has-children .sub-menu a:hover {
  background: var(--blue-bg); color: var(--blue) !important;
}
.dd-menu .dd-img,
.nav-links .sub-menu .dd-img {
  width: 36px; height: 36px; border-radius: 10px; object-fit: cover;
}
.nav-cta-btn,
.nav-links .menu-item.nav-cta a,
.nav-links li.nav-cta-btn > a {
  background: var(--gradient-blue) !important; color: var(--white) !important;
  padding: 10px 24px !important; border-radius: 10px !important;
  font-weight: 600 !important; transition: all 0.3s;
}
.nav-cta-btn:hover,
.nav-links .menu-item.nav-cta a:hover,
.nav-links li.nav-cta-btn > a:hover {
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,64,175,0.3);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px; transition: all 0.3s; display: block;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  padding: 100px 0 0;
  background: var(--white);
  position: relative;
}
.hero-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,23,42,0.93) 0%, rgba(15,23,42,0.8) 45%, rgba(15,23,42,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 1; padding: 80px 60px;
  max-width: 640px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 16px; border-radius: 50px;
  font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500;
  margin-bottom: 24px; backdrop-filter: blur(10px);
}
.hero-tag .dot {
  width: 8px; height: 8px; background: var(--success); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.hero h1 {
  font-size: 50px; font-weight: 700; color: var(--white);
  line-height: 1.12; margin-bottom: 20px; letter-spacing: -1.5px;
}
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.65);
  margin-bottom: 36px; line-height: 1.8;
}
.hero-buttons { display: flex; gap: 14px; margin-bottom: 48px; }
.btn-main {
  background: var(--white); color: var(--blue);
  padding: 15px 30px; border-radius: 12px; font-size: 15px;
  font-weight: 600; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; border: none; cursor: pointer; font-family: inherit;
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
.btn-ghost {
  background: transparent; border: 2px solid rgba(255,255,255,0.25);
  color: var(--white); padding: 13px 28px; border-radius: 12px;
  font-size: 15px; font-weight: 600; display: inline-flex;
  align-items: center; gap: 8px; transition: all 0.3s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.hero-stats { display: flex; gap: 40px; }
.hero-stat .val { font-size: 30px; font-weight: 700; color: var(--white); display: block; }
.hero-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.5); display: block; }
.hero-side-cards {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  z-index: 1; display: flex; flex-direction: column; gap: 14px;
}
.hero-side-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 16px;
  padding: 20px 24px; display: flex; align-items: center; gap: 14px;
  transition: all 0.3s; min-width: 260px;
}
.hero-side-card:hover { background: rgba(255,255,255,0.15); transform: translateX(-4px); }
.hsc-img {
  width: 48px; height: 48px; border-radius: 12px; object-fit: cover;
}
.hsc-text h4 { color: var(--white); font-size: 15px; font-weight: 600; }
.hsc-text p { color: rgba(255,255,255,0.55); font-size: 12px; }

/* ===== MARKA SLIDER ===== */
.brands {
  padding: 60px 0; background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}
.brands-label {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--gray); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 32px;
}
.marquee-wrap {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 60px; align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track img {
  height: 36px; width: auto; opacity: 0.55;
  filter: grayscale(100%); transition: all 0.4s;
}
.marquee-track img:hover { opacity: 1; filter: grayscale(0%); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HIZLI ERISIM ===== */
.quick-access { padding: 80px 0; background: var(--white); }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quick-card {
  background: var(--gray-bg); border: 1px solid transparent;
  border-radius: 16px; padding: 28px; display: flex; gap: 16px;
  align-items: flex-start; transition: all 0.3s; cursor: pointer;
}
.quick-card:hover { border-color: var(--blue); box-shadow: 0 10px 40px rgba(30,64,175,0.06); background: var(--blue-bg); }
.quick-img {
  width: 52px; height: 52px; border-radius: 14px; object-fit: cover; flex-shrink: 0;
}
.quick-card h3 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.quick-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ===== HIZMETLER ===== */
.services { padding: 100px 0; background: var(--gray-bg); }
.section-label {
  color: var(--blue); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-title {
  font-size: 40px; font-weight: 700; color: var(--dark);
  margin-bottom: 16px; letter-spacing: -1.5px; line-height: 1.2;
}
.section-desc {
  font-size: 17px; color: var(--gray); max-width: 560px;
  margin-bottom: 60px; line-height: 1.7;
}
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: 20px;
  overflow: hidden; transition: all 0.3s;
  border: 1px solid var(--gray-light);
  display: block;
}
.service-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.08); transform: translateY(-6px); }
.service-card .sc-img {
  width: 100%; height: 180px; object-fit: cover; display: block;
}
.service-card .sc-body { padding: 28px; }
.service-card h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.service-card .sc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--blue);
  transition: gap 0.3s;
}
.service-card:hover .sc-link { gap: 10px; }

/* ===== URUNLER ===== */
.products { padding: 100px 0; background: var(--dark); position: relative; overflow: hidden; }
.products::before {
  content: ''; position: absolute; top: -200px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
}
.products .section-label { color: var(--blue-light); }
.products .section-title { color: var(--white); }
.products .section-desc { color: rgba(255,255,255,0.5); }
.products-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  position: relative; z-index: 1;
}
.product-card {
  border-radius: 20px; overflow: hidden; transition: all 0.4s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); }
.product-card .pc-img {
  width: 100%; height: 200px; object-fit: cover; display: block;
}
.product-card .pc-body { padding: 36px; flex-grow: 1; display: flex; flex-direction: column; }
.product-card.bpos {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border: 1px solid rgba(124,58,237,0.3);
}
.product-card.bpos:hover { box-shadow: 0 20px 60px rgba(124,58,237,0.2); }
.product-card.bstok {
  background: linear-gradient(145deg, #064e3b, #022c22);
  border: 1px solid rgba(52,211,153,0.3);
}
.product-card.bstok:hover { box-shadow: 0 20px 60px rgba(5,150,105,0.2); }
.pc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 8px; font-size: 12px;
  font-weight: 700; width: fit-content; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1px;
}
.product-card.bpos .pc-badge { background: rgba(124,58,237,0.2); color: #a78bfa; }
.product-card.bstok .pc-badge { background: rgba(52,211,153,0.2); color: #34d399; }
.pc-logo {
  height: 44px; width: 44px; border-radius: 12px; object-fit: contain;
  margin-bottom: 16px; background: rgba(255,255,255,0.1); padding: 6px;
}
.product-card h3 { font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.product-card > .pc-body > p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 20px; }
.product-features {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 28px; flex-grow: 1;
}
.product-features li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 14px;
}
.pf-check {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}
.product-card.bpos .pf-check { background: rgba(124,58,237,0.2); color: #a78bfa; }
.product-card.bstok .pf-check { background: rgba(52,211,153,0.2); color: #34d399; }
.pc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: 12px;
  font-size: 15px; font-weight: 600; color: var(--white);
  transition: all 0.3s; width: 100%; text-align: center;
}
.product-card.bpos .pc-btn { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.product-card.bpos .pc-btn:hover { box-shadow: 0 8px 25px rgba(124,58,237,0.4); }
.product-card.bstok .pc-btn { background: linear-gradient(135deg, #059669, #047857); }
.product-card.bstok .pc-btn:hover { box-shadow: 0 8px 25px rgba(5,150,105,0.4); }

/* ===== PROJELERIMIZ ===== */
.projects { padding: 100px 0; background: var(--gray-bg); }
.project-filters {
  display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap;
}
.pf-btn {
  padding: 8px 20px; border-radius: 8px; border: 1px solid var(--gray-light);
  background: var(--white); color: var(--dark-3); font-size: 14px;
  font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: inherit;
}
.pf-btn:hover { border-color: var(--blue); color: var(--blue); }
.pf-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.projects-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.project-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-light); transition: all 0.4s;
}
.project-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.1); transform: translateY(-6px); }
.project-card.hidden { display: none; }
.project-img {
  position: relative; overflow: hidden; height: 200px;
}
.project-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s;
}
.project-card:hover .project-img img { transform: scale(1.08); }
.project-overlay {
  position: absolute; inset: 0;
  background: rgba(15,23,42,0.7); display: flex;
  align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-link {
  background: var(--white); color: var(--blue); padding: 10px 24px;
  border-radius: 10px; font-size: 14px; font-weight: 600; transition: all 0.3s;
}
.project-link:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.project-info { padding: 20px; }
.project-tag {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 8px;
}
.project-tag.web { background: rgba(59,130,246,0.1); color: var(--blue); }
.project-tag.yazilim { background: rgba(124,58,237,0.1); color: var(--purple); }
.project-tag.altyapi { background: rgba(5,150,105,0.1); color: var(--success); }
.project-info h3 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.project-info p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.placeholder-img {
  background: var(--gray-bg); display: flex;
  align-items: center; justify-content: center; height: 200px;
  border-bottom: 1px dashed var(--gray-light);
}
.placeholder-content {
  text-align: center; color: var(--gray-light);
}
.placeholder-icon {
  display: block; font-size: 36px; margin-bottom: 8px; color: var(--gray-light);
}
.placeholder-content span { font-size: 13px; }

/* ===== PORTFOY ===== */
.portfolio { padding: 80px 0; background: var(--white); }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
.portfolio-slot {
  border-radius: 14px; overflow: hidden;
  border: 2px solid var(--gray-light); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  text-align: center; background: var(--white);
}
.portfolio-slot:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.12);
}
.portfolio-slot a {
  text-decoration: none; color: inherit; display: block; padding: 20px 16px;
}
.portfolio-logo {
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
}
.portfolio-slot img {
  max-width: 100%; max-height: 80px; object-fit: contain;
  transition: transform 0.3s;
}
.portfolio-slot:hover img { transform: scale(1.08); }
.portfolio-name {
  display: block; margin-top: 12px; font-size: 13px; font-weight: 600;
  color: var(--dark); transition: color 0.3s;
}
.portfolio-slot:hover .portfolio-name { color: var(--blue); }
.portfolio-empty {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
  background: var(--gray-bg); color: var(--gray-light);
  font-size: 14px; font-weight: 500; aspect-ratio: 16/10;
}

/* ===== NEDEN BIZ ===== */
.why-us { padding: 100px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { border-radius: 20px; overflow: hidden; }
.why-image img { width: 100%; height: 480px; object-fit: cover; display: block; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 16px; }
.why-item-img {
  width: 56px; height: 56px; border-radius: 14px; object-fit: cover;
  flex-shrink: 0;
}
.why-item h3 { font-size: 17px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== ISTATISTIK ===== */
.stats { padding: 70px 0; background: var(--gradient-blue); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; text-align: center;
}
.stat-val { font-size: 44px; font-weight: 700; color: var(--white); display: block; }
.stat-lbl { font-size: 14px; color: rgba(255,255,255,0.7); display: block; margin-top: 4px; }

/* ===== CTA ===== */
.cta { padding: 100px 0; background: var(--gray-bg); }
.cta-inner {
  border-radius: 24px; overflow: hidden; position: relative; min-height: 380px;
  display: flex; align-items: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('assets/images/cta-bg.jpg') center/cover no-repeat;
}
.cta-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.9), rgba(30,64,175,0.85));
}
.cta-content {
  position: relative; z-index: 1; padding: 60px 60px;
  text-align: center; width: 100%;
}
.cta-content h2 {
  font-size: 38px; font-weight: 700; color: var(--white);
  margin-bottom: 16px; letter-spacing: -1px;
}
.cta-content p {
  font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 36px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; }
.btn-white {
  background: var(--white); color: var(--blue); padding: 15px 30px;
  border-radius: 12px; font-size: 15px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

/* ===== ILETISIM ===== */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; margin-top: 60px;
}
.contact-info h3 { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-item-icon {
  width: 48px; height: 48px; background: var(--blue-bg);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; stroke: var(--blue); }
.contact-item-text h4 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.contact-item-text p { font-size: 14px; color: var(--gray); }
.contact-form-card { background: var(--gray-bg); border-radius: 20px; padding: 40px; }
.contact-form-card h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }

/* Contact Form 7 Tema Uyumu */
.contact-form-card .wpcf7-form p { margin-bottom: 20px; }
.contact-form-card .wpcf7-form label { display: block; font-size: 13px; font-weight: 600; color: var(--dark-3); margin-bottom: 6px; }
.contact-form-card .wpcf7-form-control:not(.wpcf7-submit) {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-light);
  border-radius: 10px; font-size: 14px; font-family: inherit;
  transition: border-color 0.2s; background: var(--white);
}
.contact-form-card .wpcf7-form-control:not(.wpcf7-submit):focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,64,175,0.1); }
.contact-form-card .wpcf7-textarea { resize: vertical; min-height: 120px; }
.contact-form-card .wpcf7-select { cursor: pointer; }
.contact-form-card .wpcf7-submit {
  width: 100%; padding: 14px; border-radius: 12px; border: none;
  background: var(--gradient-blue); color: var(--white);
  font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: inherit; transition: all 0.3s;
}
.contact-form-card .wpcf7-submit:hover { box-shadow: 0 6px 20px rgba(30,64,175,0.3); }
.contact-form-card .wpcf7-response-output { border-radius: 10px; padding: 12px 16px; font-size: 14px; margin: 16px 0 0; }
.contact-form-card .wpcf7-not-valid-tip { font-size: 12px; color: #dc2626; margin-top: 4px; }
.contact-form-card .wpcf7-form.sent .wpcf7-response-output { border-color: #22c55e; background: #f0fdf4; color: #166534; }
.contact-form-card .wpcf7-form.failed .wpcf7-response-output,
.contact-form-card .wpcf7-form.invalid .wpcf7-response-output { border-color: #dc2626; background: #fef2f2; color: #991b1b; }
.contact-form-card .wpcf7-spinner { display: none; }

/* Form satır düzeni (CF7 için) */
.contact-form-card .cf7-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form-card .cf7-col label { display: block; font-size: 13px; font-weight: 600; color: var(--dark-3); margin-bottom: 6px; }
@media (max-width: 600px) { .contact-form-card .cf7-row { grid-template-columns: 1fr; } }

/* ===== HİZMET DETAY SAYFALARI ===== */
.service-detail { padding: 80px 0; }
.sd-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.sd-image img {
  width: 100%; border-radius: 20px; object-fit: cover; max-height: 420px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}
.sd-content h2 {
  font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 16px;
}
.sd-content > p {
  font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 32px;
}
.sd-features {
  list-style: none; margin-bottom: 32px;
}
.sd-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--gray-light);
  font-size: 15px; color: var(--dark-2);
}
.sd-features li:last-child { border-bottom: none; }
.sd-check {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--blue-bg); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
@media (max-width: 768px) {
  .sd-grid { grid-template-columns: 1fr; gap: 32px; }
  .sd-image { order: -1; }
  .sd-content h2 { font-size: 26px; }
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 80px 0 30px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px; margin-bottom: 50px;
}
.footer-brand-logo {
  height: 130px; margin-bottom: 24px;
  border-radius: 0; padding: 0;
  object-fit: contain;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-col h4 {
  color: var(--white); font-size: 13px; font-weight: 600;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.5px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.4); font-size: 14px; transition: all 0.3s; }
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; color: rgba(255,255,255,0.4); font-size: 14px;
}
.footer-contact-item svg { flex-shrink: 0; opacity: 0.4; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== CANLI DESTEK WIDGET ===== */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9998; }
.chat-fab {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gradient-blue); color: var(--white);
  border: none; cursor: pointer; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 25px rgba(30,64,175,0.4);
  transition: all 0.3s; position: relative;
}
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(30,64,175,0.5); }
.chat-fab-badge {
  position: absolute; top: -4px; right: -4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #ef4444; display: none;
  font-size: 11px; color: var(--white); font-weight: 700;
  align-items: center; justify-content: center;
}
.chat-panel {
  position: absolute; bottom: 76px; right: 0;
  width: 380px; max-height: 560px; border-radius: 20px;
  background: var(--white); border: 1px solid var(--gray-light);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  display: none; flex-direction: column; overflow: hidden;
  animation: chatSlideUp 0.3s ease;
}
.chat-panel.show { display: flex; }
@keyframes chatSlideUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.chat-header {
  background: var(--gradient-blue); padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.2); padding: 4px; }
.chat-header-info strong { color: var(--white); font-size: 15px; display: block; }
.chat-status { font-size: 12px; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; }
.chat-status-dot { width: 8px; height: 8px; background: #34d399; border-radius: 50%; display: inline-block; }
.chat-close {
  background: rgba(255,255,255,0.15); border: none; color: var(--white);
  width: 32px; height: 32px; border-radius: 50%; cursor: pointer;
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.chat-close:hover { background: rgba(255,255,255,0.25); }
.chat-form-screen { padding: 24px; overflow-y: auto; max-height: 440px; }
.chat-form-intro { text-align: center; margin-bottom: 20px; }
.chat-form-intro h4 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.chat-form-intro p { font-size: 13px; color: var(--gray); }
.cf-group { margin-bottom: 14px; }
.cf-group label { display: block; font-size: 12px; font-weight: 600; color: var(--dark-3); margin-bottom: 4px; }
.cf-group input, .cf-group select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--gray-light);
  border-radius: 10px; font-size: 14px; font-family: inherit;
  transition: border-color 0.2s;
}
.cf-group input:focus, .cf-group select:focus { outline: none; border-color: var(--blue); }
.cf-submit {
  width: 100%; padding: 12px; border-radius: 12px; border: none;
  background: var(--gradient-blue); color: var(--white);
  font-size: 15px; font-weight: 600; cursor: pointer;
  font-family: inherit; transition: all 0.3s; margin-top: 8px;
}
.cf-submit:hover { box-shadow: 0 6px 20px rgba(30,64,175,0.3); }
.chat-messages-screen { display: flex; flex-direction: column; height: 440px; }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 16px; display: flex;
  flex-direction: column; gap: 12px;
}
.chat-msg { max-width: 85%; padding: 10px 14px; border-radius: 14px; font-size: 14px; line-height: 1.5; }
.chat-msg.bot {
  background: var(--gray-bg); color: var(--dark); align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--blue); color: var(--white); align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg .msg-time { font-size: 11px; opacity: 0.6; margin-top: 4px; display: block; }
.chat-typing {
  align-self: flex-start; padding: 10px 14px;
  background: var(--gray-bg); border-radius: 14px; border-bottom-left-radius: 4px;
}
.chat-typing span {
  display: inline-block; width: 8px; height: 8px; background: var(--gray);
  border-radius: 50%; margin: 0 2px;
  animation: typing 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,100%{ opacity:0.3; transform:translateY(0); } 50%{ opacity:1; transform:translateY(-4px); } }
.chat-input-area {
  padding: 12px 16px; border-top: 1px solid var(--gray-light);
  display: flex; gap: 10px; background: var(--white);
}
.chat-input {
  flex: 1; padding: 10px 14px; border: 1px solid var(--gray-light);
  border-radius: 10px; font-size: 14px; font-family: inherit;
}
.chat-input:focus { outline: none; border-color: var(--blue); }
.chat-send {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient-blue); color: var(--white);
  border: none; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.chat-send:hover { box-shadow: 0 4px 15px rgba(30,64,175,0.3); }

/* ===== CEREZ BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--white); border-top: 1px solid var(--gray-light);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
  padding: 20px 24px; display: none;
  animation: slideUp 0.4s ease;
}
.cookie-banner.show { display: block; }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
}
.cookie-text { flex: 1; }
.cookie-text strong { font-size: 15px; color: var(--dark); display: block; margin-bottom: 4px; }
.cookie-text p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 22px; border-radius: 10px; font-size: 14px;
  font-weight: 600; cursor: pointer; border: none; font-family: inherit;
  transition: all 0.3s;
}
.cookie-accept-btn { background: var(--gradient-blue); color: var(--white); }
.cookie-accept-btn:hover { box-shadow: 0 6px 20px rgba(30,64,175,0.3); transform: translateY(-1px); }
.cookie-reject-btn { background: var(--gray-bg); color: var(--dark-3); border: 1px solid var(--gray-light); }
.cookie-reject-btn:hover { border-color: var(--dark-3); }
.cookie-settings-btn { background: transparent; color: var(--blue); border: 1px solid var(--blue); }
.cookie-settings-btn:hover { background: var(--blue-bg); }
.cookie-settings {
  max-width: 1200px; margin: 16px auto 0; display: none;
  border-top: 1px solid var(--gray-light); padding-top: 16px;
}
.cookie-settings.show { display: block; }
.cookie-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--gray-light);
}
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option-info strong { font-size: 14px; color: var(--dark); }
.cookie-option-info p { font-size: 12px; color: var(--gray); }
.cookie-toggle {
  position: relative; display: inline-block; width: 48px; height: 26px; cursor: pointer;
}
.cookie-toggle.disabled { opacity: 0.6; cursor: not-allowed; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0; background: var(--gray-light);
  border-radius: 26px; transition: 0.3s;
}
.toggle-slider::before {
  content: ''; position: absolute; height: 20px; width: 20px;
  left: 3px; bottom: 3px; background: var(--white);
  border-radius: 50%; transition: 0.3s;
}
.cookie-toggle input:checked + .toggle-slider { background: var(--blue); }
.cookie-toggle input:checked + .toggle-slider::before { transform: translateX(22px); }

/* ===== SCROLL BUTONLARI ===== */
.scroll-buttons {
  position: fixed; left: 24px; bottom: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.scroll-buttons.show { opacity: 1; visibility: visible; }
.scroll-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-light);
  color: var(--dark-3); font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.scroll-btn:hover {
  background: var(--blue); color: var(--white); border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(30,64,175,0.3); transform: translateY(-2px);
}

/* ===== PAGE TEMPLATES ===== */
.page-header {
  padding: 140px 0 60px;
  background: var(--gradient-dark);
  text-align: center;
}
.page-header h1 {
  font-size: 42px; font-weight: 700; color: var(--white);
  margin-bottom: 12px; letter-spacing: -1px;
}
.page-header p {
  font-size: 17px; color: rgba(255,255,255,0.6);
  max-width: 600px; margin: 0 auto;
}
.page-content {
  padding: 80px 0;
}
.page-content .entry-content {
  max-width: 800px; margin: 0 auto;
  font-size: 16px; line-height: 1.8; color: var(--dark-3);
}
.page-content .entry-content h2 { font-size: 28px; font-weight: 700; color: var(--dark); margin: 40px 0 16px; }
.page-content .entry-content h3 { font-size: 22px; font-weight: 600; color: var(--dark); margin: 32px 0 12px; }
.page-content .entry-content p { margin-bottom: 20px; }
.page-content .entry-content ul,
.page-content .entry-content ol { margin: 16px 0; padding-left: 24px; }
.page-content .entry-content li { margin-bottom: 8px; }
.page-content .entry-content img { border-radius: 12px; margin: 24px 0; }
.page-content .entry-content blockquote {
  border-left: 4px solid var(--blue);
  padding: 16px 24px; margin: 24px 0;
  background: var(--blue-bg); border-radius: 0 12px 12px 0;
  font-style: italic;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding: 80px 0;
}
.blog-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--gray-light); transition: all 0.3s;
}
.blog-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-meta { font-size: 12px; color: var(--gray); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.blog-card-body p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ===== SSS ACCORDION ===== */
.faq-section { padding: 80px 0; }
.faq-item {
  border: 1px solid var(--gray-light); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden; transition: all 0.3s;
}
.faq-item.active { border-color: var(--blue); }
.faq-question {
  padding: 20px 24px; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; color: var(--dark);
  background: var(--white); transition: all 0.3s;
}
.faq-question:hover { background: var(--blue-bg); }
.faq-question .faq-icon { transition: transform 0.3s; font-size: 20px; color: var(--blue); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: all 0.3s ease; background: var(--white);
}
.faq-item.active .faq-answer {
  padding: 0 24px 20px; max-height: 500px;
}
.faq-answer p { font-size: 14px; color: var(--gray); line-height: 1.8; }

/* ===== GARANTI SORGU ===== */
.garanti-form { max-width: 600px; margin: 0 auto; }
.garanti-form input {
  width: 100%; padding: 14px 18px; border: 2px solid var(--gray-light);
  border-radius: 12px; font-size: 16px; font-family: inherit;
  transition: border-color 0.2s; margin-bottom: 16px;
}
.garanti-form input:focus { outline: none; border-color: var(--blue); }
.garanti-form .btn-submit {
  width: 100%; padding: 14px; border-radius: 12px; border: none;
  background: var(--gradient-blue); color: var(--white);
  font-size: 16px; font-weight: 600; cursor: pointer;
  font-family: inherit; transition: all 0.3s;
}
.garanti-result {
  margin-top: 32px; padding: 24px; border-radius: 16px;
  border: 1px solid var(--gray-light); background: var(--gray-bg);
}

/* ===== INDIRME MERKEZI ===== */
.download-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.download-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: 16px; padding: 28px; text-align: center;
  transition: all 0.3s;
}
.download-card:hover { border-color: var(--blue); box-shadow: 0 10px 40px rgba(30,64,175,0.06); }
.download-card .dl-icon { font-size: 48px; margin-bottom: 16px; }
.download-card h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.download-card p { font-size: 13px; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }
.download-card .dl-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 10px; font-size: 14px;
  font-weight: 600; color: var(--blue); border: 1px solid var(--blue);
  transition: all 0.3s;
}
.download-card .dl-btn:hover { background: var(--blue); color: var(--white); }

/* ===== 404 PAGE ===== */
.error-404 {
  padding: 140px 0 100px; text-align: center;
  min-height: 80vh; display: flex; align-items: center;
}
.error-404 h1 { font-size: 120px; font-weight: 700; color: var(--blue); line-height: 1; }
.error-404 h2 { font-size: 28px; font-weight: 600; color: var(--dark); margin: 16px 0; }
.error-404 p { font-size: 16px; color: var(--gray); margin-bottom: 32px; }

/* ===== SEARCH FORM ===== */
.search-form {
  display: flex; gap: 10px; max-width: 500px;
}
.search-form .search-field {
  flex: 1; padding: 12px 16px; border: 1px solid var(--gray-light);
  border-radius: 10px; font-size: 14px; font-family: inherit;
}
.search-form .search-submit {
  padding: 12px 24px; border-radius: 10px; border: none;
  background: var(--gradient-blue); color: var(--white);
  font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: inherit;
}

/* ===== ELEMENTOR UYUMU ===== */
.elementor-page .hero,
.elementor-page .brands,
.elementor-page .quick-access,
.elementor-page .services,
.elementor-page .products,
.elementor-page .projects,
.elementor-page .portfolio,
.elementor-page .why-us,
.elementor-page .stats,
.elementor-page .cta {
  display: none;
}

/* ===== WORDPRESS ALIGNMENT ===== */
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { display: block; margin: 24px auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--gray); text-align: center; margin-top: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-side-cards { display: none; }
  .hero-content { max-width: 100%; }
  .quick-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { order: -1; }
  .why-image img { height: 320px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 66px; left: 0; right: 0;
    background: var(--white); padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 4px;
    z-index: 1000;
  }
  .nav-links.open .dd-menu,
  .nav-links.open .sub-menu {
    position: static; transform: none; box-shadow: none; border: none;
    background: var(--gray-bg); border-radius: 8px;
    opacity: 0; visibility: hidden;
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-links.open .nav-dropdown.open > .dd-menu,
  .nav-links.open .nav-dropdown.open > .sub-menu {
    opacity: 1; visibility: visible;
    max-height: 500px; padding: 8px 0;
  }
  .nav-links.open .nav-dropdown > a::after {
    content: '';
    display: inline-block; width: 6px; height: 6px;
    border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg); margin-left: 6px;
    transition: transform 0.3s;
  }
  .nav-links.open .nav-dropdown.open > a::after {
    transform: rotate(-135deg);
  }
  .hamburger { display: flex; }
  .hero { padding: 80px 0 0; }
  .hero-inner { min-height: 480px; border-radius: 16px; }
  .hero-content { padding: 50px 28px; }
  .hero h1 { font-size: 32px; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .section-title { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .cookie-actions { justify-content: center; flex-wrap: wrap; }
  .chat-widget { bottom: 16px; right: 16px; }
  .chat-panel { width: calc(100vw - 32px); bottom: 70px; right: 0; max-height: 70vh; }
  .scroll-buttons { left: 16px; bottom: 16px; }
  .product-card .pc-img { height: 160px; }
  .cta-content { padding: 40px 24px; }
  .cta-content h2 { font-size: 28px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 28px; }
  .error-404 h1 { font-size: 80px; }
}

/* ===== ELEMENTOR UYUMLULUK ===== */
/* Elementor aktif olduğunda tema stillerini koruma */
body.elementor-default,
body.elementor-page {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: var(--dark) !important;
  line-height: 1.6 !important;
}

/* Elementor'un container/section reset'lerini engelle */
.elementor-page .navbar,
.elementor-default .navbar {
  position: fixed !important;
  top: 0 !important;
  z-index: 1100 !important;
  background: #ffffff !important;
}

.elementor-page .hero,
.elementor-default .hero { padding-top: 80px !important; }

/* Elementor section padding'lerini engelle */
.elementor-page .page-header,
.elementor-default .page-header {
  padding: 120px 0 50px !important;
  background: var(--gradient-dark) !important;
}

/* Elementor'un h1-h6 resetini engelle */
.elementor-page h1, .elementor-page h2, .elementor-page h3,
.elementor-page h4, .elementor-page h5, .elementor-page h6,
.elementor-default h1, .elementor-default h2, .elementor-default h3,
.elementor-default h4, .elementor-default h5, .elementor-default h6 {
  font-family: 'Space Grotesk', sans-serif !important;
  color: inherit;
}

/* Elementor widget wrapper boşlukları */
.elementor-page .elementor-widget-wrap,
.elementor-default .elementor-widget-wrap {
  padding: 0 !important;
}

/* Elementor container genişliğini tema ile eşle */
.elementor-page .elementor-section .elementor-container,
.elementor-default .elementor-section .elementor-container {
  max-width: 1200px;
}

/* Elementor link renkleri tema ile uyumlu */
.elementor-page a:not(.btn-main):not(.btn-ghost):not(.btn-white):not(.elementor-button),
.elementor-default a:not(.btn-main):not(.btn-ghost):not(.btn-white):not(.elementor-button) {
  color: var(--blue);
}

/* Footer'ın Elementor tarafından ezilmesini engelle */
.elementor-page .footer,
.elementor-default .footer {
  background: var(--dark) !important;
  padding: 80px 0 30px !important;
  color: rgba(255,255,255,0.7) !important;
}

/* Elementor img reset engelle */
.elementor-page img,
.elementor-default img {
  max-width: 100%;
  height: auto;
}
