:root {
  --black: #111111;
  --dark: #1f1f1f;
  --text: #333333;
  --muted: #747474;
  --line: #dedede;
  --soft: #f2f2ef;
  --white: #ffffff;
  --accent: #ff6a00;
  --yellow: #fac12e;
  --radius: 25px;
  --container: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 104px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity .45s ease, visibility .45s ease;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-core {
  display: grid;
  justify-items: center;
  gap: 24px;
}
.loader-core img {
  width: 190px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 20px 45px rgba(255,106,0,.22));
}
.loader-core span {
  width: 180px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.loader-core span::after {
  content: "";
  display: block;
  width: 70px;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--yellow));
  animation: loaderMove 1s infinite ease-in-out;
}
@keyframes loaderMove {
  0% { transform: translateX(-80px); }
  100% { transform: translateX(200px); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
}
.bar-inner {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 13.5px;
}
.topbar .bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
  padding: 7px 0;
}
.topbar-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 26px;
}
.topbar-contact a,
.topbar-addr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.86);
  font-weight: 600;
}
.topbar-contact a:hover { color: var(--yellow); }
.topbar svg { width: 16px; height: 16px; flex: none; color: var(--accent); }
.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: none;
}
.topbar-slogan {
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-social a {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: var(--white);
  transition: background .2s ease, transform .2s ease;
}
.topbar-social a:hover { background: var(--accent); transform: translateY(-2px); }
.topbar-social svg { width: 15px; height: 15px; color: currentColor; }
.nav-shell { background: var(--white); }
.nav-shell .bar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 10px 0;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { height: 50px; width: auto; flex: none; }
.brand-word { display: flex; flex-direction: column; line-height: 1; white-space: nowrap; }
.brand-word strong {
  font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .01em;
  color: #bf870d;
}
.brand-word small {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: #ff6b00;
}
.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border-radius: 999px;
  background: var(--soft);
}
.main-nav > a,
.nav-group > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.main-nav > a:hover,
.nav-group:hover > a,
.main-nav > a:focus-visible,
.nav-group > a:focus-visible {
  background: var(--black);
  color: var(--white);
}
.nav-group { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: grid;
  min-width: 290px;
  padding: 18px;
  border-radius: 18px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown a {
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}
.nav-dropdown a:hover { background: rgba(255,255,255,.08); color: var(--yellow); }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.quote-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
  color: var(--black);
  transition: border-color .2s ease, color .2s ease;
}
.quote-chip svg { width: 17px; height: 17px; flex: none; color: var(--accent); }
.quote-chip:hover { border-color: var(--black); }
.header-actions .quote-cta { min-height: 48px; padding: 0 22px; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--black);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 768px;
  margin: 0;
  border-radius: 0;
  background: var(--black);
  color: var(--white);
}
.hero-media,
.hero-overlay,
.quote-bg,
.service-hero-media { position: absolute; inset: 0; }
.hero-media {
  background: url("../img/hero-logistics.jpg") center / cover no-repeat;
  transform: scale(1.01);
}
.hero-overlay {
  background:
    radial-gradient(circle at 78% 25%, rgba(255,106,0,.24), transparent 28%),
    linear-gradient(90deg, rgba(17,17,17,.92) 0%, rgba(17,17,17,.62) 47%, rgba(17,17,17,.22) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 600px;
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 0 172px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: inherit;
  font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}
h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 94px);
  line-height: .98;
  text-transform: uppercase;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 1.04;
}
h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.18;
}
.hero-copy {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: #e65f00; }
.btn-ghost { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--black); }
.hero-metrics {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 40px;
  transform: translateX(-50%);
  width: min(var(--container), calc(100% - 48px));
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
}
.hero-metrics div {
  min-height: 116px;
  padding: 26px;
  background: rgba(31,31,31,.76);
}
.hero-metrics strong,
.hero-metrics span { display: block; }
.hero-metrics strong {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 32px;
  line-height: 1;
}
.hero-metrics span { color: rgba(255,255,255,.76); font-weight: 800; }

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(var(--container), calc(100% - 40px));
  margin: 24px auto 0;
}
.quick-contact a {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.quick-contact span,
.quick-contact strong { display: block; }
.quick-contact span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.quick-contact strong {
  color: var(--black);
  font-size: 19px;
  overflow-wrap: anywhere;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 118px auto 0;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -52px;
}
.section-heading h2 { max-width: 790px; margin-bottom: 0; }
.section-heading p:not(.eyebrow) {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.visual-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.visual-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}
.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17,17,17,.04) 0%, rgba(17,17,17,.84) 78%);
}
.visual-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.visual-card:hover img { transform: scale(1.08); }
.visual-card span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
}
.visual-card h3,
.visual-card p {
  position: absolute;
  right: 28px;
  left: 28px;
}
.visual-card h3 { bottom: 76px; font-size: 28px; }
.visual-card p {
  bottom: 24px;
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) 1.08fr;
  gap: 70px;
  align-items: center;
  width: min(var(--container), calc(100% - 40px));
  margin: 128px auto 0;
}
.feature-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
}
.feature-image img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}
.feature-copy { padding-right: 34px; }
.feature-copy p,
.timeline p,
.contact-info p,
.service-detail p { color: var(--muted); line-height: 1.75; }
.check-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.check-list span {
  position: relative;
  padding: 18px 18px 18px 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  font-weight: 900;
}
.check-list span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.gallery-band {
  width: min(var(--container), calc(100% - 40px));
  margin: 128px auto 0;
  padding: 80px 60px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}
