:root {
  --red: #e30613;
  --dark: #161616;
  --body: #333333;
  --muted: #f5f5f5;
  --soft-red: #ffe2e3;
  --white: #ffffff;
  --line: rgba(227, 6, 19, 0.35);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--body);
  font-family: "Nunito", Arial, sans-serif;
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  min-height: 90px;
  padding: 12px clamp(32px, 5.6vw, 112px);
  background: var(--white);
  box-shadow: 0 1px 14px rgba(0, 0, 0, 0.06);
}
.site-header > .btn {
  display: none;
}
.logo img {
  width: 122px;
  height: auto;
}
.primary-nav {
  display: none;
  position: absolute;
  left: auto;
  right: 0;
  top: 90px;
  width: min(calc(100vw - 16px), 360px);
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(227, 6, 19, 0.16);
  border-top: 4px solid var(--red);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}
.primary-nav.is-open {
  display: grid;
  gap: 6px;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 44px;
  padding: 12px 14px;
  color: #111111;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--red);
}
.nav-close {
  justify-self: end;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 4px;
  border: 0;
  background: var(--red);
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.nav-mobile-action {
  display: none !important;
  justify-content: center !important;
  min-height: 50px !important;
  margin-top: 4px;
  background: var(--red);
  color: var(--white) !important;
  text-align: center;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 12px;
  width: 230px;
  height: 56px;
  color: var(--dark);
  margin-left: auto;
  white-space: nowrap;
}
.header-phone-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
}
.header-phone-icon::before {
  content: "";
  width: 27px;
  height: 27px;
  background: url("../assets/icons/header-phone.svg") center / contain no-repeat;
}
.header-phone-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  line-height: 1;
}
.header-phone-label {
  color: #111111;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}
.header-phone-number {
  color: #111111;
  font-size: 19px;
  font-weight: 700;
  line-height: 19px;
}
.menu-toggle {
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(227, 6, 19, 0.28);
  background: var(--white);
  display: grid;
  place-content: center;
  gap: 5px;
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.12);
  cursor: pointer;
}
.site-header .btn {
  min-height: 56px;
  padding: 18px 30px;
  font-size: 17px;
  line-height: 17px;
  white-space: nowrap;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}
.menu-toggle.is-open {
  background: var(--white);
  border-color: rgba(227, 6, 19, 0.28);
}
.menu-toggle.is-open span {
  background: var(--dark);
}
.menu-toggle.is-open span:nth-child(1) {
  transform: none;
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 1;
}
.menu-toggle.is-open span:nth-child(3) {
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 20px 30px;
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: #b9050f;
}
.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-red {
  border-color: var(--red);
  color: var(--red);
  background: var(--white);
}
.btn-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 14px;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero {
  position: relative;
  min-height: 548px;
  display: grid;
  align-items: start;
  overflow: hidden;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
}
.hero-bg,
.image-panel,
.product-image,
.industry-card {
  background-size: cover;
  background-position: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.38) 46%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.22)),
    url("../assets/images/hero-updated.png"),
    url("../assets/images/hero-crane.png");
  background-position: center, center, center 44%, center;
  background-size: cover, cover, cover, cover;
}
.hero-content {
  position: relative;
  color: var(--white);
  padding: 104px 0 72px;
}
h1,
h2,
h3 {
  font-family: "Raleway", Arial, sans-serif;
  color: var(--dark);
  line-height: 1.1;
  margin: 0;
}
.hero h1 {
  color: var(--white);
  max-width: 560px;
  font-size: clamp(42px, 4.7vw, 62px);
  line-height: 1.05;
}
.hero h1 span,
h2 span {
  color: var(--red);
}
.hero p {
  max-width: 540px;
  margin: 12px 0 0;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.55;
}
.hero .button-row {
  gap: 10px;
  margin-top: 22px;
}
.hero .btn {
  min-height: 38px;
  padding: 12px 18px;
  font-size: 13px;
  line-height: 13px;
}
.eyebrow,
.section-kicker {
  font-weight: 800;
  font-style: italic;
}

