:root {
  --navy: #031126;
  --navy-2: #061a35;
  --blue: #1377ff;
  --blue-2: #2995ff;
  --text: #07142b;
  --muted: #5c6679;
  --line: #dfe5ef;
  --white: #fff;
  --wrap: 1180px;
  --radius: 8px;
}

* { box-sizing: border-box; }
body * { min-width: 0; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg, iframe { display: block; max-width: 100%; }
svg { fill: currentColor; }
.wrap { width: min(var(--wrap), calc(100% - 64px)); margin-inline: auto; }

.site-header {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 14%, rgba(19, 119, 255, .25), transparent 28%),
    linear-gradient(100deg, rgba(3, 17, 38, .98) 0 48%, rgba(3, 17, 38, .84) 48% 57%, rgba(4, 18, 39, .4) 57%),
    var(--navy);
  position: relative;
  overflow: hidden;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 52%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0 12%, rgba(19,119,255,.55) 12% 13%, transparent 13% 16%, rgba(19,119,255,.35) 16% 17%, transparent 17%);
  pointer-events: none;
  z-index: 2;
}
.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 5;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}
.logo-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #07142b;
  background: #ffe600;
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}
.logo-text {
  display: grid;
  line-height: .82;
}
.logo-text small {
  color: #ffe600;
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
}
.logo-text b {
  color: #fff;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: 0;
}
.logo-pill {
  margin-left: -4px;
  padding: 10px 8px;
  border-radius: 28px 4px 4px 28px;
  color: #19223d;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
}
.nav-links a {
  padding: 16px 0;
  color: rgba(255,255,255,.92);
  border-bottom: 2px solid transparent;
}
.nav-links a.active,
.nav-links a:hover { color: var(--blue-2); border-color: var(--blue-2); }
.nav-call, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  border-radius: 17px;
  font-weight: 800;
  white-space: nowrap;
}
.nav-call {
  padding: 0 25px;
  background: linear-gradient(135deg, var(--blue), #0d66df);
  box-shadow: 0 14px 28px rgba(19,119,255,.28);
}
.nav-call svg, .btn svg { width: 21px; height: 21px; }
.menu-toggle { display: none; }

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(500px, 560px) minmax(460px, 1fr);
  align-items: start;
  gap: 34px;
  padding: 34px 0 34px;
  position: relative;
  z-index: 3;
}
.hero-copy { position: relative; z-index: 4; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border-radius: 7px;
  background: rgba(255,255,255,.09);
  color: #dcecff;
  font-size: 14px;
  font-weight: 800;
}
.eyebrow svg { width: 18px; color: var(--blue-2); }
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  margin: 24px 0 16px;
  font-size: clamp(36px, 4vw, 50px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}
.hero h1 span {
  display: block;
  color: var(--blue);
  white-space: nowrap;
}
.mobile-break { display: none; }
.hero p {
  max-width: 520px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.95);
  font-size: 18px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 480px;
  margin-bottom: 24px;
}
.hero-features div {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1.25;
}
.hero-features svg {
  width: 42px;
  height: 42px;
  color: var(--blue-2);
}
.hero-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.btn {
  min-width: 218px;
  padding: 0 24px;
  border: 2px solid rgba(255,255,255,.72);
  color: #fff;
  font-size: 17px;
}
.btn.primary { border-color: transparent; background: linear-gradient(135deg, var(--blue), #0d66df); }
.btn.outline { background: rgba(3, 17, 38, .3); }
.hero-media {
  height: 500px;
  align-self: stretch;
  margin-right: calc((50vw - min(var(--wrap), calc(100vw - 64px)) / 2) * -1);
  position: relative;
  overflow: hidden;
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0 6%, rgba(3,17,38,.08) 32%, rgba(3,17,38,.12));
  z-index: 1;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.08);
}

