/* ═══════════════════════════════════════════
   KAHRAMAN YÖNETİM VE DANIŞMANLIK
   Brand Colors: Navy #1B2D5E | Teal #1A5668 | Blue #2AAFD4
   ═══════════════════════════════════════════ */

:root {
  --navy:       #1B2D5E;
  --teal:       #1A5668;
  --blue:       #2AAFD4;
  --blue-light: #4CC6EA;
  --white:      #FFFFFF;
  --bg:         #F7F9FB;
  --bg-alt:     #EDF2F7;
  --text:       #1A2332;
  --text-mid:   #4A5568;
  --text-light: #718096;
  --border:     #D8E2EC;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(27, 45, 94, 0.10);
  --shadow-lg:  0 12px 48px rgba(27, 45, 94, 0.16);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,45,94,0.25);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,104,0.25);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--blue);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--navy); transform: translateY(-1px); }

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section base ── */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-mid);
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease, background var(--transition), box-shadow var(--transition), padding var(--transition);
}
/* Video bitince JS tarafından eklenir */
.navbar.visible {
  opacity: 1;
  pointer-events: auto;
}
.navbar.scrolled {
  background: rgba(27, 45, 94, 0.96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(27,45,94,0.2);
  padding: 0.75rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
/* Scroll başlayınca logo soldan kayarak belirir */
.navbar.scrolled .nav-logo {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.nav-logo-img { height: 80px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.12); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--navy); }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 45, 94, 0.82) 0%,
    rgba(26, 86, 104, 0.70) 60%,
    rgba(42, 175, 212, 0.40) 100%
  );
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero.ready .hero-overlay { opacity: 0; }
.hero.ready .hero-overlay-dark { opacity: 1; }

/* Fallback when no video */
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 60%, var(--blue) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 3rem 1rem 6rem;
}

/* Logo — video başından itibaren üst ortada, video bitince sol üste kayar */
.hero-logo-wrap {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: top 1s cubic-bezier(0.4, 0, 0.2, 1),
              left 1s cubic-bezier(0.4, 0, 0.2, 1),
              transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Video bitince sol üst köşeye kayar */
.hero.ready .hero-logo-wrap {
  top: 1.25rem;
  left: 2rem;
  transform: translateX(0);
}
.hero-logo {
  height: 140px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.4));
}

/* İçerik — başta gizli, video bitince fade-in */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 16rem 1rem 6rem; /* logo alanının altında başlar */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.hero.ready .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-slogan {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-btn {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
  transition: color var(--transition);
}
.hero-scroll-btn:hover { color: var(--white); }
.hero-scroll-btn svg { width: 32px; height: 32px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.brands-bar {
  background: var(--navy);
  padding: 4rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.brands-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2.5rem;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}
.brand-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.brand-card img {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
}
.brand-card { cursor: pointer; text-decoration: none; }

/* ═══════════════════════════════════════
   HAKKIMIZDA
   ═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .tag { display: block; margin-bottom: 0.75rem; }
.about-text .section-title { margin-bottom: 1.5rem; }
.about-text p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--blue);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.about-card-icon {
  width: 48px; height: 48px;
  color: var(--blue);
  margin-bottom: 1rem;
}
.about-card-icon svg { width: 100%; height: 100%; }
.about-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.about-card p { color: var(--text-mid); font-size: 0.95rem; }

/* ═══════════════════════════════════════
   HİZMETLER
   ═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy)15, var(--blue)20);
  background-color: rgba(42, 175, 212, 0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--teal);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background-color: var(--navy);
  color: var(--white);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.6; }

/* ═══════════════════════════════════════
   NEDEN BİZ
   ═══════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.value-item {
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}
.value-item h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.value-item p { color: var(--text-mid); font-size: 0.9rem; }

/* ═══════════════════════════════════════
   İLETİŞİM
   ═══════════════════════════════════════ */
.contact-cta {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}

.contact-form-box,
.contact-info-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-box h3,
.contact-info-box h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--bg-alt);
}

/* ── Form elements ── */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items: start; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 175, 212, 0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }

.form-success {
  display: none;
  background: rgba(42, 175, 212, 0.1);
  color: var(--teal);
  border: 1px solid rgba(42, 175, 212, 0.3);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.form-success.show { display: block; }

/* ── Info list ── */
.info-list { display: flex; flex-direction: column; gap: 1.75rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(42, 175, 212, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.info-icon svg { width: 20px; height: 20px; }
.info-list strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.info-list span, .info-list span a {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.5;
}
.info-list span a:hover { color: var(--blue); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  align-items: stretch;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer-brand-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
}
.footer-logo { width: 100%; max-width: 185px; height: auto; opacity: 0.9; }
.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}
.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal-links a:hover { color: var(--blue-light); }
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links li {
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom {
  padding: 1.75rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════
   MODAL
   ═══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(27, 45, 94, 0.65);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition);
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 32px; height: 32px;
  background: var(--bg);
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--navy); color: var(--white); }
.modal-box h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.modal-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

/* ═══════════════════════════════════════
   PROJELERİMİZ
   ═══════════════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.project-visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem 1.5rem;
}
.project-visual--1 { background: linear-gradient(135deg, #1B2D5E 0%, #2AAFD4 100%); }
.project-visual--2 { background: linear-gradient(135deg, #1A5668 0%, #4CC6EA 100%); }
.project-visual--3 { background: linear-gradient(135deg, #0f1e3d 0%, #1A5668 100%); }
.project-visual--4 { background: linear-gradient(135deg, #1B2D5E 0%, #1A5668 60%, #2AAFD4 100%); }

.project-year {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}
.project-info { padding: 1.75rem; }
.project-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}
.project-info h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.project-info p { color: var(--text-mid); font-size: 0.93rem; line-height: 1.6; }

/* ═══════════════════════════════════════
   HERO AGENTSTEAMS — ÖNE ÇIKAN PROJE KARTI
   ═══════════════════════════════════════ */
.project-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.project-card-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--blue) 100%);
}

