@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ============================ ROOT / RESET ============================ */
:root {
  --green: #54b948;
  --green-dark: #3f9a36;
  --amber: #f0a500;
  --amber-dark: #d99400;
  --ink: #1c1c1c;
  --ink-soft: #2b2b2b;
  --gray: #8c8c8c;
  --bg-1: #fbfbfb;
  --bg-2: #e9e9e9;
  --bg: #050229;
  --card: #33373c;
  --orange: #e8901e;
  --muted: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

/* ============================ HEADER ============================ */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 48px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.logo {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  width: 150px;
}

.logo .mark {
  width: 42px;
  height: 42px;
}

.logo .word {
  line-height: .92;
  font-weight: 900;
  letter-spacing: .5px;
}

.logo .word .g {
  display: block;
  color: var(--green);
  font-size: 20px;
}

.logo .word .r {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

header nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 34px;
}

header nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 6px 0;
  transition: color .18s ease;
}

header nav a:hover {
  color: var(--green);
}

header nav a.active {
  color: #f0a500;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown>a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  font-size: 9px;
  transition: transform .2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 220px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 30;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-content a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, color .15s ease;
}

.nav-dropdown-content a:hover {
  background: #f4f4f4;
  color: var(--green);
}

.nav-dropdown-content a.dropdown-active {
  color: var(--amber);
  background: #fafafa;
}

.phone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .3px;
  flex-shrink: 0;
}

.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.header-right .divider {
  width: 1px;
  height: 28px;
  background: #d0d0d0;
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.search-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--ink);
}

.phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.phone-text p {
  margin: 0;
}

.hwani {
  font-size: 10px;
  font-weight: 700;
  color: #f0a500;
}

.phone-num {
  font-weight: 800;
}

.phone svg {
  width: 18px;
  height: 18px;
  fill: var(--ink);
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: 560px;
  background: #050229 url('img/home/home.jpg') center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #050229;
  opacity: 0.96;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 40px 0 56px 64px;
  max-width: 660px;
}

h1 {
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 22px;
}

h1 .l1,
h1 .l2 {
  display: block;
  font-weight: 800;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 62px);
  letter-spacing: .5px;
}

h1 .l3 {
  display: block;
  font-weight: 300;
  color: #f6b41f;
  font-size: clamp(28px, 3.9vw, 52px);
  letter-spacing: 2px;
  margin-top: 2px;
}

.grow {
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-bottom: 34px;
}

.features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--ink);
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check svg {
  width: 11px;
  height: 11px;
  fill: #fff;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  cursor: pointer;
  padding: 16px 34px;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 9px 16px rgba(0, 0, 0, .20);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
}

.btn>* {
  transform: none;
}

.btn svg {
  width: 15px;
  height: 15px;
  fill: #fff;
  transform: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 22px rgba(0, 0, 0, .24);
  filter: brightness(1.03);
}

.btn-green {
  background: #fff;
  color: #050229;
}

.btn-amber {
  background: linear-gradient(180deg, #f6b41f, var(--amber));
}

/* Hero image */
.hero-media {
  position: relative;
  z-index: 4;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-media svg,
.hero-media img,
.machine-photo {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: bottom right;
  display: block;
}

.machine-photo {
  object-fit: cover;
}

/* ============================ FEATURED CONTENT ============================ */
.feature-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 90px 28px 0 28px;
}

.tate {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}

.feature-content p {
  font-size: 14px;
}

.feature-content h2 {
  font-size: 30px;
  font-family: 'raleway';
  font-weight: 700;
  margin-bottom: 5px;
}

/* ============================ SERVICES ============================ */
.services {
  position: relative;
  padding-bottom: 120px;
}

.services__banner {
  background: linear-gradient(110deg, #050229 0%, #050229 35%, #2a393e 100%);
  padding: 54px 0 0;
}

.services__top {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(24px, 6vw, 80px) 150px;
}

.services__heading {
  color: #fff;
  font-size: clamp(1.2rem, 3.4vw, 1.45rem);
  line-height: 1.25;
  font-weight: 400;
  margin: 0 0 54px 0;
  max-width: 650px;
  font-family: 'raleway';
}

.services__link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s ease;
}

.services__link:hover {
  opacity: .75;
}

.services__link .arrow {
  transition: transform .2s ease;
}

.services__link:hover .arrow {
  transform: translateX(4px);
}

.services__cards {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
  margin-top: -150px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.svc-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  padding: 15px;
}

.svc-card__media-wrap {
  position: relative;
}

.svc-card__media-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.svc-card__media {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  display: block;
  background: #dfe5e7;
}

.svc-card__title {
  margin: 0;
  padding: 10px 22px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1c2b30;
}

.svc-card__text {
  font-size: 14px;
  padding: 3px 22px;
}

.svc-card__link {
  display: inline-block;
  margin: 12px 22px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.svc-card__link:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.svc-card__link .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.svc-card__link:hover .arrow {
  transform: translateX(4px);
}

/* ============================ ABOUT ============================ */
.about {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.about__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/0.92;
}

.about__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.about__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg,
      #050229 0 22%,
      #e9b407 22% 62%,
      #050229 62% 100%);
}

.about__heading {
  font-size: clamp(1.5rem, 2.6vw, 1.4rem);
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 10px;
  font-family: 'raleway';
}

.about__text p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #050229;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .8rem;
  padding: 14px 26px;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
  transition: background .2s ease, transform .2s ease;
}

