:root {
  --navy: #071f4f;
  --navy-2: #102f73;
  --blue: #1457c8;
  --gold: #e2b22f;
  --ice: #edf6ff;
  --paper: #f7f9fc;
  --white: #ffffff;
  --ink: #10203a;
  --muted: #5b6b84;
  --line: rgba(7, 31, 79, 0.14);
  --shadow: 0 24px 80px rgba(7, 31, 79, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  color: white;
  background:
    radial-gradient(circle at 50% 42%, rgba(20, 87, 200, .36), transparent 34%),
    linear-gradient(135deg, #06173d 0%, #071f4f 52%, #102f73 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .48s ease, visibility .48s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-brand {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: min(330px, calc(100vw - 48px));
  padding: 34px 34px 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 30px 90px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  transform: translateY(0) scale(1);
  animation: loaderSettle .72s ease both;
}
.page-loader.is-hidden .loader-brand {
  animation: loaderExit .42s ease both;
}
.loader-brand strong {
  font-size: clamp(34px, 6vw, 52px);
  line-height: .9;
  letter-spacing: 0;
}
.loader-brand small {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.loader-wipe {
  position: relative;
  width: 100%;
  height: 4px;
  margin-top: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
}
.loader-wipe::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--gold), #fff4b0, var(--gold), transparent);
  transform: translateX(-110%);
  animation: loaderWipe 1.08s ease-in-out infinite;
}

.cursor-light {
  position: fixed;
  z-index: 0;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.18;
  background: radial-gradient(circle, var(--gold), transparent 62%);
  transform: translate(-50%, -50%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(16px, 5vw, 68px);
  color: white;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.site-header.scrolled {
  color: var(--navy);
  padding-block: 12px;
  background: rgba(247, 249, 252, 0.9);
  box-shadow: 0 14px 42px rgba(7, 31, 79, 0.1);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; gap: 13px; min-width: 0; }
.logo-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  width: 92px;
  height: 64px; /* dikdörtgen oran */
  
  border-radius: 6px; /* yuvarlaklığı kaldırır */
  background: transparent;
  box-shadow: none;
  color: var(--navy);
}

.logo-letter {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy);
  border: 2px solid rgba(7,31,79,.14);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.brand strong {
  display: block;
  font-size: clamp(25px, 3vw, 41px);
  line-height: 0.9;
  letter-spacing: 0;
}
.brand small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav { display: flex; gap: clamp(14px, 2vw, 28px); font-weight: 900; }
.nav a { position: relative; }
.nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.22s ease;
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  grid-template-rows: minmax(0, 1fr) auto auto;
  column-gap: clamp(26px, 5vw, 72px);
  row-gap: 14px;
  align-items: center;
  min-height: 100svh;
  padding: 106px clamp(18px, 6vw, 82px) 0;
  isolation: isolate;
  overflow: hidden;
  color: white;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(6, 18, 48, 1) 0%, rgba(8, 35, 84, .98) 46%, rgba(12, 58, 128, .92) 100%),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 42%);
}
.hero-shader {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: .42;
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, black, transparent 78%);
  opacity: .92;
  pointer-events: none;
}
.hero-copy {
  grid-column: 1;
  grid-row: 1;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 20px;
  padding: 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  border: 1px solid rgba(226, 178, 47, .26);
  border-radius: 8px;
  background: rgba(226, 178, 47, .08);
  backdrop-filter: blur(10px);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .service-card li, .location-card li, .process-item p {
  overflow-wrap: anywhere;
}
.hero h1 {
  margin-bottom: 28px;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 18px 54px rgba(0,0,0,.28);
}
.hero h1 span {
  display: block;
  color: var(--gold);
  -webkit-text-stroke: 0;
}
.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.62;
}
.hero-actions, .contact-links, .application-points { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions { margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.btn.primary { color: var(--navy); background: linear-gradient(180deg, #f0c947, var(--gold)); box-shadow: 0 18px 42px rgba(226, 178, 47, 0.28), inset 0 1px 0 rgba(255,255,255,.4); }
.btn.secondary { color: white; border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.09); backdrop-filter: blur(12px); }
.btn:hover { transform: translateY(-3px); }
.hero-actions .btn {
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.1);
  box-shadow: none;
  backdrop-filter: blur(14px);
}
.hero-actions .btn:hover {
  background: rgba(255,255,255,.18);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 13px 0 10px;
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.hero-badges strong {
  color: var(--gold);
  font-size: 12px;
}
.hero-tagline span {
  min-height: 40px;
  padding: 0 16px;
  color: var(--gold);
  border-color: rgba(226, 178, 47, .24);
  background: rgba(226, 178, 47, .08);
  text-transform: uppercase;
}
.hero-visual {
  grid-column: 2;
  grid-row: 1;
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 1;
  width: min(64vw, 1060px);
  min-height: 0;
  pointer-events: none;
}
.visual-frame {
  position: absolute;
  inset: 0;
}
.main-cleaning-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  border-radius: 0;
  box-shadow: none;
  animation: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(0,0,0,.1) 54%, rgba(0,0,0,.62) 70%, #000 86%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 40%, rgba(0,0,0,.1) 54%, rgba(0,0,0,.62) 70%, #000 86%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.visual-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, transparent 0%, transparent 52%, rgba(7, 31, 79, .16) 74%, rgba(7, 31, 79, .32) 100%),
    linear-gradient(0deg, rgba(7, 31, 79, .2), transparent 34%, transparent 74%, rgba(7, 31, 79, .16));
}
.visual-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 54px 54px;
  background-position: calc((100vw - min(64vw, 1060px)) * -1) 0;
  opacity: .38;
}
.location-card {
  position: absolute;
  right: clamp(22px, 4vw, 58px);
  bottom: clamp(168px, 20vh, 230px);
  z-index: 3;
  width: min(276px, calc(100% - 44px));
  overflow: hidden;
  padding: 18px 18px 16px;
  pointer-events: auto;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 28px 76px rgba(3, 11, 31, .28), inset 0 1px 0 rgba(255,255,255,.28);
  backdrop-filter: blur(18px) saturate(1.2);
}
.location-card strong {
  display: block;
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: uppercase;
}
.location-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.location-card ul, .service-card ul { margin: 0; padding-left: 20px; }
.location-card ul {
  display: grid;
  gap: 7px;
  margin-inline: 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.location-card li {
  position: relative;
  margin: 0;
  padding-left: 25px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.32;
}
.location-card li::before {
  position: absolute;
  left: 0;
  top: .05em;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  content: "";
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(226, 178, 47, .13);
}
.location-card li::after {
  position: absolute;
  left: 5px;
  top: .37em;
  width: 6px;
  height: 3px;
  content: "";
  border-left: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(-45deg);
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 9px 0;
  color: var(--navy);
  background: var(--gold);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 900;
  text-transform: uppercase;
}
.hero-marquee {
  grid-column: 1 / -1;
  grid-row: 2;
  z-index: 3;
  margin-inline: calc(clamp(18px, 6vw, 82px) * -1);
}
.marquee-track { display: flex; width: max-content; gap: 26px; animation: marquee 25s linear infinite; }
.marquee span::after { content: "/"; margin-left: 26px; color: var(--white); }

main > section {
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}
main > .section-focus {
  position: relative;
  z-index: 6;
  transform: scale(1);
}
.hero.section-focus {
  min-height: 100svh;
  padding-top: 86px;
}
.hero.section-focus h1 {
  font-size: clamp(40px, 5.2vw, 76px);
}
.hero.section-focus .hero-copy p:not(.eyebrow) {
  font-size: clamp(16px, 1.45vw, 20px);
}
.hero.section-focus .hero-visual {
  min-height: clamp(290px, 38vh, 390px);
}
.services.section-focus {
  min-height: 100svh;
  align-content: center;
  grid-auto-rows: 220px;
  padding-top: 92px;
  padding-bottom: 34px;
}
.services.section-focus .services-heading {
  margin-bottom: 4px;
}
.services.section-focus .services-heading h2 {
  font-size: clamp(28px, 3.4vw, 46px);
}
.services.section-focus .service-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  flex-basis: 46px;
  margin-bottom: 8px;
}
.services.section-focus .service-icon svg {
  width: 23px;
  height: 23px;
}
.services.section-focus .service-card h2 {
  margin-bottom: 8px;
  font-size: clamp(18px, 1.45vw, 23px);
}
.services.section-focus .service-card ul {
  padding-bottom: 12px;
}
.services.section-focus .service-card img {
  height: 240px;
}
.services.section-focus .service-card li {
  margin: 5px 0;
  font-size: clamp(13px, 0.85vw, 15px);
  line-height: 1.32;
}
.why-section.section-focus,
.process.section-focus,
.application.section-focus,
.contact.section-focus {
  min-height: 100svh;
  align-content: center;
  padding-top: 92px;
  padding-bottom: 42px;
}
.why-section.section-focus .why-grid div {
  min-height: 104px;
  padding: 12px;
}
.why-section.section-focus .future-card img {
  min-height: 250px;
}
.why-section.section-focus .future-card h2 {
  font-size: clamp(28px, 3.6vw, 46px);
}
.why-section.section-focus .future-card p {
  font-size: 15px;
  line-height: 1.5;
}
.process.section-focus .section-title h2,
.application.section-focus h2,
.contact.section-focus h2 {
  font-size: clamp(30px, 4vw, 52px);
}
.process.section-focus .process-list {
  gap: 12px;
}
.process.section-focus .process-item {
  padding: 20px;
}
.process.section-focus .process-item span {
  font-size: 28px;
}
.process.section-focus .process-item strong {
  font-size: 21px;
}
.process.section-focus .process-item p {
  font-size: 15px;
  line-height: 1.45;
}
.application.section-focus,
.contact.section-focus {
  gap: clamp(22px, 4vw, 54px);
}
.application.section-focus .application-card,
.contact.section-focus .contact-form {
  gap: 12px;
  padding: 22px;
}
.application.section-focus input,
.application.section-focus select,
.application.section-focus textarea,
.contact.section-focus input,
.contact.section-focus select,
.contact.section-focus textarea {
  padding: 12px 14px;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.hero-impact {
  grid-column: 1 / -1;
  grid-row: 3;
  z-index: 3;
  margin-inline: calc(clamp(18px, 6vw, 82px) * -1);
}
.impact-strip div {
  padding: 11px clamp(18px, 5vw, 64px);
  border-right: 1px solid var(--line);
}
.impact-strip strong {
  display: block;
  color: var(--blue);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1;
}
.impact-strip span { color: var(--muted); font-size: 13px; font-weight: 800; }

.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 18px;
  padding: clamp(72px, 8vw, 100px) clamp(18px, 6vw, 82px);
  background: var(--paper);
}
.services-heading {
  grid-column: 1 / -1;
  max-width: 880px;
  margin-bottom: 4px;
}
.services-heading .eyebrow { color: var(--blue); }
.services-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1;
}
.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 48px rgba(7, 31, 79, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.service-card.featured { grid-column: span 2; grid-row: span 2; }
.service-card.gold-card,
.service-card.navy-card {
  grid-row: span 2;
}
.service-card.gold-card { border-top: 6px solid var(--gold); }
.service-card.navy-card { border-top: 6px solid var(--blue); }
.service-card:hover { transform: translateY(-8px) rotate(-0.6deg); box-shadow: var(--shadow); }
.service-card img {
  position: relative;
  height: 240px;
  object-fit: cover;
  flex: 0 0 auto;
  transition: transform 0.65s ease;
}
.service-card:hover img { transform: scale(1.08); }
.service-icon, .service-card h2, .service-card ul { position: relative; z-index: 2; }
.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  place-items: center;
  flex: 0 0 46px;
  margin: -24px 22px 8px;
  color: var(--navy);
  border-radius: 50%;
  background: linear-gradient(180deg, #f5d864, var(--gold));
  box-shadow: 0 14px 30px rgba(7, 31, 79, .16);
}
.service-icon svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h2 {
  margin: 0 22px 8px;
  color: var(--navy);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.08;
  text-transform: uppercase;
}
.service-card ul {
  padding: 0 24px 12px 40px;
  color: var(--muted);
}
.service-card li {
  margin: 5px 0;
  font-size: clamp(13px, 0.85vw, 15px);
  line-height: 1.32;
}
.service-card li::marker,
.service-card.gold-card li::marker {
  color: var(--gold);
}

.why-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  padding: 0 clamp(18px, 6vw, 82px) 100px;
  background: var(--paper);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 15px 42px rgba(7, 31, 79, 0.08);
}
.why-grid div {
  display: grid;
  min-height: 134px;
  place-items: center;
  gap: 9px;
  padding: 16px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 0.25s ease, background 0.25s ease;
}
.why-grid div:hover { color: var(--navy); background: var(--gold); }
.why-grid span { color: var(--blue); font-size: 30px; }
.why-grid strong { max-width: 110px; font-size: 14px; line-height: 1.15; }
.future-card {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.future-card img { height: 100%; min-height: 300px; object-fit: cover; }
.future-card div { padding: 28px 32px 28px 0; }
.future-card h2 {
  color: white;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.02;
}
.future-card h2::after {
  display: block;
  width: 96px;
  height: 5px;
  margin-top: 20px;
  content: "";
  background: var(--gold);
}
.future-card p { color: rgba(255,255,255,.76); line-height: 1.65; }

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  padding: 100px clamp(18px, 6vw, 82px);
  color: white;
  background: var(--navy);
}
.section-title { max-width: 740px; }
.section-title h2, .contact h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}
.process-list { display: grid; gap: 16px; }
.process-item {
  display: grid;
  grid-template-columns: 68px minmax(110px, 0.55fr) 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  transition: background 0.24s ease, transform 0.24s ease;
}
.process-item:hover { transform: translateX(8px); background: rgba(255,255,255,.14); }
.process-item span { color: var(--gold); font-size: 34px; font-weight: 900; }
.process-item strong { color: white; font-size: 24px; }
.process-item p { margin-bottom: 0; color: rgba(255,255,255,.72); line-height: 1.55; }

