@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");

:root {
  --ink: #13201b;
  --muted: #617068;
  --paper: #f6f4ef;
  --surface: #ffffff;
  --field: #315a3d;
  --field-dark: #173626;
  --signal: #e0b640;
  --clay: #b25b3f;
  --line: rgba(19, 32, 27, 0.12);
  --shadow: 0 24px 70px rgba(18, 31, 26, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.scrolled {
  padding-block: 12px;
  background: rgba(19, 32, 27, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0;
}

.brand > span {
  font-family: "Abril Fatface", Georgia, serif;
  font-size: clamp(41px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--signal);
  object-fit: contain;
  padding: 1px;
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--signal);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 72px) 34px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 22, 17, 0.88), rgba(12, 22, 17, 0.42) 54%, rgba(12, 22, 17, 0.18)),
    linear-gradient(0deg, rgba(12, 22, 17, 0.75), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding-bottom: 28px;
}

.hero-content .eyebrow::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin-top: 22px;
  background: var(--signal);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-feza {
  color: var(--signal);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.cta-band,
.contact-list,
.mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 850;
  cursor: pointer;
}

.button-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  object-fit: contain;
}

.button.primary {
  background: var(--signal);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.button.whatsapp {
  border-color: rgba(106, 166, 111, 0.75);
  background: rgba(8, 18, 14, 0.34);
  color: #fff;
}

.hero-service-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: max-content;
  margin-top: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--signal);
  color: #fff;
  font-size: 18px;
  font-weight: 750;
}

.hero-service-link::before {
  content: "→";
  color: var(--signal);
  font-size: 34px;
  line-height: 1;
}

.hero-service-link::after {
  content: none;
}

.button.light {
  background: #fff;
  color: var(--field-dark);
}

