* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --dark: #2c2420;
  --accent: #8b4513;
  --accent-light: #a0522d;
  --gold: #c9a227;
  --text: #2c2420;
  --text-muted: #5c534d;
  --border: #e8e4df;
  --shadow: 0 4px 20px rgba(44, 36, 32, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--dark);
  color: #fff;
  padding: 0.75rem 1.5rem;
  box-shadow: var(--shadow);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.logo-year {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 400;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  margin-left: 0.5rem;
}

.nav-whatsapp:hover {
  background: #20bd5a !important;
  color: #fff !important;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s, color 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff !important;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--accent) !important;
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff !important;
}

.btn-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
  border: none !important;
}

.btn-whatsapp:hover {
  background: #20bd5a !important;
  color: #fff !important;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  background: linear-gradient(180deg, #f5f0e8 0%, var(--bg) 100%);
}

.hero-badge {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.hero-badge-2 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.hero-title-main {
  display: inline-block;
}

.hero-title-side {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  color: var(--accent);
  white-space: nowrap;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-desc {
  max-width: 560px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-features span::after {
  content: ' • ';
  margin-left: 0.5rem;
  color: var(--border);
}

.hero-features span:last-child::after {
  display: none;
}

/* Stats */
.stats {
  padding: 4rem 1.5rem;
  background: var(--dark);
  color: #fff;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.9;
}

.testimonial {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.testimonial cite {
  display: block;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-style: normal;
  opacity: 0.8;
}

.stats .btn {
  background: var(--gold);
  color: var(--dark) !important;
}

.stats .btn:hover {
  background: #d4ad2a;
  color: var(--dark) !important;
}

/* Sections common */
section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* Process */
.process {
  background: var(--bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.step {
  background: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s;
}

.step:hover {
  box-shadow: var(--shadow);
}

.step-num {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.step-time {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}

/* Hizmet Türleri (kutucuklar) */
.service-types {
  background: var(--surface);
}

.service-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-type-box {
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-type-box:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .service-types-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact {
  background: var(--bg);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.contact-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.contact-block p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.contact-form-wrap {
  max-width: 500px;
  margin: 0 auto;
  background: var(--surface);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.contact-form-wrap h3 {
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
}

.degerleme-form input,
.degerleme-form select,
.degerleme-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.degerleme-form input:focus,
.degerleme-form select:focus,
.degerleme-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.checkbox-label input {
  width: auto;
  margin: 0.25rem 0 0 0;
}

.degerleme-form .btn {
  width: 100%;
  text-align: center;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.contact-map {
  margin-top: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  width: 100%;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 500px;
  min-height: 400px;
}

@media (max-width: 640px) {
  .contact-map iframe {
    height: 320px;
    min-height: 280px;
  }
}

/* Footer */
footer {
  background: #1e1916;
  color: rgba(255,255,255,0.85);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.footer-tagline {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.footer-buttons .btn-wa {
  background: #25d366 !important;
  color: #fff !important;
}

/* Responsive */
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 1rem;
    text-align: center;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-whatsapp {
    margin-left: 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links ul,
  .footer-contact ul {
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}
