@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-lat.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-latx.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF;
}

:root {
  --zemin: #0e1822;
  --panel: #16263a;
  --panel-2: #1d334a;
  --lacivert-900: #0c1620;
  --lacivert-800: #13212f;
  --lacivert-700: #1b2e42;
  --aksan: #b08d57;
  --aksan-acik: #c9a06a;
  --metin: #eaf0f6;
  --metin-koyu: #1a2430;
  --gri: #8ea0b2;
  --cizgi: rgba(255, 255, 255, .10);
  --acik: #f4f6f8;
  --acik-2: #e8edf2;
  --beyaz: #ffffff;
  --golge: 0 24px 70px -34px rgba(3, 9, 17, .65);
  --radius: 6px;
  --container: 1180px;
  --header-y: 86px;
  color-scheme: dark light;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--zemin);
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--metin-koyu);
  background: var(--acik);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-acik {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

address {
  font-style: normal;
}

iframe {
  border: 0;
}

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

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--zemin);
  background: var(--aksan-acik);
  border-radius: 4px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--metin);
  background: rgba(12, 22, 32, .96);
  border-bottom: 1px solid var(--cizgi);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(12, 22, 32, .98);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, .85);
}

.utility-bar {
  border-bottom: 1px solid var(--cizgi);
  background: rgba(0, 0, 0, .18);
  color: #b9c6d4;
  font-size: .8125rem;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-inner > span {
  color: var(--gri);
}

.utility-social {
  display: flex;
  gap: 8px;
}

.utility-social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cizgi);
  border-radius: 4px;
  color: var(--metin);
  font-size: .75rem;
  font-weight: 800;
}

.header-inner {
  position: relative;
  min-height: var(--header-y);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img,
.mobile-drawer__top img,
.footer-brand img {
  height: auto;
  background: #fff;
  border-radius: 4px;
}

.desktop-nav {
  justify-self: end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-item.has-wide {
  position: static;
}

.nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  color: #d8e2ec;
  background: transparent;
  font-size: .925rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-item.is-open > .nav-link {
  color: var(--metin);
  background: rgba(255, 255, 255, .07);
  outline: none;
}

.header-cta,
.mobile-cta,
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.header-cta,
.btn-primary,
.mobile-cta {
  color: #111923;
  background: var(--aksan);
  border-color: var(--aksan);
}

.header-cta:hover,
.btn-primary:hover,
.mobile-cta:hover {
  background: var(--aksan-acik);
  border-color: var(--aksan-acik);
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--metin);
  border-color: rgba(255, 255, 255, .36);
  background: rgba(255, 255, 255, .04);
}

.btn-outline:hover {
  border-color: var(--aksan-acik);
  color: var(--aksan-acik);
}

.mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 230px;
  padding: 14px;
  background: var(--lacivert-800);
  border: 1px solid var(--cizgi);
  border-radius: var(--radius);
  box-shadow: var(--golge);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.mega-panel--wide {
  left: 0;
  right: 0;
  width: min(1120px, calc(100vw - 48px));
  margin-inline: auto;
  padding: 24px;
}

.nav-item.is-open > .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 24px;
}

.mega-eyebrow {
  margin: 0 0 10px;
  color: var(--aksan-acik);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mega-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-list a,
.compact-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 9px 10px;
  border-radius: 4px;
  color: #d9e2ec;
  font-size: .925rem;
  font-weight: 700;
}

.mega-list strong {
  color: var(--aksan-acik);
  font-size: .75rem;
}

.mega-list a:hover,
.mega-list a:focus-visible,
.compact-panel a:hover,
.compact-panel a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .07);
  outline: none;
}

.mega-feature {
  position: relative;
  min-height: 190px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--cizgi);
  isolation: isolate;
}

.mega-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.mega-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(12, 22, 32, .9), rgba(12, 22, 32, .14));
}

.mega-feature span {
  display: inline-flex;
  width: fit-content;
  margin: 18px;
  padding: 10px 14px;
  color: #111923;
  background: var(--aksan-acik);
  border-radius: 4px;
  font-weight: 800;
}