.gallery-head { max-width: 820px; margin-bottom: 42px; }
.gallery-strip {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}
.gallery-strip img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
}
.gallery-strip img:nth-child(even) { margin-top: 50px; }

.post-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-auto-rows: 310px;
  gap: 18px;
}
.post-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}
.post-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(17,17,17,0) 20%, rgba(17,17,17,.88) 92%);
}
.post-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.post-card:hover img { transform: scale(1.06); }
.post-card div {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
}
.post-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,106,0,.94);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.post-card strong {
  display: block;
  font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.12;
}
.post-card.tall { grid-row: span 2; }
.post-card.wide { grid-column: span 2; }

.address-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(var(--container), calc(100% - 40px));
  margin: 128px auto 0;
  padding: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(17,17,17,.92), rgba(17,17,17,.72)), url("../img/igl-yeni-adres.jpeg") center / cover no-repeat;
  color: var(--white);
}
.address-band h2 {
  max-width: 850px;
  margin-bottom: 16px;
}
.address-band p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
}
.address-actions {
  display: grid;
  gap: 12px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
}

.quote-section {
  position: relative;
  overflow: hidden;
  margin-top: 128px;
  padding: 116px 0 80px;
  background: var(--black);
  color: var(--white);
}
.quote-bg {
  background: linear-gradient(180deg, rgba(17,17,17,.74), #111 80%), url("../img/fleet-bg.jpg") top center / cover no-repeat;
}
.quote-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 64px;
  align-items: start;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.contact-info { max-width: 650px; }
.contact-info p { color: rgba(255,255,255,.74); font-size: 17px; }
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}
.contact-list a {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  color: var(--white);
  font-weight: 900;
  overflow-wrap: anywhere;
}
.quote-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
}
.quote-form label {
  display: grid;
  gap: 8px;
  color: #3f3f3f;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 12px;
  background: #f7f7f5;
  color: var(--black);
  font: inherit;
  font-size: 16px;
  outline: none;
}
.quote-form input,
.quote-form select { height: 54px; padding: 0 16px; }
.quote-form textarea {
  min-height: 132px;
  padding: 14px 16px;
  resize: vertical;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,106,0,.12);
}
.quote-form .btn { width: 100%; border: 0; cursor: pointer; }
.map-wrap {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  height: 390px;
  margin: 64px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: #242424;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

.service-hero {
  min-height: 560px;
}
.service-hero-media {
  background: var(--service-image, url("../img/hero-logistics.jpg")) center / cover no-repeat;
}
.service-hero .hero-content { min-height: 440px; padding-top: 96px; padding-bottom: 96px; }
.breadcrumbs {
  position: absolute;
  left: calc(50% - min(var(--container), 100% - 48px) / 2);
  bottom: 30px;
  z-index: 3;
  display: inline-flex;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 14px;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}
.service-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 42px;
  align-items: start;
  width: min(var(--container), calc(100% - 40px));
  margin: 96px auto 0;
}
.service-sidebar {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}
.service-sidebar h2 {
  margin: 0 0 10px;
  font-size: 26px;
}
.service-sidebar a {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
  font-weight: 900;
}
.service-sidebar a:hover,
.service-sidebar a.is-active { background: var(--yellow); color: var(--black); }
.service-detail {
  display: grid;
  gap: 34px;
}
.detail-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.detail-card.dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.detail-card.dark p { color: rgba(255,255,255,.72); }
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.mini-card {
  padding: 24px;
  border-radius: 18px;
  background: var(--soft);
}
.mini-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 18px;
}
.service-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--black);
}
.service-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 44px);
}
.service-cta p { margin-bottom: 0; color: rgba(17,17,17,.72); }
.service-cta .btn { background: var(--black); color: var(--white); }

