:root {
  --glass-ink: #101820;
  --glass-ink-soft: #56616b;
  --glass-paper: #f4f5f2;
  --glass-paper-strong: #ffffff;
  --glass-navy: #0c1722;
  --glass-navy-soft: #172634;
  --glass-blue: #204fbf;
  --glass-blue-hover: #153b98;
  --glass-yellow: #f1c232;
  --glass-line: rgba(16, 24, 32, 0.14);
  --glass-line-light: rgba(255, 255, 255, 0.2);
  --glass-panel: rgba(13, 22, 31, 0.72);
  --glass-panel-strong: rgba(13, 22, 31, 0.88);
  --glass-shadow: 0 24px 70px rgba(5, 13, 20, 0.2);
  --glass-shadow-soft: 0 18px 48px rgba(5, 13, 20, 0.1);
  --glass-radius: 28px;
  --glass-radius-small: 16px;
  --page-gutter: clamp(20px, 5vw, 76px);
  --page-max: 1320px;
}

html {
  color-scheme: light;
  background: var(--glass-paper);
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 26%, rgba(32, 79, 191, 0.055), transparent 28rem),
    var(--glass-paper);
  color: var(--glass-ink);
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

::selection {
  background: rgba(32, 79, 191, 0.2);
  color: var(--glass-ink);
}

:focus-visible {
  outline: 3px solid var(--glass-yellow);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  right: max(16px, calc((100vw - 1480px) / 2));
  left: max(16px, calc((100vw - 1480px) / 2));
  min-height: 68px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(13, 22, 31, 0.74);
  box-shadow:
    0 18px 48px rgba(4, 10, 16, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  backdrop-filter: blur(24px) saturate(135%);
}

.site-header::before {
  position: absolute;
  inset: 0 12% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: "";
}

.brand img {
  width: 126px;
  max-height: 46px;
  padding: 5px 9px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  object-fit: contain;
}

.header-actions {
  gap: clamp(8px, 1.4vw, 20px);
}

.site-nav {
  gap: clamp(8px, 1.15vw, 18px);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.65rem, 0.62vw, 0.76rem);
  font-weight: 720;
  text-transform: none;
}

.site-nav a {
  padding: 10px 0;
  white-space: nowrap;
}

.site-nav a::after {
  height: 1px;
  background: rgba(255, 255, 255, 0.84);
}