.compact-panel {
  display: grid;
  gap: 4px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--cizgi);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--metin);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, .54);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 130;
  width: min(420px, 100%);
  height: 100svh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
  color: var(--metin);
  background: var(--lacivert-900);
  border-left: 1px solid var(--cizgi);
  transform: translateX(100%);
  transition: transform .24s ease;
  overflow-y: auto;
}

.menu-acik .drawer-backdrop {
  opacity: 1;
  visibility: visible;
}

.menu-acik .mobile-drawer {
  transform: translateX(0);
}

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--cizgi);
  border-radius: 4px;
  color: var(--metin);
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer nav {
  display: grid;
  gap: 6px;
}

.mobile-drawer nav > a,
.mobile-accordion__trigger {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 12px;
  color: #edf3f8;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--cizgi);
  border-radius: 4px;
  font-weight: 800;
}

.mobile-accordion__trigger {
  cursor: pointer;
}

.mobile-accordion__trigger::after {
  content: "+";
  color: var(--aksan-acik);
  font-size: 1.2rem;
}

.mobile-accordion.is-open .mobile-accordion__trigger::after {
  content: "−";
}

.mobile-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
}

.mobile-accordion__panel a {
  display: block;
  padding: 11px 12px 11px 24px;
  color: #c8d4e0;
  border-bottom: 1px solid var(--cizgi);
  font-weight: 700;
}

.mobile-contact {
  display: grid;
  gap: 4px;
  margin-top: auto;
  color: var(--gri);
  font-size: .92rem;
}

.hero {
  position: relative;
  min-height: 70svh;
  display: grid;
  align-items: center;
  color: var(--metin);
  background-image: url("../assets/img/hero-1.jpg");
  background-size: cover;
  background-position: center;
  isolation: isolate;
  overflow: hidden;
}

/* Sinematik hero arka-plan videosu.
   Katman sırası: bg-img (fallback) < video (0) < koyu gradient overlay (1) < içerik (2). */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 22, 32, .94) 0%, rgba(12, 22, 32, .74) 48%, rgba(12, 22, 32, .42) 100%),
    linear-gradient(0deg, rgba(12, 22, 32, .55) 0%, rgba(12, 22, 32, 0) 42%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--cizgi);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px 0 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--aksan-acik);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.trust-section h2,
.process-section h2,
.contact-section h2 {
  margin: 0;
  font-size: 3.65rem;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 860px;
}

.hero h1 span {
  color: var(--aksan-acik);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #cad6e2;
  font-size: 1.12rem;
}

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

.section {
  padding: 92px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 36px;
}

.section-heading h2,
.trust-section h2,
.process-section h2,
.contact-section h2 {
  font-size: 2.55rem;
  line-height: 1.12;
  color: var(--metin-koyu);
}

.section-heading p:last-child,
.trust-head p:last-child,
.showroom-copy p,
.contact-copy address,
.about-grid p {
  color: #596a7a;
}

.stats-band {
  color: var(--metin);
  background: var(--lacivert-900);
  border-top: 1px solid var(--cizgi);
  border-bottom: 1px solid var(--cizgi);
}

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

.stat-item {
  min-height: 154px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 26px 28px;
  border-left: 1px solid var(--cizgi);
}

.stat-item:last-child {
  border-right: 1px solid var(--cizgi);
}

.stat-number {
  color: var(--aksan-acik);
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
}

.stat-text {
  color: var(--metin);
  font-size: 2.05rem;
}

.stat-item p {
  margin: 0;
  color: #b9c7d6;
  font-weight: 700;
}

.about-section {
  background: var(--acik);
}

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

.about-grid h2 {
  color: var(--metin-koyu);
  font-size: 2.55rem;
  line-height: 1.12;
}

.about-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px -36px rgba(14, 24, 34, .55);
}

.about-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.principle-grid article,
.service-card,
.trust-grid article,
.process-grid article,
.project-card,
.blog-card,
.contact-form {
  border-radius: var(--radius);
}

.principle-grid article {
  padding: 24px;
  background: var(--beyaz);
  border: 1px solid #dce4eb;
}

.principle-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--aksan);
  font-weight: 800;
}

.principle-grid p {
  margin: 0;
  color: #536273;
}

.services-section {
  color: var(--metin);
  background: var(--lacivert-800);
}

.services-section .section-heading h2,
.services-section .section-heading p {
  color: var(--metin);
}

