/* ── AMS Industrial Solutions — Stylesheet ── */

:root {
  --green: #2e7d32;
  --green-dark: #1b5e20;
  --green-light: #f1f8f1;
  --orange: #e95b1a;
  --charcoal: #2c2c2c;
  --charcoal-2: #3a3a3a;
  --white: #ffffff;
  --off-white: #f8f7f2;
  --muted: #6b7280;
  --border: #e0e0d8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Barlow', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  /* height: 40px; */
  width: auto;
  display: block;
}

/* Fallback text logo — shown if image fails to load */
.logo-fallback {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--green);
}

.logo-mark span {
  color: var(--orange);
}

.logo-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--charcoal-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  color: white;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--green-dark);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  position: relative;
  overflow: hidden;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: var(--green);
  clip-path: polygon(40% 0%, 100% 0%, 100% 60%);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.25s forwards;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.55s forwards;
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-white:hover {
  background: var(--off-white);
}

.btn-outline-white {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline-white:hover {
  border-color: rgba(255, 255, 255, 0.7);
  color: white;
}

.hero-right {
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.45s forwards;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--green);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.18;
}

.hero-right-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-right-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
}

.offerings-preview {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.offerings-preview li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-left: 3px solid transparent;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.offerings-preview li:hover {
  border-left-color: var(--green);
  background: var(--green-light);
}

.offerings-preview li .num {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  min-width: 20px;
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-left {
  background: var(--white);
  padding: 96px 72px;
  border-right: 1px solid var(--border);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.section-title em {
  font-style: normal;
  color: var(--green);
}

.body-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 36px;
}

.stat-callout {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: var(--green-dark);
  border-radius: 2px;
}

.stat-callout-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat-callout-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  font-weight: 500;
}

.about-right {
  background: var(--off-white);
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-feat {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.about-feat:first-child {
  padding-top: 0;
}
.about-feat:last-child {
  border-bottom: none;
}

.feat-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}

.feat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.feat-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── OFFERINGS FULL ── */
.offerings-section {
  background: var(--green-dark);
  padding: 96px 72px;
}

.offerings-section .section-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
.offerings-section .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.4);
}
.offerings-section .section-title {
  color: var(--white);
}
.offerings-section .section-title em {
  color: var(--orange);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.off-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 36px;
  border-bottom: 3px solid transparent;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.off-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-bottom-color: var(--orange);
}

.off-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: 12px;
}

.off-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.off-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}

/* ── ADVANTAGES ── */
.advantages {
  background: var(--white);
  padding: 96px 72px;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.adv-card {
  border: 1px solid var(--border);
  padding: 40px 32px;
  border-top: 3px solid var(--green);
  background: var(--white);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.adv-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.adv-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.adv-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--charcoal);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.adv-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── VISION / MISSION ── */
.vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.vm-panel {
  padding: 96px 72px;
  position: relative;
  overflow: hidden;
}

.vm-panel.vision {
  background: var(--off-white);
}
.vm-panel.mission {
  background: var(--green);
}

.vm-panel.mission::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: var(--green-dark);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.vm-panel.vision .section-eyebrow {
  color: var(--green);
}
.vm-panel.vision .section-eyebrow::before {
  background: var(--green);
}
.vm-panel.vision .section-title {
  color: var(--charcoal);
}
.vm-panel.vision .section-title em {
  color: var(--green);
}

.vm-panel.mission .section-eyebrow {
  color: rgba(255, 255, 255, 0.65);
}
.vm-panel.mission .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}
.vm-panel.mission .section-title {
  color: var(--white);
}

.vm-body {
  font-size: 15px;
  line-height: 1.85;
  margin-top: 20px;
}

.vm-panel.vision .vm-body {
  color: var(--muted);
}
.vm-panel.mission .vm-body {
  color: rgba(255, 255, 255, 0.75);
}

.vm-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vm-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.6;
}

.vm-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  background: var(--green-dark);
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--green);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.35;
}

.contact-info .section-eyebrow {
  color: var(--orange);
}
.contact-info .section-eyebrow::before {
  background: var(--orange);
}
.contact-info .section-title {
  color: var(--white);
}
.contact-info .section-title em {
  color: var(--orange);
}

.contact-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin: 20px 0 44px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: color 0.2s;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 500;
}

.contact-item:last-child {
  border-bottom: none;
}
.contact-item:hover {
  color: var(--white);
}

.c-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.contact-item:hover .c-icon {
  border-color: var(--orange);
  background: rgba(233, 91, 26, 0.1);
}

.contact-form {
  background: var(--off-white);
  padding: 96px 72px;
}

.contact-form .section-eyebrow {
  color: var(--green);
}
.contact-form .section-eyebrow::before {
  background: var(--green);
}
.contact-form .section-title {
  color: var(--charcoal);
}

.form-body {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.field input,
.field textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--green);
}

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

.form-submit {
  background: var(--green);
  color: white;
  border: none;
  padding: 14px 32px;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--green-dark);
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 28px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid var(--green);
}

.footer-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
}
.footer-logo-text span {
  color: var(--orange);
}
.footer-logo-text em {
  font-style: normal;
  color: var(--green);
}

.footer-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
}

.footer-copy a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.footer-copy a:hover {
  color: var(--white);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  /* .logo img { height: 32px; } */
  .hero,
  .about,
  .vm,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero-left,
  .hero-right,
  .about-left,
  .about-right,
  .vm-panel,
  .contact-info,
  .contact-form {
    padding: 64px 28px;
  }
  .hero-right {
    display: none;
  }
  .offerings-section {
    padding: 64px 28px;
  }
  .offerings-grid,
  .adv-grid {
    grid-template-columns: 1fr;
  }
  .advantages {
    padding: 64px 28px;
  }
  footer {
    padding: 24px 28px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-copy {
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