.button.full {
  width: 100%;
  border-radius: 10px;
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  background: rgba(10, 18, 15, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.hero-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  padding: 16px;
  background: rgba(13, 26, 20, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-strip div:last-child {
  border-right: 0;
}

.stat-icon {
  grid-row: span 2;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: rgba(75, 120, 76, 0.66);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.stat-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.hero-strip strong,
.hero-strip span:not(.stat-icon) {
  display: block;
}

.hero-strip strong {
  font-size: 20px;
  line-height: 1.15;
}

.hero-strip span:not(.stat-icon) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.section-pad {
  padding: clamp(66px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.intro > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.services {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.service-card {
  --card-bg: #f5f7f0;
  --card-accent: #315a3d;
  --card-accent-soft: rgba(49, 90, 61, 0.12);
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--card-accent-soft);
  border-radius: 8px;
  background: var(--card-bg);
  box-shadow: 0 14px 44px rgba(28, 45, 38, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 58px rgba(28, 45, 38, 0.14);
}

.service-card--drone {
  --card-bg: #eef8ef;
  --card-accent: #2f7d4f;
  --card-accent-soft: rgba(47, 125, 79, 0.14);
}

.service-card--recovery {
  --card-bg: #eef6fb;
  --card-accent: #326f9f;
  --card-accent-soft: rgba(50, 111, 159, 0.14);
}

.service-card--bobcat {
  --card-bg: #fff1ef;
  --card-accent: #b65246;
  --card-accent-soft: rgba(182, 82, 70, 0.14);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.service-number {
  width: max-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--card-accent-soft);
  color: var(--card-accent);
  font-size: 13px;
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.service-points {
  display: grid;
  gap: 9px;
  margin: 8px 0 22px;
}

.service-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
}

.service-points span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--card-accent);
}

.service-link {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--card-accent);
  color: #fff;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.districts {
  background: var(--paper);
}

.districts-copy {
  max-width: 920px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.district-chip {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--field-dark);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.district-chip--eskisehir {
  border-color: #2e9358;
  background: #2f7d4f;
  color: #eaf3eb;
}

.district-chip--afyon {
  border-color: rgba(195, 151, 39, 0.22);
  background: #e0b640;
  color: #4b3b00;
}

.faq {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.faq-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-item h3,
.faq-inline h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.3;
}

.faq-item p,
.faq-inline p {
  color: var(--muted);
  line-height: 1.7;
}

.faq-item p:last-child,
.faq-inline p:last-child {
  margin-bottom: 0;
}

.detail-page {
  background: #fff;
}

.detail-hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: end;
  padding: 140px clamp(18px, 5vw, 72px) 64px;
  overflow: hidden;
  color: #fff;
}

.detail-hero img,
.detail-hero::after {
  position: absolute;
  inset: 0;
}

.detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 22, 17, 0.86), rgba(12, 22, 17, 0.38)),
    linear-gradient(0deg, rgba(12, 22, 17, 0.78), transparent 55%);
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.detail-hero h1 {
  font-size: clamp(42px, 7vw, 92px);
}

.detail-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.55;
}

.detail-content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.36fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.detail-main {
  display: grid;
  gap: 26px;
}

.detail-block {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.detail-block h2 {
  font-size: clamp(28px, 4vw, 46px);
}

.detail-block p,
.detail-block li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.detail-block ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.detail-aside {
  height: max-content;
  padding: 24px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.detail-aside h2 {
  font-size: 28px;
}

.detail-aside p {
  color: var(--muted);
  line-height: 1.65;
}

.cta-band {
  justify-content: space-between;
  padding: clamp(44px, 6vw, 78px) clamp(18px, 5vw, 72px);
  background: var(--field-dark);
  color: #fff;
}

.cta-band div {
  max-width: 820px;
}

.cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 52px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-grid .tall {
  grid-row: span 2;
}

.contact {
  background: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-info p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-list {
  align-items: stretch;
  margin-top: 24px;
}

.contact-list a {
  flex: 1 1 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 850;
}

.contact-list span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 13px;
  color: var(--ink);
  background: #fbfbf8;
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px) 92px;
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 12px;
    border-radius: 8px;
    background: rgba(19, 32, 27, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 18px 18px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(12, 22, 17, 0.9), rgba(12, 22, 17, 0.26)),
      linear-gradient(90deg, rgba(12, 22, 17, 0.78), rgba(12, 22, 17, 0.28));
  }

  .hero-content {
    padding-bottom: 18px;
  }

  .hero-content h1 {
    margin-bottom: 24px;
    font-size: 36px;
    line-height: 1.12;
  }

  .hero-copy {
    max-width: 390px;
    font-size: 19px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    align-items: stretch;
    justify-content: start;
    width: min(58vw, 220px);
    gap: 12px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
    max-width: none;
    min-height: 52px;
    font-size: 17px;
  }

  .hero-service-link {
    margin-top: 24px;
  }

  .hero-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    margin-top: 26px;
  }

  .hero-strip div {
    grid-template-columns: 1fr;
    grid-template-rows: 42px minmax(38px, auto) auto;
    justify-items: center;
    gap: 8px;
    padding: 14px 8px;
    align-content: start;
    text-align: center;
  }

  .stat-icon {
    grid-row: auto;
    width: 42px;
    height: 42px;
  }

  .stat-icon img {
    width: 24px;
    height: 24px;
  }

  .hero-strip strong {
    font-size: 16px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-strip span {
    font-size: 13px;
  }

  .intro,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .service-card {
    grid-template-rows: 210px 1fr;
  }

  .service-content {
    padding: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .detail-content {
    grid-template-columns: 1fr;
  }

  .detail-hero {
    min-height: 58vh;
    padding: 118px 18px 48px;
  }

  .gallery-grid .tall {
    grid-row: auto;
  }

  .cta-band {
    align-items: flex-start;
  }

  .site-footer {
    display: grid;
    padding-bottom: 100px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 30;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  body.show-mobile-actions .mobile-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    border-radius: 999px;
    background: var(--signal);
    color: var(--ink);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
    font-weight: 900;
  }

  .mobile-actions a:last-child {
    background: var(--field);
    color: #fff;
  }
}

@media (max-width: 460px) {
  .section-pad {
    padding-block: 58px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .contact-card {
    padding: 18px;
  }

}