.about-btn:hover {
  background: #050229;
  transform: translateY(-2px);
}

.about-btn .arrow {
  transition: transform .2s ease;
}

.about-btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================ EQUIPMENT ============================ */
.equipment {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
  background: var(--bg);
}

.equipment-wrapper {
  background: var(--bg);
}

.equip-text {
  font-size: 14px !important;
  margin-bottom: 4px !important;
  line-height: 1.7 !important;
}

.equipment__eyebrow {
  color: var(--green);
  font-weight: 700;
  font-size: 12px !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 0 !important;
}

.equipment__heading {
  font-size: clamp(1.8rem, 2.2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #fff;
}

.equipment__text p {
  color: var(--muted);
  line-height: 1.5;
  font-size: .82rem;
  margin: 0 0 10px;
  font-weight: 400;
}

.equipment__link {
  display: inline-block;
  margin-top: 8px;
  color: #f0a500;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .1em;
  text-decoration: none;
  position: relative;
}

.equipment__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}

.equipment__link:hover::after {
  width: 100%;
}

.equipment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.eq-card {
  position: relative;
  aspect-ratio: 1/0.65;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: var(--card);
  color: #fff;
  border-radius: 2px;
}

.eq-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45) grayscale(.2);
  transform: scale(1);
  transition: filter .35s ease, transform .5s ease;
}

.eq-card:hover .eq-card__img {
  filter: brightness(.65) grayscale(0);
  transform: scale(1.06);
}

.eq-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 2;
  padding: 12px;
}

.eq-card__icon {
  width: 48px;
  height: 30px;
  color: #fff;
  opacity: .95;
  transform: translateY(0);
  transition: transform .35s ease;
}

.eq-card:hover .eq-card__icon {
  transform: translateY(-6px);
}

.eq-card__label {
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  text-align: center;
  position: relative;
  padding-bottom: 6px;
}

.eq-card__label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--green);
  transform: translateX(-50%) scaleX(.6);
  opacity: .6;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}

.eq-card:hover .eq-card__label::after {
  width: 46px;
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.eq-card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .85));
  color: #cdd4d8;
  font-size: .72rem;
  line-height: 1.35;
  text-align: center;
  padding: 20px 12px 10px;
  transform: translateY(100%);
  transition: transform .35s ease;
  z-index: 3;
}

.eq-card:hover .eq-card__caption {
  transform: translateY(0);
}

/* ============================ BRANDS ============================ */
.brands {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px clamp(24px, 5vw, 48px);
  text-align: center;
}

.brands__heading {
  font-size: clamp(1.5rem, 2.6vw, 1.2rem);
  font-weight: 700;
  margin: 0 0 8px;
}

.brands__heading::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  background: #f0a500;
  margin: 14px auto 0;
  border-radius: 2px;
}

.brands__row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 44px);
}

.brand {
  flex: 0 0 auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.brand:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}
