/* ================================================================
   NOVUSCARIA — Ana Stil Dosyası
   Renkler: #155F58 (ana), #ABF0EB (vurgu), #0a1a18 (koyu bg)
   ================================================================ */

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

:root {
  --bg:           #ffffff;
  --bg-alt:       #fafafa;
  --bg-dark:      #0a1a18;
  --bg-dark2:     #0d2220;
  --primary:      #00a99d;
  --primary-dk:   #0f4a44;
  --primary-lt:   #1e7a71;
  --accent:       #ABF0EB;
  --accent-dk:    #7ed8d1;
  --text:         #1a1a1a;
  --text-m:       #666666;
  --text-lt:      rgba(255,255,255,0.82);
  --border:       #e5e7eb;
  --border-dk:    rgba(255,255,255,0.08);
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.13);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-pill:  100px;
  --tr:           0.22s ease;
  --font:         'Montserrat', system-ui, -apple-system, sans-serif;
  --mw:           1420px;
  --nav-h:        72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ================================================================
   TİPOGRAFİ
   ================================================================ */
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 700; line-height: 1.13; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; line-height: 1.2; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { line-height: 1.72; }

.text-accent   { color: var(--accent); }
.text-primary  { color: var(--primary); }
.text-muted    { color: var(--text-m); }
.text-center   { text-align: center; }
.text-white    { color: #fff; }
.underline-acc { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 5px; }
.underline-pr  { text-decoration: underline; text-decoration-color: var(--primary); text-underline-offset: 5px; }

/* ================================================================
   LAYOUT
   ================================================================ */
.container    { width: 100%; max-width: var(--mw); margin: 0 auto; padding: 0 28px; }
.section      { padding: 72px 0; }
.section-sm   { padding: 48px 0; }
.section-dark { background: var(--bg-dark); color: var(--text-lt); }
.section-alt  { background: var(--bg-alt); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-btwn   { display: flex; align-items: center; justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }

/* ================================================================
   BUTONLAR
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 0.9375rem;
  transition: all var(--tr); white-space: nowrap; cursor: pointer;
}
.btn-primary  { background: var(--primary); color: #fff; border: 2px solid var(--primary); }
.btn-primary:hover { background: var(--primary-dk); border-color: var(--primary-dk); transform: translateY(-1px); }
.btn-accent   { background: var(--accent); color: var(--primary-dk); border: 2px solid var(--accent); font-weight: 700; }
.btn-accent:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-lt { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
.btn-outline-lt:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ================================================================
   BADGE / PILL ETİKETLER
   ================================================================ */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border); font-size: 0.8rem;
  font-weight: 600; color: var(--text-m); margin-bottom: 18px;
}
.badge::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%; background: var(--primary); flex-shrink: 0;
}
.badge-dk {
  border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.65);
}
.badge-dk::before { background: var(--accent); }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all var(--tr);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 28px; max-width: var(--mw); margin: 0 auto;
}
.navbar-logo { display: flex; align-items: center; }
.navbar-logo-img { height: 36px; width: auto; display: block; }
.logo-color { display: none; }

/* Scrolled state — beyaz arka plan */
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  backdrop-filter: none;
}
.navbar.scrolled .logo-white { display: none; }
.navbar.scrolled .logo-color { display: block; }
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-link:hover { color: var(--primary); background: rgba(21,95,88,0.06); }
.navbar.scrolled .nav-link.active { color: #fff; background: var(--primary); }
.navbar.scrolled .lang-switch { background: rgba(0,0,0,0.05); }
.navbar.scrolled .lang-btn { color: var(--text-m); }
.navbar.scrolled .lang-btn.active { background: var(--primary); color: #fff; }
.navbar.scrolled .nav-toggle span { background: var(--text); }

.navbar-nav { display: flex; align-items: center; gap: 4px; }
.nav-item   { position: relative; }
.nav-link   {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px; color: rgba(255,255,255,0.82);
  font-size: 0.9rem; font-weight: 500; border-radius: var(--radius-sm);
  transition: color var(--tr), background var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(171,240,235,0.07); }
.nav-link svg { width: 13px; height: 13px; transition: transform var(--tr); }
.nav-item:hover > .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%); background: #ffffff;
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
  padding: 8px; min-width: 270px; opacity: 0; visibility: hidden;
  transition: all var(--tr); box-shadow: 0 20px 48px rgba(0,0,0,0.45);
  pointer-events: none;
}
/* Hover köprüsü: nav-item ile dropdown arasındaki 10px boşluğu kapatan şeffaf alan */
.nav-item:has(.dropdown-menu)::after {
  content: ''; position: absolute;
  bottom: -10px; left: 0; right: 0; height: 10px;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: all; }
.dropdown-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 13px; color: rgb(0 0 0);
  font-size: 0.87rem; font-weight: 500; border-radius: var(--radius-sm);
  transition: all var(--tr);
}
.dropdown-item:hover { background: rgb(0 169 157); color: #ffffff; }
.dropdown-item:hover .dropdown-icon { background: rgb(255 255 255); color: #00a99d; }
.dropdown-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgb(0 169 157); display: flex; align-items: center;
  justify-content: center; color: #ffffff; font-size: 13px; flex-shrink: 0;
}

.navbar-actions { display: flex; align-items: center; gap: 10px; }

.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.07); border-radius: var(--radius-pill); padding: 3px;
}
.lang-btn {
  padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.55);
  transition: all var(--tr); cursor: pointer;
}
.lang-btn.active { background: var(--primary); color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--tr); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   HERO — ANA SAYFA (Premium)
   ================================================================ */