.trust-strip {
  background: var(--white);
  padding: 31px 0 32px;
  min-height: 116px;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
}
.trust-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60px 60px;
}
.trust-custom-engineered {
  background-image: url("../assets/icons/trust-custom-engineered.png");
}
.trust-robust-design {
  background-image: url("../assets/icons/trust-robust-design.png");
}
.trust-on-time-delivery {
  background-image: url("../assets/icons/trust-on-time-delivery.png");
}
.trust-after-sales {
  background-image: url("../assets/icons/trust-after-sales.png");
}
.trust-item p {
  width: 202px;
  margin: 0;
  color: var(--dark);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  line-height: 32px;
  letter-spacing: 0;
}

.section {
  padding: clamp(56px, 8vw, 92px) 0;
}

.trust-strip,
.section.why-gec,
.section.services,
.section.enquiry-section {
  background: var(--white);
}

.section.about,
.section.products,
.section.industries {
  background: var(--muted);
}

.split-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}
.reverse .content-panel {
  order: 2;
}
.image-panel {
  min-height: 320px;
  box-shadow: var(--shadow);
}
.about-image {
  background-image: url("../assets/images/About Us-updated.png");
}
.service-image {
  min-height: 420px;
  height: auto;
  aspect-ratio: 760 / 488;
  background-image: url("../assets/images/Service new.png");
  background-position: center;
  box-shadow: none;
}
.content-panel {
  display: grid;
  gap: 18px;
}
.content-panel h2,
.center {
  font-size: clamp(34px, 5vw, 45px);
}
.section-kicker {
  color: var(--red);
}
.center {
  text-align: center;
  margin-bottom: 34px;
}

.about {
  padding: 84px 0 82px;
}
.about .split-grid {
  gap: clamp(36px, 5.2vw, 64px);
}
.about-image {
  min-height: auto;
  aspect-ratio: 942 / 1014;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  box-shadow: none;
}
.about .content-panel {
  gap: 13px;
  align-content: center;
}
.about .content-panel h2 {
  max-width: 560px;
  color: var(--dark);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 45px;
  font-weight: 700;
  font-style: normal;
  line-height: 60px;
  letter-spacing: 0;
  text-transform: capitalize;
}
.about .content-panel h2 span {
  color: var(--red);
}
.about .content-panel p {
  max-width: 580px;
  margin: 0;
  color: var(--body);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0;
}
.about-purpose-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}
.about-purpose-grid article {
  display: grid;
  gap: 8px;
}
.about-purpose-grid h3 {
  color: var(--red);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: normal;
  line-height: 25px;
  letter-spacing: 0;
}
.about-purpose-grid p {
  color: var(--body);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: normal;
  line-height: 25px;
  letter-spacing: 0;
}
.about .content-panel .btn {
  justify-self: start;
  width: min(100%, 608px);
  min-height: 58px;
  margin-top: 10px;
  padding: 20px 30px;
  gap: 10px;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 18px;
  letter-spacing: 0;
  opacity: 1;
  transform: rotate(0deg);
}

.card-grid {
  display: grid;
  gap: 22px;
}
.feature-card,
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}
.feature-card {
  padding: 20px;
  display: grid;
  gap: 30px;
  border-color: rgba(227, 6, 19, 0.5);
  border-radius: 20px;
}
.feature-copy {
  display: grid;
  gap: 4px;
}
.feature-card h3 {
  color: var(--dark);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: italic;
  line-height: 35px;
}
.feature-card p {
  margin: 0;
  color: var(--body);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}