.application {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  padding: 118px clamp(18px, 6vw, 82px);
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(247,249,252,.96), rgba(237,246,255,.9)),
    url("assets/kurumsal.jpg") center/cover;
  border-top: 8px solid var(--gold);
}
.application::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.35));
}
.application > * {
  position: relative;
  z-index: 1;
}
.application h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
}
.application-copy p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.application-points { margin-top: 24px; }
.application-points span {
  padding: 12px 14px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.84);
  font-weight: 900;
}
.application-card,
.application-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.application-card {
  align-self: center;
  color: var(--navy);
}
.application-card strong {
  color: var(--navy);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.08;
}
.application-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}
.application-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.application-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 800;
}
.application-card li::before {
  position: absolute;
  left: 0;
  top: .25em;
  width: 12px;
  height: 12px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.form-section-title {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 19px;
}
.checkbox-label {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}
.checkbox-label input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  padding: 100px clamp(18px, 6vw, 82px);
  background:
    linear-gradient(120deg, rgba(247,249,252,.95), rgba(237,246,255,.72)),
    url("assets/contact.jpg") center/cover;
}
.contact h2 { color: var(--navy); }
.contact-copy p { color: var(--muted); line-height: 1.62; font-size: 18px; }
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
}
.contact-whatsapp svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
label { display: grid; gap: 8px; color: var(--navy); font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}
textarea { resize: vertical; }
.file-input {
  border-style: dashed;
  background: #fbfdff;
}
.form-note { min-height: 20px; margin: 0; color: var(--navy); font-weight: 900; }
.form-note.error { color: #a21d1d; }
.form-note.success { color: #126b35; }

.map-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: 100px clamp(18px, 6vw, 82px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(237,246,255,.88)),
    radial-gradient(circle at 85% 20%, rgba(226,178,47,.18), transparent 32%);
}
.map-copy h2 {
  color: var(--navy);
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: .98;
}
.map-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.map-metrics {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.map-metrics span {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.76);
}
.map-metrics strong {
  color: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
}
.map-link {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}
.map-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(7,31,79,.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.map-frame-header {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 15px;
  color: var(--navy);
  border: 1px solid rgba(7,31,79,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 16px 36px rgba(7,31,79,.12);
  backdrop-filter: blur(12px);
}
.map-frame-header span {
  color: var(--muted);
  font-weight: 900;
}
.map-frame iframe {
  width: 100%;
  height: 520px;
  border: 0;
  filter: saturate(.95) contrast(1.04);
}
.map-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px;
  color: var(--navy);
  border-radius: 8px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 18px 42px rgba(7,31,79,.16);
}
.map-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}
.map-pin {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
  box-shadow: 0 12px 28px rgba(226,178,47,.35);
}
.map-pin::after {
  position: absolute;
  inset: 12px;
  content: "";
  border-radius: 50%;
  background: var(--navy);
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(16px, 4vw, 34px);
  z-index: 80;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 42px rgba(37,211,102,.34);
  transition: transform .22s ease, box-shadow .22s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 52px rgba(37,211,102,.42);
}
.whatsapp-float svg {
  width: 34px;
  height: 34px;
}

.application-page {
  min-height: 100svh;
  padding: 132px clamp(18px, 6vw, 82px) 80px;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(247,249,252,.94), rgba(237,246,255,.84)),
    url("assets/kurumsal.jpg") center/cover fixed;
}
.application-page-shell {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}
.application-page-copy {
  position: sticky;
  top: 110px;
}
.application-page-copy h1 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(42px, 5.3vw, 76px);
  text-shadow: none;
}
.application-page-copy h1 span {
  color: var(--blue);
  -webkit-text-stroke: 0;
}
.application-page-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.application-page .application-form {
  background: rgba(255,255,255,.94);
}

