/* ============================================================
   KAYRA AUTO SERVIS — LIGHT CORPORATE PREMIUM THEME
   Palette: Corporate Blue · Slate Grey · Pure White · Energy Red
   Font: Inter (Google Fonts)
   ============================================================ */

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

:root {
  --primary:        #1e40af;
  --primary-600:    #2563eb;
  --primary-700:    #1d4ed8;
  --primary-50:     #eff6ff;
  --primary-100:    #dbeafe;

  --slate-50:       #f8fafc;
  --slate-100:      #f1f5f9;
  --slate-200:      #e2e8f0;
  --slate-300:      #cbd5e1;
  --slate-400:      #94a3b8;
  --slate-500:      #64748b;
  --slate-600:      #475569;
  --slate-700:      #334155;
  --slate-800:      #1e293b;
  --slate-900:      #0f172a;

  --accent:         #dc2626;
  --accent-600:     #ea580c;
  --accent-50:      #fef2f2;

  --white:          #ffffff;
  --black:          #000000;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm:      6px;
  --radius:         10px;
  --radius-lg:      16px;
  --radius-xl:      24px;

  --shadow-sm:      0 1px 2px rgba(15,23,42,.06);
  --shadow:         0 4px 6px -1px rgba(15,23,42,.08), 0 2px 4px -2px rgba(15,23,42,.04);
  --shadow-md:      0 10px 15px -3px rgba(15,23,42,.08), 0 4px 6px -4px rgba(15,23,42,.04);
  --shadow-lg:      0 20px 25px -5px rgba(15,23,42,.1), 0 8px 10px -6px rgba(15,23,42,.04);
  --shadow-xl:      0 25px 50px -12px rgba(15,23,42,.25);

  --transition:     .25s cubic-bezier(.4,0,.2,1);
  --transition-slow: .4s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--slate-700);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--primary-100); color: var(--primary); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--slate-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--slate-400); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .header-inner { padding: 0 2.5rem; }
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--slate-900);
  letter-spacing: -.025em;
}
.logo-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo span { color: var(--primary); }

.main-nav {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media (min-width: 900px) {
  .main-nav { display: flex; }
}

.nav-link {
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--primary); background: var(--primary-50); }
.nav-link.active { color: var(--primary); background: var(--primary-50); font-weight: 600; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(30,64,175,.35);
  transition: all var(--transition);
  margin-left: .5rem;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,64,175,.4);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 900px) {
  .hamburger { display: none; }
}

