/* --- TEMEL AYARLAR --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f6f5;
  --bg2: #ffffff;
  --bg3: #ebebea;
  --accent: #1a5c3a;
  --accent2: #092e20;
  --accent-light: #dcfce7;
  --text: #000000;
  --muted: #4F535F;
  --border: rgba(0, 0, 0, 0.07);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- NAV --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 6vw;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.logo {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: 6px;
  font-weight: 500 !important;
}

.nav-cta:hover {
  background: var(--accent2) !important;
}

/* --- BUTONLAR --- */
.btn {
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 7px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-solid {
  background: var(--accent);
  color: white;
}

.btn-solid:hover {
  filter: brightness(0.9);
}

.btn-outline {
  background: #44E67D;
  color: #000000;
  border: 1.5px solid #44E67D;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: transparent;
  color: #25d366;
  border-color: #25d366;
}

/* --- GENEL BÖLÜM --- */
section {
  padding: 70px 6vw;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  padding: 80px 6vw 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-title em {
  color: var(--accent);
  font-style: normal;
}

.hero-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* --- HERO GÖRSEL --- */
.hero-image-wrap {
  position: relative;
  height: 500px;
}

/* Karartma */
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Resim Kutusu */
.hero-img-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.2, 0, 0.2, 1);
}

.hero-image-wrap:hover .hero-img {
  transform: scale(1.06);
}

/* Rozet */
.hero-badge-float {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: white;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0.5px solid var(--border);
  z-index: 10;
}

.badge-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}

.badge-num {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.badge-label {
  font-size: 11px;
  color: var(--muted);
}

/* --- HAKKIMIZDA --- */
.about {
  background: var(--bg2);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 52px;
}


.about-img-wrap {
  height: 400px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.about-img-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media (max-width: 768px) {
  .about-img-wrap {
    height: auto;

  }

  .about-img-wrap img {
    aspect-ratio: 600 / 387;

  }

  .about-layout {
    gap: 32px;

  }
}

.about-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pill {
  background: var(--accent-light);
  color: var(--accent2);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 100px;
}

/* --- HİZMETLER --- */
.services {
  background: var(--bg);
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.svc {
  background: var(--bg2);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px 26px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.svc:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.svc.featured {
  background: var(--accent);
  border-color: var(--accent);
}

.svc-icon {
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.svc.featured .svc-icon {
  background: rgba(255, 255, 255, 0.15);
}

.svc-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
}

.svc.featured .svc-icon svg {
  stroke: white;
}

.svc-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}

.svc.featured .svc-title {
  color: white;
}

.svc-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.svc.featured .svc-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* --- BÖLGELER --- */
.regions {
  background: var(--bg2);
}

.regions-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 52px;
}

.region-list {
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.region-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 0.5px solid var(--border);
  background: var(--bg2);
  transition: background-color 0.15s ease;
}

.region-item:last-child {
  border-bottom: none;
}

.region-item:hover {
  background: var(--bg);
}

.region-name {
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}

.region-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.region-tag {
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-light);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 500;
}

.regions-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* --- İLETİŞİM --- */
.contact {
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 52px;
  align-items: start;
}

.contact-info {
  background: var(--bg2);
  border-radius: 14px;
  border: 0.5px solid var(--border);
  overflow: hidden;
}

.contact-header {
  background: var(--accent2);
  padding: 22px 26px;
  color: white;
}

.contact-header h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
}

.contact-header p {
  font-size: 13px;
  opacity: 0.65;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 22px;
  border-bottom: 0.5px solid var(--border);
  transition: all 0.15s ease-in-out;
}

.contact-row:last-child {
  border-bottom: none;
}

.contact-row:hover {
  background: var(--bg);
}

.c-icon {
  width: 34px;
  height: 34px;
  background: var(--accent-light);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
}

.c-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.c-value {
  font-size: 15px;
  color: var(--text);
}

.c-value a {
  color: var(--accent);
  text-decoration: none;
}

/* --- LOKASYON --- */
.location-preview-wrap {
  position: relative;
  height: 100%;
  min-height: 500px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.location-preview-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.location-preview-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.location-preview-wrap:hover img {
  transform: scale(1.05);
}

.location-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  z-index: 2;
}

.location-info-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 3;
  color: white;
}

.location-info-card .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 12px;
}

.location-info-card h3 {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.location-info-card p {
  font-size: 15px;
  opacity: 0.85;
  max-width: 500px;
  line-height: 1.6;
}

/* --- FOOTER --- */
footer {
  background: var(--accent2);
  padding: 52px 6vw 28px;
  color: #ffffff;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 40px;
  margin-bottom: 28px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 260px;
}

.footer-heading {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.7;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* --- ANİMASYON --- */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- MOBİL İLETİŞİM BARI --- */
.mobile-action-bar {
  display: none;
}

/* --- MOBİL (768px ve altı) --- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 50px;
    min-height: auto;
    text-align: center;
  }

  .hero-btns,
  .hero-stats {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto 30px;
  }

  .hero-image-wrap {
    display: block;
    height: auto !important;
    margin-top: 20px;
    position: relative;
  }

  .hero-img-container {
    height: auto !important;
    aspect-ratio: 4 / 3;
  }

  .hero-img {
    height: auto !important;
    width: 100% !important;
    object-fit: cover;
  }

  .hero-badge-float {
    left: 10px;
    bottom: 10px;
    padding: 10px;
    transform: scale(0.9);
  }

  .about-layout,
  .services-layout,
  .regions-layout,
  .contact-layout,
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .location-preview-wrap {
    height: 400px;
    min-height: auto;
    margin-top: 20px;
  }

  .location-info-card {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }

  footer {
    padding-bottom: 100px;
  }

  .mobile-action-bar {
    position: fixed;
    bottom: 20px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 9999;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .mobile-action-bar.show {
    transform: translateY(0);
    opacity: 1;
  }

  .m-btn {
    flex: 1;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  }

  /* --- MOBİL İLETİŞİM BUTONLARI --- */

  .m-phone {
    background: #007bff;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2), 0 12px 24px rgba(0, 0, 0, 0.2);
  }

  .m-phone:active {
    background: #0056b3;
    transform: scale(0.96);
  }

  .m-whatsapp {
    background: rgba(37, 211, 102, 0.85);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .m-whatsapp:active {
    background: rgba(37, 211, 102, 1);
    transform: scale(0.96);
  }

  .m-btn {
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* --- MASAÜSTÜ (769px ve üstü) --- */
@media (min-width: 769px) {
  .mobile-action-bar {
    display: none !important;
  }
}

/* TABLET (769px - 1024px arası) */
@media (min-width: 769px) and (max-width: 1024px) {
  section {
    padding: 60px 5vw;
  }

  .services-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-layout,
  .regions-layout,
  .contact-layout {
    gap: 48px;
  }

  .hero {
    gap: 40px;
  }
}

/* --- DIŞ KAYNAKLAR ÖZELLEŞTİRME (SVG İÇİN) --- */
.external-resources {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.res-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.res-item {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.res-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.res-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.res-item strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.res-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.res-item a:hover {
  color: var(--accent2);
  text-decoration: underline;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .external-resources {
    margin-top: 40px;
    padding-top: 20px;
  }

  .res-grid {
    gap: 24px;
  }

  .res-item {
    font-size: 13px;
    gap: 12px;
  }

  .res-icon {
    width: 20px;
    height: 20px;
  }
}