.brand-demure {
  flex: 0 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.demure{
	max-height:80px;
	max-width:140px;
	  width: auto;
  object-fit: contain;
  display: block;
}
.brand__img {
  max-height: 40px;
  max-width: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.brand__fallback {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: .04em;
  color: #5a6a70;
}

/* ============================ CONTACT PAGE ============================ */
.contact {
  --c-navy: #0c0d2b;
  --c-heading: #13142e;
  --c-amber: #f0a91e;
  --c-body: #54566e;
  --c-muted: #8a8ca3;
  --c-field: #c9cad6;

  max-width: 1140px;
  margin: 0 auto;
  padding: 72px clamp(24px, 5vw, 48px);
  color: var(--c-body);
}

.contact__eyebrow {
  color: var(--c-amber);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.contact__title {
  color: var(--c-heading);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 44px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

/* ---- Contact Details ---- */
.detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.detail__icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(240, 169, 30, .12);
  color: var(--c-amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail__icon svg {
  width: 20px;
  height: 20px;
}

.detail__body {
  padding-top: 2px;
}

.detail__label {
  color: var(--c-heading);
  font-weight: 700;
  font-size: 1.02rem;
  margin: 0 0 10px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.detail__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--c-amber);
  border-radius: 2px;
}

.detail__value {
  margin: 0;
  line-height: 1.6;
  font-size: 13px;
  color: #000;
}

.detail__value a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
}

.detail__value a:hover {
  color: var(--c-amber);
}

.detail__value+.detail__value {
  margin-top: 14px;
  color: var(--c-muted);
}

/* ---- Contact Form ---- */
.contact .form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact .field {
  position: relative;
  margin-bottom: 30px;
}

.contact .field input,
.contact .field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--c-field);
  background: transparent;
  padding: 10px 2px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--c-heading);
  outline: none;
  transition: border-color .25s ease;
}

.contact .field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact .field label {
  position: absolute;
  left: 2px;
  top: 10px;
  color: #000;
  font-size: 13px;
  pointer-events: none;
  transition: all .2s ease;
}

/* float label up on focus or when filled */
.contact .field input:focus+label,
.contact .field input:not(:placeholder-shown)+label,
.contact .field textarea:focus+label,
.contact .field textarea:not(:placeholder-shown)+label {
  top: -14px;
  font-size: .78rem;
  color: var(--c-amber);
}

.contact .field input:focus,
.contact .field textarea:focus {
  border-bottom-color: var(--c-amber);
}

/* Contact page button (overrides global .btn) */
.contact .btn {
  gap: 9px;
  background: var(--c-amber);
  color: var(--c-navy);
  font-size: .95rem;
  padding: 14px 34px;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
  letter-spacing: normal;
  text-transform: none;
  box-shadow: none;

  transition: background .2s ease, transform .2s ease;
}

.contact .btn:hover {
  background: #e09a12;
  transform: translateY(-2px);
  filter: none;
  box-shadow: none;
}

.contact .btn .arrow {
  transition: transform .2s ease;
}

.contact .btn:hover .arrow {
  transform: translateX(4px);
}

.contact .form__note {
  margin-top: 18px;
  font-size: .9rem;
  color: var(--c-amber);
  min-height: 1.2em;
}

/* ============================ FOOTER ============================ */
.footer {
  --text: #e9e9e9;
  --f-muted: #b9b9b9;
  --line: rgba(255, 255, 255, .14);
  background: #050229;
  color: #d99400;
}

.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 40px);
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  flex-wrap: wrap;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 3vw, 40px);
}

.footer__nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  transition: opacity .2s ease;
  text-transform: capitalize;
  font-weight: 400;
}

.footer__nav a:hover {
  opacity: .65;
}

.footer__socials {
  display: flex;
  gap: 22px;
}

.footer__socials a {
  color: #d99400;
  display: flex;
  align-items: center;
  transition: opacity .2s ease, transform .2s ease;
}

.footer__socials a:hover {
  opacity: .7;
  transform: translateY(-2px);
}

.footer__line {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  flex-wrap: wrap;
}

.footer__copy {
  color: var(--f-muted);
  font-size: 12px;
  font-weight: 400;
}

.footer__top-link {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--text);
  font-size: 12px;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity .2s ease;
  font-weight: 500;
}

.footer__top-link:hover {
  opacity: .65;
}

