:root {
  --green-950: #08271a;
  --green-900: #0b3825;
  --green-800: #0d5234;
  --green-700: #0b7a4d;
  --green-600: #109760;
  --green-500: #16a36a;
  --green-100: #e9f8f1;
  --green-50: #f4fbf7;
  --ink: #15231c;
  --muted: #5d6c64;
  --line: #dbe8e0;
  --white: #ffffff;
  --surface: #f7faf8;
  --warning: #ef9d22;
  --shadow: 0 18px 50px rgba(12, 70, 43, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  color: #dff6e9;
  background: var(--green-950);
  font-size: 14px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 232, 224, .82);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 220px;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: #2e4439;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--green-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 12px 28px rgba(11, 122, 77, .22);
}

.btn-primary:hover {
  background: var(--green-800);
}

.btn-light {
  color: var(--green-900);
  background: var(--white);
}

.btn-outline {
  color: var(--green-800);
  background: transparent;
  border-color: #afd7c1;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(45, 209, 132, .24), transparent 28%),
    linear-gradient(130deg, var(--green-950), var(--green-800));
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 500px;
  height: 500px;
  border: 70px solid rgba(255, 255, 255, .045);
  border-radius: 50%;
}

.hero-grid {
  min-height: 660px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 68px;
  padding-block: 88px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #74e6ad;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.hero-description {
  max-width: 720px;
  margin: 25px 0 0;
  color: #d9f2e5;
  font-size: clamp(18px, 2.1vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: #dff7e9;
  font-weight: 680;
}

.hero-trust li::before {
  content: "✓";
  margin-right: 8px;
  color: #72e7aa;
  font-weight: 900;
}

.hero-panel {
  position: relative;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .23);
}

.hero-panel h2 {
  margin: 0;
  font-size: 26px;
}

.hero-panel > p {
  margin: 8px 0 20px;
  color: var(--muted);
}

.material-list {
  display: grid;
  gap: 10px;
}

.material-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.material-name {
  font-weight: 820;
}

.material-tag {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 800;
}

.panel-note {
  margin-top: 18px;
  padding: 14px;
  color: #5c4a21;
  background: #fff7df;
  border: 1px solid #f1dda5;
  border-radius: 13px;
  font-size: 14px;
}

.stats {
  position: relative;
  z-index: 5;
  margin-top: -45px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.stat {
  padding: 24px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--green-800);
  font-size: 25px;
}

.stat span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding-block: 96px;
}

.section-soft {
  background: var(--surface);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(19, 80, 50, .055);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 16px;
  font-size: 25px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card a {
  display: inline-block;
  margin-top: 17px;
  color: var(--green-700);
  font-weight: 800;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.visual-box {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(11, 122, 77, .87), rgba(8, 39, 26, .95)),
    var(--green-800);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.recycle-mark {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 24px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  font-size: 112px;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.feature-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border-radius: 12px;
  font-weight: 900;
}

.feature h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.area-box {
  padding: 38px;
  color: var(--white);
  background: linear-gradient(120deg, var(--green-900), var(--green-700));
  border-radius: var(--radius-lg);
}

.area-box h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 47px);
}

.area-box p {
  max-width: 760px;
  color: #e0f5e9;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.area-tag {
  padding: 9px 13px;
  color: var(--green-950);
  background: #e3f9ed;
  border-radius: 999px;
  font-weight: 780;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 820;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
}

.contact-card,
.form-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card {
  color: var(--white);
  background: var(--green-900);
  border-color: transparent;
}

.contact-card h2,
.form-card h2 {
  margin-top: 0;
}

.contact-card p {
  color: #d9eee3;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-detail {
  padding: 14px;
  background: rgba(255, 255, 255, .08);
  border-radius: 13px;
}

.contact-detail span {
  display: block;
  color: #9ad9b8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  color: var(--white);
  text-decoration: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 780;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdfc;
  border: 1px solid #cbdcd2;
  border-radius: 11px;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(16, 151, 96, .11);
}

