:root {
  --bg: #06101d;
  --bg-soft: #0a1728;
  --panel: #0f2134;
  --panel-2: #13283d;
  --text: #f5f8fb;
  --muted: #a8b7c9;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #20d6c7;
  --accent-2: #ffb84d;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 44px);
  background: rgba(6, 16, 29, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  padding: 4px;
  box-shadow: 0 0 26px rgba(32, 214, 199, 0.18);
}

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

.main-nav a,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  color: #07111f;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 16, 29, 0.96) 0%, rgba(6, 16, 29, 0.82) 42%, rgba(6, 16, 29, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 16, 29, 1) 0%, rgba(6, 16, 29, 0) 28%);
}

.hero-content {
  position: relative;
  padding-block: 96px 132px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
}

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

h1 {
  max-width: 790px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
}

.hero p,
.page-hero p,
.section-head p,
.split p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions,
.cta-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 18px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #06101d;
  background: var(--accent);
  box-shadow: 0 16px 36px rgba(32, 214, 199, 0.2);
}

.btn-secondary {
  color: #07111f;
  background: var(--accent-2);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding-block: clamp(72px, 9vw, 116px);
}

.section-compact {
  padding-block: 40px;
  background: #091626;
}

.section-head {
  margin-bottom: 34px;
}

.feature-grid,
.service-grid,
.pricing-grid,
.testimonial-grid,
.blog-grid,
.gallery-grid,
.mission-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature,
.service-card,
.price-card,
.testimonial,
.blog-card,
.detail-card,
.reason,
.contact-form,
.contact-info,
.stats-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.feature,
.service-card,
.testimonial,
.blog-card,
.detail-card,
.reason,
.contact-form,
.contact-info,
.stats-panel {
  padding: 24px;
}

.feature h2 {
  margin-bottom: 8px;
  font-size: 19px;
}

.feature p,
.service-card p,
.testimonial p,
.blog-card p,
.detail-card p,
.reason span,
.contact-info p {
  color: var(--muted);
}

.icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #07111f;
  background: var(--accent);
  font-weight: 900;
}

.service-grid {
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  min-height: 210px;
}

.price-section,
.visual-section,
.mission-section {
  background: var(--bg-soft);
}

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

.price-card {
  padding: 28px;
}

.badge {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 7px 10px;
  color: #06101d;
  background: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.badge-muted {
  background: var(--accent-2);
}

.price-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  color: var(--muted);
}

.price-list strong {
  color: var(--text);
}

.price-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.reason {
  display: grid;
  gap: 8px;
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.project-card {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.project-card:nth-child(2) img {
  object-position: 68% center;
}

.project-card:nth-child(3) img {
  object-position: 42% center;
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 8px;
  padding: 12px;
  background: rgba(6, 16, 29, 0.82);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.before-after::before {
  content: "ÖNCE";
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  border-radius: 8px;
  padding: 7px 9px;
  color: #06101d;
  background: var(--accent-2);
  font-size: 12px;
  font-weight: 900;
}

.testimonial-grid,
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial strong,
.testimonial span,
.blog-card span {
  display: block;
}

.testimonial span,
.blog-card span {
  color: var(--accent);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-band {
  padding-block: 54px;
  background: linear-gradient(135deg, #0f2337, #07312f);
}

.cta-content {
  justify-content: space-between;
}

.cta-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero {
  padding-block: 120px 72px;
  background:
    linear-gradient(90deg, rgba(6, 16, 29, 0.98), rgba(6, 16, 29, 0.72)),
    url("../images/milas-kamera-kurulum-hero.jpg") center / cover;
}

.page-hero h1 {
  max-width: 840px;
}

.detailed-services {
  display: grid;
  gap: 18px;
}

.detail-card ul {
  color: var(--muted);
}

.stats-panel {
  display: grid;
  gap: 14px;
}

.stats-panel div {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.stats-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stats-panel strong {
  color: var(--accent);
  font-size: 44px;
  line-height: 1;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(32, 214, 199, 0.5);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent);
  font-weight: 700;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-info > a:not(.btn) {
  font-size: 24px;
  font-weight: 900;
}

.map-section iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.site-footer {
  padding-block: 44px;
  border-top: 1px solid var(--line);
  background: #040b14;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 24px;
}

.footer-grid div {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-grid p,
.footer-grid span {
  color: var(--muted);
}

.footer-grid a:hover {
  color: var(--accent);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 16px;
  color: #06101d;
  background: #32d26b;
  box-shadow: 0 18px 42px rgba(50, 210, 107, 0.22);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    background: rgba(6, 16, 29, 0.98);
  }

  .main-nav.is-open {
    display: flex;
  }

  .feature-grid,
  .service-grid,
  .pricing-grid,
  .split,
  .gallery-grid,
  .testimonial-grid,
  .blog-grid,
  .mission-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    font-size: 11px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 84px 104px;
  }

  h1 {
    font-size: 42px;
  }

  .hero p,
  .page-hero p,
  .section-head p,
  .split p {
    font-size: 16px;
  }

  .feature-grid,
  .service-grid,
  .pricing-grid,
  .split,
  .reason-grid,
  .gallery-grid,
  .testimonial-grid,
  .blog-grid,
  .mission-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .trust-row span,
  .price-list li {
    width: 100%;
  }

  .page-hero {
    padding-block: 96px 56px;
  }

  .cta-content {
    align-items: stretch;
  }

  .whatsapp-float {
    left: 16px;
    right: 16px;
  }
}