.section { padding: 42px 0 44px; }
.hotline-strip {
  padding: 38px 0;
  background:
    linear-gradient(105deg, rgba(255, 198, 0, .95), rgba(255, 231, 35, .86) 46%, rgba(19, 119, 255, .22)),
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.65), transparent 18%),
    url("assets/img/musteri-fotograflari/musteri_foto_03.jpeg") right center / cover;
  position: relative;
  overflow: hidden;
}
.hotline-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,214,0,.98), rgba(255,214,0,.78) 48%, rgba(3,17,38,.72));
}
.hotline-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: 32px;
  align-items: center;
}
.hotline-copy .section-kicker {
  text-align: left;
  color: #061126;
}
.hotline-copy h2 {
  margin: 0 0 12px;
  color: #061126;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}
.hotline-copy p {
  margin: 0;
  color: #17243a;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}
.hotline-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.hotline-cards article {
  min-height: 154px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 30px rgba(3,17,38,.18);
  border: 1px solid rgba(255,255,255,.7);
}
.hotline-cards span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
}
.hotline-cards svg {
  width: 26px;
  height: 26px;
}
.hotline-cards strong,
.hotline-cards small {
  display: block;
}
.hotline-cards strong {
  margin-bottom: 7px;
  color: #061126;
  font-size: 18px;
}
.hotline-cards small {
  color: #334059;
  line-height: 1.45;
  font-weight: 700;
}
.section-kicker {
  margin: 0 0 8px;
  color: var(--blue);
  text-align: center;
  font-size: 15px;
  font-weight: 900;
}
.section h2, .trust-band h2, .contact-panel h2 {
  margin-bottom: 28px;
  text-align: center;
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.15;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1060px;
  margin-inline: auto;
}
.service-card {
  min-height: 222px;
  padding: 30px 24px 26px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(4,17,37,.08), inset 0 -5px 0 var(--blue);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 34px rgba(19,119,255,.18), inset 0 -5px 0 var(--blue); }
.service-card svg { width: 62px; height: 62px; margin: 0 auto 22px; color: var(--blue); }
.service-card h3 { margin-bottom: 14px; font-size: 23px; }
.service-card p { color: #17243a; line-height: 1.55; font-size: 15px; }

.trust-band {
  padding: 32px 0 30px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(19,119,255,.9) 0 2px, transparent 70px) left center / 170px 100% no-repeat,
    linear-gradient(245deg, rgba(19,119,255,.9) 0 2px, transparent 70px) right center / 170px 100% no-repeat,
    linear-gradient(90deg, #031126, #061a35 50%, #031126);
}
.trust-band h2 { margin-bottom: 18px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-grid article {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding-right: 22px;
  border-right: 1px solid rgba(255,255,255,.22);
}
.trust-grid article:last-child { border-right: 0; }
.trust-grid svg { flex: 0 0 58px; width: 58px; height: 58px; color: var(--blue-2); }
.trust-grid h3 { margin-bottom: 6px; font-size: 18px; }
.trust-grid p { margin-bottom: 0; color: rgba(255,255,255,.82); line-height: 1.45; }

.gallery {
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.gallery-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  border-radius: 8px;
  background: #dbe7f7;
  box-shadow: 0 14px 28px rgba(7, 20, 43, .12);
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(3,17,38,.28));
  pointer-events: none;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .3s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-wide img { object-position: center 58%; }
.extra-photo { display: none; }
.gallery.open .extra-photo { display: block; }
.gallery-more {
  display: block;
  margin: 18px auto 0;
  min-width: 130px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0d66df);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.process-band {
  padding: 38px 0;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(3,17,38,.98), rgba(4,20,43,.92)),
    radial-gradient(circle at 85% 20%, rgba(19,119,255,.3), transparent 30%),
    var(--navy);
}
.process-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 390px) 1fr;
  gap: 34px;
  align-items: center;
}
.process-copy .section-kicker,
.process-copy h2 {
  text-align: left;
}
.process-copy h2 {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1.18;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.process-steps article {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.process-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--blue);
  font-weight: 900;
}
.process-steps strong,
.process-steps small {
  display: block;
}
.process-steps strong {
  margin-bottom: 7px;
  font-size: 18px;
}
.process-steps small {
  color: rgba(255,255,255,.78);
  line-height: 1.45;
}