.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 300px; height: 100vh;
  background: var(--white);
  border-left: 1px solid var(--slate-200);
  box-shadow: var(--shadow-xl);
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: .5rem;
  transition: right .35s ease;
  z-index: 999;
}
.mobile-nav.open { right: 0; }
.mobile-nav .nav-link {
  font-size: 1rem;
  padding: .75rem 1rem;
  border-radius: var(--radius);
}
.mobile-nav .nav-cta {
  margin-left: 0;
  margin-top: 1rem;
  justify-content: center;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.4);
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 998;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 84px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,23,42,.88) 0%, rgba(15,23,42,.6) 50%, rgba(15,23,42,.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 4rem 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.hero-title span { color: var(--primary-600); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(30,64,175,.35);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30,64,175,.45);
}
.btn-primary svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.4);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat-item {}
.stat-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: .4rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-brands {
  position: absolute;
  bottom: 2rem; right: 2.5rem;
  z-index: 1;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.hero-brand {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: .5rem 1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
}
@media (max-width: 768px) {
  .hero-brands { display: none; }
  .hero-stats { gap: 1.5rem; }
  .hero-content { padding: 3rem 0; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-band {
  background: var(--primary);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 25s linear infinite;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 0 2rem;
}
.marquee-brand {
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.marquee-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
section { padding: 5rem 0; }
@media (min-width: 768px) {
  section { padding: 6rem 0; }
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.sec-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.sec-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.sec-title em {
  color: var(--primary);
  font-style: normal;
}

.sec-desc {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 560px;
  margin-top: 1rem;
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--slate-50); }

.services-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--slate-300);
  transform: translateY(-4px);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-num {
  font-size: .75rem;
  font-weight: 700;
  color: var(--slate-400);
  letter-spacing: .05em;
  margin-bottom: 1.25rem;
}

.svc-icon-wrap {
  width: 56px; height: 56px;
  background: var(--primary-50);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.svc-icon-wrap svg {
  width: 26px; height: 26px;
  stroke: var(--primary);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: .5rem;
}

.svc-desc {
  font-size: .9rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap var(--transition);
}
.svc-link:hover { gap: .7rem; }
.svc-link svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands-section {}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.brand-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.brand-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.brand-card:hover img { transform: scale(1.08); }
.brand-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.85) 0%, rgba(15,23,42,.2) 60%, transparent 100%);
}
.brand-card > * { position: relative; z-index: 1; }

.brand-mark {
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .5rem;
}
.brand-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
}
.brand-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-badge-text {
  font-size: .8rem;
  color: var(--slate-500);
  margin-top: .25rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.about-feature-icon {
  width: 36px; height: 36px;
  background: var(--primary-50);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg {
  width: 18px; height: 18px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
}
.about-feature-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate-900);
}
.about-feature-desc {
  font-size: .8rem;
  color: var(--slate-500);
  margin-top: .15rem;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { padding: 0 0 5rem; }
.cta-strip-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-strip-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.cta-sub {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.cta-actions .btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.cta-actions .btn-primary:hover {
  background: var(--slate-100);
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.cta-actions .btn-outline {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.cta-actions .btn-outline:hover {
  background: rgba(255,255,255,.1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-400);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand .logo span { color: var(--primary-600); }
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: .6rem; }
.footer-links a {
  font-size: .9rem;
  color: var(--slate-400);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .9rem;
}
.footer-contact svg {
  width: 18px; height: 18px;
  stroke: var(--primary-600);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .8rem;
  color: var(--slate-500);
}

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: var(--slate-900);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(37,99,235,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30,64,175,.12) 0%, transparent 40%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--primary-600);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.page-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--primary-600);
}
.page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}
.page-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* ============================================================
   HIZMETLER PAGE
   ============================================================ */
.hizmetler-section { background: var(--slate-50); padding: 4rem 0 6rem; }

.hizmet-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}

.hizmet-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  transition: all var(--transition);
  cursor: pointer;
}
.hizmet-row:hover {
  border-color: var(--primary-100);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.hizmet-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  width: 48px;
  flex-shrink: 0;
}

.hizmet-row-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: .25rem;
}

.hizmet-row-desc {
  font-size: .9rem;
  color: var(--slate-500);
}

.hizmet-arrow {
  margin-left: auto;
  width: 40px; height: 40px;
  background: var(--slate-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.hizmet-row:hover .hizmet-arrow {
  background: var(--primary);
}
.hizmet-arrow svg {
  width: 18px; height: 18px;
  stroke: var(--slate-500);
  stroke-width: 2;
  fill: none;
  transition: stroke var(--transition);
}
.hizmet-row:hover .hizmet-arrow svg { stroke: var(--white); }

/* ============================================================
   HAKKIMIZDA PAGE
   ============================================================ */
.about-page-section { padding: 4rem 0 6rem; }

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .about-page-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.about-page-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-page-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-100);
}
.value-icon {
  width: 48px; height: 48px;
  background: var(--primary-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-icon svg {
  width: 22px; height: 22px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
}
.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: .4rem;
}
.value-desc {
  font-size: .85rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ============================================================
   ILETISIM PAGE
   ============================================================ */
.contact-section { padding: 4rem 0 6rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
}

.contact-info-box {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--slate-200);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px; height: 20px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
}
.contact-info-title {
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .2rem;
}
.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: .4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-family: inherit;
  font-size: .95rem;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-50);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   ADMIN PANEL — LIGHT THEME
   ============================================================ */
.admin-body {
  background: var(--slate-100);
  color: var(--slate-700);
}

.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: var(--white);
  border-right: 1px solid var(--slate-200);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar .logo {
  margin-bottom: 2rem;
  font-size: 1.25rem;
}

.admin-nav { display: flex; flex-direction: column; gap: .25rem; flex: 1; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate-600);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.admin-nav a:hover,
.admin-nav a.active {
  background: var(--primary-50);
  color: var(--primary);
}
.admin-nav a svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.admin-main {
  flex: 1;
  margin-left: 260px;
  padding: 2rem;
  max-width: calc(100vw - 260px);
}