.form-status {
  min-height: 25px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding-block: 54px 30px;
  color: #d7ede1;
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 40px;
}

.footer-brand img {
  width: 220px;
  filter: brightness(0) invert(1);
}

.footer-grid h3 {
  margin-top: 0;
  color: var(--white);
}

.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #d7ede1;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #9eb8aa;
  font-size: 14px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
  text-decoration: none;
  font-size: 22px;
}

.floating-actions .whatsapp {
  background: #20b95a;
}

@media (max-width: 980px) {
  .nav {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: grid;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .topbar-inner {
    min-height: 52px;
    justify-content: center;
    text-align: center;
  }

  .topbar-inner p:last-child {
    display: none;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 185px;
  }

  .nav {
    top: 72px;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 65px 80px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    display: grid;
  }

  .stats {
    margin-top: -25px;
  }

  .stats-grid,
  .cards,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat + .stat {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 72px;
  }

  .visual-box {
    min-height: 310px;
  }

  .field {
    grid-column: 1 / -1;
  }

  .area-box,
  .contact-card,
  .form-card {
    padding: 23px;
  }
}


/* === KILICLAR V2 SUBPAGE STYLES === */
.subpage-hero {
  padding: 78px 0 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(74, 220, 145, .2), transparent 28%),
    linear-gradient(130deg, var(--green-950), var(--green-800));
}

