:root {
  --ink: #172033;
  --ink-strong: #0e1624;
  --muted: #5c6676;
  --line: #cfd6da;
  --paper: #eef1f0;
  --soft: #e3e8e9;
  --navy: #2749a5;
  --yellow: #f2bd2f;
  --stone: #868b91;
  --rust: #9a5539;
  --shadow: 0 18px 50px rgba(14, 22, 36, 0.16);
  --radius: 6px;
  --motion-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --motion-fast: 180ms;
  --motion-medium: 560ms;
  --motion-slow: 700ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

[id] {
  scroll-margin-top: 92px;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(1.04);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes certificateAutoSlide {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(var(--certificate-scroll-distance, 0px) * -1), 0, 0);
  }
}

body.is-motion-ready .animate-in {
  opacity: 0;
  transform: translate3d(0, 38px, 0);
  transition:
    opacity var(--motion-medium) var(--motion-ease),
    transform var(--motion-medium) var(--motion-ease);
  will-change: opacity, transform;
}

body.is-motion-ready .animate-in.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.is-motion-ready .animate-in .stagger-item {
  transition:
    opacity var(--motion-medium) var(--motion-ease) var(--stagger-delay, 0ms),
    transform var(--motion-medium) var(--motion-ease) var(--stagger-delay, 0ms),
    box-shadow var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
  will-change: opacity, transform;
}

body.is-motion-ready .animate-in:not(.is-visible) .stagger-item {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
}

@media (prefers-reduced-motion: no-preference) {
  [data-hero-motion] .hero-image {
    animation: heroImageIn var(--motion-slow) var(--motion-ease) 80ms both;
    transform-origin: center;
  }

  [data-hero-motion] .hero-content > * {
    animation: heroTextIn var(--motion-slow) var(--motion-ease) both;
  }

  [data-hero-motion] .hero-content > p {
    animation-delay: 120ms;
  }

  [data-hero-motion] .hero-actions {
    animation-delay: 240ms;
  }

}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 8px 44px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 221, 230, 0.82);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 146px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  gap: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink-strong);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.language-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 8px;
  color: var(--muted);
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.language-link img {
  width: 24px;
  height: 16px;
  border: 1px solid rgba(14, 22, 36, 0.12);
}

.language-link:hover,
.language-link:focus-visible,
.language-link.is-active {
  background: var(--soft);
  color: var(--ink-strong);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
}

.menu-toggle span + span {
  margin-top: 3px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
  width: min(1240px, calc(100% - 88px));
  min-height: 640px;
  margin: 0 auto;
  padding: 54px 0 62px;
  overflow: visible;
  color: var(--ink);
}

.hero-image {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink-strong);
  font-size: 3.7rem;
  line-height: 1.02;
  font-weight: 860;
}

.hero-logo-title {
  max-width: 520px;
  line-height: 0;
}

.hero-logo-title img {
  display: block;
  width: min(520px, 100%);
  height: auto;
}

.hero p {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--yellow);
  color: var(--ink-strong);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffd15b;
}

.button-secondary {
  color: var(--ink-strong);
  border-color: var(--line);
  background: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--navy);
  background: var(--soft);
}

.capacity-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1120px, 100%);
  margin: 0 auto 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.capacity-summary div {
  min-width: 0;
  padding: 20px 22px;
}

