/* ═══════════════════════════════════════════════════════════════
   ACCURATE POWDER COATING — style.css
   Industrial Dark Theme · Orange Accent · Bebas Neue + Barlow
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  /* Brand Colors */
  --black:        #0f0f0f;
  --dark:         #1a1a1a;
  --dark2:        #222222;
  --dark3:        #2a2a2a;
  --grey:         #3a3a3a;
  --steel:        #6b7280;
  --light-grey:   #9ca3af;
  --light:        #e5e7eb;
  --white:        #ffffff;
  --orange:       #ff6b00;
  --orange-light: #ff8c33;
  --orange-dark:  #cc5500;
  --orange-glow:  rgba(255, 107, 0, 0.15);
  --orange-glow2: rgba(255, 107, 0, 0.08);

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Spacing */
  --section-pad:  100px;
  --container:    1260px;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.6);
  --orange-shadow: 0 8px 30px rgba(255,107,0,0.3);
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--grey); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

/* ─── SELECTION ──────────────────────────────────────────────── */
::selection { background: var(--orange); color: var(--black); }

/* ─── CONTAINER ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── SECTION BASE ───────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.4s var(--ease);
}

.btn:hover::before { left: 100%; }

.btn-icon { width: 16px; height: 16px; }

.btn-orange {
  background: var(--orange);
  color: var(--black);
}
.btn-orange:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: var(--orange-shadow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
  letter-spacing: 3px;
}

.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION LABELS & HEADERS ──────────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.label-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
}

.label-text {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-label {
  justify-content: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--steel);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.text-orange { color: var(--orange); }

.body-text {
  font-size: 0.95rem;
  color: var(--light-grey);
  line-height: 1.8;
  margin-bottom: 18px;
  font-weight: 300;
}

/* ─── SCROLL REVEAL ANIMATION ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* ═══════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,107,0,0.12);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark { display: flex; align-items: center; }

.logo-hex {
  font-size: 1.8rem;
  color: var(--orange);
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255,107,0,0.4));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-primary {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 4px;
  color: var(--white);
}

.logo-secondary {
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-grey);
  padding: 8px 12px;
  border-radius: 2px;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
  transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  font-size: 0.75rem;
  padding: 10px 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all 0.3s var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(15,15,15,0.98);
  border-top: 1px solid rgba(255,107,0,0.15);
  padding: 24px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s var(--ease);
}

.mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }

.mobile-link {
  display: block;
  padding: 12px 0;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-grey);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-link:hover {
  color: var(--orange);
  padding-left: 8px;
}


/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 24px 60px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  gap: 60px;
}

/* Subtle grid background overlay */
.hero-grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,107,0,0.018) 60px, rgba(255,107,0,0.018) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,107,0,0.018) 60px, rgba(255,107,0,0.018) 61px);
  pointer-events: none;
  z-index: -1;
}

/* Hero content */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,107,0,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(255,107,0,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title-accent {
  color: var(--orange);
  -webkit-text-stroke: 0px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--light-grey);
  font-weight: 300;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  overflow: hidden;
  width: fit-content;
}

.stat-item {
  padding: 14px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel);
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* Hero visual */
.hero-visual { position: relative; }

.hero-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.hero-img-frame:hover .hero-img { transform: scale(1.03); }

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,0.12) 0%, transparent 60%),
              linear-gradient(to bottom, transparent 50%, rgba(15,15,15,0.6) 100%);
}

/* Orange accent lines on image frame */
.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border: 2px solid transparent;
  border-top-color: var(--orange);
  border-right-color: var(--orange);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(15,15,15,0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 3px;
  padding: 10px 16px;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  z-index: 3;
}

.hero-badge [data-lucide] {
  width: 16px; height: 16px;
  color: var(--orange);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.scroll-indicator:hover { opacity: 1; }

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ═══════════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════════ */
.about-section { background: var(--dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image stack */
.about-img-stack {
  position: relative;
  height: 540px;
}

.about-img-main {
  width: 78%;
  height: 440px;
  object-fit: cover;
  border-radius: 3px;
  position: absolute;
  bottom: 0; left: 0;
  border: 2px solid rgba(255,107,0,0.2);
}

.about-img-secondary {
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: 3px;
  position: absolute;
  top: 0; right: 0;
  border: 3px solid var(--dark);
  box-shadow: var(--shadow-lg);
}

.about-exp-badge {
  position: absolute;
  bottom: 60px; right: 0;
  background: var(--orange);
  border-radius: 3px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--orange-shadow);
}

.exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--black);
  line-height: 1;
}

.exp-text {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  margin-top: 4px;
}

/* Mission/Vision mini cards */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.mv-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 3px;
  padding: 16px;
  transition: border-color 0.2s;
}