.services-section .section-heading p:last-child {
  color: #b7c5d2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 245px;
  display: grid;
  align-content: start;
  padding: 26px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--cizgi);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 160, 106, .45);
  background: rgba(255, 255, 255, .07);
}

.service-card span {
  margin-bottom: 34px;
  color: var(--aksan-acik);
  font-size: .82rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: #b9c6d3;
}

.service-card--featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(176, 141, 87, .24), rgba(255, 255, 255, .04)),
    rgba(255, 255, 255, .055);
}

.material-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--cizgi);
}

.material-strip span {
  padding: 9px 13px;
  border: 1px solid var(--cizgi);
  border-radius: 4px;
  color: #d9e3ed;
  background: rgba(255, 255, 255, .04);
  font-weight: 800;
}

.trust-section {
  padding: 86px 0;
  color: var(--metin-koyu);
  background: #fff;
}

.trust-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid #dce4eb;
  background: #f8fafc;
}

.trust-grid article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--aksan);
  border: 1px solid #d9c8ad;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 800;
}

.trust-grid h3,
.project-card h3,
.blog-card h3 {
  margin: 0 0 8px;
  line-height: 1.25;
  color: var(--metin-koyu);
}

.trust-grid p {
  margin: 0;
  color: #5f6f7e;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.proof-strip figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  isolation: isolate;
}

.proof-strip img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform .35s ease;
}

.proof-strip figure:hover img {
  transform: scale(1.04);
}

.proof-strip figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 38px 16px 14px;
  color: #fff;
  background: linear-gradient(to top, rgba(12, 22, 32, .92), rgba(12, 22, 32, 0));
  font-size: .86rem;
  font-weight: 800;
}

.brand-quote {
  margin-top: 34px;
  padding: 28px 0 0;
  color: var(--lacivert-800);
  border-top: 1px solid #dce4eb;
  font-size: 1.45rem;
  line-height: 1.35;
  font-weight: 800;
}

.process-section {
  position: relative;
  padding: 92px 0;
  color: var(--metin);
  background-image:
    linear-gradient(90deg, rgba(12, 22, 32, .96), rgba(12, 22, 32, .82)),
    url("../assets/img/arkaplan-surec.jpg");
  background-size: cover;
  background-position: center;
}

.section-heading--dark h2,
.section-heading--dark p {
  color: var(--metin);
}

.section-heading--dark p:last-child {
  color: #bfccd8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-grid article {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--cizgi);
  background: rgba(255, 255, 255, .055);
}

.process-grid span {
  color: var(--aksan-acik);
  font-weight: 800;
}

.process-grid h3 {
  margin: 54px 0 12px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.process-grid p {
  margin: 0;
  color: #bcc9d6;
}

.showroom-section {
  color: var(--metin);
  background:
    linear-gradient(180deg, var(--lacivert-900), var(--lacivert-800));
}

.showroom-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.showroom-copy h2 {
  color: var(--metin);
  font-size: 2.55rem;
  line-height: 1.12;
}

.showroom-copy p {
  color: #bdc9d5;
}

.showroom-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.showroom-copy li {
  position: relative;
  padding-left: 24px;
  color: #d7e1eb;
  font-weight: 700;
}

.showroom-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .75em;
  width: 10px;
  height: 2px;
  background: var(--aksan-acik);
}

.showroom-socket {
  padding: 12px;
  border: 1px solid var(--cizgi);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

#vitrin .urun-3d-soket {
  --soket-bg: #0e1822;
  --soket-bg-2: #16263a;
  --soket-fg: #eaf0f6;
  --soket-muted: #8ea0b2;
  --soket-accent: #b08d57;
  --soket-ar-buton: #b08d57;
  --soket-radius: 6px;
  --soket-shadow: 0 28px 80px -38px rgba(0, 0, 0, .9);
  border: 1px solid rgba(255, 255, 255, .11);
}

#vitrin .urun-3d-soket::before,
#vitrin .urun-3d-soket[data-mode="turntable"]::before,
#vitrin .urun-3d-soket[data-mode="webgl-glb"]::before,
#vitrin .urun-3d-soket[data-mode="webgl-glb-cinematic"]::before {
  background: rgba(12, 22, 32, .76);
  color: #eaf0f6;
  border: 1px solid rgba(255, 255, 255, .12);
}

