:root {
  --red: #e10600;
  --red-glow: rgba(225, 6, 0, 0.2);
  --red-soft: rgba(225, 6, 0, 0.08);
  --white: #ffffff;
  --off-white: #f7f7f7;
  --light-gray: #f0f0f0;
  --gray: #e8e8e8;
  --mid-gray: #999;
  --dark-gray: #555;
  --black: #111111;
  --glass: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.08);
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-md: rgba(0, 0, 0, 0.12);
  --font-head: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--light-gray);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

/* ══ NAVBAR ══ */
.navbar-wrap {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  z-index: 1000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px 8px 23px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 60px;
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(225, 6, 0, 0.05);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(225, 6, 0, 0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  max-width: 50px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: var(--dark-gray);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 30px;
  transition: all 0.25s ease;
}
.nav-links a:hover {
  color: var(--red);
  background: var(--red-soft);
}

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 9px 22px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px var(--red-glow) !important;
}
.nav-cta:hover {
  background: #c00500 !important;
  box-shadow: 0 6px 24px rgba(225, 6, 0, 0.35) !important;
  transform: scale(1.03);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.2s ease;
}
.mobile-menu.active a {
  animation: fadeUp 0.4s ease forwards;
}
.mobile-menu a:nth-child(1) {
  animation-delay: 0.05s !important;
}
.mobile-menu a:nth-child(2) {
  animation-delay: 0.1s !important;
}
.mobile-menu a:nth-child(3) {
  animation-delay: 0.15s !important;
}
.mobile-menu a:nth-child(4) {
  animation-delay: 0.2s !important;
}
.mobile-menu a:nth-child(5) {
  animation-delay: 0.25s !important;
}
.mobile-menu a:hover {
  color: var(--red);
}
.mobile-close {
    position: absolute;
    top: 96px;
    right: 20px;
    font-size: 24px;
    color: var(--black);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    font-size: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
    border: 1px solid var(--gray);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.03);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh);
  }
}
@keyframes waPulse {
  0%,
  100% {
    box-shadow:
      0 8px 24px rgba(37, 211, 102, 0.35),
      0 0 0 0 rgba(37, 211, 102, 0.25);
  }
  50% {
    box-shadow:
      0 8px 24px rgba(37, 211, 102, 0.35),
      0 0 0 12px rgba(37, 211, 102, 0);
  }
}

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 24px 80px;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 50% 0%,
      rgba(225, 6, 0, 0.06) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 50% at 90% 90%,
      rgba(225, 6, 0, 0.04) 0%,
      transparent 55%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: orbFloat 10s ease-in-out infinite;
}
.orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(225, 6, 0, 0.05);
  top: -15%;
  left: -10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 280px;
  height: 280px;
  background: rgba(225, 6, 0, 0.04);
  top: 50%;
  right: -5%;
  animation-delay: 3s;
}
.orb-3 {
  width: 200px;
  height: 200px;
  background: rgba(225, 6, 0, 0.04);
  bottom: 5%;
  left: 30%;
  animation-delay: 6s;
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(225, 6, 0, 0.35);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 6, 0, 0.07);
  border: 1px solid rgba(225, 6, 0, 0.18);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
  animation: fadeDown 0.8s ease both;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--red);
  animation: pulse 2s infinite;
}

/* Hero logo */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  animation: fadeDown 0.7s ease both;
}
.hero-logo-wrap img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(225, 6, 0, 0.15));
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--black);
  margin-bottom: 24px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-title .accent {
  color: var(--red);
}
.hero-title .line-thin {
  font-weight: 300;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--mid-gray);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.75;
  animation: fadeUp 0.9s 0.35s ease both;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.5s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: white;
  padding: 15px 34px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(225, 6, 0, 0.3);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 48px rgba(225, 6, 0, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--black);
  padding: 14px 32px;
  border-radius: 50px;
  border: 1.5px solid var(--gray);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-ghost:hover {
  border-color: rgba(225, 6, 0, 0.4);
  color: var(--red);
  background: var(--red-soft);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--gray);
  animation: fadeUp 1s 0.7s ease both;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
  display: block;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ══ COMMONS ══ */
section {
  position: relative;
  overflow: hidden;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 12px;
}
.section-pad {
  padding: 100px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-tag::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--black);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--mid-gray);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

.red-line {
  width: 50px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══ ABOUT ══ */
.about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-main-card {
  background: white;
  max-width: 100%;
  border: 1px solid var(--gray);
  border-radius: 28px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 12px 48px var(--shadow);
  padding: 20px 0 0 0;
}
.about-main-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(225, 6, 0, 0.04) 0%,
    transparent 65%
  );
}
.about-illustration img {
  max-width: 100%;
  height: auto;
}

.about-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border: 1px solid var(--gray);
  border-radius: 20px;
  padding: 20px 26px;
  box-shadow: 0 16px 48px var(--shadow-md);
  min-width: 180px;
}
.float-card-title {
  font-size: 11px;
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.float-card-value {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--red);
}
.float-card-sub {
  font-size: 12px;
  color: var(--mid-gray);
  margin-top: 2px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 16px;
  transition: all 0.3s ease;
}
.about-feature:hover {
  border-color: rgba(225, 6, 0, 0.2);
  box-shadow: 0 6px 24px var(--shadow);
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--red-soft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.about-feature-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--black);
}
.about-feature-sub {
  font-size: 11.5px;
  color: var(--mid-gray);
  line-height: 1.4;
}

/* ══ PRODUCTS ══ */
.products {
  background: var(--white);
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}
.products-header .section-sub {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  background: white;
  border: 1px solid var(--gray);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 6, 0, 0.2);
  box-shadow: 0 20px 64px var(--shadow-md);
}