.site-nav a[href*="#iletisim"] {
  min-height: 42px;
  margin-left: 2px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: linear-gradient(135deg, #275ccf, #173f9f);
  box-shadow:
    0 12px 24px rgba(12, 50, 142, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
  display: inline-flex;
  align-items: center;
}

.site-nav a[href*="#iletisim"]::after {
  display: none;
}

.site-nav a[href*="#iletisim"]:hover,
.site-nav a[href*="#iletisim"]:focus-visible {
  background: linear-gradient(135deg, #3269de, #204dac);
}

.site-header .language-switcher {
  gap: 2px;
  padding: 3px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.site-header .language-link {
  min-height: 34px;
  padding: 0 7px;
  color: rgba(255, 255, 255, 0.68);
}

.site-header .language-link img {
  display: none;
}

.site-header .language-link:hover,
.site-header .language-link:focus-visible,
.site-header .language-link.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.menu-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  text-transform: none;
}

.button.button-primary,
.contact-form button.button-primary,
button.button-primary[type="submit"],
.export-home-cta .button,
.hero-actions .button-primary {
  border-color: var(--glass-blue) !important;
  background: linear-gradient(135deg, #285dce, #173f9e) !important;
  box-shadow:
    0 14px 30px rgba(22, 65, 166, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff !important;
}

.button.button-primary:hover,
.button.button-primary:focus-visible,
.contact-form button.button-primary:hover,
button.button-primary[type="submit"]:hover,
.export-home-cta .button:hover,
.hero-actions .button-primary:hover {
  border-color: var(--glass-blue-hover) !important;
  background: linear-gradient(135deg, #3269df, #17419f) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.button.button-primary:disabled,
.contact-form button.button-primary:disabled {
  border-color: #aeb5be !important;
  background: #aeb5be !important;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(12, 22, 31, 0.26);
  color: #fff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.eyebrow {
  color: var(--glass-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Full-bleed quarry hero and quote console */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(540px, 1fr) auto;
  gap: 34px;
  align-items: end;
  width: 100%;
  min-height: 970px;
  margin: 0;
  padding: 132px var(--page-gutter) 40px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 15, 0.9) 0%, rgba(5, 10, 15, 0.66) 35%, rgba(5, 10, 15, 0.18) 72%),
    linear-gradient(0deg, rgba(5, 10, 15, 0.78) 0%, transparent 48%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 260px;
  background: linear-gradient(0deg, rgba(4, 10, 16, 0.78), transparent);
  content: "";
  pointer-events: none;
}

.hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  grid-column: auto;
  grid-row: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  box-shadow: none;
  filter: saturate(0.78) contrast(1.04) brightness(0.82);
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  width: min(640px, 100%);
  max-width: var(--page-max);
  margin: 8px 0 0;
}

.hero h1 {
  max-width: 700px;
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(3.25rem, 6vw, 6rem);
  font-weight: 820;
  line-height: 0.94;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero .hero-eyebrow {
  color: var(--glass-yellow);
}

.hero .hero-lede {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.6;
}

.hero .hero-context {
  max-width: 620px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-actions {
  gap: 12px;
  margin-top: 28px;
}

.hero-console {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(220px, 0.72fr) minmax(280px, 1.08fr);
  grid-column: 1;
  grid-row: 2;
  gap: 0;
  width: min(var(--page-max), 100%);
  margin: 0 auto;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.13), transparent 38%),
    var(--glass-panel);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(26px) saturate(135%);
  backdrop-filter: blur(26px) saturate(135%);
}

.hero-console::before {
  position: absolute;
  inset: 0 14% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  content: "";
}

.console-products,
.console-tonnage,
.console-logistics {
  min-width: 0;
  padding: 4px 22px;
}

.console-step {
  transition: opacity 180ms ease;
}

.console-step.is-locked {
  opacity: 0.58;
}

.console-step.is-locked :is(button, input) {
  cursor: not-allowed;
}

.console-products {
  padding-left: 4px;
}

.console-tonnage {
  display: grid;
  align-content: start;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.console-logistics {
  padding-right: 4px;
}

.console-label {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-choice-list,
.delivery-choice-list {
  display: grid;
  gap: 6px;
}

.quote-choice,
.delivery-choice {
  width: 100%;
  min-height: 38px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 0.76rem;
  text-align: left;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.quote-choice {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
}

.quote-choice:hover,
.quote-choice:focus-visible,
.delivery-choice:not(:disabled):hover,
.delivery-choice:not(:disabled):focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.quote-choice.is-selected,
.delivery-choice.is-selected {
  border-color: rgba(111, 157, 255, 0.8);
  background: rgba(37, 83, 190, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  color: #fff;
}

.quote-swatch {
  display: block;
  width: 36px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  background-position: center;
  background-size: cover;
}

.swatch-fine,
.swatch-medium,
.swatch-coarse {
  background-image: url("assets/optimized/aggregate-closeup-800.webp");
}

.swatch-fine {
  background-position: 20% 34%;
}

.swatch-medium {
  background-position: 52% 48%;
}

.swatch-coarse {
  background-position: 86% 62%;
}

.swatch-stabilized {
  background-image: url("assets/optimized/social/bemas-road-subbase.jpg");
}

.swatch-fill {
  background-image: url("assets/optimized/material-stockpiles-800.webp");
}

.swatch-riprap {
  background-image: url("assets/optimized/excavator-rock.webp");
}

.tonnage-label {
  margin: 4px 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  line-height: 1.45;
}

.tonnage-input-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 68px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.tonnage-input-shell:focus-within {
  border-color: rgba(111, 157, 255, 0.82);
  background: rgba(37, 83, 190, 0.18);
  box-shadow: inset 0 0 0 1px rgba(111, 157, 255, 0.18);
}

.tonnage-input-shell input {
  width: 100%;
  min-width: 0;
  padding: 12px 0;
  appearance: textfield;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.tonnage-input-shell input::-webkit-inner-spin-button,
.tonnage-input-shell input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.tonnage-input-shell input::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.tonnage-input-shell input:disabled {
  color: rgba(255, 255, 255, 0.5);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.tonnage-input-shell span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
}

.console-apply {
  width: 100%;
  padding-right: 14px;
  padding-left: 14px;
  font-size: 0.78rem;
}

.delivery-choice {
  display: grid;
  gap: 3px;
  min-height: 58px;
  padding: 10px;
  border-color: transparent;
  background: transparent;
}

.delivery-choice:disabled {
  cursor: not-allowed;
}

.delivery-choice strong {
  color: #fff;
  font-size: 0.78rem;
}

.delivery-choice span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.67rem;
}

.quote-console-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 8px 0 -8px;
  color: #dbe7ff;
  font-size: 0.76rem;
  text-align: center;
}

.console-order-actions {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 4px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.console-order-actions .console-apply {
  flex: 0 1 460px;
}

.console-order-actions .quote-console-status {
  flex: 1;
  margin: 0;
  text-align: left;
}

.quote-console-status:empty {
  display: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 24px 0;
  border-bottom: 1px solid var(--glass-line);
  background: var(--glass-paper);
}

.trust-strip div {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 5px clamp(12px, 2vw, 28px);
}

.trust-strip div + div {
  border-left: 1px solid var(--glass-line);
}

.trust-strip strong {
  color: var(--glass-ink);
  font-size: 0.84rem;
}

.trust-strip span {
  color: var(--glass-ink-soft);
  font-size: 0.74rem;
}

/* Editorial sections */
.section {
  padding: clamp(70px, 8vw, 118px) var(--page-gutter);
}

.section-heading {
  width: min(var(--page-max), 100%);
  margin-bottom: 42px;
}

.section-heading.compact {
  align-items: end;
}

.section-heading h2,
.intro-copy h2,
.material-copy h2,
.fleet-copy h2,
.contact-copy h2 {
  color: var(--glass-ink);
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.section-heading p,
.intro-copy p,
.material-copy p,
.fleet-copy p,
.contact-copy p {
  color: var(--glass-ink-soft);
  line-height: 1.72;
}

.intro-section,
.material-section,
.fleet-section,
.contact-section {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  gap: clamp(32px, 6vw, 84px);
}

.intro-section {
  padding-top: 110px;
  padding-bottom: 94px;
}

.image-panel img,
.material-image img,
.fleet-gallery img,
.site-card img,
.export-home-visual img {
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow-soft);
}

.image-panel {
  position: relative;
}

.image-panel::after {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 38%;
  height: 38%;
  border-right: 1px solid rgba(32, 79, 191, 0.38);
  border-bottom: 1px solid rgba(32, 79, 191, 0.38);
  border-radius: 0 0 34px;
  content: "";
  pointer-events: none;
}

.product-preview {
  position: relative;
  padding-top: 96px;
  padding-bottom: 88px;
  border-top: 1px solid var(--glass-line);
  border-bottom: 1px solid var(--glass-line);
  background: #fff;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(var(--page-max), 100%);
  border-top: 1px solid var(--glass-line);
  border-bottom: 1px solid var(--glass-line);
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 20px;
  min-height: 190px;
  padding: 24px;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.product-card:nth-child(-n + 3) {
  border-bottom: 1px solid var(--glass-line);
}

.product-card:not(:nth-child(3n)) {
  border-right: 1px solid var(--glass-line);
}

.product-card::before {
  grid-row: 1 / 4;
  width: 112px;
  height: 142px;
  border-radius: 14px;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 32, 0.08);
  content: "";
}

.product-card:nth-child(1)::before,
.product-card:nth-child(2)::before {
  background-image: url("assets/optimized/aggregate-closeup-800.webp");
}

.product-card:nth-child(3)::before {
  background-image: url("assets/optimized/social/bemas-road-subbase.jpg");
}

.product-card:nth-child(4)::before {
  background-image: url("assets/optimized/excavator-rock.webp");
}

.product-card:nth-child(5)::before {
  background-image: url("assets/optimized/material-stockpiles-800.webp");
}

.product-card:nth-child(6)::before {
  background-image: url("assets/optimized/showcase/aggregate-stockpile-logistics.webp");
}

.product-index {
  grid-column: 2;
  color: var(--glass-blue);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.product-card h3 {
  grid-column: 2;
  margin: 8px 0 7px;
  color: var(--glass-ink);
  font-size: 1.12rem;
}

.product-card h3 + h3 {
  display: none;
}

.product-card p {
  grid-column: 2;
  color: var(--glass-ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.product-specs {
  width: min(880px, 100%);
  margin: 50px auto 0;
}

.product-specs h3 {
  color: var(--glass-ink);
  font-size: 1.25rem;
}

.product-specs table {
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: var(--glass-radius-small);
  background: #fff;
}

.product-specs th {
  background: var(--glass-navy);
  color: #fff;
}

.product-specs th,
.product-specs td {
  border-color: rgba(16, 24, 32, 0.1);
}

.local-supply-links {
  width: min(var(--page-max), 100%);
  margin-top: 34px;
}

.local-supply-links a {
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  background: #fff;
  color: var(--glass-ink);
  box-shadow: none;
}

.local-supply-links a:hover,
.local-supply-links a:focus-visible {
  border-color: rgba(32, 79, 191, 0.46);
  background: #edf2ff;
  color: var(--glass-blue);
}

.export-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(71, 111, 184, 0.18), transparent 28rem),
    var(--glass-navy);
  color: #fff;
}

.export-section .section-heading h2,
.export-section .section-heading p,
.export-section .eyebrow {
  color: #fff;
}

.export-section .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.feature-grid {
  width: min(var(--page-max), 100%);
}

.feature-card,
.export-feature-card {
  border: 1px solid var(--glass-line-light);
  border-radius: var(--glass-radius-small);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: #fff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.feature-card h3,
.export-feature-card h3 {
  color: #fff;
}

.feature-card p,
.export-feature-card p {
  color: rgba(255, 255, 255, 0.64);
}

.export-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--glass-yellow);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.export-home-layout {
  width: min(var(--page-max), 100%);
  max-width: var(--page-max);
  gap: 46px;
}

.export-home-visual img {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.export-mini-kpis span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.66);
}

.export-mini-kpis strong {
  color: #fff;
}

.material-section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.material-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  padding-left: 1.15rem;
  list-style: disc;
}

.check-list li {
  padding-left: 6px;
}

.check-list li::marker {
  color: var(--glass-blue);
}

.check-list li::before {
  display: none;
}

.materials-gallery-section {
  padding-top: 32px;
  padding-bottom: 96px;
}

.materials-carousel-wrap,
.certificate-carousel {
  width: min(var(--page-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.materials-carousel-card img,
.certificate-card,
.certificate-card img {
  border-radius: var(--glass-radius-small);
}

.materials-carousel-btn,
.certificate-carousel-btn,
.izmir-carousel-btn,
.urla-carousel-btn,
.machinery-carousel-btn {
  border-radius: 50%;
  background: rgba(12, 23, 34, 0.88);
  color: #fff;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

/* The consolidated product gallery keeps the page curated; facility repeats remain in the source. */
.izmir-gallery-section,
.urla-gallery-section,
.machinery-gallery-section {
  display: none;
}

.sites-section {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.025), transparent 45%),
    var(--glass-navy);
  color: #fff;
}

.sites-section .section-heading h2,
.sites-section .section-heading p,
.sites-section h3,
.sites-section h4 {
  color: #fff;
}

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

.site-grid,
.map-section {
  width: min(var(--page-max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.site-card,
.map-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--glass-radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-card img {
  border-radius: 0;
}

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

.site-metric-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
}

.site-metric-card dt,
.site-metric-card dd,
.site-metric-card span {
  color: #fff;
}

.map-section {
  margin-top: 54px;
}

.map-card-header {
  padding: 18px 20px;
}

.map-card-header a {
  color: #aec6ff;
}

.map-card iframe {
  filter: grayscale(0.74) contrast(1.08);
}

.quality-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
}

.process-grid {
  width: min(var(--page-max), 100%);
}

.process-grid article {
  border: 0;
  border-top: 1px solid var(--glass-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.process-grid article span {
  color: var(--glass-blue) !important;
}

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

.quality-documents-section {
  border-top: 1px solid var(--glass-line);
}

.certificate-card {
  border: 1px solid var(--glass-line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--glass-shadow-soft);
}

.certificate-card figcaption {
  color: var(--glass-ink-soft);
}

.references-section {
  padding-top: 76px;
  padding-bottom: 76px;
  border-top: 1px solid var(--glass-line);
  background: #fff;
}

.reference-grid {
  width: min(var(--page-max), 100%);
}

.reference-grid article {
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
  filter: none;
  opacity: 1;
  transition: transform 180ms ease;
}

.reference-grid article:hover {
  transform: translateY(-2px);
}

.contact-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(80px, 9vw, 130px) var(--page-gutter);
  background:
    radial-gradient(circle at 78% 18%, rgba(64, 104, 175, 0.22), transparent 30rem),
    var(--glass-navy);
  color: #fff;
}

.contact-copy,
.contact-form {
  width: 100%;
  max-width: 640px;
}

.contact-copy {
  justify-self: end;
}

.contact-copy h2,
.contact-copy p {
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.66);
}

.contact-details > div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--glass-radius-small);
  background: rgba(255, 255, 255, 0.055);
}

.contact-details span {
  color: rgba(255, 255, 255, 0.54);
}

.contact-details a,
.contact-details address {
  color: #fff;
}

.contact-form {
  justify-self: start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--glass-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.075);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  backdrop-filter: blur(24px) saturate(130%);
}

.contact-form label,
.contact-form .form-note,
.contact-form .form-status {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--glass-ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #7da2ff;
  box-shadow: 0 0 0 3px rgba(125, 162, 255, 0.18);
}

.contact-form .form-note a {
  color: #c7d7ff;
}

.mobile-quote-cta {
  display: none;
}

/* Local landing pages */
.local-page {
  min-height: 100vh;
  padding-top: 104px;
  background:
    radial-gradient(circle at 78% 7%, rgba(32, 79, 191, 0.12), transparent 30rem),
    var(--glass-paper);
}

.breadcrumb {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  padding-top: 24px;
  color: var(--glass-ink-soft);
}

.breadcrumb a {
  color: var(--glass-blue);
}

.local-hero {
  position: relative;
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  min-height: 590px;
  margin-top: 18px;
  padding: 56px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 34px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.12), transparent 52%),
    var(--glass-navy);
  box-shadow: var(--glass-shadow);
  color: #fff;
  isolation: isolate;
}

.local-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(75, 118, 199, 0.2), transparent 26rem),
    linear-gradient(120deg, rgba(11, 21, 31, 0.98), rgba(11, 21, 31, 0.84));
  content: "";
}

.local-hero-copy {
  position: relative;
  z-index: 1;
}

.local-hero-copy h1 {
  color: #fff;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 790;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.local-hero-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
}

.local-hero-media {
  position: relative;
  margin: 0;
}

.local-hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  content: "";
  pointer-events: none;
}

.local-hero-media img {
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  filter: saturate(0.82) contrast(1.04);
}

.local-content {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 34px;
  padding-top: 54px;
  padding-bottom: 110px;
}

.local-article {
  gap: 18px;
}

.local-article section,
.local-card,
.faq-list details,
.local-related a {
  border: 1px solid rgba(16, 24, 32, 0.11);
  background: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 18px 44px rgba(6, 14, 21, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.local-article section {
  padding: clamp(26px, 4vw, 48px);
  border-radius: 24px;
}

.local-article h2 {
  color: var(--glass-ink);
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  letter-spacing: -0.025em;
}

.local-article p,
.local-article li {
  color: var(--glass-ink-soft);
  line-height: 1.8;
}

.local-sidebar {
  top: 108px;
  gap: 14px;
}

.local-card {
  padding: 26px;
  border-top: 1px solid rgba(16, 24, 32, 0.11);
  border-radius: 20px;
}

.local-card:first-child {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.1), transparent),
    var(--glass-navy);
}

.local-card:first-child h2,
.local-card:first-child h3,
.local-card:first-child p,
.local-card:first-child a,
.local-card:first-child li {
  color: #fff;
}

.local-card:first-child p,
.local-card:first-child li {
  color: rgba(255, 255, 255, 0.66);
}

.local-related {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.local-related a {
  min-height: 92px;
  border-left: 1px solid rgba(16, 24, 32, 0.11);
  border-radius: 14px;
  color: var(--glass-ink);
}

.local-related a:hover,
.local-related a:focus-visible {
  border-color: rgba(32, 79, 191, 0.4);
  background: #edf2ff;
  color: var(--glass-blue);
}

.faq-list details {
  border-radius: 14px;
}

.faq-list details[open] {
  border-color: rgba(32, 79, 191, 0.34);
  background: #fff;
}

.faq-list summary {
  color: var(--glass-ink);
}

/* Dedicated export pages */
.export-page {
  background:
    radial-gradient(circle at 84% 14%, rgba(32, 79, 191, 0.11), transparent 34rem),
    var(--glass-paper);
}

.export-language-switcher {
  top: 22px;
  right: var(--page-gutter);
  padding: 5px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(12, 23, 34, 0.64);
  box-shadow: var(--glass-shadow-soft);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.export-language-switcher .language-link {
  color: rgba(255, 255, 255, 0.68);
}

.export-language-switcher .language-link.is-active,
.export-language-switcher .language-link:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.export-hero {
  min-height: min(860px, 92vh);
}

.export-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 12, 19, 0.9), rgba(5, 12, 19, 0.55) 52%, rgba(5, 12, 19, 0.15)),
    linear-gradient(0deg, rgba(5, 12, 19, 0.45), transparent 42%);
}

.export-hero img {
  filter: saturate(0.78) contrast(1.04);
}

.export-hero-overlay {
  width: min(940px, 100%);
  max-width: none;
  padding: 148px var(--page-gutter) 120px;
}

.export-hero-overlay h1 {
  max-width: 900px;
  font-size: clamp(3.25rem, 7vw, 7.6rem);
  font-weight: 790;
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.export-hero-overlay p {
  color: rgba(255, 255, 255, 0.7);
}

.export-kpis {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  max-width: none;
  gap: 12px;
  margin-top: -56px;
  padding: 0;
}

.export-kpis div {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--glass-shadow-soft);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.export-kpis strong {
  color: var(--glass-blue);
}

.export-split {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  max-width: none;
  gap: clamp(38px, 6vw, 84px);
  padding-right: 0;
  padding-left: 0;
}

.export-split img {
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow);
}

.export-split h2 {
  color: var(--glass-ink);
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 780;
  letter-spacing: -0.05em;
}

.export-page .capacity-summary {
  gap: 10px !important;
  padding: 10px;
  border: 1px solid var(--glass-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}

.export-page .capacity-summary div {
  border: 0;
  border-radius: 12px;
  background: rgba(12, 23, 34, 0.045);
  box-shadow: none;
}

.export-list li {
  border: 1px solid var(--glass-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.export-cta {
  width: min(1000px, calc(100% - (var(--page-gutter) * 2)));
  margin-bottom: 90px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 0%, rgba(66, 110, 193, 0.24), transparent 24rem),
    var(--glass-navy);
  box-shadow: var(--glass-shadow);
  color: #fff;
}

.export-cta h2,
.export-cta .eyebrow {
  color: #fff;
}

.export-cta p {
  color: rgba(255, 255, 255, 0.66);
}

/* Footer and consent */
.corporate-footer {
  padding: 64px var(--page-gutter) 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  background:
    radial-gradient(circle at 20% 0%, rgba(52, 89, 145, 0.16), transparent 30rem),
    #09131d;
}

.footer-grid,
.footer-bottom {
  max-width: var(--page-max);
}

.footer-brand img {
  max-width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
}

.analytics-consent-banner {
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  background: rgba(247, 249, 250, 0.92);
  box-shadow: 0 28px 80px rgba(5, 13, 20, 0.3);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header,
  .hero-console,
  .contact-form,
  .feature-card,
  .export-feature-card,
  .site-card,
  .map-card,
  .local-article section,
  .local-card,
  .faq-list details,
  .local-related a,
  .export-kpis div,
  .analytics-consent-banner {
    background-color: var(--glass-panel-strong);
  }

  .local-article section,
  .local-card:not(:first-child),
  .faq-list details,
  .local-related a,
  .export-kpis div,
  .analytics-consent-banner {
    background-color: #fff;
  }
}

@media (max-width: 1240px) {
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(10, 19, 28, 0.96);
    box-shadow: var(--glass-shadow);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }

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

  .site-nav a {
    min-height: 44px;
    padding: 12px;
    border-radius: 10px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav a[href*="#iletisim"] {
    margin: 0;
    padding: 0 12px;
  }

  .menu-toggle {
    display: grid;
  }

  .hero {
    min-height: 1020px;
  }

  .hero-console {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .console-logistics {
    grid-column: 1 / -1;
    padding: 22px 4px 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .delivery-choice-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 62px;
    padding-left: 12px;
    border-radius: 16px;
  }

  .brand img {
    width: 112px;
    max-height: 42px;
  }

  .site-header .language-switcher {
    display: flex;
  }

  .hero {
    grid-template-rows: auto auto;
    gap: 28px;
    min-height: auto;
    padding-top: 142px;
    padding-bottom: 30px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 10, 15, 0.72), rgba(5, 10, 15, 0.56) 38%, rgba(5, 10, 15, 0.92)),
      linear-gradient(90deg, rgba(5, 10, 15, 0.62), transparent);
  }

  .hero-content {
    min-height: 520px;
    margin: 0;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 12vw, 5.6rem);
  }

  .hero .hero-actions {
    display: flex !important;
  }

  .hero-console {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 24px;
  }

  .console-products,
  .console-tonnage,
  .console-logistics {
    padding: 18px 4px;
  }

  .console-products {
    padding-top: 4px;
  }

  .console-tonnage {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .console-logistics {
    grid-column: auto;
    border-top: 0;
  }

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

  .console-order-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 0;
  }

  .console-order-actions .console-apply {
    flex-basis: auto;
  }

  .console-order-actions .quote-console-status {
    text-align: center;
  }

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

  .trust-strip div:nth-child(3) {
    border-left: 0;
  }

  .trust-strip div:nth-child(n + 3) {
    border-top: 1px solid var(--glass-line);
  }

  .section-heading.compact {
    display: block;
  }

  .section-heading.compact p {
    margin-top: 16px;
  }

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

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

  .product-card:nth-child(-n + 4) {
    border-bottom: 1px solid var(--glass-line);
  }

  .product-card:nth-child(3n) {
    border-right: 1px solid var(--glass-line);
  }

  .product-card:nth-child(2n) {
    border-right: 0;
  }

  .contact-copy,
  .contact-form {
    max-width: none;
    justify-self: stretch;
  }

  .local-page {
    padding-top: 90px;
  }

  .local-hero,
  .local-content {
    width: min(760px, calc(100% - 40px));
  }

  .breadcrumb {
    width: min(760px, calc(100% - 40px));
  }

  .local-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 36px;
  }

  .local-hero-media {
    margin-top: 10px;
  }

  .local-content {
    grid-template-columns: 1fr;
  }

  .local-sidebar {
    position: static;
  }

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

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

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

@media (max-width: 640px) {
  :root {
    --page-gutter: 18px;
    --glass-radius: 22px;
  }

  body.analytics-consent-visible {
    padding-bottom: var(--analytics-consent-space, 330px);
  }

  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
  }

  .site-header .language-link {
    min-width: 34px;
    padding: 0 6px;
  }

  .site-nav {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 100px);
    max-height: calc(100dvh - 100px);
    overflow-y: auto;
  }

  .hero {
    padding-top: 118px;
  }

  .hero-content {
    min-height: 470px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
    line-height: 0.96;
  }

  .hero .hero-lede {
    font-size: 0.98rem;
  }

  .hero .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .quote-choice {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 46px;
    padding: 6px;
    font-size: 0.68rem;
  }

  .quote-swatch {
    width: 32px;
    height: 30px;
  }

  .delivery-choice-list {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    width: calc(100% - 36px);
  }

  .trust-strip div {
    padding: 14px 10px;
  }

  .trust-strip strong {
    font-size: 0.75rem;
  }

  .trust-strip span {
    font-size: 0.68rem;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .intro-section,
  .material-section {
    width: calc(100% - 36px);
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-card:nth-child(-n + 4),
  .product-card:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid var(--glass-line);
  }

  .product-card:last-child {
    border-bottom: 0;
  }

  .product-card {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 166px;
    padding: 20px 0;
  }

  .product-card::before {
    width: 92px;
    height: 122px;
  }

  .export-home-layout {
    margin-top: 28px;
  }

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

  .materials-carousel-btn {
    width: 42px;
    height: 42px;
  }

  .local-page {
    padding-top: 82px;
  }

  .local-hero,
  .local-content,
  .breadcrumb {
    width: calc(100% - 28px);
  }

  .local-hero {
    padding: 26px 20px 20px;
    border-radius: 24px;
  }

  .local-hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  .local-hero-copy p {
    font-size: 0.95rem;
  }

  .local-hero-media img,
  .local-hero-media::before {
    border-radius: 17px;
  }

  .local-content {
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 72px;
  }

  .local-article section {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .local-related {
    grid-template-columns: 1fr;
  }

  .export-hero {
    min-height: 680px;
  }

  .export-hero-overlay {
    padding-top: 110px;
    padding-bottom: 70px;
  }

  .export-hero-overlay h1 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  .export-kpis,
  .export-split {
    width: calc(100% - 36px);
  }

  .export-cta {
    width: calc(100% - 36px);
    margin-bottom: 54px;
  }
}

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

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

@media (forced-colors: active) {
  .site-header,
  .hero-console,
  .contact-form,
  .local-hero,
  .export-cta {
    border: 2px solid CanvasText;
  }

  .quote-choice.is-selected,
  .delivery-choice.is-selected {
    outline: 3px solid Highlight;
  }
}