.admin-header {
  margin-bottom: 2rem;
}
.admin-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
}
.admin-subtitle {
  font-size: .9rem;
  color: var(--slate-500);
  margin-top: .25rem;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-card .stat-label {
  font-size: .85rem;
  color: var(--slate-500);
  text-transform: none;
  letter-spacing: 0;
}

.admin-panel {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.panel-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--slate-200);
  background: var(--slate-50);
}
.panel-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
}
.panel-body { padding: 1.5rem; }

.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.admin-btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(30,64,175,.25);
}
.admin-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30,64,175,.35);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
}
.admin-table th,
.admin-table td {
  padding: .875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--slate-200);
}
.admin-table th {
  font-weight: 600;
  color: var(--slate-600);
  background: var(--slate-50);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.admin-table td { color: var(--slate-700); }
.admin-table tr:hover td { background: var(--slate-50); }

@media (max-width: 900px) {
  .admin-sidebar {
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 1000;
  }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main {
    margin-left: 0;
    max-width: 100vw;
    padding: 1.5rem;
  }
}

/* ============================================================
   ANIMATIONS & UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center { text-align: center; }
.text-center .sec-desc { margin-left: auto; margin-right: auto; }

/* ============================================================
   ALERTS
   ============================================================ */
.alert {
  padding: .875rem 1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.alert-success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.alert-error {
  background: var(--accent-50);
  color: var(--accent);
  border: 1px solid #fecaca;
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(37,211,102,.4);
  transition: all var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
}
.whatsapp-fab svg {
  width: 28px; height: 28px;
  fill: var(--white);
}

/* ============================================================
   ADMIN EXTRAS
   ============================================================ */
.admin-btn-sm { padding: .45rem .9rem; font-size: .8rem; }
.admin-btn-danger {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(220,38,38,.25);
  border: none;
  padding: .65rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.admin-btn-danger:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220,38,38,.35);
}

.form-textarea {
  width: 100%;
  padding: .8rem 1rem;
  font-family: inherit;
  font-size: .95rem;
  color: var(--slate-800);
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  resize: vertical;
}
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--primary-50);
}

.toggle-wrap { display: flex; align-items: center; gap: .75rem; }
.toggle {
  position: relative;
  width: 44px; height: 24px;
  display: inline-block;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--slate-300);
  border-radius: 24px;
  transition: background .3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .3s;
}
.toggle input:checked + .toggle-slider { background: var(--primary); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-label { font-size: .9rem; font-weight: 500; color: var(--slate-700); }

.hizmet-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--slate-200);
}
.hizmet-item:last-child { border-bottom: none; }
.hizmet-item-title { font-weight: 600; color: var(--slate-900); }
.hizmet-item-desc { font-size: .85rem; color: var(--slate-500); margin-top: .15rem; }

/* ============================================================
   WORKS SECTION (Hizmetlerimizden Kareler)
   ============================================================ */
.works-section {
  background: var(--slate-50);
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .works-section { padding: 6rem 0; }
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.works-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}
.works-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.works-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--slate-100);
}
.works-media img,
.works-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.works-media video {
  cursor: pointer;
}

.works-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.works-play::before {
  content: '';
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,.5);
  border-radius: 50%;
  transition: transform var(--transition);
}
.works-play svg {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: var(--white);
  margin-left: 2px;
}
.works-card:hover .works-play::before {
  transform: scale(1.1);
}

.works-info {
  padding: 1.25rem 1.5rem;
}

.works-title {
  font-weight: 700;
  color: var(--slate-900);
  font-size: 1rem;
}

.works-desc {
  font-size: .85rem;
  color: var(--slate-500);
  margin-top: .25rem;
  line-height: 1.6;
}

.works-date {
  font-size: .75rem;
  color: var(--slate-400);
  margin-top: .5rem;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(15,23,42,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  padding: 2rem;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}
.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  display: block;
}
.lightbox-content video {
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
}
.lightbox-close:hover {
  background: rgba(255,255,255,.2);
}
.lightbox-close svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 10;
}
.lightbox-nav:hover {
  background: rgba(255,255,255,.25);
}
.lightbox-nav svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  text-align: center;
  max-width: 600px;
  padding: .5rem 1rem;
  background: rgba(0,0,0,.4);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
@media (max-width: 768px) {
  .lightbox { padding: 1rem; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
  .lightbox-close { top: .75rem; right: .75rem; width: 40px; height: 40px; }
}