.hero {
  position: relative;
  background: #070e0d;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Video arka plan */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0; pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-video.loaded { opacity: 1; }

.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(7,14,13,0.90) 0%,
    rgba(7,14,13,0.72) 50%,
    rgba(7,14,13,0.45) 100%
  );
  z-index: 1; pointer-events: none;
}

@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }

/* Background layers */
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 2;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
  z-index: 2;
}
.hero-glow.g1 {
  width: 700px; height: 550px;
  top: -220px; right: -180px;
  background: radial-gradient(ellipse, rgba(21,95,88,0.22) 0%, transparent 68%);
}
.hero-glow.g2 {
  width: 500px; height: 400px;
  bottom: -200px; left: -100px;
  background: radial-gradient(ellipse, rgba(171,240,235,0.05) 0%, transparent 70%);
}

/* Single-column layout (visual panel removed) */
.hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 80px 0 108px;
  position: relative; z-index: 3;
  max-width: 760px;
}

.hero-copy { max-width: 680px; }

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 9px;
  background: rgba(21,95,88,0.13);
  border: 1px solid rgba(21,95,88,0.3);
  border-radius: var(--radius-pill);
  color: var(--accent);
  font-size: 0.78rem; font-weight: 600;
  margin-bottom: 30px;
  text-decoration: none;
  transition: all 0.22s ease;
}
.hero-eyebrow:hover {
  background: rgba(21,95,88,0.22);
  border-color: rgba(21,95,88,0.48);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  animation: pulse-g 2.2s ease-in-out infinite;
}
@keyframes pulse-g {
  0%, 100% { box-shadow: 0 0 0 0 rgba(171,240,235,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(171,240,235,0); }
}

/* Headline */
.hero-headline {
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.03;
  color: #fff;
  margin-bottom: 24px;
}
.hh-line { display: block; }
.hh-accent {
  background: linear-gradient(105deg, var(--accent) 0%, #4adecc 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shine-text 5s linear infinite;
}
@keyframes shine-text {
  from { background-position: 0 center; }
  to   { background-position: 200% center; }
}

/* Body */
.hero-para {
  color: rgba(255,255,255,0.5);
  font-size: 1rem; line-height: 1.82;
  margin-bottom: 38px;
}

/* CTA buttons */
.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px;
  background: var(--accent); color: #0a2e2b;
  font-weight: 700; font-size: 0.9rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1.5px solid var(--accent);
  transition: all 0.22s ease; white-space: nowrap;
}
.btn-hero-primary:hover {
  background: var(--accent-dk); border-color: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(171,240,235,0.24);
}
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  color: rgba(255,255,255,0.65);
  font-weight: 600; font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.22s ease; white-space: nowrap;
}
.btn-hero-ghost:hover {
  color: #fff; border-color: rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.04);
}

/* Social icons */
.hero-socials { display: flex; gap: 7px; }
.hero-socials a {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3); font-size: 12px;
  text-decoration: none;
  transition: all 0.22s ease;
}
.hero-socials a:hover { border-color: var(--accent); color: var(--accent); background: rgba(171,240,235,0.07); }

/* ---- Visual panel ---- */
.hero-visual-wrap {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 420px; margin-left: auto;
}
.hv-chips-row { display: flex; gap: 10px; }
.hv-top    { margin-left: 20px; }
.hv-bottom { margin-right: 20px; }

.hv-chip {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 14px 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hv-chip strong {
  display: block; font-size: 1.6rem; font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: 3px;
  letter-spacing: -0.03em;
}
.hv-chip > span { font-size: 0.7rem; color: rgba(255,255,255,0.36); }

/* Main glass card */
.hv-card {
  background: rgba(21,95,88,0.09);
  border: 1px solid rgba(21,95,88,0.25);
  border-radius: 22px;
  padding: 26px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 28px 72px rgba(0,0,0,0.52),
    0 0 0 1px rgba(21,95,88,0.08);
  position: relative; overflow: hidden;
}
.hv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(21,95,88,0.7) 25%,
    rgba(171,240,235,0.5) 50%,
    rgba(21,95,88,0.7) 75%, transparent 100%);
}
.hvc-head  { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.hvc-icon  {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 18px; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(21,95,88,0.4);
}
.hvc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(171,240,235,0.08);
  border: 1px solid rgba(171,240,235,0.17);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
  font-size: 0.71rem; font-weight: 600; color: var(--accent);
}
.hvc-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-g 2.2s ease-in-out infinite;
}
.hvc-title { font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 4px; }
.hvc-sub   { font-size: 0.74rem; color: rgba(255,255,255,0.36); margin-bottom: 14px; }
.hvc-line  { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin-bottom: 13px; }
.hvc-tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.hvc-tags span {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 7px;
  padding: 4px 9px;
  font-size: 0.7rem; color: rgba(255,255,255,0.42);
}
.hvc-tags span i { color: var(--accent); font-size: 9px; }

/* Scroll indicator */
.hero-scroll-cue {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; cursor: pointer;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  transform-origin: top;
  animation: scroll-reveal 2.2s ease-in-out infinite;
}
@keyframes scroll-reveal {
  0%   { transform: scaleY(0); opacity: 1; }
  60%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}
