/* Corporate Fonts — Olayan Group */
@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('../fonts/AvenirNextLTPro-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('../fonts/AvenirNextLTPro-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Avenir Next LT Pro';
  src: url('../fonts/AvenirNextLTPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Droid Arabic Kufi';
  src: url('../fonts/DroidKufi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Droid Arabic Kufi';
  src: url('../fonts/DroidKufi-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #041e42;
  --ink-2: #0a2d5c;
  --copper: #4b6d9d;
  --copper-dark: #3a5680;
  --sand: #f3eee5;
  --sand-2: #e7ddcf;
  --paper: #fbfaf7;
  --white: #fff;
  --text: #0e2a4a;
  --muted: #4a5d6a;
  --line: #dedbd4;
  --success: #147a63;
  --shadow: 0 24px 70px rgba(4, 30, 66, .13);
  --shadow-soft: 0 12px 36px rgba(4, 30, 66, .08);
  --radius: 22px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Avenir Next LT Pro", "Droid Arabic Kufi", Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3rem, 6.5vw, 6rem); }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }
.container { width: min(calc(100% - 44px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-sand { background: var(--sand); }
.section-white { background: var(--white); }
.section-dark { background: var(--ink); color: var(--white); overflow: hidden; }
.section-dark + .section-dark { border-top: 1px solid rgba(255,255,255,.1); }
.section-dark::before {
  content: "";
  position: absolute;
  width: 640px;
  height: 640px;
  right: -310px;
  top: -330px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255,255,255,.018), 0 0 0 180px rgba(255,255,255,.012);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: #c8d3d7; }
.eyebrow {
  display: none;
  align-items: center;
  gap: 11px;
  color: var(--copper-dark);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.section-dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: #eea578; }
.lead { max-width: 760px; font-size: 1.18rem; }
.muted-note { color: var(--muted); font-size: .78rem; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 46px;
}
.section-head > div:first-child { max-width: 820px; }
.section-head > p { max-width: 520px; margin-bottom: 4px; }
.section-head.center { display: block; max-width: 820px; text-align: center; margin-inline: auto; }
.section-head.center p { margin-inline: auto; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--white);
  background: var(--copper);
  font-size: .86rem;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { background: var(--copper-dark); transform: translateY(-2px); }
.btn-dark { background: var(--ink); }
.btn-dark:hover { background: var(--ink-2); }
.btn-outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.btn-outline:hover { color: var(--white); background: var(--ink); }
.btn-light { color: var(--white); border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); }
.btn-light:hover { color: var(--ink); background: var(--white); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--copper-dark);
  font-size: .86rem;
  font-weight: 800;
}
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(5px); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card p:last-child { margin-bottom: 0; }
.card-number { color: var(--copper); font-size: .73rem; font-weight: 850; letter-spacing: .14em; }
.card .icon { margin-bottom: 22px; }
.icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--copper-dark);
  background: #e3f0fc;
}
.icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #2a6fad;
  background: #e3f0fc;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--copper); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chip { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: var(--paper); font-size: .76rem; font-weight: 700; }
.list-check { display: grid; gap: 10px; margin-top: 20px; }
.list-check li { position: relative; padding-left: 25px; color: var(--muted); font-size: .9rem; }
.list-check li::before { content: "✓"; position: absolute; left: 0; color: var(--copper-dark); font-weight: 900; }
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(48px, 8vw, 110px); }
.split.reverse > :first-child { order: 2; }
.media-frame {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--ink) center / cover no-repeat;
  box-shadow: var(--shadow);
}
.media-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(17,30,36,.66)); }
.media-caption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 25px;
  color: white;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.image-card {
  min-height: 390px;
  display: flex;
  align-items: end;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--image) center / cover no-repeat;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.image-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14,25,30,.05), rgba(14,25,30,.92) 90%); }