.subpage-hero h1 {
  max-width: 900px;
  margin: 8px 0 16px;
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.subpage-hero > .container > p:last-child {
  max-width: 820px;
  margin: 0;
  color: #d9f2e5;
  font-size: 19px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: #bfe9d2;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.subpage-content {
  background: var(--surface);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 34px;
}

.prose {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quick-answer {
  margin-bottom: 34px;
  padding: 22px;
  background: var(--green-50);
  border: 1px solid #c9e9d8;
  border-left: 5px solid var(--green-600);
  border-radius: 15px;
}

.quick-answer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-800);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quick-answer p {
  margin: 0;
  font-size: 18px;
}

.prose-section + .prose-section {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.prose-section h2 {
  margin: 0 0 13px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
}

.prose-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.prose-section a {
  color: var(--green-700);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 900;
}

.sticky-contact {
  position: sticky;
  top: 110px;
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.sticky-contact h2 {
  margin: 0 0 10px;
  font-size: 27px;
}

.sticky-contact > p:not(.eyebrow) {
  color: var(--muted);
}

.full-button {
  width: 100%;
  margin-top: 10px;
}

.aside-address {
  display: grid;
  gap: 5px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.aside-address span {
  color: var(--muted);
  font-size: 14px;
}

.cta-strip {
  padding: 48px 0;
  color: var(--white);
  background: var(--green-800);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-strip h2 {
  margin: 0;
  font-size: clamp(27px, 4vw, 40px);
}

.cta-strip p {
  margin: 6px 0 0;
  color: #d9f2e5;
}

.service-directory {
  grid-template-columns: 1fr 1fr;
}

.service-directory .card h2 {
  margin: 0 0 10px;
  font-size: 21px;
}

.privacy-consent {
  padding: 12px 14px;
  background: var(--green-50);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.privacy-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
}

.privacy-consent input {
  width: auto;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .sticky-contact {
    position: static;
  }
}

@media (max-width: 680px) {
  .subpage-hero {
    padding: 55px 0;
  }

  .prose {
    padding: 22px;
  }

  .cta-strip-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .service-directory {
    grid-template-columns: 1fr;
  }
}
/* === END KILICLAR V2 SUBPAGE STYLES === */

/* === KILICLAR LOGO FIX V4 === */

.brand {
  width: 255px;
  max-width: 52vw;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-brand img {
  width: 280px;
  max-width: 100%;
  height: auto;
  display: block;
  filter: none !important;
  opacity: 1 !important;
  background: transparent !important;
  border-radius: 0 !important;
}

@media (max-width: 680px) {
  .brand {
    width: 218px;
    max-width: 68vw;
  }

  .footer-brand img {
    width: 265px;
  }
}

/* === END KILICLAR LOGO FIX V4 === */

/* === KILICLAR PHASE7 SEO DESIGN === */

/* Genel site arka planı */
body {
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(16, 151, 96, .055),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbf9 55%,
      #ffffff 100%
    );
}

/* Hafif derinlik */
.section-soft {
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(22, 163, 106, .08),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #f5faf7,
      #fbfdfc
    );
}

/* Kartlar */
.card {
  position: relative;
  overflow: hidden;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  opacity: 0;
  background:
    linear-gradient(
      90deg,
      var(--green-600),
      #3fc987
    );
  transition: opacity .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: #b9ddc9;
  box-shadow:
    0 20px 45px
    rgba(12, 70, 43, .1);
}

.card:hover::before {
  opacity: 1;
}

/* Hero daha profesyonel derinlik */
.hero {
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(55, 222, 142, .23),
      transparent 28%
    ),
    radial-gradient(
      circle at 15% 90%,
      rgba(26, 151, 95, .18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #061f15,
      #0a422a 52%,
      #08744a
    );
}

/* Footer legal */
.footer-legal {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.11);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.privacy-link,
.google-privacy-link {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  color: #e5f4ec;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 15px;
  text-decoration: none;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease;
}

.privacy-link:hover,
.google-privacy-link:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: rgba(255,255,255,.095);
  border-color: rgba(255,255,255,.22);
}

.privacy-link span:nth-child(2),
.google-privacy-link span:nth-child(2) {
  display: grid;
}

.privacy-link strong,
.google-privacy-link strong {
  color: #ffffff;
  font-size: 14px;
}

.privacy-link small,
.google-privacy-link small {
  margin-top: 2px;
  color: #9fbcad;
  font-size: 12px;
}

.privacy-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border-radius: 11px;
}

.google-letter {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      #4285f4,
      #34a853
    );
  border-radius: 11px;
  font-size: 20px;
  font-weight: 900;
}

.external-arrow {
  margin-left: 3px;
  color: #8cd5ad;
  font-size: 18px;
}

/* Footer alt satır */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Mobil */
@media (max-width: 680px) {
  .footer-legal-links {
    display: grid;
  }

  .privacy-link,
  .google-privacy-link {
    width: 100%;
  }

  .footer-bottom {
    display: block;
  }
}

/* === END KILICLAR PHASE7 SEO DESIGN === */

/* === KILICLAR PERFORMANCE V1 === */

/* Dokunmatik cihazlarda gecikme hissini azaltır */
a,
button,
input,
select,
textarea {
  touch-action: manipulation;
}

/* Header blur, özellikle orta seviye telefonlarda gereksiz GPU yükü oluşturmasın */
.site-header {
  background: rgba(255, 255, 255, .985);
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

/* Görsel render optimizasyonu */
img,
svg {
  height: auto;
}

/* Mobilde hover animasyonlarını kapat */
@media (max-width: 680px) {

  html {
    scroll-behavior: auto;
  }

  .card,
  .btn,
  .privacy-link,
  .google-privacy-link {
    transition: none !important;
  }

  .card:hover,
  .btn:hover,
  .privacy-link:hover,
  .google-privacy-link:hover {
    transform: none !important;
  }

  .card {
    box-shadow:
      0 5px 18px rgba(12, 70, 43, .055);
  }

  .hero-panel,
  .stats-grid,
  .contact-card,
  .form-card {
    box-shadow:
      0 8px 24px rgba(12, 70, 43, .075);
  }
}

/* Kullanıcı hareket azaltma tercih ettiğinde animasyon yapma */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* === END KILICLAR PERFORMANCE V1 === */