.capacity-summary div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.capacity-summary dt {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.capacity-summary dd {
  margin: 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.capacity-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 22px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.section {
  padding: 88px 56px;
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
}

.section-heading.compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading h2,
.intro-copy h2,
.material-copy h2,
.fleet-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: 2.7rem;
  line-height: 1.05;
  font-weight: 850;
}

.section-heading p,
.intro-copy p,
.material-copy p,
.fleet-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-heading.compact p {
  max-width: 520px;
  margin: 0;
}

.product-preview {
  padding-top: 54px;
  padding-bottom: 64px;
  background: var(--soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.product-card {
  min-height: 198px;
  padding: 24px;
  border: 1px solid rgba(216, 221, 230, 0.84);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 28px rgba(14, 22, 36, 0.08);
}

.product-index {
  display: block;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-card h3 {
  margin: 22px 0 10px;
  color: var(--ink-strong);
  font-size: 1.34rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.intro-section,
.material-section,
.fleet-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
  padding-right: 0;
  padding-left: 0;
}

.intro-copy p + p {
  margin-top: 16px;
}

.image-panel {
  margin: 0;
}

.image-panel img,
.material-image img,
.fleet-gallery img,
.site-card img {
  width: 100%;
}

.image-panel img {
  height: auto;
  box-shadow: var(--shadow);
}

.image-panel figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.material-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  padding-top: 30px;
}

.material-image img {
  height: auto;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  line-height: 1.6;
}

.check-list li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  content: "";
}

.sites-section {
  background: var(--ink-strong);
  color: #fff;
}

.sites-section .section-heading h2 {
  color: #fff;
}

.sites-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.site-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.site-card img {
  height: auto;
}

.site-card-body {
  padding: 28px;
}

.site-card h3 {
  margin: 0;
  color: var(--yellow);
  font-size: 1.65rem;
}

.site-card p {
  margin: 13px 0 24px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.68;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.spec-list div {
  min-width: 0;
  padding: 14px 12px;
  background: rgba(14, 22, 36, 0.76);
}

.spec-list dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 780;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 5px 0 0;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 850;
}

.map-section {
  width: min(1120px, 100%);
  margin: 42px auto 0;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.map-heading h3 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
}

.map-heading p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.map-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.map-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.map-card h4 {
  margin: 0;
  color: var(--yellow);
  font-size: 1.16rem;
}

.map-card a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 820;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
}

.urla-gallery-section {
  background: #fff;
}

.urla-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.urla-gallery-grid figure {
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 12px 34px rgba(14, 22, 36, 0.08);
}

.urla-gallery-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.fleet-section {
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
}

.fleet-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.fleet-gallery img {
  height: auto;
}

.quality-section {
  background: var(--soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.process-grid article {
  min-height: 214px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process-grid span {
  color: var(--yellow);
  font-size: 2rem;
  font-weight: 900;
}

.process-grid h3 {
  margin: 24px 0 8px;
  color: var(--ink-strong);
  font-size: 1.16rem;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.certificates-section {
  background: var(--paper);
  overflow: hidden;
}

.quality-documents-section {
  padding-bottom: 44px;
}

.quality-documents-section + .certificates-section {
  padding-top: 44px;
}

.certificate-carousel {
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-color: var(--navy) rgba(39, 73, 165, 0.14);
  scrollbar-width: thin;
}

.certificate-carousel:focus-visible {
  outline: 3px solid rgba(39, 73, 165, 0.32);
  outline-offset: 6px;
}

.certificate-carousel::-webkit-scrollbar {
  height: 9px;
}

.certificate-carousel::-webkit-scrollbar-track {
  background: rgba(39, 73, 165, 0.12);
  border-radius: 999px;
}

.certificate-carousel::-webkit-scrollbar-thumb {
  background: var(--navy);
  border-radius: 999px;
}

.certificate-grid {
  display: flex;
  gap: 22px;
  width: max-content;
  margin: 0;
  padding: 4px 0 18px;
  overflow: visible;
  --certificate-scroll-distance: 0px;
  --certificate-scroll-duration: 48s;
}

.certificate-grid.is-certificate-carousel {
  animation: none;
  will-change: auto;
}

.certificate-card {
  flex: 0 0 min(560px, calc(100vw - 48px));
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.certificate-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(270px, 35vw, 420px);
  background: #fff;
}

.certificate-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.certificate-card figcaption {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 13px;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.45;
}

.certificate-card figcaption strong {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 860;
}

.references-section {
  background: var(--soft);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.reference-grid article {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(14, 22, 36, 0.08);
}

.reference-logo-frame {
  display: grid;
  place-items: center;
  width: 172px;
  height: 92px;
  padding: 0;
  border: 1px solid rgba(31, 41, 55, 0.1);
  border-radius: calc(var(--radius) - 2px);
  background: #fff;
  transition: border-color var(--motion-fast) ease;
}

.reference-logo-frame.is-dark-logo {
  background: var(--ink-strong);
  border-color: rgba(255, 255, 255, 0.18);
}

.reference-logo-frame.is-screenshot-logo {
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-color: rgba(31, 41, 55, 0.12);
}

.reference-logo-frame.is-wide-logo {
  padding: 0;
}

.reference-logo-pair {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 34px);
  gap: 6px;
  align-content: center;
  justify-items: center;
}

.reference-logo-frame img {
  display: block;
  width: 170px;
  max-width: 100%;
  height: 90px;
  max-height: 100%;
  object-fit: contain;
}

.reference-logo-frame.is-screenshot-logo > img {
  width: 170px;
  height: 90px;
}

.reference-logo-pair img:first-child {
  width: 148px;
  height: 34px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.reference-logo-pair img:last-child {
  width: 148px;
  height: 34px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.reference-logo-frame.is-wide-logo img {
  max-height: 100%;
}

.contact-section {
  align-items: start;
  padding-top: 92px;
  padding-bottom: 92px;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-details article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(14, 22, 36, 0.08);
}

.contact-details span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-details a,
.contact-details address {
  margin: 0;
  color: var(--ink-strong);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 780;
  line-height: 1.55;
}

.contact-map-link {
  width: fit-content;
  color: var(--navy) !important;
  font-size: 0.92rem !important;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-strong);
  font-size: 0.86rem;
  font-weight: 780;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(39, 73, 165, 0.12);
}

.contact-form button {
  width: fit-content;
  margin-top: 4px;
}

.product-card,
.site-card,
.map-card,
.urla-gallery-grid figure,
.process-grid article,
.certificate-card,
.reference-grid article,
.contact-details article {
  transition:
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.image-panel img,
.material-image img,
.fleet-gallery img,
.site-card img,
.urla-gallery-grid img {
  transition: transform var(--motion-slow) var(--motion-ease);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .product-card:hover,
  .urla-gallery-grid figure:hover,
  .process-grid article:hover,
  .reference-grid article:hover,
  .contact-details article:hover {
    border-color: rgba(39, 73, 165, 0.24);
    box-shadow: 0 20px 44px rgba(14, 22, 36, 0.15);
    transform: translateY(-6px);
  }

  .site-card:hover,
  .map-card:hover {
    border-color: rgba(242, 189, 47, 0.42);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-6px);
  }

  .reference-grid article:hover .reference-logo-frame {
    border-color: rgba(39, 73, 165, 0.28);
  }

  .image-panel:hover img,
  .material-image:hover img,
  .site-card:hover img,
  .urla-gallery-grid figure:hover img,
  .fleet-gallery img:hover {
    transform: scale(1.025);
  }
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--navy);
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 44px;
  color: var(--muted);
  background: #fff;
  border-top: 4px solid var(--yellow);
}

.site-footer img {
  width: 172px;
  height: auto;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  text-align: right;
}

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

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

  .animate-in,
  .stagger-item,
  [data-hero-motion] .hero-image,
  [data-hero-motion] .hero-content > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1080px) {
  .site-header {
    padding: 8px 24px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.75rem;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 48px));
    min-height: 0;
    padding: 44px 0 60px;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-image {
    grid-column: 1;
    grid-row: 2;
    margin-top: 30px;
  }

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

  .section-heading.compact,
  .intro-section,
  .material-section,
  .fleet-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 10px;
  }

  .site-nav a::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .brand img {
    width: 148px;
  }

  .hero-content {
    width: 100%;
    padding: 0;
  }

  .hero h1 {
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .capacity-summary,
  .product-grid,
  .site-grid,
  .map-grid,
  .urla-gallery-grid,
  .reference-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .capacity-summary div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .section {
    padding: 66px 22px;
  }

  .section-heading h2,
  .intro-copy h2,
  .material-copy h2,
  .fleet-copy h2,
  .contact-copy h2 {
    font-size: 2.05rem;
    line-height: 1.12;
  }

  .section-heading.compact {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .intro-section,
  .material-section,
  .fleet-section,
  .contact-section {
    width: calc(100% - 36px);
    padding-right: 0;
    padding-left: 0;
  }

  .spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-heading {
    display: grid;
    align-items: start;
  }

  .map-card-header {
    align-items: start;
    flex-direction: column;
  }

  .map-card iframe {
    height: 320px;
  }

  .fleet-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .fleet-gallery img,
  .fleet-gallery img:first-child,
  .fleet-gallery img:nth-child(2),
  .fleet-gallery img:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    height: auto;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    align-items: start;
    padding: 26px 22px;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 500px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand img {
    width: 132px;
  }

  .hero {
    width: calc(100% - 32px);
    padding: 34px 0 46px;
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .capacity-summary {
    margin-bottom: 22px;
  }

  .capacity-summary div {
    padding: 13px 20px;
  }

  .capacity-summary dd {
    font-size: 1.12rem;
  }

  .product-card,
  .site-card-body,
  .reference-grid article,
  .process-grid article {
    padding: 20px;
  }

  .reference-grid article {
    grid-template-columns: none;
    gap: 0;
  }

  .reference-logo-frame {
    width: 172px;
    height: 92px;
  }

  .certificate-card {
    padding: 0;
  }

  .certificate-card a {
    height: 260px;
  }

  .certificate-card figcaption {
    display: grid;
    gap: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .certificate-grid.is-certificate-carousel {
    animation: none;
  }
}


/* Export & logistics section */
.export-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.export-section .section-heading {
  max-width: 1180px;
  margin: 0 auto 32px;
}

.export-section .section-heading p {
  max-width: 1120px;
}

.export-section .feature-grid {
  max-width: 980px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.export-feature-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.export-feature-card h3 {
  margin: 0 0 8px;
}

.export-feature-card p {
  margin: 0;
  max-width: 880px;
}

.export-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(12, 30, 64, 0.16);
}

.product-specs {
  max-width: 980px;
  margin: 36px auto 0;
  overflow-x: auto;
}

.product-specs h3 {
  margin: 0 0 16px;
}

.product-specs table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 30, 64, 0.08);
}

.product-specs th,
.product-specs td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(12, 30, 64, 0.08);
}

.product-specs th {
  font-weight: 800;
  background: rgba(12, 30, 64, 0.04);
}

.product-specs tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 760px) {
  .export-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .export-feature-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
  }

  .export-icon {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }

  .product-specs th,
  .product-specs td {
    padding: 13px 14px;
  }
}

/* Premium export page */
.export-page {
  background: #f5f7fa;
}

.export-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  display: grid;
  align-items: end;
}

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