.footer__top-link svg {
  transition: transform .2s ease;
  color: #d99400;
}

.footer__top-link:hover svg {
  transform: translateY(-2px);
}

/* ============================ NAV TOGGLE ============================ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 30;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================ RESPONSIVE ============================ */
@media (max-width:1024px) {
  header {
    padding: 14px 28px;
  }

  header nav {
    gap: 22px;
  }
}

@media (max-width:860px) {
  .nav-toggle {
    display: flex;
  }

  .header-right {
    display: none;
  }

  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 28px 32px;
    gap: 0;
    transition: right .3s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, .12);
    z-index: 25;
    overflow-y: auto;
  }

  header nav.open {
    right: 0;
    display: flex;
  }

  header nav>a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
  }

  .nav-dropdown>a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    white-space: nowrap;
  }

  .nav-dropdown-content {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    min-width: auto;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-content {
    display: block;
  }

  .nav-dropdown-content a {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 36px 28px 40px;
    max-width: 400px;
  }

  .hero-media {
    order: 2;
    min-height: auto;
    max-height: 350px;
    padding: 0 20px 20px;
    align-items: center;
    justify-content: center;
  }

  .hero-media img {
    max-height: 100%;
    object-fit: contain;
  }

  h1 {
    margin-bottom: 32px;
  }

  .about {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

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

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

@media (max-width:760px) {
  .services__top {
    flex-direction: column;
    padding-bottom: 120px;
  }

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

@media (max-width:600px) {

  .footer__top,
  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width:560px) {
  .brands__row {
    gap: 24px 36px;
  }

  .brand {
    height: 40px;
  }

  .brand__img {
    max-height: 40px;
  }

  .brand__fallback {
    font-size: 1.05rem;
  }
}

@media (max-width:520px) {
  header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .phone {
    font-size: 16px;
  }

  .buttons {
    gap: 10px;
  }

  .hero-media {
    max-height: 320px;
    padding: 0 16px 16px;
    align-items: center;
    justify-content: center;
  }

  .hero-media img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .btn {
    padding: 12px 16px;
    font-size: 11px;
    letter-spacing: .3px;
    gap: 6px;
  }

  .equipment__heading {
    font-size: 1.35rem;
  }

  .about__actions {
    gap: 10px;
  }

  .about-btn {
    padding: 12px 16px;
    font-size: .72rem;
  }
}

@media (max-width:480px) {
  .contact .form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width:460px) {
  .equipment__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ============================ ABOUT BANNER ============================ */
.about-banner {
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('img/home/bread.jpg');
  /* your machine photo */
  background-size: cover;
  background-position: center;
}

.about-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(5, 2, 41, .94) 0%,
      rgba(5, 2, 41, .80) 32%,
      rgba(5, 2, 41, .30) 70%,
      rgba(5, 2, 41, .10) 100%);
}

.about-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 56px clamp(24px, 6vw, 80px);
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.about-banner__accent {
  flex: 0 0 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, #f0a500 0%, #0b0141 52%, #f0a500 100%);
}

.about-banner__eyebrow {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.about-banner__heading {
  color: #fff;
  font-weight: 300;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.14;
  margin: 0;
  max-width: 560px;
}

/* ============================ SPLIT (image + text) ============================ */
.split {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
  overflow: hidden;
}

.split__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.split__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none;
}

.split__media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bg) 0 22%, var(--amber) 22% 62%, var(--bg) 62% 100%);
}

.split__eyebrow {
  color: var(--amber);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.split__heading {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--bg);
  padding-top: 12px;
}

.split__text {
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 22px;
  color: #4a4a55;
}

.split__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
}

.split__list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.split__check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
}

.split__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--amber);
  color: var(--bg);
  text-decoration: none;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 14px 30px;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
  transition: transform .2s ease, filter .2s ease;
}

.split__btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.split__btn .arrow {
  transition: transform .2s ease;
}

.split__btn:hover .arrow {
  transform: translateX(4px);
}

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

  .split--reverse .split__media {
    order: 0;
  }
}

/* ============================ VISION / MISSION ============================ */
.vm {
  max-width: 1000px;
  margin: 0 auto;
  padding: 72px clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
}

