/* Ana sayfa — yenitasarim.png + tam responsive */
.home-page {
  --orange: #f26522;
  --orange-d: #d94e0f;
  --dark: #1c1c1c;
  --dark-2: #252525;
  overflow-x: clip;
  width: 100%;
}

/* Yalnızca fotoğraflar esnesin — SVG'lere max-width verme (ikonları devleştirir) */
.home-page .hero-visual img,
.home-page .service-card-img img,
.home-page .why-image img,
.home-page .ba-wrap img {
  max-width: 100%;
  height: auto;
}

/* İkon boyutları sabit */
.home-page .stat-icon svg { width: 28px; height: 28px; max-width: 28px; flex-shrink: 0; display: block; }
.home-page .lead-benefit svg { width: 18px; height: 18px; max-width: 18px; flex-shrink: 0; display: block; }
.home-page .feature-icon svg { width: 26px; height: 26px; max-width: 26px; display: block; }
.home-page .service-card-icon svg { width: 24px; height: 24px; max-width: 24px; display: block; }
.home-page .site-logo-icon svg { width: 20px; height: 20px; max-width: 20px; fill: #fff; display: block; }
.home-page .header-phone-icon svg { width: 18px; height: 18px; max-width: 18px; display: block; }
.home-page .nav-toggle svg { width: 24px; height: 24px; max-width: 24px; display: block; }
.home-page .stat-box { display: flex; align-items: flex-start; gap: 12px; }
.home-page .lead-benefit { display: flex; align-items: center; gap: 10px; }
.home-page .lead-benefits { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.home-page .btn-primary { background: var(--orange) !important; border-color: var(--orange) !important; color: #fff !important; border-radius: 6px; }
.home-page .btn-primary:hover { background: var(--orange-d) !important; }

/* HEADER */
.home-page .site-header { background: var(--dark); border: 0; width: 100%; }
.home-page .site-header .container { width: 100%; max-width: 1200px; }
.home-page .site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  width: 100%;
  position: relative;
}
.home-page .site-logo {
  font-size: clamp(11px, 2.5vw, 14px);
  letter-spacing: .06em;
  flex-shrink: 0;
  min-width: 0;
}
.home-page .site-logo span:not(.site-logo-icon) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-page .site-logo-icon { width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; }
.home-page .site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.home-page .site-nav a {
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 600;
  padding: 8px clamp(8px, 1.2vw, 14px);
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}
.home-page .header-phone {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.home-page .header-phone-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.home-page .header-phone-icon svg { width: 18px; height: 18px; }
.home-page .header-phone-text { display: flex; flex-direction: column; align-items: flex-start; }
.home-page .header-phone-num { font-size: clamp(13px, 1.5vw, 16px); font-weight: 800; line-height: 1.2; white-space: nowrap; }
.home-page .header-phone-sub { font-size: 10px; color: var(--orange); font-weight: 600; white-space: nowrap; }
.home-page .nav-toggle {
  display: none;
  flex-shrink: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

/* HERO */
.home-page .hero {
  min-height: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
  background: #e8e4df;
}
.home-page .hero-overlay { display: none; }
.home-page .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  width: 100%;
  max-width: 100%;
  min-height: clamp(420px, 52vh, 580px);
}
.home-page .hero-panel {
  background: rgba(255,255,255,.97);
  padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.home-page .hero-visual {
  position: relative;
  min-width: 0;
  min-height: 280px;
}
.home-page .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: inherit;
}
.home-page .hero .badge {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--orange);
  font-size: 11px;
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.home-page .hero .h1 {
  color: var(--dark);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  word-wrap: break-word;
}
.home-page .hero .h1 em { font-style: normal; color: var(--orange); display: block; }
.home-page .hero .lead {
  color: #5c5c5c;
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 100%;
}
.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}
.home-page .btn-hero-primary,
.home-page .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: clamp(13px, 1.5vw, 14px);
  padding: 14px clamp(16px, 3vw, 28px);
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}
.home-page .btn-hero-primary {
  background: var(--orange);
  color: #fff;
  border: 0;
}
.home-page .btn-hero-primary:hover { background: var(--orange-d); color: #fff; }
.home-page .btn-hero-secondary {
  background: #fff;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.home-page .btn-hero-secondary:hover { background: #f5f5f5; color: var(--dark); }

/* FEATURE BAR */
.home-page .feature-bar {
  position: relative;
  z-index: 5;
  margin-top: clamp(-28px, -3vw, -36px);
  padding: 0 clamp(12px, 3vw, 20px);
  width: 100%;
}
.home-page .feature-bar .container { width: 100%; max-width: 1200px; }
.home-page .feature-bar-inner {
  border-radius: 12px;
  padding: clamp(20px, 4vw, 28px) clamp(16px, 3vw, 36px);
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  width: 100%;
}
.home-page .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}
.home-page .feature-icon {
  width: auto; height: auto;
  border: 0; border-radius: 0;
  color: var(--orange);
  flex-shrink: 0;
}
.home-page .feature-icon svg { width: 26px; height: 26px; stroke-width: 1.5; }
.home-page .feature-item h4 {
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0 0 4px;
  color: var(--dark);
}
.home-page .feature-item p { font-size: 12px; color: #888; margin: 0; line-height: 1.45; }

/* HİZMETLER */
.home-page .services-section { padding: clamp(48px, 8vw, 72px) 0; background: #fff; width: 100%; }
.home-page .services-section .section-header { margin-bottom: clamp(28px, 4vw, 40px); }
.home-page .services-section .section-eyebrow,
.home-page .services-section .lead { display: none; }
.home-page .services-section .section-title {
  font-size: clamp(20px, 3vw, 32px);
  text-align: center;
  padding: 0 4px;
  color: var(--dark);
}
.home-page .services-section .grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}
.home-page .service-card {
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid #eee;
  min-width: 0;
  overflow: hidden;
}
.home-page .service-card-img { height: clamp(140px, 22vw, 180px); overflow: hidden; }
.home-page .service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.home-page .service-card-body { padding: clamp(16px, 2.5vw, 22px); }
.home-page .service-card-icon { width: 32px; height: 32px; background: transparent; margin-bottom: 10px; color: var(--orange); }
.home-page .service-card h3 { font-size: clamp(14px, 1.8vw, 16px); font-weight: 800; color: var(--dark); }
.home-page .service-card p { font-size: 13px; color: #777; margin-bottom: 12px; }
.home-page .card-link { font-size: 13px; font-weight: 700; }

/* PROJELER */
.home-page .projects-section {
  background: var(--dark);
  padding: clamp(48px, 8vw, 72px) 0 clamp(40px, 6vw, 64px);
  width: 100%;
  overflow: hidden;
}
.home-page .projects-section .section-eyebrow { color: var(--orange); }
.home-page .projects-section .section-title { color: #fff; font-size: clamp(20px, 3vw, 30px); }
.home-page .projects-section .section-sub {
  color: rgba(255,255,255,.55);
  font-size: 14px;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 8px;
}
.home-page .ba-grid {
  gap: clamp(14px, 2.5vw, 20px);
  margin-top: clamp(24px, 4vw, 36px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-page .ba-item { min-width: 0; }
.home-page .ba-item .ba-info { display: none; }
.home-page .ba-wrap {
  border-radius: 10px;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: #333;
}
.home-page .ba-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .ba-after { position: relative; z-index: 1; display: block; width: 100%; height: auto; }
.home-page .ba-before {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 calc((var(--reveal, 0) * 100%)) 0 0);
}
.home-page .ba-label-once,
.home-page .ba-label-sonra {
  position: absolute;
  top: 10px;
  z-index: 5;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(0,0,0,.55);
  color: #fff;
}
.home-page .ba-label-once { left: 10px; }
.home-page .ba-label-sonra { right: 10px; }
.home-page .ba-cap { color: #fff; text-align: center; font-size: 14px; font-weight: 700; margin-top: 12px; }
.home-page .btn-projects {
  background: transparent;
  color: #fff;
  border: 2px solid var(--orange);
  border-radius: 6px;
  padding: 14px clamp(20px, 4vw, 32px);
  margin-top: clamp(28px, 4vw, 40px);
}

/* SÜREÇ */
.home-page .process-section { padding: clamp(48px, 8vw, 72px) 0; background: #fff; width: 100%; }
.home-page .process-head { max-width: 520px; margin-bottom: clamp(32px, 5vw, 48px); }
.home-page .process-head .section-title {
  font-size: clamp(20px, 3vw, 30px);
  text-align: left;
  color: var(--dark);
}
.home-page .process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  position: relative;
  padding-top: 16px;
  width: 100%;
}
.home-page .process-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
}
.home-page .process-step { position: relative; z-index: 1; text-align: center; padding: 0 6px; min-width: 0; }
.home-page .process-num {
  width: clamp(48px, 8vw, 56px);
  height: clamp(48px, 8vw, 56px);
  background: #fff;
  border: 2px solid var(--orange);
  font-size: clamp(14px, 2vw, 16px);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  color: var(--orange);
}
.home-page .process-step h4 { font-size: clamp(12px, 1.5vw, 14px); font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.home-page .process-step p { font-size: 12px; color: #888; line-height: 1.55; margin: 0; }

/* NEDEN BİZ */
.home-page .why-section { padding: clamp(48px, 8vw, 72px) 0; background: #fafafa; width: 100%; }
.home-page .why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.home-page .why-image { border-radius: 10px; overflow: hidden; min-width: 0; }
.home-page .why-image img {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: 520px;
  object-fit: cover;
}
.home-page .why-section .section-title { font-size: clamp(18px, 2.8vw, 28px); text-align: left; color: var(--dark); }
.home-page .why-section .lead { text-align: left; font-size: 14px; color: var(--gray); }
.home-page .stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  margin-top: clamp(20px, 3vw, 32px);
}
.home-page .stat-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: clamp(14px, 2vw, 18px);
  min-width: 0;
}
.home-page .stat-box strong { font-size: clamp(12px, 1.5vw, 14px); display: block; color: var(--dark); }
.home-page .stat-box span { font-size: 11px; color: #888; }

/* KEŞİF FORMU */
.home-page .lead-section {
  padding: clamp(48px, 8vw, 72px) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--dark);
}
.home-page .lead-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--dark) 0%, var(--dark) 50%, rgba(28,28,28,.7) 100%),
    url('/assets/images/hero-izmir-ev-tadilati.webp') right center / cover no-repeat;
  z-index: 0;
}
.home-page .lead-section .container { position: relative; z-index: 1; width: 100%; }
.home-page .lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}
.home-page .lead-section .section-title { font-size: clamp(18px, 2.8vw, 28px); }
.home-page .lead-form {
  background: rgba(37,37,37,.95);
  border-radius: 10px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,.08);
  min-width: 0;
}
.home-page .form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.home-page .upload-box {
  border: 1.5px dashed rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 16px;
  display: block;
}
.home-page .upload-box input { display: none; }
.home-page .lead-form .btn-primary { border-radius: 6px; width: 100%; padding: 16px; }

/* FOOTER */
.home-page .footer-container {
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr 1fr;
  gap: clamp(16px, 3vw, 28px);
}
.home-page .footer-col { min-width: 0; word-wrap: break-word; }

/* ===== BREAKPOINTS ===== */

/* Tablet yatay / küçük laptop */
@media (max-width: 1024px) {
  .home-page .site-nav { display: none; }
  .home-page .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-2);
    padding: 12px 20px 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    z-index: 300;
    align-items: stretch;
  }
  .home-page .site-nav.open a { padding: 12px 16px; white-space: normal; }
  .home-page .nav-toggle { display: flex; }
  .home-page .header-phone { display: none; }
  .home-page .services-section .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .ba-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .process-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .home-page .process-timeline::before { display: none; }
  .home-page .footer-container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Tablet dikey */
@media (max-width: 768px) {
  .home-page .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .home-page .hero-panel { order: 1; }
  .home-page .hero-visual {
    order: 0;
    min-height: 240px;
    max-height: 42vh;
  }
  .home-page .hero-visual img { min-height: 240px; max-height: 42vh; }
  .home-page .hero .h1 em { display: inline; }
  .home-page .hero-actions { flex-direction: column; }
  .home-page .hero-actions .btn-hero-primary,
  .home-page .hero-actions .btn-hero-secondary { width: 100%; }
  .home-page .feature-bar-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .feature-bar { margin-top: -20px; }
  .home-page .ba-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .home-page .why-grid { grid-template-columns: 1fr; }
  .home-page .why-image img { max-height: 320px; }
  .home-page .lead-grid { grid-template-columns: 1fr; }
  .home-page .lead-section::before {
    background: linear-gradient(180deg, var(--dark) 0%, rgba(28,28,28,.92) 100%),
      url('/assets/images/hero-izmir-ev-tadilati.webp') center / cover no-repeat;
  }
}

/* Mobil */
@media (max-width: 520px) {
  .home-page .site-logo span:not(.site-logo-icon) { max-width: 140px; }
  .home-page .services-section .grid-3 { grid-template-columns: 1fr; }
  .home-page .feature-bar-inner { grid-template-columns: 1fr; }
  .home-page .process-timeline { grid-template-columns: 1fr; }
  .home-page .stats-row { grid-template-columns: 1fr; }
  .home-page .form-grid-2 { grid-template-columns: 1fr; }
  .home-page .footer-container { grid-template-columns: 1fr; }
  .home-page .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .home-page .container { padding-left: 16px; padding-right: 16px; }
}

/* Çok geniş ekran — içerik taşmasın */
@media (min-width: 1400px) {
  .home-page .hero-inner { max-width: 1400px; margin: 0 auto; }
}