.hero-scroll-cue small {
  font-size: 0.63rem; color: rgba(255,255,255,0.2);
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ---- Hero entrance animations ---- */
.hero-eyebrow              { animation: fade-up 0.65s cubic-bezier(0.16,1,0.3,1) 0.1s  both; }
.hh-line:nth-child(1)      { animation: fade-up 0.65s cubic-bezier(0.16,1,0.3,1) 0.2s  both; }
.hh-line:nth-child(2)      { animation: fade-up 0.65s cubic-bezier(0.16,1,0.3,1) 0.32s both; }
.hh-line:nth-child(3)      { animation: fade-up 0.65s cubic-bezier(0.16,1,0.3,1) 0.42s both; }
.hero-para                 { animation: fade-up 0.65s cubic-bezier(0.16,1,0.3,1) 0.5s  both; }
.hero-ctas                 { animation: fade-up 0.65s cubic-bezier(0.16,1,0.3,1) 0.58s both; }
.hero-socials              { animation: fade-up 0.65s cubic-bezier(0.16,1,0.3,1) 0.66s both; }
.hv-top                    { animation: slide-in 0.7s  cubic-bezier(0.16,1,0.3,1) 0.3s  both; }
.hv-card                   { animation: slide-in 0.7s  cubic-bezier(0.16,1,0.3,1) 0.45s both; }
.hv-bottom                 { animation: slide-in 0.7s  cubic-bezier(0.16,1,0.3,1) 0.6s  both; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slide-in {
  from { opacity: 0; transform: translateX(26px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---- Hero responsive ---- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 0 80px; min-height: auto; gap: 48px; }
  .hero-visual-wrap { max-width: 100%; margin-left: 0; }
  .hv-top, .hv-bottom { margin: 0; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-visual-wrap { display: none; }
}

/* ================================================================
   PAGE HERO — İÇ SAYFALAR
   ================================================================ */
.page-hero {
  background: var(--bg-dark);
  padding: calc(var(--nav-h) + 52px) 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(21,95,88,0.22) 0%, transparent 65%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--accent) 50%, var(--primary) 70%, transparent);
}
.page-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 24px 24px;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero-title { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 14px;
  justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* ================================================================
   BÖLÜM BAŞLIĞI
   ================================================================ */
.sec-head { margin-bottom: 56px; }
.sec-head.c { text-align: center; }
.sec-title { margin-bottom: 14px; }
.sec-desc  { color: var(--text-m); font-size: 1.05rem; max-width: 600px; }
.sec-head.c .sec-desc { margin: 0 auto; }

/* ================================================================
   HİZMETLER BÖLÜMÜ (Ana Sayfa — sticky left / scrolling right)
   ================================================================ */
.services-layout {
  display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; align-items: start;
}
.services-intro {
  position: sticky; top: calc(50vh - 240px);
  padding-left: 28px; padding-right: 12px;
}
.services-intro h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.1rem);
  margin-bottom: 20px; line-height: 1.15; font-weight: 700;
  letter-spacing: -0.03em;
}
.services-intro > p { color: var(--text-m); line-height: 1.82; font-size: 1.05rem; margin-top: 18px; }

/* Sol kenar çizgi aksanı */
.si-vbar {
  position: absolute; left: 0; top: 0;
  width: 4px; height: 100%; min-height: 260px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--primary) 0%, var(--primary) 70%, transparent 100%);
}

/* Badge ok ikon varyantı */
.badge-arrow::before { display: none; }
.badge-arrow { gap: 8px; padding: 7px 18px; font-size: 0.875rem; }
.badge-arrow i { color: var(--primary); font-size: 10px; }

/* Mini stats within sticky left */
.si-stats {
  display: flex; margin: 28px 0;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.si-stat { flex: 1; text-align: center; border-right: 1px solid var(--border); }
.si-stat:last-child { border-right: none; }
.si-stat strong { display: block; font-size: 1.55rem; font-weight: 900; color: var(--primary); line-height: 1.1; }
.si-stat span   { font-size: 0.7rem; color: var(--text-m); display: block; margin-top: 3px; }

/* Scrolling service list */
.services-scroll-list { display: flex; flex-direction: column; gap: 14px; }
.srv-row {
  display: grid;
  grid-template-columns: 100px 1fr 40px;
  gap: 0 20px; align-items: center;
  padding: 35px 35px 35px 40px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  list-style: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.srv-row:hover {
  box-shadow: 0 6px 24px rgba(21,95,88,0.11);
  transform: translateY(-2px);
}

/* Dairesel büyük ikon + dış yuvarlak */
.srv-row-ico {
  width: 68px; height: 68px; border-radius: 50%;
  background: #00a99d;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px; flex-shrink: 0;
  position: relative; transition: all 0.25s ease;
}
.srv-row-ico::after {
  content: '';
  position: absolute; inset: -9px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.09);
  background: rgba(0,0,0,0.03);
  pointer-events: none;
}
.srv-row:hover .srv-row-ico {
  transform: scale(1.06) rotate(-5deg);
  box-shadow: 0 10px 28px rgba(30,105,94,0.28);
}

/* İçerik alanı */
.srv-row-body { padding: 0; }
.srv-row-body h3 {
  font-size: clamp(1rem, 1.4vw, 1.2rem); font-weight: 700;
  margin-bottom: 6px; line-height: 1.25; letter-spacing: -0.01em;
  transition: color 0.2s;
}
.srv-row-body h3 a { color: var(--text); text-decoration: none; }
.srv-row:hover .srv-row-body h3 a { color: var(--primary); }
.srv-row-body p {
  font-size: 0.88rem; color: var(--text-m);
  line-height: 1.65; margin: 0;
}

/* Ok butonu */
.srv-row-arr {
  width: 38px; height: 38px; border-radius: 8px;
  background: #EFF4F4;
  border: 1px solid rgba(30,105,94,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #1E695E; font-size: 12px;
  text-decoration: none; flex-shrink: 0;
  transition: all 0.22s ease;
  justify-self: end;
}
.srv-row:hover .srv-row-arr {
  background: #00a99d;
  border-color: #00a99d;
  color: #fff;
  transform: translateX(2px);
}

/* Legacy srv-item kept for any other uses */
.srv-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 16px; border-radius: var(--radius);
  transition: all var(--tr); cursor: pointer; border: 1.5px solid transparent;
}
.srv-item:hover { background: var(--bg-alt); border-color: var(--border); }
.srv-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-lt));
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 19px; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(21,95,88,0.22);
}
.srv-body h3 { font-size: 1.025rem; margin-bottom: 5px; }
.srv-body p  { font-size: 0.875rem; color: var(--text-m); line-height: 1.6; }

