/* Beyaz eşya teknik servis — temiz, güven veren arayüz */
:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --brand: #0d4f8c;
  --brand-dark: #083358;
  --accent: #e85d04;
  --accent-soft: #fff4ed;
  --ring: rgba(13, 79, 140, 0.25);
  --radius: 14px;
  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --font: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Üst bar */
.topbar {
  background: var(--brand-dark);
  color: #e2e8f0;
  font-size: 0.9rem;
  padding: 0.55rem 0;
}

.topbar-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.topbar-hours {
  margin: 0;
  flex: 1 1 12rem;
  min-width: 0;
}

.topbar-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.85rem;
  flex-shrink: 0;
}

.topbar-cta-label {
  font-weight: 600;
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

.topbar-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.topbar-call-btn:hover {
  filter: brightness(1.08);
}

.topbar-call-btn:active {
  filter: brightness(0.95);
}

@media (max-width: 720px) {
  .topbar {
    padding: 0.55rem 0.75rem;
    font-size: 0.84rem;
  }

  .topbar-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .topbar-hours {
    flex: 0 0 auto;
    text-align: center;
    line-height: 1.45;
    padding-inline: 0.25rem;
  }

  .topbar-cta {
    justify-content: center;
    align-items: center;
    gap: 0.5rem 0.85rem;
    flex-wrap: wrap;
  }

  .topbar-cta-label {
    font-size: 0.82rem;
    text-align: center;
  }

  .topbar-call-btn {
    padding: 0.4rem 1rem;
    font-size: 0.84rem;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.logo:hover {
  text-decoration: none;
}

.logo-photo {
  height: 52px;
  width: auto;
  max-width: min(112px, 28vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}

@media (max-width: 400px) {
  .logo-photo {
    height: 44px;
    max-width: min(88px, 26vw);
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.15;
  min-width: 0;
}

.logo-name {
  font-size: 1.02rem;
}

.logo-tagline {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-desktop a:hover {
  color: var(--brand);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 93, 4, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn-outline:hover {
  background: rgba(13, 79, 140, 0.06);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
  }

  .nav-desktop {
    position: fixed;
    inset: 0 0 auto 0;
    top: auto;
    background: var(--surface);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-desktop.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-desktop a {
    padding: 0.6rem 0;
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
  }

  .nav-desktop .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* Hero */
.hero {
  padding: 3.5rem 0 4rem;
  background: radial-gradient(1200px 500px at 80% -10%, rgba(13, 79, 140, 0.12), transparent),
    radial-gradient(800px 400px at 10% 20%, rgba(232, 93, 4, 0.08), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-soft);
  color: #9a3412;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 700;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 34ch;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--brand);
  font-weight: 700;
}

.hero-stat span {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-card {
  background: var(--surface);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid #e8eef5;
}

.hero-card h2 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mini-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.mini-list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}

/* Sections */
section {
  padding: 3.75rem 0;
}

.section-title {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

/* Services */
.services {
  background: var(--surface);
  border-block: 1px solid #e8eef5;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid #e8eef5;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.card:hover {
  border-color: rgba(13, 79, 140, 0.25);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.card--with-photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

@media (min-width: 680px) {
  .card--with-photo {
    grid-column: span 2;
  }
}

.card--with-photo .card-photo {
  aspect-ratio: 2 / 1;
  max-height: 11.25rem;
  width: 100%;
  background: #e2e8f0;
}

.card--with-photo .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 35%;
  display: block;
}

.card--with-photo .card-inner {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card--with-photo .card-icon {
  margin-bottom: 0.85rem;
}

.card--photo-bakim .card-photo img {
  object-position: 50% 28%;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 800px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-item {
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid #e8eef5;
}

.why-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Process */
.process {
  background: linear-gradient(180deg, #0a3a66 0%, var(--brand-dark) 100%);
  color: #e2e8f0;
}

.process .section-title h2 {
  color: #fff;
}

.process .section-title p {
  color: #94a3b8;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.step-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.step h3 {
  margin: 0 0 0.4rem;
  color: #fff;
  font-size: 1rem;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Arama ifadeleri (SEO — görünür metin) */
.search-block {
  padding: 3rem 0;
  background: var(--surface);
  border-block: 1px solid #e8eef5;
}

.search-block .section-title {
  margin-bottom: 1.75rem;
}

.search-phrases {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  justify-content: center;
}

.search-phrases li {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--bg);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e8eef5;
  line-height: 1.3;
}

/* CTA / Contact */
.cta {
  padding-bottom: 4rem;
}

.cta-box {
  background: var(--surface);
  border-radius: calc(var(--radius) + 6px);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid #e8eef5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 720px) {
  .cta-box {
    grid-template-columns: 1fr;
  }
}

.cta-box h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.cta-box > div > p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.contact-list .contact-address {
  align-items: flex-start;
}

.contact-list .contact-address strong {
  padding-top: 0.15rem;
}

.contact-list .contact-address a {
  max-width: 100%;
  flex: 1;
  min-width: 12rem;
}

.contact-list strong {
  min-width: 4.5rem;
  color: var(--ink);
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #94a3b8;
  padding: 2rem 0;
  font-size: 0.9rem;
}

.site-footer .wrap.site-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-footer-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer-addresses {
  font-style: normal;
  margin: 0;
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.55;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  padding-top: 1.1rem;
}

.site-footer-addresses p {
  margin: 0;
}

.site-footer-addresses strong {
  color: #cbd5e1;
  font-weight: 600;
}

.site-footer a {
  color: #cbd5e1;
}