.references-page {
  min-height: 100svh;
  padding: 132px clamp(18px, 6vw, 82px) 88px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(247,249,252,.96), rgba(237,246,255,.9)),
    url("assets/contact.jpg") center/cover fixed;
}
.references-hero {
  max-width: 980px;
  margin-bottom: 34px;
}
.references-hero h1 {
  max-width: 880px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: .96;
}
.references-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.references-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.reference-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 48px rgba(7,31,79,.1);
  transition: transform .24s ease, box-shadow .24s ease;
}
.reference-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.reference-logo {
  display: grid;
  height: 170px;
  place-items: center;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #edf6ff);
  border-bottom: 1px solid var(--line);
}
.reference-logo img {
  width: 100%;
  max-width: 320px;
  max-height: 150px;
  object-fit: contain;
}

.reference-card > div:last-child {
  padding: 20px;
}
.reference-type {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.reference-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.08;
}
.reference-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.form-actions .btn {
  min-width: 210px;
}
.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 6vw, 82px);
  color: white;
  background: #06173d;
}
footer p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes floatImage {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-14px) scale(1.025); }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes loaderSettle {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes loaderExit {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-10px) scale(.985); }
}
@keyframes loaderWipe {
  from { transform: translateX(-110%); }
  to { transform: translateX(110%); }
}