.site-footer {
  background: var(--black);
  color: var(--white);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr .9fr;
  gap: 38px;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 42px;
}
.footer-brand img { width: 180px; margin-bottom: 20px; }
.footer-brand p,
.footer-cta p,
.footer-bottom p {
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}
.footer-col,
.footer-cta { display: grid; align-content: start; gap: 12px; }
.footer-col h3,
.footer-cta h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 22px;
}
.footer-col a {
  color: rgba(255,255,255,.74);
  font-weight: 800;
  overflow-wrap: anywhere;
}
.footer-col a:hover { color: var(--yellow); }
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
}
.social::before {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-size: 13px;
}
.instagram { background: linear-gradient(135deg, #feda75, #d62976 52%, #4f5bd5); }
.instagram::before { content: "IG"; }
.facebook { background: #1877f2; }
.facebook::before { content: "f"; font-family: Arial, sans-serif; font-weight: 900; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--yellow); font-weight: 900; }
.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.72) !important;
  font-size: 13px;
  font-weight: 700;
}
.powered-by img {
  width: auto;
  height: 30px;
  max-height: 30px;
  padding: 5px 10px;
  border-radius: 8px;
  background: #ffffff;
  object-fit: contain;
}
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 40px rgba(37,211,102,.4);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: scale(1.08); }
.floating-whatsapp svg { width: 30px; height: 30px; }

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: min(var(--container), calc(100% - 40px));
  margin: 118px auto 0;
}
.value-card {
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(0,0,0,.09);
  border-color: transparent;
}
.value-card .v-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--soft);
  color: var(--accent);
}
.value-card .v-icon svg { width: 28px; height: 28px; }
.value-card h3 { margin-bottom: 8px; font-size: 21px; }
.value-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

/* Operating cities */
.iller-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.iller-list span {
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
}
.address-band .iller-list span { background: rgba(255,255,255,.12); }

/* Contact meta (owner / tax) */
.contact-meta {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.7;
}
.contact-meta strong { color: var(--white); }

/* Language switcher (custom UI, flag + name, drives Google Translate) */
.lang-switch { position: relative; flex: none; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .2s ease;
}
.lang-btn:hover { border-color: var(--black); }
.lang-flag {
  width: 22px;
  height: 16px;
  border-radius: 3px;
  object-fit: cover;
  flex: none;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}
.lang-btn .lang-name { line-height: 1; }
.lang-btn .chev { width: 14px; height: 14px; color: var(--muted); transition: transform .2s ease; }
.lang-switch.open .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 186px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 54px rgba(0,0,0,.18);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 60;
}
.lang-switch.open .lang-menu { display: flex; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--dark);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
}
.lang-menu button:hover { background: var(--soft); }
.lang-menu button.active { color: var(--accent); background: var(--soft); }
/* Hidden Google Translate engine + banner suppression */
#google_translate_element { display: none !important; }
.goog-te-banner-frame, .skiptranslate iframe { display: none !important; visibility: hidden !important; }
body { top: 0 !important; }
#goog-gt-tt, .goog-te-balloon-frame, .goog-tooltip { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; color: inherit !important; }

/* FAQ accordion */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: "Space Grotesk", "Manrope", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  line-height: 1.8;
}