.pcf-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.pcf-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(42, 175, 212, 0.1);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(42, 175, 212, 0.3);
  width: fit-content;
}
.pcf-title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.pcf-desc {
  color: var(--text-mid);
  font-size: 0.94rem;
  line-height: 1.75;
}
.pcf-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.pcf-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text);
}
.pcf-features li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 0.48rem;
}
.pcf-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.pcf-btn-full {
  display: flex;
  width: 100%;
  justify-content: center;
}
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,104,0.25);
}

/* Dashboard mockup */
.pcf-visual {
  display: flex;
  align-items: stretch;
  justify-content: center;
  align-self: stretch;
  min-height: 520px;
}
.agent-dashboard {
  width: 100%;
  background: #0e1a30;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13, 26, 51, 0.45);
  font-family: var(--font-body);
}
.ad-header {
  background: #1a2c5b;
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(58, 181, 212, 0.18);
}
.ad-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6e8a, #3ab5d4);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ad-header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.ad-header-text .ad-title {
  color: #e8f0fe;
  font-weight: 600;
  font-size: 0.875rem;
}
.ad-sub {
  color: #3ab5d4;
  font-size: 0.7rem;
}
.ad-status-badge {
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
}
.ad-chips {
  padding: 0.7rem 1.25rem;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ad-chip {
  padding: 0.18rem 0.65rem;
  border-radius: 50px;
  border: 1px solid #3ab5d4;
  color: #3ab5d4;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(58,181,212,0.08);
}
.ad-messages {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.ad-msg {
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 0.8rem;
  line-height: 1.55;
}
.ad-msg p { margin: 0; }
.ad-msg--user {
  background: rgba(255,255,255,0.07);
  color: #c8d6f0;
  align-self: flex-start;
  max-width: 88%;
}
.ad-msg--agent {
  border-left: 3px solid #3ab5d4;
  background: rgba(26,44,91,0.5);
  color: #d0e4f0;
}
.ad-msg--finans {
  border-left-color: #4ade80;
}
.ad-msg-label {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3ab5d4;
  margin-bottom: 0.3rem;
}
.ad-msg-label--finans {
  color: #4ade80;
}
.ad-routing {
  font-size: 0.7rem;
  color: rgba(200,214,240,0.4);
  padding: 0 0.15rem;
  font-style: italic;
}

@media (max-width: 900px) {
  .project-card-featured {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  .pcf-title { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal       { transform: translateY(32px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Stagger children */
.services-grid .service-card:nth-child(1) { transition-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.10s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.20s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.30s; }

.values-grid .value-item:nth-child(1) { transition-delay: 0.05s; }
.values-grid .value-item:nth-child(2) { transition-delay: 0.12s; }
.values-grid .value-item:nth-child(3) { transition-delay: 0.19s; }
.values-grid .value-item:nth-child(4) { transition-delay: 0.26s; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  /* Mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-link { color: var(--text-mid) !important; padding: 0.75rem 1rem; }
  .nav-link:hover { background: var(--bg) !important; color: var(--navy) !important; }
  .btn-nav { margin-top: 0.5rem; text-align: center; justify-content: center; }

  .hero-logo { height: 90px; }
  .hero-logo-wrap { top: 3.5rem; }
  .hero.ready .hero-logo-wrap { top: 1rem; left: 1.25rem; }
  .hero-content { padding-top: 10rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; max-width: 320px; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-cta { flex-direction: column; align-items: stretch; }
  .contact-cta .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════
   YASAL MODAL
   ═══════════════════════════════════════ */
.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 44, 91, 0.7);
  z-index: 9999;
  overflow-y: auto;
  padding: 2rem 1rem;
}
.legal-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.legal-modal-inner {
  background: #fff;
  max-width: 820px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: auto;
}
.legal-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 2px solid #1a6e8a;
  background: #1a2c5b;
  border-radius: 4px 4px 0 0;
}
.legal-modal-header h2 {
  color: #fff;
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin: 0;
}
.legal-modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.legal-modal-close:hover { opacity: 1; }
.legal-modal-body {
  padding: 2rem 2.5rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #333;
  max-height: 65vh;
  overflow-y: auto;
}
.legal-modal-body h3 {
  font-family: var(--font-head);
  color: #1a2c5b;
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
  padding-bottom: 4px;
  border-bottom: 1px solid #3ab5d4;
}
.legal-modal-body h4 {
  color: #1a6e8a;
  font-size: 0.95rem;
  margin: 1rem 0 0.3rem;
}
.legal-modal-body p {
  margin: 0.5rem 0 0.8rem;
  text-align: justify;
}
.legal-modal-body ul {
  padding-left: 1.4rem;
  margin: 0.5rem 0;
}
.legal-modal-body ul li { margin-bottom: 0.4rem; }
.legal-modal-body .legal-highlight {
  background: #f0f7fa;
  border-top: 1px solid #3ab5d4;
  border-bottom: 1px solid #3ab5d4;
  padding: 0.8rem 1.2rem;
  margin: 1rem 0;
  font-style: italic;
  border-radius: 2px;
}
.legal-modal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.8rem 0 1.2rem;
  font-size: 0.85rem;
}
.legal-modal-body table th {
  background: #1a2c5b;
  color: #fff;
  padding: 8px 10px;
  text-align: left;
}
.legal-modal-body table td {
  padding: 7px 10px;
  border: 1px solid #ddd;
  vertical-align: top;
}
.legal-modal-body table tr:nth-child(even) td { background: #f9f9f9; }
.legal-modal-footer {
  padding: 1rem 2rem;
  border-top: 1px solid #eee;
  text-align: right;
}
.legal-modal-footer button {
  background: #1a2c5b;
  color: #fff;
  border: none;
  padding: 0.6rem 1.8rem;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
.legal-modal-footer button:hover { background: #1a6e8a; }
@media (max-width: 600px) {
  .legal-modal-body { padding: 1.2rem; }
  .legal-modal-header { padding: 1rem 1.2rem; }
}

/* ═══════════════════════════════════════
   HİZMETLER — İKİ CTA KARTI
   ═══════════════════════════════════════ */
.services-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.svc-cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: calc(100vh - 22rem);
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.svc-cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(27, 45, 94, 0.18);
}

.svc-cta-card--consult { border-top: 4px solid var(--navy); }
.svc-cta-card--shop    { border-top: 4px solid var(--teal); }

.svc-cta-icon-wrap {
  padding: 2.75rem 2.75rem 0;
}

.svc-cta-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.svc-cta-card--consult .svc-cta-icon {
  background: rgba(27, 45, 94, 0.08);
  color: var(--navy);
}
.svc-cta-card--shop .svc-cta-icon {
  background: rgba(26, 86, 104, 0.08);
  color: var(--teal);
}
.svc-cta-card--consult:hover .svc-cta-icon {
  background: var(--navy);
  color: var(--white);
}
.svc-cta-card--shop:hover .svc-cta-icon {
  background: var(--teal);
  color: var(--white);
}
.svc-cta-icon svg { width: 36px; height: 36px; }

.svc-cta-content {
  padding: 1.75rem 2.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.svc-cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}

.svc-cta-desc {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
}

.svc-cta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1rem;
}
.svc-cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text);
}
.svc-cta-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.svc-cta-card--consult .svc-cta-list li::before { background: var(--navy); }
.svc-cta-card--shop    .svc-cta-list li::before { background: var(--teal); }

.svc-cta-footer {
  padding: 2rem 2.75rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

@media (max-width: 860px) {
  .services-cta-grid { grid-template-columns: 1fr; }
  .svc-cta-card { min-height: auto; }
  .svc-cta-icon-wrap { padding: 2rem 2rem 0; }
  .svc-cta-content { padding: 1.5rem 2rem; }
  .svc-cta-footer { padding: 1.5rem 2rem; }
}

/* ═══════════════════════════════════════
   SERVICES SHOP MODAL
   ═══════════════════════════════════════ */
body.svc-shop-open { overflow: hidden; }

.svc-shop-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1350;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.svc-shop-overlay.open {
  opacity: 1;
  visibility: visible;
}

.svc-shop-box {
  background: var(--bg);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(27, 45, 94, 0.28);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-shop-overlay.open .svc-shop-box {
  transform: translateY(0) scale(1);
}

.svc-shop-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background var(--transition);
}
.svc-shop-close:hover { background: rgba(255, 255, 255, 0.35); }

.svc-shop-header {
  padding: 2.5rem 3rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  position: sticky;
  top: 0;
  z-index: 1;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.svc-shop-header .tag {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 0.5rem;
}
.svc-shop-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.svc-shop-sub { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }

.svc-shop-body {
  padding: 2.5rem 3rem;
}

@media (max-width: 960px) {
  .svc-shop-body { padding: 1.75rem; }
  .svc-shop-header { padding: 1.75rem 1.75rem 1.5rem; }
}
@media (max-width: 640px) {
  .svc-shop-body { padding: 1.25rem; }
  .svc-shop-header { padding: 1.5rem 1.25rem 1.25rem; }
}