/* ================================================================
   HİZMET KARTI (Hizmetler Listesi Sayfası)
   ================================================================ */
.srv-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.srv-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; transition: all var(--tr); position: relative;
  overflow: hidden; background: var(--bg);
}
.srv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0; transition: opacity var(--tr);
}
.srv-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 10px 36px rgba(21,95,88,0.1); }
.srv-card:hover::before { opacity: 1; }
.srv-card-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: rgba(21,95,88,0.08); display: flex; align-items: center;
  justify-content: center; color: var(--primary); font-size: 24px; margin-bottom: 18px;
}
.srv-card h3  { font-size: 1.05rem; margin-bottom: 9px; }
.srv-card p   { color: var(--text-m); font-size: 0.875rem; line-height: 1.65; margin-bottom: 22px; }
.srv-card-lnk {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-size: 0.875rem; font-weight: 600;
  transition: gap var(--tr);
}
.srv-card-lnk:hover { gap: 10px; }

/* ================================================================
   HİZMET DETAY SAYFASI
   ================================================================ */
.svc-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 0; border-bottom: 1px solid var(--border);
}
.svc-stat {
  text-align: center; padding: 40px 24px;
  border-right: 1px solid var(--border);
}
.svc-stat:last-child { border-right: none; }
.svc-stat-val {
  display: block; font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 8px;
}
.svc-stat-lbl { font-size: 0.9rem; color: var(--text-m); font-weight: 500; }

.svc-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; padding: 44px 0;
}
.svc-feature + .svc-feature { border-top: 1px solid var(--border); }
.svc-feature.rev .svc-feat-txt { order: 2; }
.svc-feature.rev .svc-feat-img { order: 1; }

.svc-feat-img { position: relative; }
.svc-feat-img img {
  border-radius: var(--radius); width: 100%;
  height: 360px; object-fit: cover;
}
.svc-feat-img::after {
  content: ''; position: absolute; top: -14px; right: -14px;
  width: 100%; height: 100%; border: 2px solid var(--accent);
  border-radius: var(--radius); opacity: 0.22; z-index: -1;
}

.svc-feat-img-placeholder {
  border-radius: var(--radius); width: 100%;
  height: 360px; background: linear-gradient(135deg, rgba(21,95,88,0.08), rgba(171,240,235,0.12));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: var(--primary); font-size: 48px;
  border: 1.5px dashed rgba(21,95,88,0.2);
}
.svc-feat-img-placeholder span { font-size: 0.9rem; font-weight: 600; color: var(--text-m); }

.svc-feat-txt .badge  { margin-bottom: 16px; }
.svc-feat-txt h2      { font-size: clamp(1.45rem,2.5vw,1.9rem); margin-bottom: 14px; }
.svc-feat-txt p       { color: var(--text-m); margin-bottom: 26px; }

/* ================================================================
   İSTATİSTİK SATIRI
   ================================================================ */
.stats-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.stat-box  {
  text-align: center; padding: 36px 20px;
  border-right: 1px solid var(--border-dk);
}
.stat-box:last-child { border-right: none; }
.stat-val {
  display: block; font-size: clamp(2.4rem,5vw,3.4rem);
  font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 6px;
}
.section-dark .stat-val { color: var(--accent); }
.stat-lbl { font-size: 0.9rem; color: var(--text-m); }
.section-dark .stat-lbl { color: rgba(255,255,255,0.55); }

/* ================================================================
   CTA BÖLÜMÜ
   ================================================================ */
.cta-sec {
  background: #EEF3F2; position: relative; overflow: hidden;
}
.cta-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(21,95,88,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* 2 kolonlu yerleşim */
.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.cta-copy { display: flex; flex-direction: column; gap: 0; align-items: flex-start; }

/* Başlık */
.cta-title {
  color: var(--text);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 20px 0 18px;
}
.cta-hl {
  color: var(--primary);
  position: relative; display: inline-block;
}
.cta-hl::after {
  content: '';
  position: absolute; left: 0; bottom: -5px; right: 0;
  height: 3px; border-radius: 2px;
  background: var(--primary);
}

.cta-desc {
  color: var(--text-m); line-height: 1.78;
  margin-bottom: 32px; max-width: 420px;
}
.cta-acts { display: flex; gap: 14px; flex-wrap: wrap; }

/* İstiflenmiş görsel */
.cta-img-stack {
  position: relative;
  min-height: 380px;
}
.cta-img-back {
  position: absolute;
  top: 0; right: -10px;
  width: 84%; aspect-ratio: 5/4;
  background: #00a99d;
  border-radius: 28px;
  transform: rotate(5deg);
}
.cta-img-front {
  position: absolute;
  bottom: 0; left: 0;
  width: 84%; aspect-ratio: 5/4;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0,0,0,0.13);
  transform: rotate(-1deg);
}
.cta-img-front img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ================================================================
   REFERANSLAR / LOGO GRID
   ================================================================ */