.soket-etiket {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--metin);
  background: rgba(12, 22, 32, .82);
  border: 1px solid rgba(201, 160, 106, .46);
  border-radius: 4px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nokta {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--aksan-acik);
  box-shadow: 0 0 0 5px rgba(201, 160, 106, .16);
}

.portfolio-section,
.contact-section {
  background: var(--acik);
}

.portfolio-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-card,
.blog-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dce4eb;
  box-shadow: 0 18px 50px -38px rgba(14, 24, 34, .55);
}

.project-card img,
.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-card div,
.blog-card div {
  padding: 20px;
}

.project-card span,
.blog-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--aksan);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card p,
.blog-card p {
  margin: 0;
  color: #5e6e7e;
}

.blog-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-copy address {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-copy address a {
  color: var(--lacivert-900);
  font-weight: 800;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-social a {
  padding: 9px 12px;
  color: var(--lacivert-900);
  border: 1px solid #d4dde5;
  border-radius: 4px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--metin);
  background: var(--lacivert-800);
  border: 1px solid rgba(255, 255, 255, .12);
}

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

.contact-form label span {
  font-size: .86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 4px;
  color: var(--metin);
  background: rgba(255, 255, 255, .06);
  outline: none;
}

.contact-form input {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 142px;
  padding: 12px 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--aksan-acik);
  box-shadow: 0 0 0 3px rgba(201, 160, 106, .16);
}

.form-note,
.form-status {
  margin: 0;
  color: #b8c6d4;
  font-size: .88rem;
}

.form-status {
  min-height: 1.4em;
  color: var(--aksan-acik);
}

.map-wrap {
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--cizgi);
  background: var(--lacivert-900);
}

.location-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 32px;
  color: #fff;
  background: linear-gradient(135deg, rgba(12, 22, 32, 0.95) 0%, rgba(20, 36, 52, 0.95) 100%);
}

.location-tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--krem-100);
}

.location-info h3 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  color: #fff;
}

.location-info p {
  margin: 0;
  color: #b8c6d4;
  font-size: .95rem;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

@media (max-width: 768px) {
  .location-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
}

.site-footer {
  padding: 56px 0 0;
  color: #c3cfdb;
  background: var(--lacivert-900);
  border-top: 1px solid var(--cizgi);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 28px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--metin);
  font-size: .9rem;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-top: 9px;
  color: #c3cfdb;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--aksan-acik);
}

.footer-brand p {
  max-width: 280px;
  margin: 18px 0 0;
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  border-top: 1px solid var(--cizgi);
  color: #9eacba;
  font-size: .88rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .58s ease, transform .58s ease;
}

[data-reveal].gorunur {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger] > * {
  transition-delay: var(--stagger-delay, 0ms);
}

:focus-visible {
  outline: 2px solid var(--aksan-acik);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .services-grid,
  .portfolio-grid,
  .blog-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .utility-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 6px 0;
  }

  .utility-social {
    display: none;
  }

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

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 68px 0 56px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .mobile-cta {
    width: 100%;
  }

  .section,
  .trust-section,
  .process-section {
    padding: 64px 0;
  }

  .section-heading h2,
  .trust-section h2,
  .process-section h2,
  .contact-section h2,
  .about-grid h2,
  .showroom-copy h2 {
    font-size: 2rem;
  }

  .stats-grid,
  .about-grid,
  .principle-grid,
  .services-grid,
  .trust-grid,
  .proof-strip,
  .process-grid,
  .portfolio-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .stat-item:last-child {
    min-height: 126px;
    border-right: 1px solid var(--cizgi);
  }

  .stat-number {
    font-size: 2.45rem;
  }

  .stat-text {
    font-size: 1.75rem;
  }

  .service-card--featured {
    grid-column: auto;
  }

  .service-card,
  .trust-grid article,
  .process-grid article {
    min-height: auto;
  }

  .process-grid h3 {
    margin-top: 36px;
  }

  .showroom-socket {
    padding: 8px;
  }

  .contact-form {
    padding: 22px;
  }

  .map-wrap iframe {
    height: 310px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  /* Hareket hassasiyeti: hero videosunu durdur, poster/arka-plan görseli kalsın. */
  .hero-video {
    display: none;
  }
}