@media (prefers-reduced-motion: reduce) {
  .loader-brand,
  .page-loader.is-hidden .loader-brand,
  .loader-wipe::before {
    animation: none;
  }
  .page-loader {
    transition: opacity .2s ease, visibility .2s ease;
  }
}

@media (max-width: 1060px) {
  .hero, .why-section, .process, .application, .contact, .map-section, .application-page-shell { grid-template-columns: 1fr; }
  .hero-copy { grid-column: 1; grid-row: 1; }
  .hero-visual {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    inset: auto;
    width: calc(100% + clamp(18px, 6vw, 82px) * 2);
    height: 430px;
    margin-inline: calc(clamp(18px, 6vw, 82px) * -1);
  }
  .visual-frame::after { background-position: 0 0; }
  .location-card { bottom: 24px; width: min(300px, calc(100% - 48px)); }
  .hero-marquee { grid-row: 3; }
  .hero-impact { grid-row: 4; }
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
  .service-card,
  .service-card.featured,
  .service-card.gold-card,
  .service-card.navy-card {
    min-height: 390px;
    grid-column: auto;
    grid-row: auto;
  }
  .services.section-focus {
    min-height: auto;
    align-content: start;
    padding-top: 88px;
    grid-auto-rows: auto;
  }
  .why-section.section-focus,
  .process.section-focus,
  .application.section-focus,
  .contact.section-focus {
    min-height: auto;
    align-content: start;
    padding-top: 88px;
  }
  .map-frame,
  .map-frame iframe {
    min-height: 430px;
    height: 430px;
  }
  .hero.section-focus {
    min-height: auto;
    padding-top: 108px;
  }
  .future-card { grid-template-columns: 1fr; }
  .future-card div { padding: 0 28px 30px; }
  .application-page-copy { position: static; }
  .references-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .cursor-light { display: none; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 14px;
    color: var(--navy);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav a { padding: 12px; }
  .brand strong { font-size: 25px; }
	.brand small {
	  display: block;
	  font-size: 10px;
	}
	
  .hero { padding-top: 108px; padding-bottom: 0; gap: 24px; }
  .hero h1 { font-size: clamp(42px, 13vw, 76px); }
  .hero h1 span { -webkit-text-stroke: 0; }
  .hero-visual { min-height: 0; height: 340px; align-self: auto; }
  .visual-frame { position: relative; height: 340px; }
  .main-cleaning-img { position: absolute; inset: 0; width: 100%; height: 100%; }
  .location-card { right: 14px; bottom: 14px; width: calc(100% - 28px); }
  .impact-strip, .services { grid-template-columns: 1fr; }
  .services { grid-auto-rows: auto; padding-block: 72px; }
  .service-card,
  .service-card.featured,
  .service-card.gold-card,
  .service-card.navy-card {
    min-height: 390px;
    grid-column: auto;
    grid-row: auto;
  }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-item { grid-template-columns: 1fr; gap: 12px; }
  .map-section { padding-block: 72px; }
  .references-page { padding-top: 112px; }
  .references-grid { grid-template-columns: 1fr; }
  .reference-card { min-height: 0; }
  .map-frame-header {
    flex-direction: column;
    gap: 4px;
  }
  .map-card {
    grid-template-columns: 34px 1fr;
    padding: 13px;
  }
  .map-pin {
    width: 34px;
    height: 34px;
  }
  .map-pin::after { inset: 10px; }
  .whatsapp-float {
    width: 56px;
    height: 56px;
  }
  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 520px) {
  .hero-actions .btn, .application-form .btn, .contact-form .btn, .application-card .btn, .form-actions .btn { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .section-title h2, .contact h2, .map-copy h2, .references-hero h1 { font-size: 36px; }
  .map-metrics span { grid-template-columns: 1fr; gap: 4px; }
  footer { flex-direction: column; }
}