.icon {
  width: 109px;
  height: 109px;
  display: inline-block;
  background: var(--soft-red);
  border-radius: 13.625px;
  position: relative;
}
.icon::after {
  content: "";
  position: absolute;
  inset: 10.9px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.icon-custom::after {
  background-image: url("../assets/icons/why custom new.png");
}
.icon-value::after {
  background-image: url("../assets/icons/why cost new.png");
}
.icon-response::after {
  background-image: url("../assets/icons/why fast new.png");
}
.icon-reliable::after {
  background-image: url("../assets/icons/why reliable new.png");
}
.section-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.product-card {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
  border: 0;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.13);
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.product-card:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.35);
  outline-offset: 4px;
}
.product-card.is-selected {
  background: var(--red);
  box-shadow: none;
}
.product-image {
  min-height: 0;
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 302 / 188;
}
.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.product-body h3 {
  width: 100%;
  color: var(--red);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: normal;
  line-height: 25px;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
}
.product-body p {
  width: 100%;
  min-height: 56px;
  margin: 0;
  color: var(--body);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
}
.product-card .btn {
  width: min(100%, 381px);
  min-height: 58px;
  padding: 20px 30px;
  gap: 10px;
  border: 1px solid var(--red);
  background: var(--white);
  color: var(--red);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  font-style: normal;
  line-height: 18px;
  letter-spacing: 0;
  opacity: 1;
  transform: rotate(0deg);
}
.product-card.is-selected .product-body h3,
.product-card.is-selected .product-body p {
  color: var(--white);
}
.product-card.is-selected .btn {
  border-color: var(--white);
}
.product-image-1 {
  background-image: url("../assets/images/figma-product-overhead.png");
}
.product-image-2 {
  background-image: url("../assets/images/Gantry Cranes new.png");
}
.product-image-3 {
  background-image: url("../assets/images/Jib Cranes new.png");
}
.product-image-4 {
  background-image: url("../assets/images/figma-product-trolley.png");
}
.product-image-5 {
  background-image: url("../assets/images/Rope hoist new.png");
}
.product-image-6 {
  background-image: url("../assets/images/Spreader Beam new.png");
}
.product-image-7 {
  background-image: url("../assets/images/c hook new.png");
}
.product-image-8 {
  background-image: url("../assets/images/grab bucket new.png");
}
.product-image-9 {
  background-image: url("../assets/images/winch new.png");
}

.service-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: service-step;
}
.service-list li {
  counter-increment: service-step;
  display: grid;
  gap: 4px;
  position: relative;
  padding: 14px 16px 14px 54px;
  background: var(--white);
  border-left: 4px solid var(--red);
}
.service-list li::before {
  content: counter(service-step) ".";
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--red);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
}
.service-list strong {
  color: var(--dark);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 24px;
}
.service-list span {
  display: block;
  max-width: 560px;
  color: var(--body);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
}
.services .content-panel .btn {
  justify-self: center;
  min-height: 46px;
  padding: 13px 22px;
  font-size: 16px;
  line-height: 16px;
}
.services .split-grid {
  gap: clamp(34px, 4.8vw, 70px);
  align-items: stretch;
}
.services .content-panel {
  order: 0;
  align-content: center;
  gap: 20px;
}
.services .content-panel h2 {
  max-width: 570px;
  font-size: clamp(34px, 3.6vw, 45px);
  line-height: 1.14;
}
.services .image-panel {
  order: 1;
  width: 100%;
  align-self: stretch;
  min-height: 520px;
}

.industries-container {
  max-width: var(--container);
}
.industry-heading {
  display: grid;
  margin: 0 auto 30px;
  text-align: center;
}
.industry-heading h2 {
  color: var(--dark);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 45px);
  font-weight: 700;
  line-height: 45px;
}
.industry-grid {
  display: grid;
  column-gap: 45px;
  row-gap: 45px;
}
.industry-card {
  aspect-ratio: 397 / 303;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px 13px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
}
.industry-card strong {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid var(--red);
  background: rgba(227, 6, 19, 0.2);
  backdrop-filter: blur(1.9px);
  -webkit-backdrop-filter: blur(1.9px);
  color: var(--white);
  font-family: "Nunito", Arial, sans-serif;
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 700;
  line-height: 25px;
  text-align: center;
  white-space: nowrap;
}
.industry-1 {
  background-image: url("../assets/images/industry-steel.png");
}
.industry-2 {
  background-image: url("../assets/images/industry-manufacturing.png");
}
.industry-3 {
  background-image: url("../assets/images/industry-energy.png");
}
.industry-4 {
  background-image: url("../assets/images/Workshop Units new.png");
}
.industry-5 {
  background-image: url("../assets/images/industry-cement.png");
}
.industry-6 {
  background-image: url("../assets/images/industry-paper.png");
}

.enquiry-grid {
  display: grid;
  gap: 34px;
  align-items: start;
}
.contact-copy {
  width: min(100%, 673px);
}
.contact-copy h2 {
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(120px, 16vw, 230px);
  font-weight: 800;
  font-style: normal;
  line-height: 0.72;
  letter-spacing: 0;
}
.contact-copy h2 span {
  display: block;
  color: var(--dark);
}
.contact-copy h2 {
  color: var(--red);
  font-style: italic;
}
.contact-list {
  display: grid;
  gap: 14px;
  width: min(100%, 579px);
  margin-top: 30px;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 25px;
  font-weight: 800;
  line-height: 25px;
  color: var(--dark);
}
.contact-list a,
.contact-list p {
  display: flex;
  gap: 21px;
  align-items: center;
  min-height: 84px;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}