.export-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 44, 0.82), rgba(8, 20, 44, 0.48), rgba(8, 20, 44, 0.16));
}

.export-hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 120px 7vw;
  color: #fff;
}

.export-hero-overlay h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  margin: 14px 0 22px;
}

.export-hero-overlay p {
  font-size: 19px;
  line-height: 1.75;
  max-width: 720px;
}

.export-kpis {
  max-width: 1180px;
  margin: -64px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.export-kpis div {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(12, 30, 64, 0.14);
}

.export-kpis strong {
  display: block;
  color: var(--primary);
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.export-kpis span {
  color: var(--muted);
  font-weight: 700;
}

.export-split {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.export-split img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(12, 30, 64, 0.14);
}

.export-split h2 {
  margin: 12px 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.export-split p {
  color: var(--muted);
  line-height: 1.8;
}

.export-split .capacity-summary {
  margin-top: 28px;
}

.export-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.export-list li {
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 14px 32px rgba(12, 30, 64, 0.08);
  font-weight: 700;
}

.export-list li::before {
  content: "✓";
  color: var(--primary);
  margin-right: 10px;
}

.export-cta {
  max-width: 1000px;
  margin: 0 auto 80px;
  text-align: center;
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(12, 30, 64, 0.12);
}

.export-cta h2 {
  font-size: clamp(34px, 5vw, 64px);
  margin: 10px 0 14px;
}

.export-cta p {
  max-width: 720px;
  margin: 0 auto 26px;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .export-hero {
    min-height: 560px;
  }

  .export-kpis,
  .export-split {
    grid-template-columns: 1fr;
  }

  .export-kpis {
    margin-top: 24px;
  }

  .export-split-reverse img {
    order: 2;
  }

  .export-hero-overlay {
    padding: 90px 24px;
  }
}

/* Export page fixes */
.export-page .capacity-summary div {
  background: #ffffff;
  border: 1px solid rgba(12, 30, 64, 0.08);
  border-radius: 18px;
  padding: 24px;
}

.export-page .capacity-summary dt {
  color: #5b6475;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.export-page .capacity-summary dd {
  color: #0d1b39;
  font-size: 30px;
  font-weight: 800;
}

.export-cta .button {
  text-transform: none;
}

/* Export capacity card readability fix */
.export-page .capacity-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.export-page .capacity-summary div {
  min-width: 0;
}

.export-page .capacity-summary dd {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  word-break: normal;
  overflow-wrap: normal;
}

@media (max-width: 1100px) {
  .export-page .capacity-summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Force export capacity cards to readable stacked layout */
.export-page .capacity-summary {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

.export-page .capacity-summary div {
  width: 100% !important;
}

.export-page .capacity-summary dd {
  white-space: normal !important;
  font-size: 30px !important;
  line-height: 1.12 !important;
}

/* Home export CTA */
.export-home-cta {
  max-width: 980px;
  margin: 34px auto 0;
  display: grid;
  gap: 22px;
  justify-items: center;
}

.export-mini-kpis {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.export-mini-kpis span {
  background: #fff;
  border: 1px solid rgba(12, 30, 64, 0.08);
  border-radius: 18px;
  padding: 18px;
  color: var(--muted);
  box-shadow: 0 14px 32px rgba(12, 30, 64, 0.08);
}

.export-mini-kpis strong {
  display: block;
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .export-mini-kpis {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .export-mini-kpis {
    grid-template-columns: 1fr;
  }
}

/* Homepage export visual enhancement */
.export-home-layout {
  max-width: 1180px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.export-home-visual img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(12, 30, 64, 0.14);
}

.export-home-layout .export-home-cta {
  margin: 0;
}

@media (max-width: 900px) {
  .export-home-layout {
    grid-template-columns: 1fr;
  }
}

/* Quality process number color */
.process-card strong,
.quality-card strong,
.quality-step strong {
  color: #1f4ea8 !important;
}

/* Quality process step numbers brand color */
.process-grid article span {
  color: #1f4ea8 !important;
}

/* Replace remaining yellow accents with dark gray */
.contact-card,
.contact-info-card,
.info-card {
  border-left-color: #2f343b !important;
}

.site-footer,
.footer,
footer {
  border-top-color: #2f343b !important;
}

.button.button-primary,
.contact-form button,
.export-home-cta .button,
.hero-actions .button-primary {
  background: #2f343b !important;
  color: #ffffff !important;
  border-color: #2f343b !important;
}

.button.button-primary:hover,
.contact-form button:hover,
.export-home-cta .button:hover,
.hero-actions .button-primary:hover {
  background: #1f2328 !important;
  color: #ffffff !important;
}

.certificate-dot,
.slider-dot,
.carousel-dot {
  border-color: #2f343b !important;
}

/* Contact submit button only */
.contact-form button.button-primary,
button.button-primary[type="submit"] {
  background: #2f343b !important;
  border-color: #2f343b !important;
  color: #ffffff !important;
}

.contact-form button.button-primary:hover,
button.button-primary[type="submit"]:hover {
  background: #1f2328 !important;
  border-color: #1f2328 !important;
  color: #ffffff !important;
}

/* Product grid 6-card layout */
.product-preview .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1200px) {
  .product-preview .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .product-preview .product-grid {
    grid-template-columns: 1fr;
  }
}

.nav-export-link {
  color: #1f4ea8 !important;
  font-weight: 800;
}

/* Machine gallery image sizing */
.machine-gallery img,
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Fleet gallery equal image sizing */
.fleet-gallery img {
  width: 100% !important;
  height: 320px !important;
  object-fit: cover !important;
}

.fleet-gallery img:first-child,
.fleet-gallery img:nth-child(2),
.fleet-gallery img:nth-child(3) {
  height: 320px !important;
}

/* Homepage showcase hero */
.homepage-showcase-hero {
  position: relative;
  max-width: 1180px;
  margin: 34px auto 0;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(12, 30, 64, 0.18);
}

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

.homepage-showcase-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 44, 0.78), rgba(8, 20, 44, 0.36), rgba(8, 20, 44, 0.08));
}

.homepage-showcase-overlay {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 72px;
  color: #fff;
}

.homepage-showcase-overlay h2 {
  color: #fff;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  margin: 14px 0 18px;
}

.homepage-showcase-overlay p {
  color: rgba(255,255,255,.9);
  font-size: 19px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .homepage-showcase-hero {
    margin: 20px 16px 0;
    min-height: 460px;
    border-radius: 24px;
  }

  .homepage-showcase-overlay {
    padding: 42px 24px;
  }
}

/* Homepage showcase hero */
.homepage-showcase-hero {
  position: relative;
  max-width: 1180px;
  margin: 34px auto 0;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(12, 30, 64, 0.18);
}

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

.homepage-showcase-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 20, 44, 0.78), rgba(8, 20, 44, 0.36), rgba(8, 20, 44, 0.08));
}