.product-img {
  max-width: 100%;
  height: auto;
  width: 100%;
  background: linear-gradient(135deg, #fafafa, #f3f3f3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  position: relative;
  overflow: hidden;
}
.product-img img{
  width: stretch;
  height: 100%;
  object-fit: cover;
}
.product-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.6), transparent);
}

.product-body {
  padding: 24px;
}
.product-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  color: var(--black);
}
.product-desc {
  font-size: 13.5px;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: 16px;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-tag {
  background: var(--red-soft);
  border: 1px solid rgba(225, 6, 0, 0.12);
  color: var(--red);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

.product-card.large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-card.large .product-img {
  height: 100%;
  border-radius: 0;
}

/* ══ WHY ══ */
.why {
  background: var(--off-white);
}
.why-header {
  text-align: center;
  margin-bottom: 60px;
}
.why-header .section-sub {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  background: white;
  border: 1px solid var(--gray);
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 6, 0, 0.15);
  box-shadow: 0 16px 48px var(--shadow-md);
}
.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--red-soft);
  border: 1px solid rgba(225, 6, 0, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
  transition: all 0.35s ease;
}
.why-card:hover .why-icon {
  background: rgba(225, 6, 0, 0.12);
  box-shadow: 0 4px 16px var(--red-glow);
}
.why-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.why-sub {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ══ MANUFACTURING ══ */
.manufacturing {
  background: var(--white);
}
.mfg-header {
  text-align: center;
  margin-bottom: 72px;
}
.mfg-header .section-sub {
  margin: 0 auto;
}

.mfg-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.mfg-timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--red),
    var(--red),
    transparent
  );
  opacity: 0.2;
}

.mfg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mfg-num {
  width: 56px;
  height: 56px;
  background: var(--red-soft);
  border: 2px solid rgba(225, 6, 0, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--red);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.mfg-step:hover .mfg-num {
  background: rgba(225, 6, 0, 0.15);
  box-shadow: 0 4px 16px var(--red-glow);
}
.mfg-icon-wrap {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.mfg-step-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}
.mfg-step-sub {
  font-size: 12.5px;
  color: var(--mid-gray);
  line-height: 1.55;
}

/* ══ MISSION ══ */
.mission {
  background: var(--off-white);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mission-card {
  background: white;
  border: 1px solid var(--gray);
  border-radius: 28px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px var(--shadow);
}
.mission-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.05), transparent);
  border-radius: 50%;
}
.mission-card:hover {
  border-color: rgba(225, 6, 0, 0.15);
  box-shadow: 0 16px 60px var(--shadow-md);
}

.mission-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mission-card-tag::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.mission-card-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  line-height: 1.15;
  color: var(--black);
}
.mission-card-text {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.75;
}

.mission-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mission-value {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--dark-gray);
}
.mission-value::before {
  content: "✓";
  width: 22px;
  height: 22px;
  background: var(--red-soft);
  border: 1px solid rgba(225, 6, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--red);
  flex-shrink: 0;
}

/* ══ CONTACT ══ */
.contact {
  background: var(--white);
}
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}
.contact-header .section-sub {
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: var(--black);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--red-soft);
  border: 1px solid rgba(225, 6, 0, 0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mid-gray);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-item-value {
  font-size: 14.5px;
  color: var(--dark-gray);
  font-weight: 900;
}
.contact-item-value a {
  color: inherit;
  text-decoration: none;
}
.contact-item-value a:hover {
  color: var(--red);
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 16px 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  margin-top: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.2);
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.35);
}
.whatsapp-btn svg {
  width: 24px;
  height: 24px;
}

.map-container {
  width: 100%;
  margin: 20px 0 0;
  overflow: hidden;
}

.map-placeholder {
  background: var(--light-gray);
  border: 1px solid var(--gray);
  border-radius: 16px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  color: var(--mid-gray);
  font-size: 14px;
}

.contact-form {
  background: var(--off-white);
  border: 1px solid var(--gray);
  border-radius: 28px;
  padding: 40px;
}
.form-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--black);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark-gray);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-input {
  width: 100%;
  background: white;
  border: 1.5px solid var(--gray);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  transition: all 0.25s ease;
  resize: none;
}
.form-input::placeholder {
  color: var(--mid-gray);
}
.form-input:focus {
  border-color: rgba(225, 6, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.07);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  background: var(--red);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 12px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(225, 6, 0, 0.25);
  margin-top: 8px;
}
.form-submit:hover {
  background: #c00500;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(225, 6, 0, 0.4);
}

/* ══ FOOTER ══ */
.footer {
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-link:hover {
  border-color: rgba(225, 6, 0, 0.3);
  background: rgba(225, 6, 0, 0.1);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}
.footer-copy a {
  color: var(--red);
  text-decoration: none;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ══ FLOATING WHATSAPP ══ */
.float-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: all 0.3s ease;
  animation: waPulse 3s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 44px rgba(37, 211, 102, 0.55);
}
.float-wa svg {
  width: 28px;
  height: 28px;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-card.large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .product-card.large .product-img {
    height: auto;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mfg-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .mfg-timeline::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-float-card {
    display: none;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card.large {
    display: block;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 28px;
  }
  .mfg-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .mfg-timeline {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 24px 18px;
  }
  .float-wa {
    bottom: 20px;
    right: 20px;
  }
  .navbar-wrap {
    width: calc(100% - 24px);
  }
  .hero-logo-wrap img {
    height: 80px;
  }
  .mission-card-title{
    font-size: 19px;
  }
  .mission-card-text{
    line-height: 1.4;
  }
  .contact-item-value{
    font-size: 12px;
  }
}
