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

/* ── TOKENS ────────────────────────────────────────────────────── */
:root {
  --teal:        #007979;
  --teal-light:  #24B1B1;
  --teal-dim:    #005f5f;
  --cream:       #FFF0E4;
  --cream-dark:  #FFE0C5;
  --cream-darker:#F0C8A0;
  --bg:          #FDFAF7;
  --bg-card:     #FFFFFF;
  --border:      #EAE0D5;
  --text:        #1A1210;
  --text-muted:  #5A4A3A;
  --text-dim:    #9A8878;
  --sans:        'Inter', sans-serif;
  --display:     'Syne', sans-serif;
  --radius:      14px;
  --shadow:      0 4px 24px rgba(0,121,121,0.08);
  --shadow-lg:   0 12px 48px rgba(0,121,121,0.14);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ─────────────────────────────────────────────── */
.cursor {
  width: 12px; height: 12px;
  background: var(--teal);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}
.cursor-trail {
  width: 36px; height: 36px;
  border: 1.5px solid var(--teal-light);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.2s, height 0.2s, opacity 0.2s;
  opacity: 0.5;
}
body:hover .cursor { opacity: 1; }

/* cursor büyüsün link/button hover'da */
a:hover ~ #cursor,
button:hover ~ #cursor { transform: translate(-50%,-50%) scale(2.5); }

@media (hover: none) {
  .cursor, .cursor-trail { display: none; }
  body { cursor: auto; }
}

/* ── UTILITY ───────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) { .container { padding: 0 16px; } }

a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-dim); }

/* ── NAV ───────────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: 0 2px 20px rgba(0,121,121,0.1); }

.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 66px; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: var(--display); font-weight: 800; font-size: 1.3rem;
  color: var(--text); letter-spacing: -0.02em;
}
.nav-logo span { color: var(--teal); }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.88rem; color: var(--text-muted);
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 9px 20px; border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--teal-dim) !important; transform: translateY(-1px); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-muted); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 16px 24px 20px; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-muted); font-size: 0.95rem;
  font-weight: 500; padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--teal); font-weight: 600; }
.mobile-menu a:hover { color: var(--teal); }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}

/* ── HERO ──────────────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  padding: 100px 0 60px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}

.hero-bg-circle {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.c1 {
  width: 500px; height: 500px;
  background: rgba(36, 177, 177, 0.12);
  top: -100px; right: -100px;
}
.c2 {
  width: 350px; height: 350px;
  background: rgba(255, 224, 197, 0.5);
  bottom: -50px; left: -80px;
}
.c3 {
  width: 200px; height: 200px;
  background: rgba(0, 121, 121, 0.08);
  top: 40%; left: 40%;
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
}

.eyebrow {
  font-size: 0.78rem; font-weight: 600;
  color: var(--teal); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--teal);
}

h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.1; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: var(--text-muted); max-width: 480px;
  line-height: 1.75; margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.btn-primary {
  background: var(--teal); color: #fff;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,121,121,0.25);
}
.btn-primary:hover {
  background: var(--teal-dim); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,121,121,0.35);
}

.btn-ghost {
  border: 1.5px solid var(--border); color: var(--text-muted);
  padding: 14px 28px; border-radius: 10px;
  font-weight: 500; font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-block; white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--teal); color: var(--teal);
  transform: translateY(-2px);
}

.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge {
  display: flex; align-items: center; gap: 7px;
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; color: var(--text-muted); font-weight: 500;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-light);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Browser mock */
.hero-visual { position: relative; }
.browser-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.browser-bar {
  background: var(--cream);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #FF5F57; }
.dot.y { background: #FFBD2E; }
.dot.g { background: #28CA41; }
.browser-url {
  flex: 1; text-align: center;
  font-size: 0.75rem; color: var(--text-dim);
  background: var(--bg); border-radius: 6px;
  padding: 4px 12px; margin: 0 8px;
}
.browser-body { padding: 20px; }
.mock-nav {
  height: 10px; background: linear-gradient(90deg, var(--cream-dark), var(--cream));
  border-radius: 4px; margin-bottom: 20px;
}
.mock-hero { margin-bottom: 20px; }
.mock-h {
  height: 16px; width: 70%;
  background: linear-gradient(90deg, var(--teal-light), var(--teal));
  border-radius: 4px; margin-bottom: 10px; opacity: 0.7;
}
.mock-p {
  height: 8px; background: var(--cream-dark);
  border-radius: 4px; margin-bottom: 8px; opacity: 0.6;
}
.mock-p.short { width: 60%; }
.mock-btn {
  height: 28px; width: 120px;
  background: var(--teal); border-radius: 6px;
  margin-top: 12px; opacity: 0.8;
}
.mock-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.mock-card {
  height: 60px; background: var(--cream);
  border-radius: 8px; border: 1px solid var(--border);
}

/* floating tags */
.float-tag {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.t1 { top: -16px; left: 20px; animation-delay: 0s; }
.t2 { bottom: 30px; left: -20px; animation-delay: 0.8s; }
.t3 { top: 40%; right: -20px; animation-delay: 1.6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── SECTION BASE ──────────────────────────────────────────────── */
section { padding: clamp(60px, 10vw, 100px) 0; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head.light h2,
.section-head.light .section-sub { color: #fff; }
.section-head.light .section-label { color: var(--cream-dark); }

.section-label {
  font-size: 0.72rem; font-weight: 700;
  color: var(--teal); letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 12px;
  display: block;
}

h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.025em; line-height: 1.15;
  margin-bottom: 14px; color: var(--text);
}

.section-sub {
  font-size: 0.95rem; color: var(--text-muted);
  max-width: 520px; line-height: 1.75;
  margin: 0 auto;
}

/* ── HİZMETLER ─────────────────────────────────────────────────── */
#hizmetler { background: var(--bg); }

.hizmet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .hizmet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hizmet-grid { grid-template-columns: 1fr; } }

.hizmet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex; flex-direction: column;
}
.hizmet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-light);
}
.hizmet-card.featured {
  border-color: var(--teal);
  background: linear-gradient(135deg, #fff 60%, rgba(36,177,177,0.04));
  box-shadow: 0 4px 24px rgba(0,121,121,0.12);
}

.hizmet-icon {
  font-size: 2rem; margin-bottom: 16px;
  width: 52px; height: 52px;
  background: var(--cream); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.hizmet-card h3 {
  font-family: var(--display); font-weight: 700;
  font-size: 1.05rem; margin-bottom: 10px; color: var(--text);
}
.hizmet-card > p {
  font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 20px;
}
.hizmet-liste {
  list-style: none; display: flex; flex-direction: column;
  gap: 8px; margin-bottom: 24px; flex: 1;
}
.hizmet-liste li {
  font-size: 0.84rem; color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 8px;
}
.hizmet-liste li::before {
  content: '✓'; color: var(--teal);
  font-weight: 700; flex-shrink: 0;
}
.hizmet-footer {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.hizmet-sure { font-size: 0.78rem; color: var(--text-dim); font-weight: 500; }
.hizmet-btn {
  font-size: 0.82rem; font-weight: 600;
  color: var(--teal); transition: gap 0.2s;
}
.hizmet-btn:hover { color: var(--teal-dim); }

/* ── SÜREÇ ─────────────────────────────────────────────────────── */
.bg-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
}

.surec-grid {
  display: flex; align-items: flex-start;
  gap: 0; flex-wrap: wrap;
}

.surec-item {
  flex: 1; min-width: 160px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 28px 22px; text-align: center;
}
.surec-item:hover { background: rgba(255,255,255,0.15); }

.surec-num {
  font-family: var(--display); font-size: 2.8rem;
  font-weight: 800; color: rgba(255,255,255,0.2);
  line-height: 1; margin-bottom: 12px;
}
.surec-item h3 {
  font-family: var(--display); font-size: 1rem;
  font-weight: 700; color: #fff; margin-bottom: 8px;
}
.surec-item p { font-size: 0.84rem; color: rgba(255,255,255,0.75); line-height: 1.65; }

.surec-arrow {
  font-size: 1.5rem; color: rgba(255,255,255,0.3);
  align-self: center; padding: 0 8px; flex-shrink: 0;
}

@media (max-width: 720px) {
  .surec-grid { flex-direction: column; gap: 12px; }
  .surec-arrow { transform: rotate(90deg); align-self: center; padding: 4px 0; }
}

/* ── REFERANSLAR ───────────────────────────────────────────────── */
#referanslar { background: var(--cream); }

.ref-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 56px;
}
@media (max-width: 860px) { .ref-grid { grid-template-columns: 1fr; } }

.ref-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ref-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.ref-stars { color: var(--teal); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.ref-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.ref-kisi { display: flex; align-items: center; gap: 12px; }
.ref-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff; font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ref-isim { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.ref-unvan { font-size: 0.78rem; color: var(--text-dim); }

/* stats */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 600px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

.stat-item {
  background: var(--bg-card); padding: 28px 20px; text-align: center;
}
.stat-val {
  font-family: var(--display); font-size: 2rem;
  font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 6px;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* ── İLETİŞİM ──────────────────────────────────────────────────── */
.bg-cream { background: var(--bg); border-top: 1px solid var(--border); }

.iletisim-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}
@media (max-width: 780px) { .iletisim-grid { grid-template-columns: 1fr; gap: 40px; } }

.iletisim-bilgiler { display: flex; flex-direction: column; gap: 20px; }
.bilgi-item {
  display: flex; gap: 14px; align-items: flex-start;
}
.bilgi-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--cream); border: 1px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.bilgi-label { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.bilgi-item a, .bilgi-item span { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.bilgi-item a:hover { color: var(--teal); }

/* form */
.iletisim-sag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.04em;
}
.optional { font-weight: 400; color: var(--text-dim); }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 9px; padding: 11px 14px;
  color: var(--text); font-family: var(--sans);
  font-size: 0.9rem; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,121,121,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }

.form-msg {
  padding: 12px 16px; border-radius: 9px;
  font-size: 0.875rem; margin-bottom: 16px;
}
.form-msg.success {
  background: rgba(0,121,121,0.08);
  border: 1px solid rgba(0,121,121,0.25);
  color: var(--teal);
}
.form-msg.error {
  background: rgba(200,60,60,0.06);
  border: 1px solid rgba(200,60,60,0.2);
  color: #b03030;
}

.btn-submit {
  width: 100%; background: var(--teal); color: #fff;
  border: none; border-radius: 10px; padding: 14px 24px;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: var(--sans);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(0,121,121,0.2);
}
.btn-submit:hover:not(:disabled) {
  background: var(--teal-dim);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,121,121,0.3);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-note {
  font-size: 0.73rem; color: var(--text-dim);
  text-align: center; margin-top: 12px;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: var(--text);
  padding: 40px 0;
}
.footer-inner { text-align: center; }
.footer-logo {
  font-family: var(--display); font-weight: 800;
  font-size: 1.5rem; color: var(--cream);
  margin-bottom: 8px; letter-spacing: -0.02em;
}
.footer-logo span { color: var(--teal-light); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,240,228,0.6); margin-bottom: 16px; }
.footer-copy { font-size: 0.78rem; color: rgba(255,240,228,0.4); }

/* ── FOCUS ─────────────────────────────────────────────────────── */
a:focus-visible,
button:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

/* ── REDUCED MOTION ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .float-tag { animation: none; }
  .badge-dot { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