.homepage-showcase-overlay {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 72px;
  color: #fff;
}

.homepage-showcase-overlay h2 {
  color: #fff;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1;
  margin: 14px 0 18px;
}

.homepage-showcase-overlay p {
  color: rgba(255,255,255,.9);
  font-size: 19px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .homepage-showcase-hero {
    margin: 20px 16px 0;
    min-height: 460px;
    border-radius: 24px;
  }

  .homepage-showcase-overlay {
    padding: 42px 24px;
  }
}

/* Showcase image only */
.homepage-showcase-hero {
  min-height: 620px !important;
}

.homepage-showcase-overlay {
  display: none !important;
}

/* Homepage hero image fixes */
.homepage-showcase-hero::after {
  display: none !important;
}

.homepage-showcase-hero {
  min-height: auto !important;
  height: auto !important;
}

.homepage-showcase-hero img {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* Hide duplicate large hero logo on mobile only */
@media (max-width: 768px) {
  .hero-logo-title {
    display: none !important;
  }
}

/* Corporate footer */
.corporate-footer {
  display: block;
  padding: 56px 7vw 28px;
  background: #111820;
  color: #ffffff;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 34px;
}

.footer-brand img {
  max-width: 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 16px;
  margin-bottom: 18px;
}

.corporate-footer h3 {
  color: #ffffff;
  font-size: 15px;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.corporate-footer p,
.corporate-footer a,
.corporate-footer span {
  color: rgba(255, 255, 255, .78);
}

.corporate-footer a,
.corporate-footer span {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
}

.corporate-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 1180px;
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom span {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .corporate-footer {
    padding: 34px 22px calc(42px + env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 0;
  }

  .footer-grid > div {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .footer-grid > div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .footer-brand img {
    max-width: 168px;
    margin: 0 0 14px;
    padding: 9px 12px;
    border-radius: 12px;
  }

  .footer-brand p {
    max-width: 320px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .92rem;
    line-height: 1.55;
    text-align: left;
  }

  .corporate-footer h3 {
    margin-bottom: 12px;
    font-size: 13px;
    letter-spacing: .12em;
  }

  .corporate-footer a,
  .corporate-footer span {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.45;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
    margin-top: 4px;
    padding-top: 18px;
  }

  .footer-bottom span {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* Mobile quote CTA */
.mobile-quote-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-quote-cta {
    display: flex;
    justify-content: center;
    padding: 24px 20px 8px;
  }

  .mobile-quote-cta .button {
    width: 100%;
    justify-content: center;
    background: #2f343b !important;
    color: #ffffff !important;
    border-color: #2f343b !important;
  }
}

/* Hide top hero quote button on mobile only */
@media (max-width: 768px) {
  .hero-actions {
    display: none !important;
  }
}

/* Fix hamburger lines stacking */
.menu-toggle {
  flex-direction: column;
}

.menu-toggle span {
  flex: 0 0 auto;
}

/* Final hamburger spacing override */
@media (max-width: 980px) {
  .menu-toggle {
    row-gap: 3px !important;
  }

  .menu-toggle span + span {
    margin-top: 0 !important;
  }
}

/* Clean mobile hamburger icon */
@media (max-width: 980px) {
  .menu-toggle {
    font-size: 0 !important;
    line-height: 1 !important;
  }

  .menu-toggle span {
    display: none !important;
  }

  .menu-toggle::before {
    content: "☰";
    display: block;
    font-size: 28px;
    line-height: 1;
    color: #111820;
    font-weight: 500;
  }
}

/* Refine mobile header controls */
@media (max-width: 768px) {

  .language-switcher {
    gap: 4px !important;
  }

  .language-link {
    padding: 4px 8px !important;
    font-size: 12px !important;
  }

  .language-link img {
    width: 14px !important;
    height: 14px !important;
  }

  .menu-toggle {
    width: 40px !important;
    height: 40px !important;
  }

  .menu-toggle::before {
    font-size: 24px !important;
  }
}

/* Shared horizontal gallery carousels */
.izmir-gallery-section,
.urla-gallery-section,
.machinery-gallery-section,
.materials-gallery-section {
  overflow: hidden;
  padding-left: 7vw;
  padding-right: 7vw;
}

.izmir-gallery-section .section-heading,
.urla-gallery-section .section-heading,
.machinery-gallery-section .section-heading,
.materials-gallery-section .section-heading {
  display: block;
  max-width: 1180px;
  margin: 0 auto;
}

.izmir-gallery-section .section-heading p,
.urla-gallery-section .section-heading p,
.machinery-gallery-section .section-heading p,
.materials-gallery-section .section-heading p {
  max-width: 760px;
  margin-top: 14px;
}

.izmir-carousel-wrap,
.urla-carousel-wrap,
.machinery-carousel-wrap,
.materials-carousel-wrap {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  width: 100%;
  margin: 34px auto 0;
}

.izmir-carousel,
.urla-carousel,
.machinery-carousel,
.materials-carousel {
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 4px 22px;
  scroll-behavior: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.izmir-carousel::-webkit-scrollbar,
.urla-carousel::-webkit-scrollbar,
.machinery-carousel::-webkit-scrollbar,
.materials-carousel::-webkit-scrollbar {
  display: none;
}

.izmir-carousel-card,
.urla-carousel-card,
.machinery-carousel-card,
.materials-carousel-card {
  flex: 0 0 min(620px, 82vw);
  width: min(620px, 82vw);
  height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 32, .12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(17, 24, 32, .12);
}

.izmir-carousel-card img,
.urla-carousel-card img,
.machinery-carousel-card img,
.materials-carousel-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.machinery-carousel-card img {
  object-fit: contain;
  object-position: center center;
  background: #fff;
}

.izmir-carousel-btn,
.urla-carousel-btn,
.machinery-carousel-btn,
.materials-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #111820;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(17, 24, 32, .22);
}

.izmir-carousel-btn.prev,
.urla-carousel-btn.prev,
.machinery-carousel-btn.prev,
.materials-carousel-btn.prev {
  left: -18px;
}

.izmir-carousel-btn.next,
.urla-carousel-btn.next,
.machinery-carousel-btn.next,
.materials-carousel-btn.next {
  right: -18px;
}

@media (max-width: 768px) {
  .izmir-gallery-section,
  .urla-gallery-section,
  .machinery-gallery-section,
  .materials-gallery-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .izmir-carousel-wrap,
  .urla-carousel-wrap,
  .machinery-carousel-wrap,
  .materials-carousel-wrap {
    margin-top: 24px;
  }

  .izmir-carousel,
  .urla-carousel,
  .machinery-carousel,
  .materials-carousel {
    gap: 14px;
    padding: 4px 0 18px;
  }

  .izmir-carousel-card,
  .urla-carousel-card,
  .machinery-carousel-card,
  .materials-carousel-card {
    flex: 0 0 86vw;
    width: 86vw;
    height: 260px;
    border-radius: 16px;
  }

  .izmir-carousel-btn,
  .urla-carousel-btn,
  .machinery-carousel-btn,
  .materials-carousel-btn {
    display: none;
  }
}