.mv-card:hover { border-color: rgba(255,107,0,0.3); }

.mv-icon {
  width: 20px; height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.mv-title {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.mv-desc {
  font-size: 0.8rem;
  color: var(--steel);
  line-height: 1.6;
}

/* Why choose list */
.why-choose-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 28px;
}

.wc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--light-grey);
}

.wc-icon {
  width: 16px; height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════ */
.services-section { background: var(--black); }

.section-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,107,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,107,0,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,107,0,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,107,0,0.1);
}

.service-icon-wrap {
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-icon {
  width: 28px; height: 28px;
  color: var(--orange);
}

.service-img-wrap {
  margin: 16px 0 0;
  height: 180px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}

.service-body {
  padding: 20px;
  flex: 1;
}

.service-title {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--light-grey);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 300;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-features li {
  font-size: 0.78rem;
  color: var(--steel);
  padding-left: 12px;
  position: relative;
}

.service-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.7rem;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border-top: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s, padding-right 0.2s;
}

.service-link [data-lucide] {
  width: 14px; height: 14px;
  transition: transform 0.2s;
}

.service-card:hover .service-link {
  background: rgba(255,107,0,0.06);
  padding-right: 14px;
}

.service-card:hover .service-link [data-lucide] {
  transform: translateX(4px);
}


/* ═══════════════════════════════════════════════════════════════
   INDUSTRIES
   ═══════════════════════════════════════════════════════════════ */
.industries-section { background: var(--dark); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.industry-card {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  cursor: default;
  transition: transform 0.3s var(--ease);
}

.industry-card:hover { transform: translateY(-4px); }

.industry-img-wrap {
  height: 280px;
  position: relative;
}

.industry-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.industry-card:hover .industry-img-wrap img {
  transform: scale(1.07);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.95) 0%, rgba(15,15,15,0.3) 60%, transparent 100%);
}

.industry-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px;
  text-align: center;
}

.industry-icon {
  width: 28px; height: 28px;
  color: var(--orange);
  margin: 0 auto 10px;
  display: block;
}

.industry-name {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.industry-desc {
  font-size: 0.75rem;
  color: var(--light-grey);
  line-height: 1.5;
  font-weight: 300;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.industry-card:hover .industry-desc {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════════ */
.process-section { background: var(--black); overflow: hidden; }

.process-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,107,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1px 60px 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.process-step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 1px;
  color: rgba(255,107,0,0.15);
  line-height: 1;
  transition: color 0.3s;
  text-align: right;
  padding-right: 10px;
}

.process-step:hover .step-number {
  color: var(--orange);
}

.step-connector {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,107,0,0.3), transparent);
}

.step-icon-wrap {
  width: 56px; height: 56px;
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}

.process-step:hover .step-icon-wrap {
  background: var(--orange-glow);
  border-color: var(--orange);
}

.step-icon {
  width: 22px; height: 22px;
  color: var(--orange);
}

.step-content { flex: 1; }

.step-title {
  font-family: var(--font-condensed);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--light-grey);
  font-weight: 300;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 12px;
}

.step-tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.3);
  padding: 4px 10px;
  border-radius: 2px;
}

.step-img-wrap {
  width: 220px;
  height: 140px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.06);
}

.step-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 0.3s, transform 0.4s;
}

.process-step:hover .step-img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.05);
}


/* ═══════════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════════ */
.gallery-section { background: var(--dark); }

.gallery-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  color: var(--light-grey);
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease), filter 0.3s;
  filter: brightness(0.85) saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-info h4 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.gallery-info span {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}

/* Gallery item hidden state (for filter) */
.gallery-item.hidden {
  display: none;
}


/* ═══════════════════════════════════════════════════════════════
   TRUST SECTION
   ═══════════════════════════════════════════════════════════════ */
.trust-section {
  background: var(--orange);
  padding: 40px 0;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 40px;
}

.trust-icon {
  width: 32px; height: 32px;
  color: var(--black);
  flex-shrink: 0;
}

.trust-title {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 3px;
}

.trust-desc {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.65);
  font-weight: 400;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(0,0,0,0.2);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════════ */