.logo-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.logo-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 20px 18px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  min-height: 120px; transition: all var(--tr); background: var(--bg);
}
.logo-card:hover {
  border-color: var(--primary); box-shadow: 0 4px 20px rgba(21,95,88,0.09);
  transform: translateY(-2px);
}
.logo-card img {
  max-height: 60px; max-width: 140px; object-fit: contain;
  filter: grayscale(1) opacity(0.6); transition: all var(--tr);
}
.logo-card:hover img { filter: grayscale(0) opacity(1); }
.logo-ph {
  font-size: 0.78rem; font-weight: 700; color: rgb(15, 74, 68) !important;
  text-align: center; line-height: 1.4;
}
.logo-name {
  display: block; font-size: 0.75rem; color: var(--text-m);
  margin-top: 6px; text-align: center; font-weight: 600;
}
.ref-mono {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(21,95,88,0.1), rgba(21,95,88,0.18));
  color: rgb(15,74,68); font-weight: 800; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.refs-action { text-align: center; margin-top: 44px; }

/* ================================================================
   SSS ACCORDION
   ================================================================ */
.faq-sec { background: #f5f7f6; }
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.45fr;
  gap: 80px; align-items: start;
}
.faq-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700;
  color: var(--text); line-height: 1.25; margin: 18px 0 16px;
}
.faq-hl {
  color: #00a99d; position: relative; display: inline-block;
}
.faq-hl::after {
  content: ''; position: absolute; left: 0; bottom: -12px;
  width: 64px; height: 3px; border-radius: 2px; background: var(--primary);
}
.faq-intro { position: sticky; top: calc(50vh - 200px); }
.faq-intro p { color: var(--text-m); margin-bottom: 16px; margin-top: 14px !important; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff; border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.faq-item.open {
  border-color: rgba(21,95,88,0.25);
  box-shadow: 0 4px 18px rgba(21,95,88,0.08);
}
.faq-q {
  width: 100%; padding: 18px 20px; display: flex;
  align-items: center; gap: 14px;
  color: var(--text); font-size: 0.9375rem; font-weight: 600;
  text-align: left; transition: color var(--tr);
}
.faq-q:hover { color: var(--primary); }
.faq-item.open .faq-q { color: var(--primary); }
.faq-q-ico {
  color: #00a99d;
  width: 42px; height: 42px; border-radius: 10px;
  background: #EEF6F5; color: #1E695E; font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--tr), color var(--tr);
}
.faq-item.open .faq-q-ico { background: var(--primary); color: #fff; }
.faq-q > span:nth-child(2) { flex: 1; }
.faq-ico {
  width: 30px; height: 30px; border-radius: 8px;
  border: 1.5px solid rgba(0,0,0,0.15); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  transition: all var(--tr); color: var(--text-m);
  font-style: normal; font-size: 20px; line-height: 1; font-weight: 300;
}
.faq-item.open .faq-ico {
  border-color: var(--primary); background: var(--primary);
  color: #fff; transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner {
  padding: 0 20px 18px 76px; color: var(--text-m);
  font-size: 0.9rem; line-height: 1.72;
}

/* ================================================================
   İLETİŞİM FORMU KARTI
   ================================================================ */
.contact-sec { background: #f5f7f6; padding-top: 52px; }
.contact-wrap {
  max-width: 86%; margin: 0 auto;
  position: relative; padding-top: 64px;
}
/* Dekoratif üst kartlar */
.cc-deco {
  position: absolute; top: 0; left: 0; right: 0;
  pointer-events: none; z-index: 0;
}
.cc-deco-back {
  position: absolute; top: 10px; left: 58px;
  width: 58%; height: 68px; border-radius: 15px;
  background: #AEC4C1;
  transform: rotate(5deg); transform-origin: left center;
}
.cc-deco-front {
  position: absolute; top: 33px; left: 35px;
  width: 60%; height: 64px; border-radius: 16px;
  background: #7aaeaa;
  transform: rotate(2.6deg); transform-origin: left center;
}
.contact-card {
  background: #fff; border-radius: 24px;
  padding: 52px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.07);
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.cc-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700;
  color: var(--text); line-height: 1.25; margin: 18px 0 0;
  position: relative; padding-bottom: 22px;
}
.cc-title::after {
  content: ''; position: absolute; left: 0; bottom: 6px;
  width: 44px; height: 3px; border-radius: 2px; background: #155F58;
}
.cc-hl { color: #00a99d; }
.cc-left p {
  color: var(--text-m); line-height: 1.72; margin: 16px 0 0;
  max-width: 360px;
}
.form-group {
  margin-bottom: 12px; position: relative; display: flex; align-items: center;
}
.form-group-ta { align-items: flex-start; }
.form-ico {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  color: #1E695E; font-size: 16px; pointer-events: none;
}
.form-ico-ta { top: 20px; transform: none; }
.form-input {
  width: 100%; padding: 18px 20px 18px 48px;
  background: #fff; border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 12px; color: var(--text); font-size: 0.9375rem;
  transition: border-color var(--tr); outline: none;
  font-family: inherit;
}
.form-input::placeholder { color: #aaa; }
.form-input:focus { border-color: #044441; }
.form-textarea { resize: vertical; min-height: 180px; padding-top: 18px; }
.form-submit-row { display: flex; justify-content: flex-end; margin-top: 8px; }
.form-btn {
  padding: 15px 36px; font-size: 1rem; font-weight: 700;
  background: #044441; color: #fff; border: none;
  border-radius: 50px; cursor: pointer;
  transition: all var(--tr); display: inline-flex; align-items: center;
  justify-content: center; gap: 9px;
  box-shadow: 0 4px 16px rgba(4,68,65,0.3);
}
.form-btn:hover { background: #033330; transform: translateY(-1px); box-shadow: 0 8px 22px rgba(4,68,65,0.38); }

/* İletişim Sayfası */
.contact-page-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.cp-logo { height: 44px; width: auto; display: block; margin-bottom: 16px; }
.cp-about  { color: var(--text-m); margin-bottom: 20px; line-height: 1.72; }
.cp-social { display: flex; gap: 8px; margin-bottom: 28px; }
.soc-btn   {
  width: 38px; height: 38px; border: 1.5px solid var(--border);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; color: var(--text-m); font-size: 15px;
  transition: all var(--tr);
}
.soc-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(21,95,88,0.05); }
.cp-items   { display: flex; flex-direction: column; gap: 16px; }
.cp-item    { display: flex; align-items: flex-start; gap: 13px; }
.cp-item-ico {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(21,95,88,0.08); display: flex; align-items: center;
  justify-content: center; color: var(--primary); font-size: 16px; flex-shrink: 0;
}
.cp-item-txt strong { display: block; font-size: 0.8rem; color: var(--text-m); margin-bottom: 2px; }
.cp-item-txt span   { font-size: 0.9375rem; font-weight: 500; }
.cp-map {
  border-radius: var(--radius); overflow: hidden;
  border: 1.5px solid var(--border);
  aspect-ratio: 16/10; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-m); font-size: 0.9rem;
}
.cp-map iframe { width: 100%; height: 100%; border: none; }

/* ================================================================
   HAKKIMIZDA SAYFASI
   ================================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius); width: 100%; height: 440px; object-fit: cover; }
.about-img-ph {
  border-radius: var(--radius); width: 100%; height: 440px;
  background: linear-gradient(135deg, rgba(21,95,88,0.09), rgba(171,240,235,0.14));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--primary); font-size: 56px;
  border: 1.5px dashed rgba(21,95,88,0.2);
}
.about-img-ph span { font-size: 0.9rem; color: var(--text-m); font-weight: 600; }
.about-img::after {
  content: ''; position: absolute; bottom: -16px; left: 16px; right: -16px;
  height: 100%; border: 2px solid var(--accent); border-radius: var(--radius);
  opacity: 0.18; z-index: -1;
}
.about-txt h2   { margin-bottom: 18px; }
.about-txt p    { color: var(--text-m); margin-bottom: 14px; }
.about-nums     { display: flex; gap: 36px; margin: 28px 0; }
.about-num      { text-align: center; }
.about-num-val  { display: block; font-size: 2.4rem; font-weight: 900; color: var(--primary); }
.about-num-lbl  { font-size: 0.825rem; color: var(--text-m); white-space: nowrap; }

/* Süreç Adımları */
.process-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; margin-top: 48px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 100px;
  left: 14%; right: 14%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(171,240,235,0.22) 20%, rgba(171,240,235,0.22) 80%, transparent);
}
.proc-step { text-align: center; padding: 36px 20px; position: relative; z-index: 1; }
.proc-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(171,240,235,0.09); border: 1px solid rgba(171,240,235,0.28);
  color: var(--accent); font-size: 0.7rem; font-weight: 900;
  margin-bottom: 18px; letter-spacing: 0.04em;
}
.proc-ico {
  width: 76px; height: 76px; border-radius: 22px;
  background: linear-gradient(135deg, rgba(21,95,88,0.38), rgba(171,240,235,0.1));
  border: 1px solid rgba(171,240,235,0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 28px; margin: 0 auto 20px;
  transition: all var(--tr);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.proc-step:hover .proc-ico {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, rgba(21,95,88,0.55), rgba(171,240,235,0.18));
}
.proc-step h3 { color: #fff; font-size: 0.95rem; margin-bottom: 10px; }
.proc-step p  { color: rgba(255,255,255,0.46); font-size: 0.8rem; line-height: 1.65; }

/* Şirket Hikayesi */
.story-card {
  background: var(--bg-alt); border-radius: 20px; padding: 56px;
  text-align: center; border: 1.5px solid var(--border);
}
.story-card h2 { margin-bottom: 20px; }
.story-card p  { color: var(--text-m); max-width: 700px; margin: 0 auto 14px; }

/* ================================================================
   PARTNER BAR
   ================================================================ */
.partner-bar {
  background: var(--bg-alt); padding: 36px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

/* ================================================================
   ÇÖZÜM ORTAKLARI
   ================================================================ */
.partners-sec { background: #fff; padding-top: 80px; padding-bottom: 48px; }
.partners-intro {
  text-align: center; max-width: 600px; margin: 0 auto 52px;
}
.partners-intro .badge { margin: 0 auto 18px; }
.partners-title {
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700;
  color: var(--text); line-height: 1.2; margin: 0 0 20px;
}
.partners-hl {
  color: #00a99d; position: relative; display: inline-block;
}
.partners-hl::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -10px; width: 52px; height: 3px; border-radius: 2px;
  background: #155F58;
}
.partners-intro p { color: var(--text-m); line-height: 1.72; margin-top: 28px; }

.partners-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 40px;
}
.partner-card {
  background: #fff; border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  padding: 0; display: flex; align-items: center;
  justify-content: center; position: relative;
  min-height: 147px; overflow: hidden;
  transition: box-shadow var(--tr), transform var(--tr);
}
.partner-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-2px); }
.partner-card img { max-width: 210px; max-height: 125px; object-fit: contain; display: block; }
.partner-check {
  position: absolute; top: 14px; right: 14px;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(21,95,88,0.1); color: #155F58;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}

.partners-cta {
  background: #00a99d; border-radius: 20px;
  padding: 28px 36px; display: flex;
  align-items: center; justify-content: space-between; gap: 24px;
}
.partners-cta-left {
  display: flex; align-items: center; gap: 18px;
}
.partners-cta-ico {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 20px;
}
.partners-cta-left strong {
  display: block; color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 4px;
}
.partners-cta-left p { color: rgb(255 255 255 / 92%); font-size: 0.875rem; margin: 0; }
.partners-cta-btn {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  padding: 13px 26px; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.3); color: #fff;
  font-weight: 700; font-size: 0.9375rem;
  transition: all var(--tr); white-space: nowrap;
}
.partners-cta-btn:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: #f5f7f6; padding: 32px 0 0; }
.footer-wrap {
  position: relative; padding-top: 64px;
}
.footer-inner {
  background: #fff; border-radius: 24px 24px 0 0;
  padding: 40px 48px 0;
  position: relative; z-index: 1;
}
.footer-wrap .cc-deco { z-index: 0; }
.footer-wrap .cc-deco-back { width: 44%; }
.footer-wrap .cc-deco-front { width: 46%; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; padding-bottom: 36px;
}
.footer-top-left { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  background: linear-gradient(135deg, #128C7E 0%, #25C460 100%);
  color: #fff; transition: all var(--tr);
  box-shadow: 0 4px 16px rgba(18,140,126,0.3);
}
.footer-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(18,140,126,0.4); }
.footer-btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: 50px;
  border: 1.5px solid rgba(0,0,0,0.12); color: var(--text);
  font-weight: 600; font-size: 0.9rem; transition: all var(--tr);
}
.footer-btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.ft-badge {
  background: rgba(21,95,88,0.1); color: #155F58;
  font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 50px;
}
.footer-divider { border: none; border-top: 1px solid rgba(0,0,0,0.07); margin: 0 0 40px; }
.footer-main { padding-bottom: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 0; }
.footer-grid > * { padding: 0 40px; }
.footer-grid > *:first-child { padding-left: 0; }
.footer-grid > *:last-child { padding-right: 0; }
.footer-grid .footer-col { border-left: 1px solid rgba(0,0,0,0.09); }
.footer-grid .footer-col:last-child { border-right: none; }
.footer-logo { display: block; margin-bottom: 16px; }
.footer-logo-img { height: 40px; width: auto; display: block; }
.footer-brand p { font-size: 0.875rem; color: var(--text-m); line-height: 1.72; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 40px; height: 40px; border: 1.5px solid rgba(0,0,0,0.13);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--text-m); font-size: 14px;
  transition: all var(--tr);
}
.footer-socials a:hover { border-color: var(--primary); color: var(--primary); background: rgba(21,95,88,0.05); }
.footer-col h4 { color: var(--text); font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-m); font-size: 0.875rem; transition: color var(--tr); }
.footer-links a:hover { color: var(--primary); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.fc-item { display: flex; align-items: center; gap: 10px; color: var(--text-m); font-size: 0.875rem; }
.fc-item i { color: var(--primary); font-size: 14px; width: 16px; flex-shrink: 0; }
.footer-btm {
  border-top: 1px solid rgba(0,0,0,0.07); padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 0.8rem; color: var(--text-m); }
.footer-copy-brand { color: var(--primary); font-weight: 700; }
.footer-totop {
  width: 36px; height: 36px; border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,0.12); background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-m); font-size: 13px; cursor: pointer;
  transition: all var(--tr);
}
.footer-totop:hover { border-color: var(--primary); color: var(--primary); }