.vm-card {
  position: relative;
  text-align: center;
  padding: 18px 30px 30px;
  border-left: 3px solid var(--amber);
  border-right: 3px solid var(--amber);

}

.vm-card::before,
.vm-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--amber);
}

.vm-card::before {
  left: 0;
}

.vm-card::after {
  right: 0;
}

.vm-card__title {
  position: relative;
  display: inline-block;
  color: var(--amber);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 18px;
  padding-top: 1px;
}



.vm-card__text {
  color: #2a2a3a;
  font-size: .85rem;
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

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

/* ============================ SERVICE TILES ============================ */
.svc-tiles {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px clamp(24px, 5vw, 48px);
}

.svc-tiles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.svc-tile {
  text-align: center;
  padding: 28px 20px;
  background: #fafafa;
  border: 1px solid #eef0f3;

  box-shadow: 0 10px 26px rgba(5, 2, 41, .05);
  transition: transform .25s ease, box-shadow .25s ease;
  clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%);
}

.svc-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(5, 2, 41, .10);
}

.svc-tile__icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.svc-tile__icon svg {
  width: 38px;
  height: 38px;
}

.svc-tile__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 10px;
}

.svc-tile__text {
  font-size: 13px;
  line-height: 1.6;
  color: #5a5c6b;
  font-weight: 500;
}

@media (max-width:980px) {
  .svc-tiles__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:680px) {
  .svc-tiles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:440px) {
  .svc-tiles__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================ INFO CARDS ============================ */
.info-cards {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.info-card {
  background: #fff;
  border: 1px solid #eef0f3;

  overflow: hidden;
  box-shadow: 0 10px 26px rgba(5, 2, 41, .05);
  transition: transform .25s ease, box-shadow .25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(5, 2, 41, .10);
}

.info-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #dfe5e7;
}

.info-card__body {
  padding: 28px 32px 34px;
}

.info-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 12px;
}

.info-card__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

.info-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: #4a4a55;
  text-align: justify;
}

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

/* ============================================================
   RESPONSIVE — SMALL DEVICES (additive, overrides only on small screens)
   ============================================================ */

/* ---- Tablet (<= 768px): tighten vertical spacing ---- */
@media (max-width: 768px) {

  .about,
  .equipment,
  .brands,
  .split,
  .vm,
  .svc-tiles,
  .info-cards,
  .contact {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .feature-content {
    padding-top: 56px;
  }
}

/* equipment image grid: 3 -> 2 on tablet (bounded so it never fights the <=460 single-column rule) */
@media (max-width: 768px) and (min-width: 461px) {
  .equipment__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Services: drop the desktop overlap so cards stack cleanly under the banner ---- */
@media (max-width: 760px) {
  .services {
    padding-bottom: 56px;
  }

  .services__banner {
    padding: 44px 0 0;
  }

  .services__top {
    padding-bottom: 44px;
  }

  .services__cards {
    margin-top: 22px;
    /* cancels the -150px pull-up that only makes sense on desktop */
  }
}

/* ---- Large phones (<= 600px) ---- */
@media (max-width: 600px) {
  .about-banner {
    min-height: auto;
  }

  .about-banner__inner {
    padding: 40px 24px;
  }

  .about-banner__heading {
    font-size: 1.7rem;
  }

  .contact__title {
    margin-bottom: 32px;
  }

  .footer__nav {
    justify-content: center;
  }
}

/* ---- Phones (<= 480px) ---- */
@media (max-width: 480px) {
  .hero-content {
    padding: 28px 20px 32px;
  }

  h1 .l1,
  h1 .l2 {
    font-size: 30px;
  }

  h1 .l3 {
    font-size: 24px;
  }

  .about,
  .equipment,
  .brands,
  .split,
  .vm,
  .svc-tiles,
  .info-cards,
  .contact,
  .feature-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .svc-tile {
    clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
  }

  .info-card__body {
    padding: 24px 22px 28px;
  }

  .about-banner__heading {
    font-size: 1.5rem;
  }
}

/* ---- Small phones (<= 380px) ---- */
@media (max-width: 380px) {

  .about,
  .equipment,
  .brands,
  .split,
  .vm,
  .svc-tiles,
  .info-cards,
  .contact {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .svc-tiles__grid {
    gap: 18px;
  }
}