.contact-section { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 40px;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.form-input::placeholder { color: var(--grey); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-error {
  display: block;
  font-size: 0.75rem;
  color: #ff4444;
  margin-top: 4px;
  min-height: 18px;
}

.form-input.error { border-color: #ff4444; }

/* Success message */
.form-success {
  display: none;
  align-items: center;
  gap: 14px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 3px;
  padding: 16px;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--light-grey);
}

.form-success.show { display: flex; }

.form-success [data-lucide] {
  width: 24px; height: 24px;
  color: var(--orange);
  flex-shrink: 0;
}

.form-success strong {
  display: block;
  color: var(--white);
  font-family: var(--font-condensed);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* Contact info */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  transition: border-color 0.2s;
}

.info-card:hover { border-color: rgba(255,107,0,0.2); }

.info-icon {
  width: 22px; height: 22px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-title {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.info-text {
  font-size: 0.85rem;
  color: var(--light-grey);
  line-height: 1.7;
}

.info-link {
  font-size: 0.85rem;
  color: var(--light-grey);
  transition: color 0.2s;
  display: inline-block;
  line-height: 1.7;
}

.info-link:hover { color: var(--orange); }

/* Map */
.map-wrap {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.map-wrap iframe {
  display: block;
  filter: grayscale(60%) invert(90%) hue-rotate(180deg);
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer { background: var(--dark); }

.footer-top {
  padding: 70px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-hex {
  font-size: 1.6rem;
  color: var(--orange);
}

.footer-brand-desc {
  font-size: 0.85rem;
  color: var(--steel);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow2);
}

.social-link [data-lucide] {
  width: 15px; height: 15px;
}

.footer-col-title {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--steel);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fc-icon {
  width: 15px; height: 15px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list span,
.footer-contact-list a {
  font-size: 0.82rem;
  color: var(--steel);
  line-height: 1.6;
}

.footer-contact-list a:hover { color: var(--orange); }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--grey);
}

.footer-made {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
}


/* ═══════════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════════════════════════ */

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-grey);
  z-index: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
}

.back-to-top [data-lucide] {
  width: 18px; height: 18px;
}

/* WhatsApp button */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.3s var(--ease);
  overflow: hidden;
}

.whatsapp-btn:hover {
  width: 200px;
  border-radius: 28px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  justify-content: flex-start;
  padding: 0 16px;
  gap: 10px;
}

.whatsapp-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: white;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  transition: all 0.3s var(--ease);
}

.whatsapp-btn:hover .whatsapp-label {
  opacity: 1;
  max-width: 200px;
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 70px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 120px 24px 60px;
    text-align: center;
  }

  .hero-subtitle { margin: 0 auto 36px; }
  .hero-cta-row { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero-visual { order: -1; }
  .hero-img { height: 400px; }
  .scroll-indicator { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-stack { height: 380px; }
  .about-img-main { width: 75%; height: 320px; }
  .about-img-secondary { width: 50%; height: 220px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .industry-card:last-child { grid-column: span 1; }

  .process-step {
    grid-template-columns: 60px 1px 50px 1fr;
    gap: 20px;
  }
  .step-img-wrap { display: none; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: span 2; }

  .trust-item { padding: 14px 24px; }
  .trust-divider { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 640px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root { --section-pad: 56px; }

  .nav-cta { display: none; }

  .hero { padding: 100px 16px 48px; }
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    border: none;
    gap: 16px;
  }
  .stat-divider { display: none; }
  .stat-item { padding: 8px 16px; border: 1px solid rgba(255,255,255,0.08); border-radius: 2px; }

  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid .industry-card:last-child { grid-column: span 2; }

  .mv-grid { grid-template-columns: 1fr; }
  .why-choose-list { grid-template-columns: 1fr; }

  .process-step {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 16px;
  }
  .step-connector { display: none; }
  .step-icon-wrap { grid-row: 1; grid-column: 1; width: 44px; height: 44px; }
  .step-number { grid-row: 1; grid-column: 1; font-size: 1rem; text-align: left; padding: 0; }
  .step-content { grid-row: 2; grid-column: 1 / -1; }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item--wide { grid-column: span 1; }

  .form-row-2 { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand-col { grid-column: span 1; }

  .trust-grid { flex-direction: column; align-items: flex-start; padding: 0 24px; }
  .trust-item { padding: 12px 0; }

  .hero-img { height: 280px; }
  
  /* ================= MOBILE FIXES (IMPORTANT) ================= */

/* Prevent any overflow */
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Force all elements inside screen */
* {
  max-width: 100%;
}

/* Responsive iframe (Google Map) */
.map-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.map-container iframe {
  width: 100% !important;
  height: 300px;
  border: 0;
  display: block;
}

/* Form fixes */
form {
  width: 100%;
  max-width: 100%;
}

.form-input,
input,
textarea,
button {
  width: 100%;
  box-sizing: border-box;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  /* Fix all grids */
  .hero,
  .about-grid,
  .services-grid,
  .industries-grid,
  .process-step,
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* Reduce spacing */
  .container {
    padding: 0 16px;
  }

  /* Map smaller on mobile */
  .map-container iframe {
    height: 250px !important;
  }

  /* Fix hero image height */
  .hero-img {
    height: 300px;
  }
} 
}
