/* ========================================
   CHAMUNDA ENGINEERING WORKS — STYLESHEET
   Design: Industrial Precision
   ======================================== */

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

:root {
  --orange: #FF6B35;
  --orange-dark: #E85D2A;
  --navy: #0D1B2A;
  --navy-mid: #1A2E42;
  --steel: #2B4560;
  --steel-light: #3D6080;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --gray-light: #E8EDF3;
  --gray: #8FA3B8;
  --text: #1A2E42;
  --text-light: #4A6278;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-hero: 'Bebas Neue', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(13,27,42,0.08);
  --shadow-lg: 0 12px 48px rgba(13,27,42,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-light);
  max-width: 520px;
  font-size: 1.05rem;
}

.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

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

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.logo-mark-img {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.2);
  background: #fff;
}
.logo-mark-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-tagline { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.1em; }

.nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,53,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,53,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--orange);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-hero);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.9s ease 0.1s both;
  letter-spacing: 0.02em;
}

.accent-word { color: var(--orange); }

.hero-title-sub {
  color: rgba(255,255,255,0.2);
  -webkit-text-stroke: 1px rgba(255,255,255,0.3);
}

.hero-desc {
  max-width: 560px;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }

.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Gear animations */
.hero-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  opacity: 0.08;
  pointer-events: none;
}

.hero-gear {
  position: absolute;
  border-radius: 50%;
  border: 12px solid var(--orange);
  animation: spin linear infinite;
}
.hero-gear::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 3px dotted var(--orange);
}

.gear-1 { width: 200px; height: 200px; top: 50px; left: 50px; animation-duration: 20s; }
.gear-2 { width: 120px; height: 120px; top: 20px; left: 220px; animation-duration: 14s; animation-direction: reverse; }
.gear-3 { width: 80px; height: 80px; top: 200px; left: 260px; animation-duration: 10s; }

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

/* Conveyor animation */
.conveyor-anim {
  position: absolute;
  bottom: 40px; left: 0;
  width: 300px; height: 60px;
  opacity: 0.15;
}
.conv-belt {
  position: absolute;
  bottom: 10px; left: 0;
  width: 100%; height: 8px;
  background: repeating-linear-gradient(90deg, var(--orange), var(--orange) 20px, transparent 20px, transparent 30px);
  animation: beltMove 1.5s linear infinite;
}
@keyframes beltMove { from { background-position: 0 0; } to { background-position: -30px 0; } }

.conv-box {
  position: absolute;
  bottom: 18px;
  width: 30px; height: 25px;
  background: var(--orange);
  border-radius: 3px;
  animation: boxMove 4s linear infinite;
}
.b1 { left: 20%; animation-delay: 0s; }
.b2 { left: 50%; animation-delay: 1.3s; }
.b3 { left: 75%; animation-delay: 2.6s; }
@keyframes boxMove { 0% { transform: translateX(0); } 100% { transform: translateX(-300px); } }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 80%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.8s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; height: 40px; } 50% { opacity: 0.7; height: 60px; } }

/* ---- MARQUEE ---- */
.marquee-strip {
  background: var(--orange);
  padding: 0.75rem 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  width: max-content;
}

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

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- ABOUT ---- */
.about-section { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-card:hover { transform: translateY(-4px); }

.card-orange { background: var(--orange); color: var(--white); grid-column: 1 / -1; }
.card-dark { background: var(--navy); color: var(--white); }
.card-steel { background: var(--steel); color: var(--white); }

.card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card-val { font-family: var(--font-display); font-size: 2rem; font-weight: 800; line-height: 1; }
.card-lbl { font-size: 0.8rem; opacity: 0.8; margin-top: 0.25rem; }

.card-orange .card-val { font-size: 2.5rem; }

.machinery-list {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.machinery-list h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}
.machinery-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.9rem;
  color: var(--text-light);
}
.machinery-list li:last-child { border-bottom: none; }
.machinery-list li strong { color: var(--navy); font-weight: 600; }

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-body { color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; }

.gstin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-family: var(--font-display);
}
.gstin-label { font-size: 0.7rem; letter-spacing: 0.15em; opacity: 0.6; }
.gstin-num { font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; }

/* ---- PRODUCTS ---- */
.products-section { background: var(--white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c, var(--orange));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.product-card:hover { 
  transform: translateY(-6px); 
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  background: var(--white);
}
.product-card:hover::before { transform: scaleX(1); }

.featured-card {
  background: var(--navy);
  border-color: var(--orange);
  color: var(--white);
}
.featured-card h3 { color: var(--white); }
.featured-card p { color: rgba(255,255,255,0.7); }
.featured-card::before { background: var(--orange); transform: scaleX(1); height: 4px; }

.featured-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

.product-icon-wrap {
  width: 52px; height: 52px;
  color: var(--c, var(--orange));
  margin-bottom: 1.25rem;
}
.product-icon-wrap svg { width: 100%; height: 100%; }

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.product-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(255,107,53,0.1);
  color: var(--orange);
}
.featured-card .product-tags span {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

/* ---- PRODUCT CARD WITH IMAGE ---- */
.product-card--img {
  padding: 0;
  overflow: hidden;
}

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: var(--gray-light);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 1rem;
  transition: transform 0.5s ease;
  display: block;
  background: #f8f9fb;
}

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

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card--img:hover .product-img-overlay {
  opacity: 1;
}

.img-zoom-hint {
  background: var(--orange);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Orange top border on image cards */
.product-card--img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}