/* ================================================================
   FADE-IN ANİMASYON
   ================================================================ */
.fi { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fi.vis { opacity: 1; transform: translateY(0); }
.fi-delay-1 { transition-delay: 0.1s; }
.fi-delay-2 { transition-delay: 0.2s; }
.fi-delay-3 { transition-delay: 0.3s; }

/* Directional variants */
.fi-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fi-left.vis  { opacity: 1; transform: translateX(0); }
.fi-right { opacity: 0; transform: translateX(28px);  transition: opacity 0.6s ease, transform 0.6s ease; }
.fi-right.vis { opacity: 1; transform: translateX(0); }
.fi-scale { opacity: 0; transform: scale(0.93);       transition: opacity 0.55s ease, transform 0.55s ease; }
.fi-scale.vis { opacity: 1; transform: scale(1); }

/* ================================================================
   SCROLL PROGRESS BAR
   ================================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9999;
  height: 2px; width: 0%; pointer-events: none;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% auto;
  animation: progress-shimmer 3s linear infinite;
}
@keyframes progress-shimmer {
  from { background-position: 0 center; }
  to   { background-position: 200% center; }
}

/* ================================================================
   HERO FLOAT ANİMASYONLAR
   ================================================================ */
@keyframes float-chip {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-7px); }
}
.hv-top .hv-chip:first-child  { animation: float-chip 5.2s ease-in-out 0s    infinite; }
.hv-top .hv-chip:last-child   { animation: float-chip 6s   ease-in-out 0.9s  infinite; }
.hv-bottom .hv-chip:first-child { animation: float-chip 5.6s ease-in-out 1.5s infinite; }
.hv-bottom .hv-chip:last-child  { animation: float-chip 4.8s ease-in-out 0.5s infinite; }