.contact-panel {
  color: #fff;
  padding: 54px 0 48px;
  background:
    linear-gradient(90deg, rgba(3,17,38,.98), rgba(5,23,48,.87)),
    url("assets/img/musteri-fotograflari/musteri_foto_05.jpeg") center / cover;
}
.contact-panel .section-kicker, .contact-panel h2 { text-align: left; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 470px) 1fr;
  gap: 62px;
  align-items: center;
}
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 800;
}
.contact-list span:first-child {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
}
.contact-list svg { width: 22px; height: 22px; }
.contact-list small { display: block; grid-column: 2; color: #fff; font-size: 15px; font-weight: 700; }
.map-card {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #eef3fa;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.map-card iframe { width: 100%; height: 300px; border: 0; filter: saturate(.75) contrast(.98); pointer-events: none; }
.map-pin {
  width: 64px;
  height: 64px;
  position: absolute;
  left: 34%;
  top: 42%;
  transform: translate(-50%, -50%);
  color: var(--blue);
  filter: drop-shadow(0 8px 12px rgba(19,119,255,.35));
}
.map-label {
  position: absolute;
  right: 36px;
  top: 96px;
  padding: 18px 22px;
  color: var(--text);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,.14);
}
.map-label b { display: block; margin-bottom: 8px; }
.map-label small { line-height: 1.45; }

.site-footer {
  color: #fff;
  background: linear-gradient(90deg, #031126, #061a35 50%, #031126);
}
.footer-grid {
  padding: 44px 0 34px;
  display: grid;
  grid-template-columns: 1.35fr 1.25fr .9fr 1fr 1fr;
  gap: 34px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer-brand .brand {
  width: max-content;
  max-width: none;
  gap: 5px;
  transform: none;
  white-space: nowrap;
}
.footer-brand .logo-text,
.footer-brand .logo-pill,
.footer-brand .logo-mark {
  flex: 0 0 auto;
}
.footer-brand .logo-mark {
  width: 34px;
  height: 34px;
  font-size: 23px;
}
.footer-brand .logo-text small {
  font-size: 11px;
}
.footer-brand .logo-text b {
  font-size: 30px;
}
.footer-brand .logo-pill {
  padding: 6px 6px;
  font-size: 10px;
}
.site-footer h2 { margin: 0 0 14px; font-size: 18px; }
.site-footer p, .site-footer a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}
.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer-bottom p { margin: 0; }
.footer-bottom p:nth-child(2) { margin-left: auto; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
  color: #fff;
  font-weight: 800;
}
.fixed-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 28px rgba(0,0,0,.25);
}
.fixed-whatsapp svg { width: 32px; height: 32px; }

@media (max-width: 1180px) and (min-width: 901px) {
  .wrap { width: min(100% - 36px, var(--wrap)); }
  .nav { gap: 20px; }
  .brand { transform: scale(.9); transform-origin: left center; }
  .nav-links { gap: 22px; font-size: 14px; }
  .nav-call { padding: 0 18px; }
  .hero {
    grid-template-columns: minmax(430px, 480px) minmax(420px, 1fr);
    gap: 22px;
  }
  .hero h1 { font-size: 39px; }
  .hero p { font-size: 17px; }
  .hero-media { height: 500px; }
  .hotline-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .wrap { width: min(100% - 36px, var(--wrap)); }
  .site-header::after { display: none; }
  .nav { min-height: 92px; }
  .logo-mark { width: 46px; height: 46px; font-size: 30px; }
  .logo-text small { font-size: 15px; }
  .logo-text b { font-size: 40px; }
  .logo-pill { padding: 8px 6px; font-size: 14px; }
  .menu-toggle {
    width: 46px;
    height: 42px;
    margin-left: auto;
    display: grid;
    gap: 5px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
  }
  .menu-toggle span { width: 24px; height: 2px; background: #fff; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 86px;
    display: none;
    padding: 16px;
    border-radius: 8px;
    background: rgba(3,17,38,.98);
    box-shadow: 0 16px 34px rgba(0,0,0,.25);
  }
  .nav-links.open { display: grid; gap: 4px; }
  .nav-links a { padding: 13px 4px; }
  .nav-call { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 36px;
  }
  .hero-media {
    height: 380px;
    min-height: 0;
    margin-right: 0;
    border-radius: 10px;
  }
  .service-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid article:nth-child(2) { border-right: 0; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-wrap { grid-template-columns: 1fr; }
  .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  body { padding-bottom: 72px; }
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .site-header, .hero, .hero-copy, .hero-media, main, footer { max-width: 100%; overflow-x: hidden; }
  .hero { display: block; }
  .logo-mark { width: 42px; height: 42px; font-size: 28px; }
  .logo-text small { font-size: 14px; }
  .logo-text b { font-size: 36px; }
  .logo-pill { font-size: 13px; }
  .hero h1 { font-size: 34px; line-height: 1.04; max-width: 100%; }
  .hero h1 span { max-width: 100%; white-space: normal; word-break: normal; }
  .mobile-break { display: block; }
  .hero p { max-width: 100%; font-size: 17px; }
  .hero-features { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .btn { width: 100%; min-width: 0; max-width: 100%; }
  .hero-media { width: 100%; height: 280px; min-height: 0; }
  .section { padding: 34px 0; }
  .service-grid, .trust-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hotline-strip { padding: 30px 0; }
  .hotline-wrap,
  .hotline-cards {
    grid-template-columns: 1fr;
  }
  .hotline-copy h2 { font-size: 27px; }
  .hotline-cards article { min-height: 0; }
  .gallery-grid,
  .gallery.open .gallery-grid {
    grid-template-columns: 1fr;
  }
  .section h2, .trust-band h2, .contact-panel h2 {
    max-width: 100%;
    font-size: 24px;
    overflow-wrap: anywhere;
  }
  .service-card { min-height: 190px; }
  .trust-grid article { border-right: 0; padding-right: 0; }
  .gallery-card { aspect-ratio: 1.28 / 1; }
  .process-band { padding: 32px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-panel { padding: 38px 0; }
  .map-card iframe { height: 240px; }
  .map-pin { left: 42%; top: 40%; width: 52px; height: 52px; }
  .map-label { left: 18px; right: 18px; top: auto; bottom: 18px; }
  .footer-grid { gap: 20px; }
  .footer-brand .brand { transform: none; }
  .footer-bottom { align-items: flex-start; flex-direction: column; padding: 22px 0 28px; }
  .footer-bottom p:nth-child(2) { margin-left: 0; }
  .fixed-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

@media (max-width: 500px) {
  .wrap {
    width: 330px;
    max-width: calc(100% - 28px);
    margin-left: 14px;
    margin-right: 14px;
  }
  .eyebrow,
  .hero h1,
  .hero p,
  .hero-actions,
  .section h2,
  .service-card p {
    width: 100%;
    max-width: 330px;
  }
  .eyebrow {
    white-space: normal;
    align-items: flex-start;
  }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 28px; }
  .eyebrow { font-size: 12px; }
  .contact-list li { font-size: 16px; }
}