.product-card-body {
  padding: 1.5rem 2rem 2rem;
}

.product-card--img h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.product-card--img p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ---- IMAGE LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--orange);
  color: #fff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--orange-dark); transform: scale(1.1); }
.lightbox-caption {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.products-more {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 0.95rem;
  border: 1px dashed var(--gray-light);
}

/* Product Also List*/
/* Also Available Card */
.product-card--also {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-card--also h3 {
    margin-bottom: 8px;
}


.also-products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
     justify-content: center; 
}

.also-products-list span {
     padding: 5px;
    border-radius: 50px;
    background: #87cde5;
    border: 1px solid #808b9c;
    font-size: 12.5px;
    font-weight: 400;
    transition: all .3s ease;
    cursor: default;
}

.also-products-list span:hover {
    background: #0f4c81;
    color: #fff;
    border-color: #0f4c81;
    transform: translateY(-2px);
}

/* ---- WHY US ---- */
.why-section {
  background: var(--navy);
  color: var(--white);
}

.why-section .section-title { color: var(--white); }
.why-section p { color: rgba(255,255,255,0.7); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.pillar-num {
  font-family: var(--font-hero);
  font-size: 3.5rem;
  color: rgba(255,107,53,0.2);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.pillar-content h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.pillar-content p { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* ---- INDUSTRIES ---- */
.industries-section { background: var(--off-white); }

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  justify-content: center;
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.industry-chip:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.3);
}

/* ---- CLIENTS ---- */
.clients-section { background: var(--white); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.client-item {
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.client-item span {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 400;
}
.client-item:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--orange);
  transform: translateX(4px);
}
.client-item:hover span { color: rgba(255,255,255,0.5); }

/* ---- CONTACT ---- */
.contact-section { background: var(--navy); color: var(--white); }
.contact-section .section-title { color: var(--white); }
.contact-section p { color: rgba(255,255,255,0.7); }

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

.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.c-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-row strong { display: block; color: var(--white); margin-bottom: 0.2rem; }

.contact-link {
  color: var(--orange);
  transition: var(--transition);
}
.contact-link:hover { color: #ff8a5c; }

.iso-highlight { margin-top: 2rem; }

.iso-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
}
.iso-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.iso-badge-large strong { display: block; color: var(--white); }
.iso-badge-large small { color: var(--gray); font-size: 0.75rem; }

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

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

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.75rem;
}

.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 8px;
  color: #10B981;
  text-align: center;
  font-weight: 500;
}

/* ---- FOOTER ---- */
.footer {
  background: #080F18;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.footer-gstin {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  opacity: 0.5;
  letter-spacing: 0.08em;
}

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links h5, .footer-contact h5 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.5);
}
.footer-links a:hover { color: var(--orange); }

.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-contact p { font-size: 0.875rem; line-height: 1.6; }
.footer-contact a {
  font-size: 0.875rem;
  color: var(--orange);
  transition: var(--transition);
}
.footer-contact a:hover { color: #ff8a5c; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 16px rgba(255,107,53,0.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

/* ---- FLOATING ACTION BUTTONS ---- */
.fab-container {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 998;
}

.fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.fab svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.fab:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

/* WhatsApp */
.fab-whatsapp {
  background: #25D366;
  color: #fff;
}
.fab-whatsapp:hover {
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* Call */
.fab-call {
  background: var(--orange);
  color: #fff;
}
.fab-call:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 28px rgba(255,107,53,0.45);
}

/* Pulse ring animation */
.fab-whatsapp::before,
.fab-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: fabRing 2.5s ease-out infinite;
}
.fab-whatsapp::before { color: #25D366; animation-delay: 0s; }
.fab-call::before    { color: var(--orange); animation-delay: 1.25s; }

@keyframes fabRing {
  0%   { inset: -4px; opacity: 0.7; }
  100% { inset: -18px; opacity: 0; }
}

/* Tooltip label */
.fab-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-50%) translateX(-6px);
}
.fab-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--navy);
}

.fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* for you tube and insta icon */

/* ---- SOCIAL BUTTONS ---- */
.social-links {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .85rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .85rem;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: all .25s ease;
  color: #fff;
}
.social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Instagram */
.social-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-ig:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220,39,67,.4);
}

/* YouTube */
.social-yt {
  background: #FF0000;
}
.social-yt:hover {
  background: #CC0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,0,0,.35);
}

/* Footer version — icon only, no text */
.footer__brand .social-links { margin-top: 1rem; }
.footer__brand .social-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  justify-content: center;
}
.footer__brand .social-btn svg { width: 20px; height: 20px; }

/* Light version in contact */
.social-links--light .social-btn {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
}
.social-links--light .social-ig:hover {
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  border-color: transparent;
}
.social-links--light .social-yt:hover {
  background: #FF0000;
  border-color: transparent;
}

/* Mobile */
@media(max-width:480px){
  .social-btn { font-size: .72rem; padding: .45rem .7rem; }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual-col { order: 2; }
  .about-text-col { order: 1; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  
  .nav { display: none; flex-direction: column; position: fixed; inset: 0; top: 72px; background: var(--navy); padding: 2rem; gap: 0.5rem; z-index: 999; }
  .nav.open { display: flex; }
  .nav-link { font-size: 1.1rem; padding: 1rem; border-radius: 8px; }
  .hamburger { display: flex; }

  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { display: none; }
  
  .about-card-stack { grid-template-columns: 1fr; }
  .card-orange { grid-column: auto; }
  
  .why-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .products-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