/* Smooth transition for card parallax */
.hv-card { transition: transform 0.14s ease-out; }

/* ================================================================
   PARTNER BAR MARQUEE
   ================================================================ */
.partner-bar { overflow: hidden; padding: 32px 0; }
.partner-track {
  display: flex; gap: 64px; align-items: center;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.partner-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-item {
  opacity: 0.5; transition: opacity var(--tr);
  font-size: 0.875rem; font-weight: 700; color: var(--text-m);
  white-space: nowrap; display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.partner-item:hover { opacity: 0.85; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .logo-grid       { grid-template-columns: repeat(3,1fr); }
  .srv-cards       { grid-template-columns: repeat(2,1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .services-layout { gap: 56px; }
}

@media (max-width: 900px) {
  .cta-layout   { grid-template-columns: 1fr; gap: 48px; }
  .cta-img-stack { min-height: 280px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* ---- Navbar ---- */
  .navbar-inner { padding: 0 16px; }
  .navbar-logo-img { height: 30px; }
  .navbar-nav {
    display: none; position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--bg-dark); flex-direction: column;
    align-items: stretch; padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06); gap: 2px;
  }
  .navbar-nav.open { display: flex; }
  .navbar.scrolled .navbar-nav {
    background: #ffffff;
    border-bottom-color: rgba(0,0,0,0.08);
  }
  .navbar.scrolled .navbar-nav .nav-link {
    color: var(--text);
  }
  .navbar.scrolled .navbar-nav .nav-link:hover,
  .navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--primary); background: rgba(21,95,88,0.06);
  }
  .navbar.scrolled .navbar-nav .dropdown-menu {
    background: rgba(0,0,0,0.04);
  }
  .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; background: rgba(255,255,255,0.04);
    border: none; padding: 4px 0 4px 14px; display: none;
    min-width: auto; pointer-events: all;
  }
  .nav-item.open .dropdown-menu { display: block; }
  .nav-toggle { display: flex; }
  .lang-switch { padding: 2px; }
  .lang-btn { padding: 4px 9px; font-size: 0.75rem; }
  .navbar-actions { gap: 8px; }

  /* ---- Hero ---- */
  .hero-inner { padding: 56px 0 72px; min-height: calc(100svh - var(--nav-h)); }
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-para { font-size: 0.9rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-video-overlay {
    background: linear-gradient(160deg, rgba(7,14,13,0.92) 0%, rgba(7,14,13,0.82) 100%);
  }

  /* ---- Layout grids ---- */
  .services-layout,
  .about-layout,
  .contact-page-layout,
  .svc-feature,
  .grid-2,
  .faq-layout,
  .contact-card { grid-template-columns: 1fr; }

  .faq-layout { gap: 32px; }

  .services-intro { position: relative; top: auto; padding-left: 18px; }
  .faq-intro      { position: relative; top: auto; }
  .si-vbar        { height: 160px; }

  /* ---- Hizmet satır listesi ---- */
  .srv-row { grid-template-columns: 62px 1fr 34px; gap: 0 10px; padding: 14px 12px; }
  .srv-row-ico { width: 50px; height: 50px; font-size: 17px; }
  .srv-row-arr { width: 32px; height: 32px; font-size: 11px; border-radius: 7px; }

  .svc-feature.rev .svc-feat-txt,
  .svc-feature.rev .svc-feat-img { order: unset; }
  .svc-feature { gap: 28px; padding: 32px 0; }
  .svc-feat-img img,
  .svc-feat-img-placeholder { height: 200px; }

  /* ---- Hizmet istatistikleri — 3 sütun koru ---- */
  .svc-stats { grid-template-columns: repeat(3,1fr); }
  .svc-stat  { padding: 20px 8px; }
  .svc-stat-val { font-size: clamp(1rem, 4vw, 1.6rem); }
  .svc-stat-lbl { font-size: 0.72rem; }

  /* ---- Grid & Cards ---- */
  .logo-grid   { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .stats-row   { grid-template-columns: repeat(3,1fr); }
  .stat-box    { padding: 24px 12px; }
  .srv-cards   { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2,1fr); }
  .partners-cta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .partners-cta-btn { width: 100%; justify-content: center; }

  /* ---- Hakkımızda ---- */
  .story-card  { padding: 28px 18px; }
  .about-nums  { gap: 16px; flex-wrap: wrap; }
  .about-img::after { display: none; }
  .si-stats    { margin: 16px 0; }

  /* ---- İletişim ---- */
  .contact-wrap { max-width: 100%; padding-top: 0; }
  .cc-deco      { display: none; }
  .contact-card { padding: 24px 18px; gap: 28px; }

  /* ---- Footer ---- */
  .footer        { padding: 20px 0 0; }
  .footer-wrap   { padding-top: 0; }
  .footer-inner  { padding: 28px 18px 0; border-radius: 16px 16px 0 0; }
  .footer-top    { flex-direction: column; align-items: flex-start; gap: 10px; padding-bottom: 24px; }
  .footer-top-left { gap: 8px; }
  .footer-btn-primary,
  .footer-btn-outline { font-size: 0.82rem; padding: 10px 16px; }
  .footer-divider { margin: 0 0 24px; }
  .footer-main   { padding-bottom: 24px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-grid > * { padding: 0; }
  .footer-brand  { grid-column: 1 / -1; }
  .footer-brand p { margin-bottom: 12px; }
  .footer-col    { border: none; padding-top: 0; }
  .footer-col h4 { font-size: 0.9rem; margin-bottom: 12px; }
  .footer-links  { gap: 8px; }
  .footer-btm    { flex-direction: row; justify-content: space-between; align-items: center; gap: 10px; padding: 14px 0; }

  /* ---- Genel spacing ---- */
  .section    { padding: 52px 0; }
  .section-sm { padding: 36px 0; }
  .container  { padding: 0 16px; }
  .sec-head   { margin-bottom: 36px; }
}

@media (max-width: 480px) {
  /* ---- Navbar ---- */
  .navbar-logo-img { height: 26px; }

  /* ---- Hero ---- */
  .hero-inner  { padding: 44px 0 60px; }
  .hero-headline { font-size: clamp(2rem, 10vw, 2.6rem); }
  .hero-eyebrow { font-size: 0.72rem; }
  .hero-socials { gap: 5px; }
  .hero-socials a { width: 28px; height: 28px; font-size: 11px; }

  /* ---- Genel ---- */
  .logo-grid     { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .about-nums    { justify-content: center; }

  /* ---- Footer ---- */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