.contact-list a {
  color: var(--dark);
  text-decoration: none;
}
.contact-detail-address {
  align-items: flex-start;
  font-family: "Nunito", Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
}
.contact-list strong {
  display: block;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 9px;
}
.contact-icon {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--white);
}
.contact-icon::before {
  content: "";
  width: 84px;
  height: 84px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.contact-phone::before {
  background-image: url("../assets/icons/phone icon.png");
}
.contact-email::before {
  background-image: url("../assets/icons/email icon.png");
}
.contact-office::before {
  background-image: url("../assets/icons/office icon.png");
}
.contact-factory::before {
  background-image: url("../assets/icons/factory icon.png");
}

.enquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid var(--red);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}
.form-row {
  display: grid;
  gap: 18px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--dark);
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(227, 6, 19, 0.3);
  background: var(--white);
  padding: 18px 16px;
  font: inherit;
  color: var(--dark);
  outline: 2px solid transparent;
  outline-offset: 1px;
}
select {
  min-height: 118px;
}
textarea {
  min-height: 170px;
  resize: vertical;
}
input:focus,
select:focus,
textarea:focus {
  outline-color: var(--red);
}
input[aria-invalid="true"],
textarea[aria-invalid="true"],
.multi-select[aria-invalid="true"] details {
  border-color: var(--red);
  background: #fff7f7;
}
label small {
  color: #666;
  font-weight: 600;
}
.multi-select {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.multi-select legend {
  padding: 0;
  font-weight: 800;
  color: var(--dark);
}
.multi-select details {
  background: var(--white);
  border: 1px solid rgba(227, 6, 19, 0.3);
  position: relative;
}
.multi-select details[open],
.multi-select details:focus-within {
  border-color: rgba(227, 6, 19, 0.3);
  outline: 2px solid rgba(227, 6, 19, 0.18);
  outline-offset: 0;
}
.multi-select summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 18px 16px;
  cursor: pointer;
  color: #666;
  list-style: none;
  outline: none;
}
.multi-select summary:focus-visible {
  outline: 2px solid rgba(227, 6, 19, 0.35);
  outline-offset: -2px;
}
.multi-select-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.multi-select.has-selection summary {
  color: var(--dark);
}
.multi-select summary::-webkit-details-marker {
  display: none;
}
.multi-select summary::after {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.multi-select details[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}
.multi-select-options {
  display: grid;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(227, 6, 19, 0.18);
  background: var(--white);
}
.multi-select-options label {
  display: flex;
  grid-template-columns: none;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.multi-select-options input {
  width: 18px;
  height: 18px;
  padding: 0;
}
.form-submit {
  width: 100%;
  border: 0;
}
.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}
.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.form-alert {
  padding: 14px;
  font-weight: 800;
}
.form-alert.success {
  background: #e7f8ee;
  color: #176a36;
}
.form-alert.error {
  background: #fff0f0;
  color: #a7000b;
}
.form-alert.loading {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff8e5;
  color: #7a4a00;
}
.form-alert.loading::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 2px solid rgba(122, 74, 0, 0.22);
  border-top-color: #7a4a00;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.site-footer {
  width: min(100%, 1420px);
  margin: 0 auto;
  background: #151515;
  color: var(--white);
  padding-top: 48px;
  overflow: hidden;
}
.footer-cta {
  position: relative;
  width: min(calc(100% - 96px), 1252px);
  min-height: 397px;
  padding: 64px 36px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(38, 38, 38, 0.94), rgba(31, 31, 31, 0.9));
  backdrop-filter: blur(12px);
}
.footer-cta-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 690px;
}
.footer-cta h2 {
  max-width: 690px;
  color: var(--white);
  font-family: "Raleway", Arial, sans-serif;
  font-size: clamp(42px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}
.footer-cta p {
  max-width: 640px;
  margin: 0;
  color: var(--white);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.footer-cta .button-row {
  position: relative;
  z-index: 1;
  gap: 14px;
  margin-top: 2px;
}
.footer-cta .btn {
  min-width: 190px;
  min-height: 56px;
  padding: 17px 28px;
  font-size: 17px;
  line-height: 17px;
}
.footer-cta .btn-outline-light {
  min-width: 193px;
  background: transparent;
  border-width: 2px;
}
.footer-cta-mark {
  position: absolute;
  right: 48px;
  top: 37px;
  width: min(46vw, 598px);
  height: auto;
  object-fit: contain;
  opacity: 0.24;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.45));
  pointer-events: none;
}
.footer-grid {
  display: grid;
  justify-content: space-between;
  gap: 34px;
  width: min(calc(100% - 32px), 1260px);
  min-height: 253px;
  padding: 42px 0 34px;
  color: var(--white);
}
.footer-grid h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: "Raleway", Arial, sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0;
}
.footer-column {
  display: grid;
  align-content: start;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-grid a {
  display: block;
  width: fit-content;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  opacity: 1;
  transition: color 0.2s ease;
}
.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}
.social-title {
  margin-top: 30px !important;
  margin-bottom: 12px !important;
}
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-links a {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
}
.social-links img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 16px 48px;
  background: rgba(255, 255, 255, 0.05);
}
.copyright {
  grid-column: 2;
  margin: 0;
  text-align: center;
}
.footer-credit {
  grid-column: 3;
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-align: right;
}