.image-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.image-card h3 { color: var(--white); margin-bottom: 8px; }
.image-card p { color: #d2dadd; margin-bottom: 0; font-size: .9rem; }

/* Shared header */
.skip-link { position: fixed; left: 18px; top: -90px; z-index: 2000; padding: 10px 15px; color: white; background: var(--copper); }
.skip-link:focus { top: 12px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(4,30,66,.08);
  background: rgba(251,250,247,.94);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(4,30,66,.09); }
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 19px; }
.logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; margin-right: auto; }
.logo-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 12px 3px 12px 3px;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: -.03em;
}
.logo-copy strong { display: block; color: var(--ink); font-size: 1rem; line-height: 1.05; letter-spacing: .02em; }
.logo-copy small { display: block; margin-top: 4px; color: var(--muted); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.nav-list { display: flex; align-items: center; gap: 1px; }
.nav-list .menu-item { list-style: none; display: flex; }
.nav-link, .dropdown-toggle, .nav-list .menu-item > a {
  padding: 10px 7px;
  border: 0;
  border-radius: 7px;
  color: #1a3a5c;
  background: transparent;
  font-size: .75rem;
  font-weight: 760;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: color .15s, background .15s;
}
.nav-link:hover, .nav-link.active, .dropdown-toggle:hover, .dropdown-toggle.active, .nav-list .menu-item > a:hover, .nav-list .current-menu-item > a { color: var(--copper-dark); background: #e8f1fb; }
.nav-list .menu-item-has-children { position: relative; }
.nav-list .menu-item-has-children > a::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid; border-bottom: 1.5px solid; transform: rotate(45deg) translateY(-2px); margin-left: 6px; }
.nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
  list-style: none;
}
.nav-list .sub-menu li { display: block; }
.nav-list .sub-menu a { display: block; padding: 10px 12px; border-radius: 7px; color: var(--text); font-size: .82rem; font-weight: 700; }
.nav-list .sub-menu a:hover, .nav-list .sub-menu .current-menu-item > a { color: var(--copper-dark); background: #edf4fd; }
.nav-list .menu-item-has-children:hover > .sub-menu, .nav-list .menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }

.dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; }
.dropdown-toggle::after { content: ""; width: 6px; height: 6px; border-right: 1.5px solid; border-bottom: 1.5px solid; transform: rotate(45deg) translateY(-2px); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.dropdown-menu a { display: block; padding: 10px 12px; border-radius: 7px; color: var(--text); font-size: .82rem; font-weight: 700; }
.dropdown-menu a:hover, .dropdown-menu a.active { color: var(--copper-dark); background: #edf4fd; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu, .nav-dropdown.open .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.header-cta { min-height: 44px; padding-inline: 17px; font-size: .78rem; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 9px;
  color: white;
  background: var(--ink);
}
.menu-toggle span { width: 21px; height: 2px; display: block; margin: 5px auto; background: currentColor; transition: .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.service-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border: 3px solid white;
  border-radius: 999px;
  color: white;
  background: var(--copper);
  box-shadow: 0 12px 35px rgba(4,30,66,.25);
  font-size: .78rem;
  font-weight: 850;
  transition: transform .2s ease;
}
.service-float:hover { transform: translateY(-3px); }
.service-float .icon { width: 20px; height: 20px; margin: 0; color: white; background: transparent; }
.service-float .icon svg { width: 20px; height: 20px; }

/* Hero systems */
.hero { position: relative; min-height: 740px; display: grid; align-items: center; overflow: hidden; background: var(--ink); color: white; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(75,109,157,.2), transparent 32%),
    linear-gradient(108deg, #17252c 0 49%, rgba(4,30,66,.88) 64%, rgba(4,30,66,.18) 100%),
    url("../images/pexels-transport.jpg") 72% center / cover no-repeat;
}
.hero-slider::before { display: none; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px; background: linear-gradient(transparent, rgba(14,25,30,.45)); z-index: 1; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out; }
.hero-slide.active { opacity: 1; }
.hero-controls { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; align-items: center; gap: 14px; }
.hero-arrow { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(0,0,0,.3); color: white; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.hero-arrow:hover { background: rgba(255,255,255,.2); }
.hero-dots { display: flex; gap: 8px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6); background: transparent; cursor: pointer; transition: background .2s; padding: 0; }
.hero-dot.active { background: white; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,25,30,.85) 0%, rgba(14,25,30,.6) 50%, rgba(14,25,30,.2) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 120px 0 140px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 70px; padding: 90px 0 120px; }
.hero-copy { max-width: 780px; }
.hero h1 { color: white; margin-bottom: 24px; font-size: clamp(3rem, 5.6vw, 5.4rem); }
.hero p { max-width: 720px; color: #d0d9dc; font-size: 1.08rem; }
.hero-visual {
  min-height: 510px;
  position: relative;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 30px;
  background: url("../images/hero-scania.jpg") center / cover no-repeat;
  box-shadow: 0 34px 80px rgba(0,0,0,.3);
}
.hero-visual::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(120deg, rgba(4,30,66,.24), transparent 55%); }
.hero-note {
  display: inline-flex;
  flex-direction: column;
  margin-top: 30px;
  padding: 22px;
  border-radius: 15px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}
