/* ============================================================
   SHREE KRISHNA ENTERPRISE – Main Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #00c6a7;
  --primary-dk: #00a58c;
  --accent: #0072ff;
  --accent-dk: #0057cc;
  --dark: #0a0e1a;
  --dark-2: #111827;
  --dark-3: #1a2235;
  --dark-4: #222d42;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(255, 255, 255, 0.04);
  --wa-green: #25D366;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.25);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- Utilities ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, rgba(0, 198, 167, 0.15), rgba(0, 114, 255, 0.15));
  border: 1px solid rgba(0, 198, 167, 0.3);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn:hover::after {
  transform: scaleX(1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 198, 167, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(0, 198, 167, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

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

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 8px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(18px);
  padding: 4px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

/* Real logo image */
.logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  padding: 4px 10px;
  display: block;
  transition: var(--transition);
}

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

/* Footer logo */
.footer-logo-wrap {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 6px 14px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(0, 198, 167, 0.08);
}

.nav-cta {
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroPan 20s ease-in-out infinite alternate;
}

@keyframes heroPan {
  from {
    transform: scale(1.05) translateX(0);
  }

  to {
    transform: scale(1.1) translateX(-2%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 14, 26, 0.92) 0%,
      rgba(10, 14, 26, 0.75) 50%,
      rgba(10, 14, 26, 0.6) 100%);
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float var(--dur, 6s) ease-in-out infinite;
  opacity: 0.35;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 198, 167, 0.15);
  border: 1px solid rgba(0, 198, 167, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  max-width: 600px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.pill {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 600px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(16px);
    opacity: 0;
  }
}

/* ---------- MARQUEE ---------- */
.marquee-strip {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 32px;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.marquee-track .sep {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

.about-image-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: var(--shadow);
}

.badge-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.65rem;
  padding: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.about-experience-chip {
  position: absolute;
  top: 20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.chip-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  display: block;
}

.chip-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.about-content {
  padding-bottom: 40px;
}

.about-desc {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.85;
}

.about-desc strong {
  color: var(--text);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.mv-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: var(--transition);
}

.mv-card:hover {
  background: rgba(0, 198, 167, 0.06);
  border-color: rgba(0, 198, 167, 0.25);
  transform: translateY(-4px);
}

.mv-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.mv-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.mv-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- WHY CHOOSE US ---------- */
.why-section {
  background: var(--dark-2);
}

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

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  background: rgba(0, 198, 167, 0.05);
  border-color: rgba(0, 198, 167, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.why-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.color-1 {
  background: rgba(0, 198, 167, 0.12);
  color: var(--primary);
}

.color-2 {
  background: rgba(0, 114, 255, 0.12);
  color: var(--accent);
}

.color-3 {
  background: rgba(255, 165, 0, 0.12);
  color: #ffa500;
}

.color-4 {
  background: rgba(232, 70, 150, 0.12);
  color: #e84696;
}

.color-5 {
  background: rgba(100, 220, 100, 0.12);
  color: #64dc64;
}

.color-6 {
  background: rgba(160, 110, 255, 0.12);
  color: #a06eff;
}

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- PRODUCTS ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 198, 167, 0.3);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 24px;
  flex: 1;
}

.product-type {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.65;
}