/* Sectors */
.sectors {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sector-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  font-weight: 800;
  color: var(--black);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.sector-card:hover { transform: translateY(-4px); background: var(--white); border-color: var(--accent); }
.sector-card svg { width: 26px; height: 26px; flex: none; color: var(--accent); }

/* All services list (full 14) */
.all-services {
  margin-top: 24px;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.all-services h3 { margin-bottom: 22px; font-size: 22px; }
.all-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px 28px;
}
.all-services-grid span {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
}
.all-services-grid span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(255,106,0,.14);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

@media (max-width: 1200px) {
  .topbar-slogan, .topbar-addr { display: none; }
}

@media (max-width: 1120px) {
  .header-actions .quote-cta { display: none; }
  .main-nav > a, .nav-group > a { padding-inline: 11px; }
  .quick-contact,
  .values,
  .sectors,
  .all-services-grid,
  .visual-services { grid-template-columns: repeat(2, 1fr); }
  .section-heading,
  .feature-band,
  .quote-wrap,
  .service-layout { grid-template-columns: 1fr; }
  .section-heading { gap: 14px; }
  .section-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .timeline,
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .service-sidebar { position: static; }
}

@media (max-width: 840px) {
  .section,
  .feature-band,
  .gallery-band,
  .quote-wrap,
  .map-wrap,
  .quick-contact,
  .service-layout,
  .footer-main,
  .footer-bottom { width: min(100% - 28px, var(--container)); }
  .topbar {
    display: none;
  }
  .nav-shell .bar-inner {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }
  .brand-mark { height: 42px; }
  .brand-word strong { font-size: 18px; }
  .brand-word small { font-size: 9px; letter-spacing: .06em; }
  .quote-chip { display: none; }
  .nav-toggle { display: inline-block; }
  .main-nav {
    position: fixed;
    top: 70px;
    left: 14px;
    right: 14px;
    width: calc(100vw - 28px);
    justify-self: stretch;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 20px;
    background: var(--black);
    box-shadow: 0 26px 60px rgba(0,0,0,.32);
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a,
  .nav-group > a { color: var(--white); justify-content: flex-start; }
  .nav-group:hover > a,
  .nav-group:focus-within > a { background: transparent; color: var(--yellow); }
  .nav-dropdown {
    position: static;
    min-width: 0;
    padding: 6px 6px 6px 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.05);
  }
  .hero { min-height: 680px; }
  .hero-content {
    width: min(100% - 36px, var(--container));
    min-height: 440px;
    padding: 60px 0 238px;
    align-items: stretch;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(17,17,17,.92), rgba(17,17,17,.72) 56%, rgba(17,17,17,.4));
  }
  .hero-metrics {
    width: min(100% - 36px, var(--container));
    bottom: 20px;
    grid-template-columns: 1fr;
  }
  .hero-metrics div { min-height: auto; padding: 18px; }
  .quick-contact,
  .values,
  .sectors,
  .all-services-grid,
  .visual-services,
  .timeline,
  .footer-main,
  .two-col,
  .service-cta { grid-template-columns: 1fr; }
  .all-services { padding: 24px 22px; }
  .section,
  .values,
  .sectors,
  .feature-band,
  .gallery-band,
  .address-band,
  .quote-section { margin-top: 80px; }
  .feature-copy { padding-right: 0; }
  .feature-image img { height: 420px; }
  .gallery-band { padding: 56px 22px; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip img,
  .gallery-strip img:nth-child(even) { height: 280px; margin-top: 0; }
  .post-grid,
  .address-band {
    grid-template-columns: 1fr;
  }
  .post-grid {
    grid-auto-rows: 300px;
  }
  .post-card.tall,
  .post-card.wide {
    grid-row: auto;
    grid-column: auto;
  }
  .address-band {
    width: min(100% - 28px, var(--container));
    padding: 34px 22px;
  }
  .quote-section { padding-top: 80px; }
  .quote-form { padding: 22px; }
  .breadcrumbs { left: 18px; right: 18px; bottom: 18px; justify-content: center; }
  .service-hero .hero-content { padding-bottom: 100px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  h1 { font-size: 44px; }
  h2 { font-size: 33px; }
  .lang-btn .lang-name { display: none; }
  .lang-btn { padding: 0 10px; }
  .brand-word small { display: none; }
  .brand-word strong { font-size: 16px; }
  .brand-mark { height: 38px; }
  .brand { gap: 8px; }
  .hero-buttons,
  .btn { width: 100%; }
  .quick-contact strong { font-size: 17px; }
  .detail-card { padding: 24px; }
  .floating-whatsapp { right: 16px; bottom: 16px; }
}