.hero-note strong { display: block; color: var(--copper); font-size: 2rem; line-height: 1; }
.hero-note span { display: block; margin-top: 7px; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.page-hero {
  min-height: 450px;
  display: flex;
  align-items: end;
  padding: 110px 0 80px;
  position: relative;
  color: white;
  overflow: hidden;
  background: var(--ink) var(--hero-image, url("../images/pexels-construction.jpg")) center / cover no-repeat;
}
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(19,32,38,.98), rgba(19,32,38,.78) 55%, rgba(19,32,38,.28)); }
.page-hero::after { content: ""; position: absolute; right: -100px; bottom: -200px; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.14); transform: rotate(24deg); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 960px; color: white; margin-bottom: 20px; font-size: clamp(2.8rem, 5vw, 4.9rem); }
.page-hero p { max-width: 780px; margin-bottom: 0; color: #d0dadd; font-size: 1.08rem; }
.page-about { --hero-image: url("../images/site-meeting.jpg"); }
.page-industries { --hero-image: url("../images/pexels-construction.jpg"); }
.page-brands { --hero-image: url("../images/product-heavy-truck.jpg"); }
.page-products { --hero-image: url("../images/unsplash-warehouse-forklift.jpg"); }
.page-services { --hero-image: url("../images/service-workshop-brand.jpg"); }
.page-news { --hero-image: url("../images/site-event.jpg"); }
.page-careers { --hero-image: url("../images/site-team.jpg"); }
.page-contact { --hero-image: url("../images/unsplash-riyadh.jpg"); }

/* Home */
.glance { position: relative; z-index: 3; margin: 0; padding: 84px 0 34px; background: var(--paper); }
.glance-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.glance-item { min-height: 150px; padding: 27px; border-right: 1px solid var(--line); }
.glance-item:last-child { border: 0; }
.glance-item strong { display: block; color: var(--ink); font-size: 1.65rem; line-height: 1.15; }
.glance-item span { display: block; margin-top: 9px; color: var(--muted); font-size: .74rem; font-weight: 780; line-height: 1.45; }
.why-card { min-height: 285px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.why-card .icon { width: 52px; height: 52px; padding: 12px; margin-bottom: 18px; }
.why-card .icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: .95rem; }
.brand-showcase { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.brand-tile {
  grid-column: span 4;
  min-height: 330px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  color: white;
  background: var(--image) center / cover no-repeat;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.brand-tile-logo { position: absolute; top: 18px; right: 18px; height: 32px; width: auto; max-width: 100px; object-fit: contain; opacity: .9; z-index: 1; }
.brand-tile.brand-scania { --image: url("../images/product-heavy-truck.jpg"); }
.brand-tile.brand-kenworth { --image: url("../images/product-offroad-truck.jpg"); }
.brand-tile.brand-atlas { --image: url("../images/product-air-power.jpg"); }
.brand-tile.brand-rubble { --image: url("../images/product-crusher.jpg"); }
.brand-tile.brand-lonking { --image: url("../images/product-loader.jpg"); }
.brand-tile.brand-case { --image: url("../images/unsplash-agriculture-harvest.jpg"); }
.brand-tile.brand-mahindra { --image: url("../images/product-pickup.jpg"); }
.brand-tile:first-child { grid-column: span 8; min-height: 470px; }
.brand-tile:nth-last-child(-n+2) { grid-column: span 6; }
.brand-tile::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(16,29,35,.32), rgba(16,29,35,.96) 90%); }
.brand-tile:hover { transform: translateY(-7px); box-shadow: 0 25px 60px rgba(0,0,0,.22); }
.brand-tile h3 { color: white; font-size: 2rem; margin: 10px 0; }
.brand-tile:first-child h3 { font-size: clamp(2.5rem, 4vw, 4.4rem); }
.brand-tile p { color: #e2e8ea; max-width: 570px; font-size: .88rem; margin-bottom: 0; text-shadow: 0 2px 12px rgba(0,0,0,.55); }
.brand-tile .tag {
  color: #2a6fad;
  background: #e3f0fc; align-self: flex-start; color: white; background: rgba(16,29,35,.78); border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(8px); }
.brand-category { color: #efad83; font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.brand-explore { display: inline-block; margin-top: 8px; font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.8); }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.industry-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.industry-icon-item { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 24px 12px; text-align: center; }
.industry-icon-item .icon { width: 36px; height: 36px; color: var(--copper); background: rgba(75,109,157,.08); border-radius: 50%; padding: 8px; }
.industry-icon-item .icon svg { width: 20px; height: 20px; }
.industry-icon-item span:last-child { font-size: .82rem; font-weight: 600; color: var(--text); }
.section-dark .industry-icon-item .icon { color: #e8a47b; background: rgba(255,255,255,.08); }
.section-dark .industry-icon-item span:last-child { color: white; }
.lifecycle-panel {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  border-radius: 30px;
  background: var(--ink);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.lifecycle-copy { padding: clamp(45px, 7vw, 85px); }
.lifecycle-copy h2 { color: white; }
.lifecycle-copy p { color: #b8c4c8; }
.lifecycle-visual { min-height: 620px; background: linear-gradient(rgba(4,30,66,.18), rgba(4,30,66,.7)), url("../images/site-technician.jpg") center / cover no-repeat; position: relative; }
.capability-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.18); position: absolute; left: 28px; right: 28px; bottom: 28px; }
.capability { min-height: 92px; padding: 18px; color: white; background: rgba(18,31,37,.88); backdrop-filter: blur(10px); }
.capability strong { display: block; font-size: .88rem; }
.capability span { color: #afbec3; font-size: .75rem; }
.location-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.location-pill { min-width: 130px; padding: 15px 18px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: white; text-align: center; font-size: .82rem; font-weight: 800; }
.project-card { padding: 0; }
.project-card img { height: 245px; object-fit: cover; }
.project-card .card-body { padding: 27px; }

/* Inner page components */
.value-card { min-height: 240px; }
.value-card h3 { margin-top: 17px; }
.mission-panel { padding: 42px; border-radius: var(--radius); background: var(--ink); }
.mission-panel h3 { color: white; }
.mission-panel p { color: #b9c5c9; }
.industry-row {
  display: grid;
  grid-template-columns: 70px 1.1fr .9fr;
  gap: 28px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}
.industry-row:last-child { border-bottom: 1px solid var(--line); }
.industry-row h2 { font-size: 2.2rem; }
.industry-row .index { color: var(--copper); font-size: .85rem; font-weight: 850; letter-spacing: .12em; }
.industry-meta { display: grid; gap: 18px; }
.meta-label { display: block; color: var(--ink); font-size: .82rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.meta-copy { color: var(--text); font-size: .88rem; line-height: 1.5; }
.brand-list-card { display: flex; flex-direction: column; padding: 0; }
.brand-list-media { width: 100%; height: 245px; object-fit: cover; object-position: center; position: relative; }
.brand-list-body { display: flex; flex: 1; flex-direction: column; padding: 28px; }
.brand-list-body .brand-category { color: var(--copper-dark); }
.brand-list-body .button-row { margin-top: auto; padding-top: 5px; }
.external-link { font-size: .75rem; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.filter-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 13px;
  padding: 22px;
  margin-bottom: 40px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}
.filter-panel label { display: grid; gap: 6px; color: var(--ink); font-size: .76rem; font-weight: 800; }
.filter-reset { align-self: end; min-height: 46px; }
.product-group { padding: 42px; border-radius: 24px; background: var(--white); border: 1px solid var(--line); }
.product-group + .product-group { margin-top: 22px; }
.product-group-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.detail-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; padding-top: 25px; border-top: 1px solid var(--line); }
.compact-list { display: grid; gap: 7px; margin-top: 12px; }
.compact-list li { position: relative; padding-left: 18px; color: var(--muted); font-size: .82rem; }
.compact-list li::before { content: ""; position: absolute; left: 0; top: .7em; width: 6px; height: 6px; border-radius: 50%; background: var(--copper); }
.product-card { display: flex; flex-direction: column; padding: 0; }
.product-card[hidden] { display: none; }
.product-card img { height: 215px; object-fit: cover; }
.product-card .card-body { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.product-card .button-row { margin-top: auto; }
.product-card .btn { min-height: 43px; padding-inline: 15px; font-size: .75rem; }
.lifecycle-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14); }
.life-step { min-height: 190px; padding: 27px 22px; background: var(--ink); }
.life-step span { color: #eea578; font-size: .75rem; font-weight: 850; }
.life-step h3 { margin-top: 35px; font-size: 1.05rem; }
.life-step p { font-size: .8rem; }
.service-feature { min-height: 250px; }
.service-feature strong { display: block; color: var(--ink); font-size: 1.1rem; margin-bottom: 8px; }
.service-feature p { font-size: .88rem; }
.capabilities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 24px; }
.capability-item { display: flex; gap: 12px; align-items: flex-start; }
.capability-item .icon { width: 32px; height: 32px; padding: 6px; flex-shrink: 0; }
.capability-item strong { display: block; font-size: .88rem; color: var(--ink); }
.capability-item span:last-child { font-size: .78rem; color: var(--text-light); }
.conditional-note { padding: 18px 20px; border-left: 3px solid var(--copper); background: #e8f1fb; color: #2a5080; font-size: .83rem; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 800;
}
.accordion-trigger::after { content: "+"; color: var(--copper); font-size: 1.5rem; line-height: 1; transition: transform .25s ease; }
.accordion-item.open .accordion-trigger::after { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.accordion-panel p { max-width: 860px; padding: 0 48px 22px 4px; margin: 0; }
.news-feature {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border-radius: 26px;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.news-feature img { height: 100%; min-height: 430px; object-fit: cover; }
.news-feature-copy { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.news-meta { display: flex; gap: 14px; margin: 13px 0; color: var(--muted); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }
.news-meta span { color: var(--copper-dark); font-weight: 850; }
.event-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.event-item { display: flex; align-items: center; gap: 25px; padding: 25px; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; }
.event-date { min-width: 64px; display: flex; flex-direction: column; color: #eea578; font-size: .75rem; font-weight: 850; }
.event-date strong { color: white; font-size: 2rem; line-height: 1; }
.event-item b { display: block; color: white; }
.event-item span:last-child { color: #aebdc2; font-size: .82rem; }
.media-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; }
.media-gallery img { height: 100%; object-fit: cover; border-radius: 16px; }
.media-gallery img:first-child { grid-column: span 2; grid-row: span 2; }
.visual-strip { display: grid; grid-template-columns: 1.4fr .8fr .8fr; grid-auto-rows: 220px; gap: 12px; margin-bottom: 58px; }
.visual-strip img { height: 100%; object-fit: cover; border-radius: 18px; }
.visual-strip img:first-child { grid-row: span 2; }
.career-option { min-height: 330px; display: flex; flex-direction: column; justify-content: space-between; padding: 40px; }
.career-option:first-child { color: white; background: var(--ink); }
.career-option:first-child h3 { color: white; }
.career-option:first-child p { color: #bac6ca; }
.inquiry-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.inquiry-tab { padding: 18px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: white; text-align: left; font-size: .82rem; font-weight: 800; transition: .2s ease; }
.inquiry-tab:hover, .inquiry-tab.active { color: white; border-color: var(--copper); background: var(--copper); }
.contact-layout { display: grid; grid-template-columns: .5fr 1.5fr; gap: 40px; align-items: start; }
.contact-aside { position: sticky; top: 110px; padding: 36px; border-radius: var(--radius); color: white; background: var(--ink); }
.contact-aside h2 { color: white; font-size: 2rem; }
.contact-aside p { color: #b8c4c8; }
.form-card { padding: clamp(28px, 5vw, 48px); box-shadow: var(--shadow); border: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
label { color: var(--ink); font-size: .75rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cfd3d1;
  border-radius: 9px;
  color: var(--text);
  background: white;
  outline: none;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(75,109,157,.12); }
.helper { color: var(--muted); font-size: .75rem; }
.form-status { min-height: 25px; margin: 16px 0 0; color: var(--success); font-size: .83rem; font-weight: 800; }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.location-card { padding: 0; border: 1px solid var(--line); border-radius: 15px; background: white; display: flex; flex-direction: column; overflow: hidden; }
.location-card-img { height: 120px; overflow: hidden; }
.location-card-img img { width: 100%; height: 100%; object-fit: cover; }
.location-card-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.location-card strong { display: block; color: var(--ink); font-size: .95rem; }
.location-card .location-address { color: var(--muted); font-size: .78rem; line-height: 1.4; }
.location-card .location-detail { color: var(--muted); font-size: .78rem; display: flex; align-items: center; gap: 6px; }
.location-card .location-detail .icon { width: 14px; height: 14px; min-width: 14px; background: none; margin: 0; padding: 0; }
.location-card .location-detail .icon svg { width: 14px; height: 14px; }
.location-card .location-detail a { color: var(--copper); text-decoration: none; }
.location-map-link { display: block; padding: 14px 24px; border-top: 1px solid var(--line); font-size: .8rem; font-weight: 700; color: var(--copper); text-decoration: none; text-align: center; transition: background .2s; }
.location-map-link:hover { background: var(--sand); }
.map-visual {
  min-height: 410px;
  display: grid;
  place-items: center;
  border-radius: 25px;
  color: white;
  background:
    linear-gradient(rgba(4,30,66,.74), rgba(4,30,66,.8)),
    url("../images/unsplash-riyadh.jpg") center / cover no-repeat;
  text-align: center;
}
.map-visual .icon { color: white; background: rgba(255,255,255,.14); }
.map-visual h3 { color: white; margin: 18px 0 7px; }

/* Brand pages */
.brand-hero { position: relative; overflow: hidden; background: var(--ink); color: white; }
.brand-hero-grid { min-height: 570px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding: 80px 0; }
.brand-hero h1 { color: white; }
.brand-hero p { color: #bdc9cd; font-size: 1.08rem; }
.brand-visual {
  min-height: 390px;
  display: flex;
  align-items: end;
  padding: 28px;
  border-radius: 28px;
  background-image: var(--brand-image); background-position: center; background-size: cover; background-repeat: no-repeat;
  box-shadow: 0 30px 70px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}
.brand-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,30,66,.05), rgba(4,30,66,.76)); }
.brand-wordmark { position: relative; color: white; font-size: clamp(2.2rem, 5vw, 4.8rem); font-weight: 900; letter-spacing: -.06em; }
.brand-visual.scania { --brand-image: url("../images/product-heavy-truck.jpg"); }
.brand-visual.kenworth { --brand-image: url("../images/product-offroad-truck.jpg"); }
.brand-visual.atlas-copco { --brand-image: url("../images/product-air-power.jpg"); background-position: center 44%; }
.brand-visual.rubble-master { --brand-image: url("../images/product-crusher.jpg"); background-position: center 72%; }
.brand-visual.lonking { --brand-image: url("../images/product-loader.jpg"); background-position: center 55%; }
.brand-visual.case-ih { --brand-image: url("../images/product-tractor.jpg"); }
.brand-visual.mahindra { --brand-image: url("../images/product-pickup.jpg"); }
.brand-page[data-accent="blue"] { --copper: #1772a3; --copper-dark: #0f547c; }
.brand-page[data-accent="red"] { --copper: #b72b32; --copper-dark: #8e1e24; }
.brand-page[data-accent="gold"] { --copper: #876515; --copper-dark: #684c0f; }
.gallery-placeholder { display: grid; grid-template-columns: 1.4fr .8fr; gap: 12px; }
.gallery-placeholder img { height: 240px; object-fit: cover; border-radius: 16px; }
.gallery-placeholder img:first-child { grid-row: span 2; height: 492px; }
.document-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

/* CTA and footer */
.cta-band { padding: 72px 0; color: white; background: linear-gradient(120deg, var(--copper-dark), var(--copper) 68%, #7bafd4); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band h2 { max-width: 760px; color: white; margin-bottom: 8px; }
.cta-band p { color: #f7dfd0; margin-bottom: 0; }
.site-footer { padding: 78px 0 25px; color: #aeb9bd; background: #101d23; }
.footer-intro { display: grid; grid-template-columns: 1.3fr 2fr; gap: 60px; padding-bottom: 50px; }
.footer-intro .logo-copy strong { color: white; }
.footer-intro p { max-width: 470px; margin-top: 22px; color: #aeb9bd; font-size: .84rem; }
.footer-columns { display: grid; grid-template-columns: repeat(6, 1fr); gap: 25px; }
.footer-column h3 { color: white; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a { display: block; padding: 4px 0; color: #9eabb0; font-size: .75rem; }
.footer-column a:hover { color: #efaa80; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; }

/* Motion */
.reveal { opacity: 1; transform: none; transition: transform .35s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1320px) {
  .menu-toggle { display: block; }
  .header-cta { margin-left: auto; }
  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    height: calc(100vh - 78px);
    padding: 24px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform .28s ease;
    overflow-y: auto;
  }
  .site-nav.open { transform: none; }
  .nav-list { align-items: stretch; flex-direction: column; }
  .nav-link, .dropdown-toggle, .nav-list .menu-item > a { width: 100%; padding: 14px; text-align: left; font-size: .95rem; }
  .nav-list .menu-item { display: block; }
  .nav-list .menu-item-has-children > .sub-menu { position: static; width: auto; padding: 3px 12px 8px 25px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: transparent; }
  .dropdown-menu { position: static; width: auto; padding: 3px 12px 8px 25px; border: 0; box-shadow: none; display: none; opacity: 1; visibility: visible; transform: none; background: transparent; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .brand-tile, .brand-tile:first-child, .brand-tile:nth-last-child(-n+2) { grid-column: span 6; min-height: 390px; }
  .lifecycle-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-intro { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid, .brand-hero-grid, .split, .lifecycle-panel, .contact-layout, .product-group-head { grid-template-columns: 1fr; }
  .visual-strip { grid-template-columns: 1fr 1fr; }
  .visual-strip img:first-child { grid-column: span 2; grid-row: auto; }
  .hero::before { background: linear-gradient(90deg, rgba(4,30,66,.97), rgba(4,30,66,.75)), url("../images/pexels-transport.jpg") center / cover no-repeat; }
  .hero-visual { display: none; }
  .hero-grid { padding: 105px 0 145px; }
  .glance-panel { grid-template-columns: repeat(2, 1fr); }
  .glance-item:nth-child(2) { border-right: 0; }
  .glance-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split.reverse > :first-child { order: 0; }
  .lifecycle-visual { min-height: 600px; }
  .industry-row { grid-template-columns: 50px 1fr; }
  .industry-meta { grid-column: 2; }
  .filter-panel { grid-template-columns: 1fr 1fr; }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature img { min-height: 320px; }
  .inquiry-tabs { grid-template-columns: repeat(2, 1fr); }
  .contact-aside { position: static; }
  .brand-hero-grid { padding: 65px 0; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 74px 0; }
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.15rem; }
  .logo-copy small { display: none; }
  .header-cta { display: none; }
  .site-nav { inset-block-start: 78px; }
  .section-head, .cta-inner, .document-cta { align-items: flex-start; flex-direction: column; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .button-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero { min-height: 670px; }
  .hero-grid { padding: 85px 0 130px; }
  .hero h1 { font-size: 2.85rem; }
  .glance { margin: 0; padding: 64px 0 24px; }
  .glance-panel { grid-template-columns: 1fr; }
  .glance-item { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .brand-showcase { display: block; }
  .brand-tile, .brand-tile:first-child, .brand-tile:nth-last-child(-n+2) { min-height: 390px; margin-bottom: 12px; }
  .brand-tile:first-child h3 { font-size: 2.8rem; }
  .industry-grid, .industry-icons { grid-template-columns: repeat(2, 1fr); }
  .lifecycle-copy { padding: 38px 27px; }
  .lifecycle-visual { min-height: 700px; }
  .capability-grid { grid-template-columns: 1fr; }
  .location-pill { flex: 1 1 44%; min-width: 0; }
  .page-hero { min-height: 390px; padding: 85px 0 65px; }
  .page-hero h1 { font-size: 2.65rem; }
  .industry-row { grid-template-columns: 1fr; gap: 12px; }
  .industry-meta { grid-column: auto; }
  .filter-panel { grid-template-columns: 1fr; }
  .filter-reset { width: 100%; }
  .product-group { padding: 28px; }
  .detail-columns { grid-template-columns: 1fr; }
  .lifecycle-steps { grid-template-columns: 1fr; }
  .life-step { min-height: auto; }
  .life-step h3 { margin-top: 22px; }
  .event-list, .form-grid, .location-grid { grid-template-columns: 1fr; }
  .media-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .media-gallery img:first-child { grid-column: span 2; grid-row: auto; }
  .visual-strip { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .visual-strip img:first-child { grid-column: auto; }
  .inquiry-tabs { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .brand-visual { min-height: 300px; }
  .gallery-placeholder { grid-template-columns: 1fr; }
  .gallery-placeholder img, .gallery-placeholder img:first-child { height: 260px; grid-row: auto; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .service-float { width: 50px; height: 50px; padding: 0; justify-content: center; }
  .service-float span { display: none; }
}

@media (max-width: 430px) {
  .footer-columns { grid-template-columns: 1fr; }
  .media-gallery { grid-template-columns: 1fr; }
  .media-gallery img:first-child { grid-column: auto; }
}

/* Search */
.search-toggle { width: 44px; height: 44px; display: inline-grid; place-items: center; border: 0; border-radius: 9px; color: var(--ink); background: transparent; transition: background .15s; }
.search-toggle:hover { background: #e8f1fb; }
.search-overlay { position: fixed; inset: 78px 0 auto; z-index: 999; padding: 24px 0; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.search-overlay[hidden] { display: none; }
.search-form { display: flex; gap: 12px; align-items: center; }
.search-form input[type="search"] { flex: 1; min-height: 52px; padding: 0 18px; border: 1px solid var(--line); border-radius: 9px; font-size: 1rem; outline: none; }
.search-form input[type="search"]:focus { border-color: var(--copper); }
.search-close { width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 9px; color: var(--muted); background: transparent; font-size: 1.5rem; cursor: pointer; }
.search-close:hover { background: var(--sand); }

/* WhatsApp FAB */
.whatsapp-float { position: fixed; z-index: 900; right: 22px; bottom: 82px; display: inline-flex; align-items: center; gap: 10px; min-height: 50px; padding: 0 18px; border: 3px solid white; border-radius: 999px; color: white; background: #25d366; box-shadow: 0 12px 35px rgba(0,0,0,.2); font-size: .78rem; font-weight: 850; transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); }
.whatsapp-float svg { flex-shrink: 0; }
@media (max-width: 680px) { .whatsapp-float { width: 50px; height: 50px; padding: 0; justify-content: center; bottom: 82px; } .whatsapp-float span { display: none; } }

/* CF7 form styling */
.wpcf7 { max-width: 100%; }
.wpcf7 .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wpcf7 .form-grid .wpcf7-form-control-wrap { display: block; }
.wpcf7 .form-grid .form-field { display: block; min-width: 0; }
.wpcf7 .form-grid label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.wpcf7 .form-grid label .required { color: #c0392b; }
.wpcf7 .form-grid .field-full-width { grid-column: 1 / -1; }
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"], .wpcf7 select, .wpcf7 textarea { width: 100%; padding: 13px 14px; border: 1px solid #cfd3d1; border-radius: 9px; color: var(--text); background: white; font: inherit; outline: none; margin-top: 5px; }
.wpcf7 textarea { min-height: 130px; resize: vertical; grid-column: 1 / -1; }
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(75,109,157,.12); }
.wpcf7 .wpcf7-acceptance { font-size: .82rem; color: var(--muted); }
.wpcf7 .wpcf7-acceptance label { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; }
.wpcf7 .wpcf7-acceptance input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: auto; }
.wpcf7 .wpcf7-list-item { display: block; }
.wpcf7 .wpcf7-submit { grid-column: 1 / -1; min-height: 52px; padding: 0 32px; border: 0; border-radius: 9px; color: white; background: var(--copper); font-weight: 800; font-size: .88rem; cursor: pointer; transition: background .2s, transform .2s; }
.wpcf7 .wpcf7-submit:hover { background: var(--copper-dark); transform: translateY(-2px); }
.wpcf7 .wpcf7-response-output { grid-column: 1 / -1; padding: 14px 18px; border-radius: 9px; font-size: .85rem; font-weight: 700; }
.wpcf7-mail-sent-ok, .wpcf7 form.sent .wpcf7-response-output { border-color: var(--success); color: var(--success); background: #edf8f5; }
.wpcf7-validation-errors, .wpcf7 form.invalid .wpcf7-response-output { border-color: #c0392b; color: #c0392b; background: #fdf0ef; }
.wpcf7 .wpcf7-not-valid-tip { color: #c0392b; font-size: .75rem; margin-top: 4px; }
@media (max-width: 680px) { .wpcf7 .form-grid { grid-template-columns: 1fr; } }

.contact-layout { margin-top: 40px; }

.logo-mark-img { height: 50px; width: auto; object-fit: contain; }
