/* Fonts & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    "Helvetica Neue", sans-serif;
  background-color: #ffffff;
  color: #0f172a;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow Condensed", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 700;
}

/* Utility colors */
.text-orange {
  color: #f97316 !important;
}

.bg-slate-50 {
  background-color: #f8fafc !important;
}

.border-slate-800 {
  border-color: #1f2937 !important;
}

.text-slate-400 {
  color: #94a3b8 !important;
}

.text-slate-600 {
  color: #475569 !important;
}

.text-slate-900 {
  color: #0f172a !important;
}

.bg-dark-slate {
  background-color: #0f172a !important;
}

.border-orange {
  border-color: #f97316 !important;
}

.hover-bg-slate-100:hover {
  background-color: #e5e7eb !important;
}

.tracking-wide {
  letter-spacing: 0.12em;
}

.tracking-wider {
  letter-spacing: 0.16em;
}

/* Hero */
.hero-section {
  background-image: url("https://images.unsplash.com/photo-1734864220078-c7354732aa7d?q=80&w=2000&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: rgba(15, 23, 42, 0.9);
}

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  max-width: 40rem;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #e2e8f0;
  margin-bottom: 1.75rem;
}

.badge-pill {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  background-color: rgba(249, 115, 22, 0.08);
  color: #f97316;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

/* Buttons */
.btn-orange {
  background-color: #f97316;
  color: #ffffff;
  border-radius: 0;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-orange:hover {
  background-color: #ea580c;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.3);
}

.btn-orange:active {
  transform: translateY(1px);
  box-shadow: 0 6px 15px rgba(249, 115, 22, 0.2);
}

button,
.btn {
  position: relative;
  overflow: hidden;
}

/* Sections */
.section-kicker {
  color: #f97316;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

/* Cards & images */
.industrial-card {
  border-radius: 0;
  border: 1px solid transparent;
  background-color: #ffffff;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.industrial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(249, 115, 22, 0.35);
}

.img-zoom-wrapper {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: #e5e7eb;
}

.img-zoom-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.industrial-card:hover .img-zoom-wrapper img {
  transform: scale(1.08);
}

.card-title-lg {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card-text-sm {
  font-size: 0.95rem;
  color: #475569;
}

.icon-xl {
  font-size: 2.25rem;
}

/* Facility image */
.facility-image-wrapper {
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.facility-image-wrapper img {
  object-fit: cover;
  display: block;
}

.facility-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
}

/* Clients */
.client-card {
  background-color: #ffffff;
  border-radius: 0;
  border: 1px solid #e5e7eb;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.client-card:hover {
  border-color: #f97316;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.12);
}

.client-name {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.75rem;
  color: #0f172a;
}

/* Contact form */
.contact-inner {
  max-width: 32rem;
}

.form-control-dark {
  background-color: #020617;
  border-color: transparent;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.form-control-dark::placeholder {
  color: #64748b;
}

.form-control-dark:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 0.15rem rgba(249, 115, 22, 0.3);
}

/* Logos */
.logo-grayscale {
  height: 5rem;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}

.logo-grayscale:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Certifications */
.certification-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.85rem 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  transition: all 0.3s ease;
}

.certification-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
  background: rgba(249, 115, 22, 0.08);
  transition: all 0.3s ease;
}

.certification-icon i {
  color: #f97316;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.certification-item:hover {
  border-color: rgba(249, 115, 22, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.16);
}

.certification-item:hover .certification-icon {
  border-color: #f97316;
}

.certification-item:hover .certification-icon i {
  color: #f97316;
}

.cert-name {
  display: block;
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cert-num {
  display: block;
  font-size: 0.65rem;
  color: rgba(148, 163, 184, 0.95);
}

.certification-item:hover .cert-num {
  color: rgba(249, 115, 22, 0.95);
}

/* Animations */
@keyframes assembleUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
}

.animate-assemble {
  animation: assembleUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

/* Map */
.map-hover {
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.map-hover-wrapper:hover .map-hover {
  filter: grayscale(0%);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }
}

