/* =======================
   RESET & GLOBAL
======================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.5;
}

.app {
  width: 100%;
  min-height: 100vh;
  background: #f8fafc;
}

main {
  background: inherit;
}


.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e5e7eb;
}

.logo {
  font-size: 16px;
  font-weight: 600;
}

.menu-btn,
.icon {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.hero {
  position: relative;
  margin: 24px;
  border-radius: 22px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  inset: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.15));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-text h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.hero-text p {
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 16px;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  width: fit-content;
}


.section {
  padding: 0 24px 40px;
}

.section h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-header a,
.section-header button {
  font-size: 13px;
  color: #2563eb;
  background: none;
  border: none;
  cursor: pointer;
}


.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card,
.service,
.info {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  padding: 20px;
}

.card small {
  color: #64748b;
}


.service {
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.service img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.service strong {
  font-size: 14px;
}

.service p {
  font-size: 13px;
  color: #475569;
}


.section {
  padding: 16px;
}

.section h3 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.info {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.info .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info p {
  font-size: 13px;
  line-height: 1.4;
  color: #334155;
}

.info.green {
  background: #ecfdf5;
}
.info.green .icon {
  background: #22c55e;
  color: #fff;
}

.info.blue {
  background: #eff6ff;
}
.info.blue .icon {
  background: #3b82f6;
  color: #fff;
}

.info.orange {
  background: #fff7ed;
}
.info.orange .icon {
  background: #f97316;
  color: #fff;
}

.service-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #475569;
}

.menu-btn {
  margin-top: 12px;
  background: #eef2ff;
  color: #2563eb;
  border: none;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  cursor: pointer;
}
.services-header {
  background: linear-gradient(
    180deg,
    #eef2ff 0%,
    #ffffff 100%
  );
  border-bottom: 1px solid #e5e7eb;
}
.services-header .menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  color: #2563eb;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
  transition: all .2s ease;
}

.services-header .menu-btn:hover {
  background: #2563eb;
  color: #fff;
  transform: translateX(-2px);
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 500;
  color: #2563eb;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
  transition: all .2s ease;
}
.page-head {
  padding-top: 32px;
  padding-bottom: 32px;
}

.page-head .page-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-head .page-desc {
  font-size: 15px;
  color: #475569;
  max-width: 720px;
}
.back-btn span {
  font-size: 13px;
}

.back-btn:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateX(-2px);
}
.menu-btn:hover {
  background: #2563eb;
  color: #fff;
}
.info-highlight.soft {
  margin: 24px;
  padding: 26px 28px;
  border-radius: 20px;

  background: rgba(37, 99, 235, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #f8fafc;

  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}



/* Badge */
.info-highlight.soft .info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
}

.info-highlight.soft p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 720px;
}

.info-highlight.soft strong {
  font-weight: 700;
  color: #e0f2fe;
}

.fixed-cta {
  position: sticky;
  bottom: 16px;
  margin: 0 24px 24px;
  text-align: center;
  background: #2563eb;
  color: #fff;
  padding: 14px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
.service-card img {
  aspect-ratio: 16 / 9;
  height: auto;
}

.footer {
  text-align: center;
  padding: 24px 10px;
  font-size: 12px;
  color: #64748b;
}

/* =======================
   TABLET
======================= */
@media (max-width: 1024px) {
  .app {
    max-width: 900px;
  }
.hero {
    margin: 32px auto;
  }
  .hero img {
    height: 300px;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 220px;
  }
.info-highlight.soft {
    padding: 22px;
  }

  .info-highlight.soft p {
    font-size: 17px;
  }
   .service-card img {
    height: 300px;       
  }
}

#projeler{
  cursor: pointer;
}

/* =======================
   MOBILE
======================= */
@media (max-width: 640px) {
  .app {
    max-width: 420px;
  }

  .header {
    padding: 0 14px;
  }

  .hero {
    margin: 14px;
  }

  .hero img {
    height: 220px;
  }

  .hero-text {
    padding: 16px;
  }

  .hero-text h2 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 13px;
  }

  .section {
    padding: 0 14px 28px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .service img {
    height: 120px;
  }

  .fixed-cta {
    margin: 0 14px 14px;
  }
  .info-highlight.soft {
    margin: 14px;
    padding: 18px;
    border-radius: 16px;
  }

  .info-highlight.soft .info-badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .info-highlight.soft p {
    font-size: 15px;
  }
 .back-btn span {
    display: none; 
  }

  .page-head .page-title {
    font-size: 22px;
  }
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
  text-decoration: none;
}

.back-home i {
  font-size: 14px;
}

@media (hover: hover) {
  .back-home:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateX(-4px);
  }
}

.grid-2 {
cursor: pointer;}


@media (max-width: 640px) {
  .header {
    min-height: 56px;
    height: auto;
    padding: 10px 14px;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .header .logo {
    width: 100%;
    font-size: 14px;
    line-height: 1.3;
    margin-top: 6px;
  }

  .header .icon {
    display: none;
  }

  .app {
    max-width: 100%;
  }
}

.hero-slogan {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: clamp(26px, 5vw, 48px) 16px;

  /* SADE OPTIMA YEŞİLİ */
  background-color: #017238b7;

  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.hero-slogan h2 {
  margin: 0;
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.15;

  color: #ffffff;
}
/* 
.hero-slogan h2 span {
  background: linear-gradient(
    90deg,
    #000000,
    #f36d14,
    #f51a1a
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 0 12px rgba(250, 204, 21, 0.35),
    0 0 28px rgba(250, 204, 21, 0.25);
} */


.header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 80px;
  padding: 0 28px;

  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* LOGO */
.logo-link {
  display: flex;
  align-items: center;
}

.logo-link img {
 height: 70px;
  width: auto;
  object-fit: contain;
}

/* HEADER TITLE */
.header-title {
  flex: 1;
  text-align: center;

  font-size: 15px;
  font-weight: 600;
  color: #1f2937;

  margin: 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 110px;              /* ⬅ KRİTİK */
  padding: 0 32px;

  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);

  box-sizing: border-box;
}