.product-specs {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  margin-bottom: 16px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.spec-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.spec-val {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.product-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.app-chip {
  padding: 4px 12px;
  background: rgba(0, 198, 167, 0.08);
  border: 1px solid rgba(0, 198, 167, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.product-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

.applications-banner {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}

.applications-banner h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.app-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-width: 110px;
}

.app-item:hover {
  background: rgba(0, 198, 167, 0.08);
  border-color: rgba(0, 198, 167, 0.3);
  transform: translateY(-4px);
}

.app-icon {
  font-size: 2rem;
}

.app-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

/* ---------- QUALITY ---------- */
.quality-section {
  background: var(--dark-2);
}

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

.quality-params {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.q-param {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.q-param:hover {
  background: rgba(0, 198, 167, 0.06);
  border-color: rgba(0, 198, 167, 0.25);
}

.q-param-icon {
  font-size: 1.6rem;
  min-width: 36px;
}

.q-param-info strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.q-param-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.quality-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(0, 198, 167, 0.08);
  border: 1px solid rgba(0, 198, 167, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
}

.quality-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.quality-ring-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
}

.ring-1 {
  inset: 0;
  border-color: rgba(0, 198, 167, 0.6);
  animation: spin 8s linear infinite;
}

.ring-2 {
  inset: 24px;
  border-color: rgba(0, 114, 255, 0.5);
  animation: spin 12s linear infinite reverse;
}

.ring-3 {
  inset: 48px;
  border-color: rgba(0, 198, 167, 0.3);
  animation: spin 16s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.quality-center {
  z-index: 2;
  text-align: center;
  background: var(--dark-3);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 198, 167, 0.3);
}

.q-percent {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.q-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}

.quality-certs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.cert-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.cert-card:hover {
  background: rgba(0, 198, 167, 0.06);
  border-color: rgba(0, 198, 167, 0.25);
}

/* ---------- INFRASTRUCTURE ---------- */
.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.infra-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.infra-image img {
  width: 100%;
  height: 400px;
  transition: transform 0.6s ease;
}

.infra-image:hover img {
  transform: scale(1.04);
}

.infra-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(10, 14, 26, 0.9));
  padding: 24px;
}

.infra-overlay span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.infra-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.machine-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.machine-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
}

.machine-item:hover {
  background: rgba(0, 198, 167, 0.06);
  border-color: rgba(0, 198, 167, 0.25);
  padding-left: 24px;
}

.machine-icon {
  font-size: 1.2rem;
}

.infra-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: var(--dark-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.addr-icon {
  background: rgba(0, 198, 167, 0.12);
  color: var(--primary);
}

.phone-icon {
  background: rgba(0, 114, 255, 0.12);
  color: var(--accent);
}

.email-icon {
  background: rgba(255, 165, 0, 0.12);
  color: #ffa500;
}

.contact-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-item a {
  color: var(--text);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-item p {
  font-size: 0.95rem;
  color: var(--text);
}

.social-links {
  margin-bottom: 24px;
}

.social-links h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn.whatsapp {
  background: var(--wa-green);
  color: #fff;
}

.social-btn.gmail {
  background: #EA4335;
  color: #fff;
}

.social-btn.phone {
  background: var(--accent);
  color: #fff;
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.map-wrap {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(0, 198, 167, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 198, 167, 0.12);
}

.form-group select option {
  background: var(--dark-3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
}

.form-note a {
  color: var(--wa-green);
  text-decoration: underline;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 64px 0 48px;
}

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

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 20px 0;
  max-width: 280px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-links-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.contact-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-list li a {
  color: var(--text-muted);
}

.contact-list li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

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

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark-3);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid var(--border);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--border);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7), 0 0 0 14px rgba(37, 211, 102, 0.06);
  }
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 98px;
  right: 30px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(0, 198, 167, 0.15);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  color: var(--text);
}

/* ---------- ANIMATIONS ---------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

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

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

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

.delay-5 {
  animation-delay: 0.75s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal.delay-1 {
  transition-delay: 0.15s;
}

.reveal.delay-2 {
  transition-delay: 0.3s;
}

.reveal.delay-3 {
  transition-delay: 0.45s;
}

.reveal.delay-4 {
  transition-delay: 0.6s;
}

.reveal.delay-5 {
  transition-delay: 0.75s;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .about-grid {
    gap: 48px;
  }

  .quality-grid {
    gap: 48px;
  }

  .infra-grid {
    gap: 40px;
  }

  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 70px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(16px);
    padding: 40px 24px;
    gap: 8px;
    z-index: 999;
    align-items: center;
    justify-content: flex-start;
  }

  .nav-links.open .nav-link {
    font-size: 1.2rem;
    padding: 14px 32px;
    width: 100%;
    text-align: center;
  }

  .about-grid,
  .quality-grid,
  .infra-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    padding-bottom: 30px;
  }

  .about-img-badge {
    display: none;
  }

  .about-experience-chip {
    right: 0;
  }

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

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

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

  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
	.hero-stats {
		background:#000;
	}
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat-divider {
    width: 80px;
    height: 1px;
  }

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

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

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
  }

  .app-list {
    gap: 12px;
  }

  .app-item {
    min-width: 90px;
  }
}