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

:root {
  --white: #ffffff;
  --off-white: #f7f7f5;
  --light: #eeede9;
  --mid: #c8c4bb;
  --dark: #1a1a18;
  --charcoal: #2e2e2c;
  --accent: #f0a500;
  --accent-deep: #c8880a;
  --text: #333330;
  --text-light: #777770;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--light);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo .bolt {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo .bolt svg { width: 16px; height: 16px; fill: var(--dark); }
.nav-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--dark);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--accent-deep); color: var(--dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6% 6% 6% 8%;
  position: relative;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,165,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--light);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  width: fit-content;
  animation: fadeUp 0.8s ease both;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--dark);
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 1.8rem 0 2.5rem;
  max-width: 440px;
  animation: fadeUp 0.8s 0.2s ease both;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
  border: 2px solid var(--dark);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.btn-primary svg { width: 18px; height: 18px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  padding: 15px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  border: 2px solid var(--light);
}
.btn-outline:hover { border-color: var(--dark); color: var(--dark); }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--light);
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat-item {}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--dark);
  letter-spacing: 0.03em;
}
.stat-num span { color: var(--accent); }
.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 2px;
}

.hero-right {
  display: flex;
  background: url('bg_image.webp') center/cover no-repeat;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
  position: relative;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240,165,0,0.06) 0%, transparent 60%);
}

.hero-visual {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-icon-wrap {
  width: 180px; height: 180px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 0 0 20px rgba(240,165,0,0.08);
  position: relative;
}
.hero-icon-wrap::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(240,165,0,0.3);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-icon-wrap svg { width: 80px; height: 80px; }

.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 2rem;
}
.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.hero-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.hero-card-icon {
  width: 40px; height: 40px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 20px; height: 20px; }
.hero-card-text { font-size: 0.8rem; font-weight: 600; color: var(--charcoal); line-height: 1.3; }

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

/* ── SECTION BASE ── */
section { padding: 7rem 8%; scroll-margin-top: 90px; }
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a5a00;
  background: rgba(240,165,0,0.15);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--dark);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.section-desc {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  font-weight: 300;
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── SERVICES ── */
#hizmetler {
  background: var(--off-white);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--light);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-content {
  padding: 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex-grow: 1;
}
.service-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 58px; height: 58px;
  background: var(--off-white);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.8rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(240,165,0,0.12); }
.service-icon svg { width: 28px; height: 28px; stroke: var(--accent); }

.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 0.8rem;
}
.service-card h3 { margin: 0; }
.service-card p { margin-top: 0.4rem; }

/* ── WHY US ── */
#neden {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#neden::before {
  content: '';
  position: absolute;
  top: -300px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
#neden .section-title { color: var(--white); }
#neden .section-desc { color: rgba(255,255,255,0.5); }
#neden .section-tag { background: rgba(240,165,0,0.15); color: var(--accent); }

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-feat {
  padding: 1.6rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: border-color var(--transition), background var(--transition);
}
.why-feat:hover { border-color: rgba(240,165,0,0.3); background: rgba(240,165,0,0.04); }
.why-feat-icon {
  width: 44px; height: 44px;
  background: rgba(240,165,0,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.why-feat-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.why-feat h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.why-feat p { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

.why-right { position: relative; }
.why-big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 12vw, 11rem);
  line-height: 1;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: -40px; right: -20px;
  user-select: none;
  pointer-events: none;
}
.why-callout {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
}
.why-callout-accent {
  position: absolute;
  top: -1px; left: 40px;
  width: 60px; height: 3px;
  background: var(--accent);
  border-radius: 0 0 4px 4px;
}
.why-callout p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}
.why-callout p strong { color: var(--white); font-weight: 600; }
.why-callout a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background var(--transition);
}
.why-callout a:hover { background: var(--accent-deep); }
.why-callout a svg { width: 16px; height: 16px; }

/* ── CONTACT ── */
#iletisim { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  margin-top: 4rem;
}
.contact-info {}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.contact-item-icon {
  width: 48px; height: 48px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; stroke: var(--accent); }
.contact-item-body label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-item-body a,
.contact-item-body p {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
}
.contact-item-body a:hover { color: var(--accent); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 3rem 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo .bolt {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-logo .bolt svg { width: 14px; height: 14px; fill: var(--dark); }
.footer-logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
footer p { font-size: 0.82rem; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
footer a:hover { color: var(--accent); }

/* ── FLOATING ACTIONS ── */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── PHONE FLOAT ── */
.phone-float {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--dark);
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(240,165,0,0.4);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }
.whatsapp-float:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.phone-float svg { width: 18px; height: 18px; animation: ring 3s ease infinite; }
@keyframes ring {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(-20deg); }
  95% { transform: rotate(20deg); }
  98% { transform: rotate(-10deg); }
}
.phone-float:hover { background: var(--dark); color: var(--white); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; 
  left: 0; 
  right: 0; 
  height: calc(100vh - 68px);
  background-color: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4rem;
  padding-bottom: 2rem;
  gap: 2rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--accent); }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--light);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.contact-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--mid);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--off-white);
  transition: all var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(240,165,0,0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--dark);
  padding: 16px 32px;
  border: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background-color var(--transition), transform var(--transition);
  width: 100%;
}
.btn-submit:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}
/* ── ARTICLE PAGE ── */
.article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 5%;
  background: var(--white);
}
.article-title {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.article-phone-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #5cb85c;
  color: #ffffff;
  padding: 1rem;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 2rem;
  transition: background-color var(--transition);
}
.article-phone-banner:hover {
  background-color: #4cae4c;
}
.article-phone-banner svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.article-hero-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}
.article-content p {
  margin-bottom: 1.5rem;
}
.article-content strong.text-red {
  color: #e63946;
  font-weight: 700;
}
.article-services-list {
  list-style: none;
  margin-top: 2rem;
}
.article-services-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.article-services-list li a {
  text-decoration: none;
  color: var(--charcoal);
  transition: color var(--transition);
}
.article-services-list li a:hover {
  color: var(--accent);
}
.article-services-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f0a500' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18h6'/%3E%3Cpath d='M10 22h4'/%3E%3Cpath d='M15.09 14c.18-.98.65-1.74 1.41-2.5A4.65 4.65 0 0 0 18 8 6 6 0 0 0 6 8c0 1.45.62 2.84 1.5 3.5.76.76 1.23 1.52 1.41 2.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.bolgeler .article-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.bolgeler .article-services-list li {
  background: var(--off-white);
  padding: 14px 16px 14px 40px;
  border-radius: 8px;
  border: 1px solid var(--light);
  margin-bottom: 0;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.bolgeler .article-services-list li::before {
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.bolgeler .article-services-list li:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

@media (max-width: 900px) {
  body { padding-top: 68px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 360px; }
  .hero-left { padding: 4rem 5%; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .why-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout, .contact-page-layout { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 5rem 5%; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 1.5rem; }
  .why-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cards { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .phone-float span.num { display: none; }
  .phone-float { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
  .floating-actions { bottom: 20px; right: 20px; gap: 10px; }
}