@media (min-width: 640px) {
  .card-grid.three,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 286px));
    justify-content: space-between;
  }
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .card-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(3, max-content);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: min(calc(100% - 48px), 1260px);
  }
  .footer-grid h3 {
    font-size: 22px;
    line-height: 24px;
  }
  .footer-grid a {
    font-size: 15px;
    line-height: 22px;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 24px 18px;
  }
  .copyright,
  .footer-credit {
    grid-column: 1;
    justify-self: center;
    text-align: center;
  }
  .footer-credit {
    font-size: 13px;
    line-height: 18px;
  }
  .footer-credit br {
    display: none;
  }
  .footer-credit br + span::before {
    content: " ";
  }
}
@media (min-width: 900px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
  }
  .services .split-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }
  .reverse .content-panel {
    order: 0;
  }
}
@media (min-width: 1024px) {
  .card-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
  .services .content-panel {
    padding-block: 8px;
  }
  .service-image {
    min-height: 500px;
    background-position: center;
  }
}
@media (min-width: 1280px) {
  .enquiry-grid {
    grid-template-columns: minmax(0, 673px) minmax(0, 1fr);
    gap: 48px;
  }
  .site-header {
    gap: clamp(22px, 2.2vw, 34px);
  }
  .menu-toggle {
    display: none;
  }
  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    width: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    box-shadow: none;
    margin-left: auto;
    background: transparent;
  }
  .primary-nav a {
    justify-content: center;
    min-height: 36px;
    padding-inline: 10px;
  }
  .nav-close,
  .nav-mobile-action {
    display: none;
  }
  .header-phone {
    display: inline-flex;
  }
  .site-header > .btn {
    display: inline-flex;
  }
  .services .split-grid {
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  }
  .service-image {
    min-height: 560px;
    background-position: center;
  }
  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 286px));
    justify-content: space-between;
    gap: 0;
  }
  .card-grid.four {
    grid-template-columns: repeat(4, 1fr);
  }
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin-inline: auto;
  }
  .industry-card {
    aspect-ratio: 397 / 303;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .site-header {
    gap: 16px;
    padding-inline: 28px;
  }
  .logo img {
    width: 104px;
  }
  .primary-nav {
    gap: 2px;
  }
  .primary-nav a {
    padding-inline: 7px;
    font-size: 14px;
  }
  .header-phone {
    width: 200px;
    gap: 10px;
  }
  .header-phone-label {
    font-size: 13px;
    line-height: 13px;
  }
  .header-phone-number {
    font-size: 16px;
    line-height: 16px;
  }
  .site-header .btn {
    min-height: 48px;
    padding: 15px 22px;
    font-size: 15px;
    line-height: 15px;
  }
}
@media (max-width: 1279px) {
  .footer-cta-mark {
    display: none;
  }
  .primary-nav.is-open .nav-mobile-action {
    display: inline-flex !important;
  }
  .feature-card {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px 22px;
  }
  .feature-card .icon {
    grid-column: 1;
    grid-row: 1;
  }
  .feature-copy {
    display: contents;
  }
  .feature-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .feature-card p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .site-header {
    gap: clamp(12px, 2vw, 24px);
  }
  .menu-toggle {
    order: 3;
    margin-left: 0;
  }
  .header-phone {
    order: 2;
    display: inline-flex;
    width: 230px;
    height: 56px;
    margin-left: auto;
  }
  .about .split-grid {
    grid-template-columns: 1fr;
  }
  .about .content-panel h2,
  .about .content-panel p {
    max-width: none;
  }
  .contact-copy {
    width: min(100%, 620px);
  }
  .contact-list {
    width: min(100%, 560px);
    font-size: 22px;
    line-height: 25px;
  }
  .contact-detail-address {
    font-size: 20px;
    line-height: 24px;
  }
  .contact-icon {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
    padding: 13px;
  }
  .contact-icon::before {
    width: 46px;
    height: 46px;
  }
  .site-footer {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .about .content-panel h2 {
    font-size: 40px;
    line-height: 52px;
  }
  .about-purpose-grid p {
    font-family: "Nunito", Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
  }
  .services .split-grid {
    gap: 30px;
    align-items: center;
  }
  .service-image {
    min-height: 390px;
    background-position: 43% center;
  }
  .service-list li {
    padding: 13px 14px 13px 50px;
  }
  .service-list strong {
    font-size: 19px;
    line-height: 24px;
  }
  .footer-cta {
    width: min(100% - 48px, var(--container));
    min-height: 360px;
    padding: 56px 34px;
  }
  .footer-cta-mark {
    right: 24px;
    top: 74px;
    width: clamp(320px, 48vw, 430px);
    opacity: 0.14;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }
  .site-header {
    min-height: 76px;
    padding-inline: 18px;
    gap: 10px;
  }
  .logo img {
    width: 96px;
  }
  .primary-nav {
    top: 76px;
    right: 0;
    width: clamp(230px, 64vw, 300px);
    max-height: calc(100vh - 92px);
    padding: 14px;
  }
  .header-phone {
    width: auto;
    height: 40px;
    gap: 8px;
  }
  .header-phone-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
  .header-phone-icon::before {
    width: 20px;
    height: 20px;
  }
  .header-phone-label {
    display: none;
  }
  .header-phone-copy {
    gap: 0;
  }
  .header-phone-number {
    font-size: 15px;
    line-height: 15px;
  }
  .hero {
    min-height: 520px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .hero-bg {
    background-position: center, center, 55% center, center;
  }
  .hero-content {
    padding: 76px 0 58px;
  }
  .hero h1 {
    max-width: 480px;
    font-size: clamp(38px, 11vw, 52px);
  }
  .hero p {
    max-width: 460px;
  }
  .trust-strip {
    padding: 30px 0;
    min-height: 0;
  }
  .about,
  .products,
  .industries,
  .services,
  .enquiry-section {
    padding: 64px 0;
  }
  .about-image {
    aspect-ratio: 942 / 1014;
  }
  .about .content-panel h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .about .content-panel p {
    font-size: 15px;
    line-height: 24px;
  }
  .about-purpose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about .content-panel .btn {
    justify-self: stretch;
    padding-inline: 24px;
  }
  .services .split-grid {
    gap: 0;
  }
  .service-image {
    display: none;
  }
  .services .content-panel h2 {
    line-height: 1.16;
  }
  .feature-card {
    gap: 22px;
  }
  .feature-card h3 {
    font-size: 23px;
    line-height: 31px;
  }
  .product-card {
    min-height: auto;
  }
  .product-image {
    min-height: 0;
    flex-basis: auto;
  }
  .product-body h3 {
    font-size: 22px;
    line-height: 24px;
  }
  .product-body p {
    min-height: 0;
    font-size: 16px;
    line-height: 24px;
  }
  .product-card .btn {
    min-height: 50px;
    padding: 15px 22px;
    font-size: 16px;
    line-height: 16px;
  }
  .contact-copy h2 {
    font-size: clamp(96px, 20vw, 140px);
  }
  .contact-list {
    width: 100%;
    gap: 12px;
    margin-top: 22px;
    font-size: 20px;
    line-height: 24px;
  }
  .contact-list a,
  .contact-list p {
    gap: 16px;
    min-height: 64px;
  }
  .contact-detail-address {
    font-size: 18px;
    line-height: 23px;
  }
  .contact-list strong {
    margin-bottom: 6px;
  }
  .contact-icon {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
    padding: 12px;
  }
  .contact-icon::before {
    width: 40px;
    height: 40px;
  }
  .footer-grid {
    min-height: 0;
    padding-block: 36px 30px;
  }
  .footer-bottom {
    grid-template-columns: 1fr auto;
    padding: 16px 24px;
  }
  .copyright {
    grid-column: 1;
    text-align: left;
  }
  .footer-credit {
    grid-column: 2;
    font-size: 13px;
    line-height: 19px;
  }
}
@media (max-width: 639px) {
  .button-row {
    align-items: stretch;
  }
  .hero .btn,
  .about .btn,
  .section-action .btn {
    width: 100%;
    min-width: 0;
  }
  .site-header {
    padding-inline: 10px;
    gap: 8px;
  }
  .logo img {
    width: 76px;
  }
  .primary-nav {
    right: 0;
    width: clamp(205px, 66vw, 260px);
    padding: 10px;
  }
  .primary-nav a {
    min-height: 38px;
    padding: 9px 10px;
    font-size: 14px;
  }
  .nav-close {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }
  .nav-mobile-action {
    width: 100%;
    min-height: 42px !important;
    padding-inline: 10px !important;
    font-size: 14px !important;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
  }
  .header-phone-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }
  .header-phone-icon::before {
    width: 17px;
    height: 17px;
  }
  .header-phone-number {
    font-size: 12px;
    line-height: 12px;
  }
  .hero {
    min-height: 560px;
  }
  .hero-bg {
    background-position: center, center, 57% center, center;
  }
  .hero-content {
    padding: 72px 0 52px;
  }
  .hero .button-row {
    gap: 10px;
  }
  .trust-item {
    align-items: flex-start;
  }
  .trust-icon {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
    background-size: 52px 52px;
  }
  .trust-copy,
  .trust-item p {
    width: auto;
    min-width: 0;
    font-size: 18px;
    line-height: 25px;
  }
  .card-grid.three,
  .card-grid.four,
  .industry-grid {
    gap: 18px;
  }
  .feature-card {
    padding: 18px;
    border-radius: 14px;
  }
  .feature-card h3 {
    font-size: 20px;
    line-height: 27px;
  }
  .feature-card p {
    font-size: 15px;
    line-height: 23px;
  }
  .icon {
    width: 82px;
    height: 82px;
  }
  .icon::after {
    inset: 9px;
  }
  .service-list li {
    gap: 5px;
    padding: 12px 12px 12px 46px;
  }
  .service-list li::before {
    left: 14px;
    top: 12px;
  }
  .service-list strong {
    font-size: 18px;
    line-height: 23px;
  }
  .service-list span {
    font-size: 14px;
    line-height: 21px;
  }
  .services .content-panel .btn {
    width: auto;
    min-width: 172px;
    justify-self: center;
  }
  .contact-list {
    gap: 12px;
    font-size: 17px;
    line-height: 21px;
  }
  .contact-list a,
  .contact-list p {
    gap: 12px;
    min-height: 54px;
  }
  .contact-detail-address {
    font-size: 15px;
    line-height: 20px;
  }
  .contact-icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    padding: 10px;
  }
  .contact-icon::before {
    width: 34px;
    height: 34px;
  }
  .site-footer {
    padding-top: 24px;
  }
  .footer-cta {
    width: min(100% - 32px, var(--container));
    min-height: 0;
    padding: 42px 22px;
    border-radius: 24px;
  }
  .footer-cta h2 {
    font-size: 33px;
    line-height: 1.2;
  }
  .footer-cta p {
    font-size: 16px;
    line-height: 24px;
  }
  .footer-cta .button-row {
    align-items: stretch;
  }
  .footer-cta .btn {
    width: 100%;
    min-width: 0;
  }
  .footer-cta-mark {
    right: -16px;
    top: 28px;
    bottom: auto;
    width: min(72vw, 260px);
    opacity: 0.08;
  }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 18px 18px;
  }
  .copyright,
  .footer-credit {
    grid-column: 1;
    justify-self: center;
    text-align: center;
  }
  .footer-credit {
    font-size: 13px;
    line-height: 18px;
  }
  .industries-container {
    width: min(100% - 32px, var(--container));
  }
  .industry-card {
    aspect-ratio: 397 / 303;
  }
  .industry-card strong {
    white-space: normal;
    font-size: 20px;
  }
}
@media (max-width: 1023px) {
  .services .split-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .services .content-panel,
  .services .service-list,
  .services .service-image {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}
