/* ==========================================================================
   SMART LIFT STACK ENGINEERING â€” Professional Industrial Design System
   Clean, white-background, SEO-friendly multi-page website
   ========================================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@600;700;800;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #C62828;
  --primary-dark: #8E0000;
  --primary-light: #FF5F52;
  --dark: #1A1A2E;
  --dark-alt: #16213E;
  --text-body: #444;
  --text-heading: #1A1A2E;
  --text-muted: #777;
  --bg-white: #FFFFFF;
  --bg-light: #F5F5F5;
  --bg-section: #FAFAFA;
  --border: #E0E0E0;
  --accent-blue: #1565C0;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --gold: #F59E0B;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
  --max-width: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: var(--text-heading);
  line-height: 1.25;
}

/* ---------- Layout ---------- */
.container { width: 92%; max-width: var(--max-width); margin: 0 auto; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-section); }

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-header-center { text-align: center; margin-bottom: 48px; }
.section-header-center .section-desc { margin: 0 auto; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: #fff; }
.top-contacts { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.top-contact-item { display: flex; align-items: center; gap: 6px; }
.top-contact-item i { color: var(--gold); font-size: 0.85rem; }
.india-badge {
  background: linear-gradient(135deg, #FF9933, #fff 50%, #128807);
  color: #000;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ---------- Main Header / Nav ---------- */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
}
.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}
.brand-name span { color: var(--primary); }
.brand-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-heading);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--bg-light);
  color: var(--primary);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 260px;
  z-index: 100;
  padding: 8px 0 !important;
  margin: 0 !important;
  list-style: none !important;
  list-style-type: none !important;
}
.nav-dropdown-menu li,
.sub-menu li,
ul.sub-menu li,
ul.nav-dropdown-menu li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:hover .sub-menu,
.menu-item-has-children:hover > .sub-menu { display: block; }

.nav-dropdown-menu a,
.sub-menu a {
  display: block;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 0;
  color: var(--text-body);
  text-decoration: none;
}
.nav-dropdown-menu a:hover,
.sub-menu a:hover {
  background: var(--bg-section);
  color: var(--primary);
}

/* Header CTA */
.header-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
}
.header-wa-btn:hover { background: var(--whatsapp-dark); color: #fff; transform: translateY(-1px); }

/* Mobile Toggle (Hamburger) */
.mobile-toggle {
  display: none;
  padding: 8px 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}
.hamburger-box {
  width: 26px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 26px;
  height: 3px;
  background-color: var(--dark);
  border-radius: 4px;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before { top: -8px; }
.hamburger-inner::after { bottom: -8px; }

/* Hamburger Active State */
.mobile-toggle.active .hamburger-inner {
  transform: rotate(45deg);
}
.mobile-toggle.active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.mobile-toggle.active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
  color: #fff;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198,40,40,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); }
.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* Hero image card */
.hero-img-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
}
.hero-logo-circle {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: #fff;
  padding: 6px;
  object-fit: cover;
}
.hero-img-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.hero-img-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-outline-dark { background: transparent; color: var(--dark); border: 1px solid var(--border); }
.btn-outline-dark:hover { background: var(--bg-light); color: var(--primary); }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Features Strip ---------- */
.features-strip {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: #FFF3E0;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-item h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 1px; }
.feature-item p { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Product Cards Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: #ccc;
}
.product-card-img {
  height: 240px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.product-card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: auto;
  display: block;
  transition: transform 0.3s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
}
.product-card-body { padding: 20px; }
.product-card-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 6px;
}
.product-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-card-body h3 a { color: var(--text-heading); text-decoration: none; }
.product-card-body h3 a:hover { color: var(--primary); }
.product-card-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.product-card-meta strong { color: var(--text-heading); }
.product-card-actions { display: flex; gap: 8px; }
.product-card-actions .btn { flex: 1; justify-content: center; font-size: 0.85rem; padding: 9px 12px; }

/* ---------- Related Products & Explore More Equipment Cards ---------- */
.product-image-box {
  height: 240px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.product-image-box img.product-img,
.product-image-box img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: auto;
  display: block;
  transition: transform 0.3s ease;
}
.product-card:hover .product-image-box img {
  transform: scale(1.05);
}
.category-badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dark);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.product-desc-snippet {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-title a { color: var(--text-heading); text-decoration: none; }
.product-title a:hover { color: var(--primary); }
.btn-card-details {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid var(--dark);
  color: var(--dark);
  background: transparent;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}
.btn-card-details:hover {
  background: var(--dark);
  color: #ffffff;
}
.btn-card-whatsapp {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  background: #25D366;
  color: #ffffff;
  border: 1.5px solid #25D366;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}
.btn-card-whatsapp:hover {
  background: #1ebc5a;
  border-color: #1ebc5a;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}


/* ---------- Breadcrumbs ---------- */
.breadcrumb-bar {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--accent-blue); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); text-decoration: underline; }
.breadcrumb .sep { color: #bbb; }
.breadcrumb .current { color: var(--text-muted); font-weight: 600; }

/* ---------- Product Detail Page ---------- */
.product-hero-section { padding: 50px 0 60px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* Gallery */
.gallery-box {
  width: 100%;
}
.gallery-main {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.gallery-main img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: auto;
  display: block;
  transition: transform 0.25s ease;
}
.gallery-thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.gallery-thumb {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: var(--transition);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}
.gallery-thumb:hover, .gallery-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

/* Info */
.product-info-box {}
.product-info-box .product-card-cat { margin-bottom: 8px; }
.product-info-box h1 { font-size: 2rem; margin-bottom: 6px; }
.product-tagline-detail {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}
.product-desc-detail {
  font-size: 0.98rem;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Features List */
.features-list { list-style: none; margin-bottom: 28px; }
.features-list li {
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
}
.features-list li:last-child { border-bottom: none; }
.features-list i { color: var(--whatsapp); margin-top: 3px; font-size: 0.85rem; }

/* WhatsApp CTA Box */
.wa-cta-box {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.wa-cta-box h4 { font-size: 0.95rem; margin-bottom: 14px; }
.wa-contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ---------- Variant Table ---------- */
.variant-section { padding: 60px 0; background: var(--bg-section); }
.variant-table-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.variant-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.variant-table th {
  background: var(--dark);
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  text-align: left;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.variant-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.variant-table tbody tr:hover { background: #FFF8E1; }
.variant-table tbody tr:last-child td { border-bottom: none; }
.btn-wa-row {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--whatsapp);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-wa-row:hover { background: var(--whatsapp-dark); color: #fff; }

/* ---------- Related Products ---------- */
.related-section { padding: 60px 0; }

/* ---------- About Page ---------- */
.about-hero {
  background: var(--dark);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.about-hero h1 { color: #fff; font-size: 2.4rem; margin-bottom: 12px; }
.about-hero p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-content h2 { margin-bottom: 16px; }
.about-content p { margin-bottom: 14px; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.value-card i { color: var(--primary); font-size: 1.3rem; margin-top: 2px; }
.value-card h4 { font-size: 0.95rem; margin-bottom: 3px; }
.value-card p { font-size: 0.82rem; color: var(--text-muted); }

/* Industries strip */
.industries-strip { padding: 48px 0; background: var(--bg-white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  text-align: center;
}
.industry-item {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
}
.industry-item i { font-size: 1.8rem; color: var(--primary); margin-bottom: 8px; display: block; }
.industry-item h4 { font-size: 0.88rem; font-weight: 700; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFEBEE;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; font-weight: 700; }
.contact-item p { font-size: 0.95rem; color: var(--text-heading); font-weight: 600; }

/* Form */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-heading); margin-bottom: 5px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text-heading);
  background: var(--bg-white);
  outline: none;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(198,40,40,0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #ccc;
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-heading {
  font-family: 'Outfit', sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.site-footer p, .site-footer li { font-size: 0.88rem; line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #aaa; text-decoration: none; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #777;
}

/* ---------- Floating WhatsApp ---------- */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
}
.floating-wa:hover { transform: scale(1.1); background: var(--whatsapp-dark); color: #fff; }

/* ---------- Category Listing Cards ---------- */
.cat-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}
.cat-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}
.cat-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.cat-card i { font-size: 2.2rem; color: var(--primary); margin-bottom: 14px; display: block; }
.cat-card h3 { font-size: 1.05rem; color: var(--text-heading); margin-bottom: 6px; }
.cat-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .product-detail-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; /* Below header */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px 20px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.08);
    border-top: 1px solid var(--border);
    z-index: 999;
    
    /* Animation State */
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    display: flex;
  }
  .nav-links.open { 
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .hero h1 { font-size: 2rem; }
  .section-heading { font-size: 1.7rem; }
  .products-grid { grid-template-columns: 1fr; }
  .wa-contacts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .variant-table-wrap { overflow-x: auto; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .header-wa-btn { display: none; }
}

/* ===== Industries Grid V2 (Homepage) ===== */
.industries-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.industry-card-v2 {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--dark);
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.industry-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: transparent;
}
.industry-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.industry-card-v2 h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
.industry-card-products {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}
.industry-card-products i {
  color: var(--primary);
  margin-right: 4px;
}
.industry-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: auto;
  padding-top: 8px;
}
.industry-card-link i {
  transition: transform 0.2s;
  margin-left: 4px;
}
.industry-card-v2:hover .industry-card-link i {
  transform: translateX(4px);
}

/* ===== Industry Detail Page ===== */
.industry-hero {
  background: linear-gradient(135deg, #16213E 0%, #1A1A2E 100%);
  padding: 80px 0 60px;
  color: #fff;
}
.industry-hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 20px;
}
.industry-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 16px;
}
.industry-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  line-height: 1.7;
}
.industry-hero .hero-btns {
  margin-top: 28px;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.challenge-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid #E2E8F0;
  transition: box-shadow 0.3s;
}
.challenge-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.challenge-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--dark);
}
.challenge-card h4 i {
  margin-right: 8px;
}
.challenge-card p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

.other-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.other-industry-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #F5F5F5;
  border-radius: 12px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid #E0E0E0;
  transition: all 0.2s;
}
.other-industry-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.other-industry-link i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .industries-grid-v2 {
    grid-template-columns: 1fr;
  }
  .industry-hero h1 {
    font-size: 1.8rem;
  }
  .challenges-grid {
    grid-template-columns: 1fr;
  }
  .other-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Premium Industry Page Redesign ---------- */
.industry-hero-modern {
  position: relative;
  background: var(--dark);
  color: #fff;
  padding: 100px 0 90px;
  overflow: hidden;
  text-align: center;
}
.hero-bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
  linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: center;
  opacity: 0.6;
}
.hero-modern-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.hero-modern-icon {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.05);
  border: 1px solid;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
}
.hero-modern-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-modern-desc {
  font-size: 1.15rem;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 30px;
}
.hero-modern-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Solutions Grid */
.industry-solutions {
  background: #fff;
  padding: 100px 0;
}
.section-header-modern {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 50px;
  max-width: 700px;
}
.section-header-modern.center-align {
  border-left: none;
  padding-left: 0;
  text-align: center;
  margin: 0 auto 50px;
}
.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.product-card-modern {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.product-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-color: #CBD5E1;
}
.product-card-img-wrap {
  position: relative;
  background: #F8FAFC;
  padding: 30px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-img-modern {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card-modern:hover .product-img-modern {
  transform: scale(1.05);
}
.product-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card-modern:hover .product-card-overlay {
  opacity: 1;
}
.btn-view-modern {
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transform: translateY(15px);
  transition: all 0.3s ease;
  text-decoration: none;
}
.product-card-modern:hover .btn-view-modern {
  transform: translateY(0);
}
.product-card-info {
  padding: 24px;
}
.product-title-modern {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-heading);
}

/* Bento Grid */
.industry-challenges {
  background: #F8FAFC;
  padding: 100px 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-auto-rows: minmax(200px, auto);
}
.bento-item {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-wide {
  grid-column: span 3;
}
.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.bento-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--text-heading);
}
.bento-large .bento-title {
  font-size: 1.5rem;
}
.bento-desc {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* Explore */
.industry-explore {
  padding: 80px 0;
  background: #fff;
}
.explore-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.explore-header h3 {
  font-size: 1.4rem;
  margin: 0;
  white-space: nowrap;
}
.explore-line {
  flex-grow: 1;
  height: 1px;
  background: #E2E8F0;
}
.other-industries-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.explore-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 50px;
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.explore-pill:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.explore-pill i {
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-large {
    grid-column: span 2;
    grid-row: auto;
  }
  .bento-wide {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-large, .bento-wide {
    grid-column: 1;
  }
  .hero-modern-title {
    font-size: 2.2rem;
  }
  .explore-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Modern About Us Section (Home) ===== */
.about-modern-section {
  padding: 100px 0;
  background-color: #F8FAFC;
  position: relative;
  overflow: hidden;
}
.about-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-modern-content {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-modern-content.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.about-modern-image-wrap {
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-modern-image-wrap.animate-in {
  opacity: 1;
  transform: translateX(0);
}
.about-modern-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
}
.about-modern-image-wrap:hover .about-modern-img {
  transform: scale(1.02);
}
.about-modern-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 16px;
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.badge-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.badge-text {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.4;
}
.about-modern-subtitle {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.about-modern-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-modern-desc {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-modern-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-modern-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-heading);
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.about-modern-content.animate-in .about-modern-list li {
  opacity: 1;
  transform: translateY(0);
}
.about-modern-content.animate-in .about-modern-list li:nth-child(1) { transition-delay: 0.2s; }
.about-modern-content.animate-in .about-modern-list li:nth-child(2) { transition-delay: 0.3s; }
.about-modern-content.animate-in .about-modern-list li:nth-child(3) { transition-delay: 0.4s; }
.about-modern-content.animate-in .about-modern-list li:nth-child(4) { transition-delay: 0.5s; }

.about-modern-list i {
  color: var(--primary);
  font-size: 1.2rem;
  background: rgba(220, 38, 38, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.about-modern-list li:hover i {
  transform: scale(1.15) rotate(10deg);
}

@media (max-width: 992px) {
  .about-modern-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-modern-badge {
    left: 20px;
    bottom: -20px;
  }
}
@media (max-width: 768px) {
  .about-modern-title {
    font-size: 2rem;
  }
  .about-modern-list {
    grid-template-columns: 1fr;
  }
}

/* ===== Working Process Section ===== */
.process-section {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 50px;
}
/* Connecting Line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #E2E8F0;
  z-index: 1;
}
.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.process-step.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.3s; }
.process-step:nth-child(3) { transition-delay: 0.5s; }
.process-step:nth-child(4) { transition-delay: 0.7s; }

.process-icon-wrap {
  width: 90px;
  height: 90px;
  background: #fff;
  border: 2px solid #E2E8F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.process-step:hover .process-icon-wrap {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.2);
}
.process-step-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 32px;
  height: 32px;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  border: 3px solid #fff;
  transition: background 0.3s;
}
.process-step:hover .process-step-number {
  background: #fff;
  color: var(--dark);
  border-color: var(--primary);
}
.process-step h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text-heading);
}
.process-step p {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
  .process-grid::before {
    display: none;
  }
}
@media (max-width: 576px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== New Product Range Section (Based on Design) ===== */
.product-range-section {
  padding: 80px 0;
  background-color: #F5F7F8;
}
.pr-header {
  margin-bottom: 32px;
}
.pr-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.pr-title span {
  color: #C49A0A;
}
.pr-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  row-gap: 12px;
}
.pr-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pr-tab {
  background: #fff;
  color: #444;
  border: 1.5px solid #ddd;
  padding: 12px 24px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: none;
}
.pr-tab.active {
  background: #F3C300;
  color: #111;
  border-color: #F3C300;
  box-shadow: 0 4px 14px rgba(243, 195, 0, 0.35);
}
.pr-tab:hover:not(.active) {
  border-color: #aaa;
  background: #f8f8f8;
}
.pr-view-all {
  color: #9A801C;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 2px;
  border-bottom: 2px solid #9A801C;
  padding-bottom: 3px;
  transition: opacity 0.3s;
  white-space: nowrap;
  align-self: flex-end;
  margin-left: auto;
}
.pr-view-all:hover {
  opacity: 0.65;
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .pr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .pr-grid {
    grid-template-columns: 1fr;
  }
}
.pr-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}
.pr-card-img-wrap {
  position: relative;
  background: #dce0e3;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.pr-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.pr-card:hover .pr-card-img-wrap img {
  transform: scale(1.06);
}
.pr-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(40, 40, 40, 0.9);
  color: #fff;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  z-index: 2;
}
.pr-card-body {
  padding: 28px 28px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.pr-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 24px;
  line-height: 1.4;
}
.pr-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.pr-spec-label {
  color: #888;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
}
.pr-spec-value {
  color: #111;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  font-weight: 700;
}
.pr-card-btn {
  display: block;
  width: 100%;
  background: #F0F2F5;
  color: #333;
  text-align: center;
  padding: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  border: none;
  margin-top: 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 4px;
}
.pr-card-btn:hover {
  background: #E2E6EA;
  color: #000;
}
@media (max-width: 768px) {
  .pr-controls {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== Limit Product Range grid to 2 rows ===== */
.pr-grid {
  max-height: 760px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .pr-grid { max-height: none; }
}

/* Remove old max-height limit — JS now handles 3-card limit per tab */
.pr-grid {
  max-height: none !important;
  overflow: visible !important;
}

/* Divider line between spec rows in product card */
.pr-spec-divider {
  border: none;
  border-top: 1px solid #EAEAEA;
  margin: 0;
}

/* ===== Product Range — CTA below grid ===== */
.pr-cta-wrap {
  text-align: center;
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.pr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.pr-cta-btn:hover {
  background: #F3C300;
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(243,195,0,0.35);
}
.pr-cta-btn:hover .pr-cta-arrow {
  transform: translateX(4px);
}
.pr-cta-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}
.pr-cta-sub {
  margin: 0;
  font-size: 0.82rem;
  color: #999;
  letter-spacing: 0.5px;
}

/* ===== Industries — Minimal Icon Row (Trusted Across India) ===== */
.ind-section {
  padding: 80px 0 90px;
  background-color: #EEF3F8;
  background-image:
    linear-gradient(rgba(180,200,220,0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,200,220,0.35) 1px, transparent 1px);
  background-size: 48px 48px;
  position: relative;
}

/* Header */
.ind-header {
  text-align: center;
  margin-bottom: 52px;
}
.ind-title {
  font-size: 2rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
  line-height: 1.1;
}
.ind-title span {
  color: #B8930A;
}
.ind-subtitle {
  color: #B8930A;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 480px;
}

/* Icon Row */
.ind-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* Each Card */
.ind-card {
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 24px 22px;
  width: 118px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.ind-card:hover .ind-card-icon i {
  color: #B8930A;
  transform: scale(1.15);
}

/* Icon */
.ind-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind-card-icon i {
  font-size: 1.7rem;
  color: #B8930A;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Label */
.ind-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .ind-card { width: calc(33% - 12px); padding: 20px 10px 16px; }
  .ind-card-icon i { font-size: 1.4rem; }
}

/* ============================================
   SERVICES PAGE
   ============================================ */

/* --- Hero --- */
.srv-hero {
  position: relative;
  background: #0f1923;
  padding: 100px 0 80px;
  overflow: hidden;
}
.srv-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(243,195,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(243,195,0,0.06) 0%, transparent 60%);
  background-image:
    linear-gradient(135deg, rgba(243,195,0,0.08) 0%, transparent 60%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
}
.srv-hero-inner {
  position: relative;
  max-width: 680px;
}
.srv-hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #F3C300;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(243,195,0,0.35);
  border-radius: 20px;
}
.srv-hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.srv-hero-title span { color: #F3C300; }
.srv-hero-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
}

/* --- Shared Section Head --- */
.srv-section-head {
  text-align: center;
  margin-bottom: 56px;
}
.srv-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  color: #B8930A;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 10px;
}
.srv-section-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.srv-section-title span { color: #B8930A; }
.srv-section-sub {
  color: #888;
  font-size: 1rem;
  margin: 0;
}

/* --- How It Works --- */
.srv-process-section {
  padding: 90px 0;
  background: #fff;
}
.srv-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.srv-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.srv-step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(243,195,0,0.15);
  line-height: 1;
  margin-bottom: -10px;
  font-family: 'Courier New', monospace;
}
.srv-step-icon {
  width: 72px;
  height: 72px;
  background: #FFF8DC;
  border: 2px solid #F3C300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s, transform 0.3s;
}
.srv-step:hover .srv-step-icon {
  background: #F3C300;
  transform: scale(1.08);
}
.srv-step-icon i {
  font-size: 1.5rem;
  color: #B8930A;
  transition: color 0.3s;
}
.srv-step:hover .srv-step-icon i { color: #1a1a1a; }
.srv-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.srv-step-desc {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.6;
  margin: 0;
}
.srv-step-connector {
  flex: 0 0 40px;
  display: flex;
  align-items: flex-start;
  padding-top: 72px;
}
.srv-step-connector span {
  display: block;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #F3C300 0, #F3C300 6px, transparent 6px, transparent 14px);
  opacity: 0.5;
}
@media (max-width: 768px) {
  .srv-step-connector { display: none; }
  .srv-step { max-width: 100%; margin-bottom: 32px; }
}

/* --- Service Cards --- */
.srv-cards-section {
  padding: 90px 0;
  background: #F5F7FA;
}
.srv-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 960px) {
  .srv-cards-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

.srv-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.srv-card--featured {
  border-color: #F3C300;
  box-shadow: 0 8px 32px rgba(243,195,0,0.18);
}
.srv-card--featured:hover {
  box-shadow: 0 20px 56px rgba(243,195,0,0.25);
}
.srv-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F3C300;
  color: #111;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 20px;
}
.srv-card-icon-wrap {
  background: #0f1923;
  padding: 32px 32px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.srv-card--featured .srv-card-icon-wrap { background: #1a2535; }
.srv-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(243,195,0,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.srv-card-icon i {
  font-size: 1.6rem;
  color: #F3C300;
}
.srv-card-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  font-family: 'Courier New', monospace;
  line-height: 1;
}
.srv-card-body { padding: 28px 28px 32px; }
.srv-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.srv-card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 20px;
}
.srv-card-points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.srv-card-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: #444;
  font-weight: 500;
}
.srv-card-points li i {
  color: #F3C300;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.srv-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 0.87rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
  border: none;
  cursor: pointer;
}
.srv-card-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.srv-card--featured .srv-card-btn {
  background: #F3C300;
  color: #111;
}
.srv-card--featured .srv-card-btn:hover { background: #e0b300; }

/* --- Stats Strip --- */
.srv-stats-strip {
  background: #0f1923;
  padding: 60px 0;
}
.srv-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.srv-stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 20px;
}
.srv-stat-num {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  color: #F3C300;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Courier New', monospace;
}
.srv-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.srv-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .srv-stat-divider { display: none; }
}

/* --- Bottom CTA --- */
.srv-cta-section {
  padding: 80px 0;
  background: #fff;
}
.srv-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, #0f1923 60%, #1a2535 100%);
  border-radius: 16px;
  padding: 52px 60px;
  flex-wrap: wrap;
}
.srv-cta-text h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.srv-cta-text p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin: 0;
}
.srv-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.srv-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.srv-btn-primary:hover { background: #1da851; transform: translateY(-2px); }
.srv-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 32px;
  border-radius: 6px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.srv-btn-secondary:hover {
  border-color: #F3C300;
  color: #F3C300;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .srv-cta-inner { padding: 36px 28px; flex-direction: column; text-align: center; }
  .srv-cta-actions { justify-content: center; }
  .srv-hero-title { font-size: 2.2rem; }
}


/* ============================================
   ENQUIRY PAGE
   ============================================ */

/* --- Hero --- */
.enq-hero {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2940 100%);
  padding: 80px 0 50px;
  overflow: hidden;
}
.enq-hero-bg {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="85" cy="15" r="60" fill="rgba(243,195,0,0.04)"/><circle cx="10" cy="90" r="50" fill="rgba(243,195,0,0.03)"/></svg>') no-repeat center;
  background-size: cover;
}
.enq-hero-inner { position: relative; text-align: center; max-width: 600px; margin: 0 auto; }
.enq-hero-label {
  display: inline-block;
  background: rgba(243,195,0,0.15);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.enq-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.enq-hero-title span { color: var(--primary); }
.enq-hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- Main Section Grid --- */
.enq-section {
  padding: 60px 0 80px;
  background: var(--bg-subtle);
}
.enq-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: start;
}

/* --- Form Card --- */
.enq-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.enq-form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to right, rgba(243,195,0,0.04), transparent);
}
.enq-form-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.enq-form-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}
.enq-form-subtitle {
  font-size: 0.85rem;
  color: #888;
  margin: 4px 0 0;
}
.enq-form-body { padding: 32px; }

/* --- Fallback Form Styles --- */
.enq-fallback-form .enq-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.enq-field { margin-bottom: 20px; }
.enq-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.enq-field input,
.enq-field select,
.enq-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
  background: var(--bg-subtle);
  color: var(--text-heading);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.enq-field input:focus,
.enq-field select:focus,
.enq-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(243,195,0,0.15);
  background: #fff;
}
.enq-field input::placeholder,
.enq-field textarea::placeholder {
  color: #aaa;
}
.enq-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--dark);
  padding: 14px 36px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(243,195,0,0.3);
}
.enq-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(243,195,0,0.4);
}

/* --- Sidebar --- */
.enq-contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  margin-bottom: 24px;
}
.enq-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.enq-card-title i { color: var(--primary); }
.enq-card-desc {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
}
.enq-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.enq-contact-item:last-of-type { border-bottom: none; }
.enq-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(243,195,0,0.1);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.enq-contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-heading);
}
.enq-contact-item a {
  font-size: 0.85rem;
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.enq-contact-item a:hover { color: var(--primary); }

/* WhatsApp CTA */
.enq-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  margin-top: 18px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}
.enq-wa-btn:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.enq-wa-btn i { font-size: 1.2rem; }

/* Address Card */
.enq-address-text {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.enq-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Trust Badges */
.enq-trust-card {
  background: var(--dark);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.enq-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 600;
}
.enq-trust-item i {
  color: var(--primary);
  font-size: 1rem;
}

/* ============================================
   FLUENT FORMS CUSTOM STYLING
   Premium overrides so Fluent Forms matches
   the Smart Lift site identity.
   ============================================ */

/* Form wrapper */
.enq-form-body .fluentform {
  font-family: 'Inter', 'Segoe UI', sans-serif !important;
}

/* All input fields */
.enq-form-body .fluentform .ff-el-input--content input[type="text"],
.enq-form-body .fluentform .ff-el-input--content input[type="email"],
.enq-form-body .fluentform .ff-el-input--content input[type="tel"],
.enq-form-body .fluentform .ff-el-input--content input[type="number"],
.enq-form-body .fluentform .ff-el-input--content input[type="url"],
.enq-form-body .fluentform .ff-el-input--content textarea,
.enq-form-body .fluentform .ff-el-input--content select {
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 0.92rem !important;
  background: var(--bg-subtle) !important;
  color: var(--text-heading) !important;
  transition: border-color 0.3s, box-shadow 0.3s !important;
  font-family: inherit !important;
}
.enq-form-body .fluentform .ff-el-input--content input:focus,
.enq-form-body .fluentform .ff-el-input--content textarea:focus,
.enq-form-body .fluentform .ff-el-input--content select:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(243,195,0,0.15) !important;
  background: #fff !important;
  outline: none !important;
}

/* Labels */
.enq-form-body .fluentform .ff-el-input--label label {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: var(--text-heading) !important;
  margin-bottom: 6px !important;
}

/* Required asterisk */
.enq-form-body .fluentform .ff-el-input--label .ff-el-required {
  color: #EF4444 !important;
}

/* Help text */
.enq-form-body .fluentform .ff-el-help-message {
  font-size: 0.78rem !important;
  color: #888 !important;
}

/* Checkboxes & Radio */
.enq-form-body .fluentform .ff-el-input--content .ff-el-form-check input[type="checkbox"] + span,
.enq-form-body .fluentform .ff-el-input--content .ff-el-form-check input[type="radio"] + span {
  font-size: 0.88rem !important;
  color: var(--text-body) !important;
}

/* Submit Button */
.enq-form-body .fluentform .ff-btn-submit {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 14px 36px !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s !important;
  box-shadow: 0 4px 16px rgba(243,195,0,0.3) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.enq-form-body .fluentform .ff-btn-submit:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(243,195,0,0.4) !important;
}

/* Multi-step / Progress Bar */
.enq-form-body .fluentform .ff-step-header .ff-step-titles .ff-step-title-active {
  color: var(--primary) !important;
}
.enq-form-body .fluentform .ff-el-progress-bar .ff-el-progress-status {
  background: var(--primary) !important;
}
.enq-form-body .fluentform .ff-el-progress-bar {
  background: var(--border) !important;
  border-radius: 50px !important;
  height: 6px !important;
}

/* Error States */
.enq-form-body .fluentform .ff-el-is-error .ff-el-input--content input,
.enq-form-body .fluentform .ff-el-is-error .ff-el-input--content textarea,
.enq-form-body .fluentform .ff-el-is-error .ff-el-input--content select {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}
.enq-form-body .fluentform .ff-el-is-error .text-danger {
  color: #EF4444 !important;
  font-size: 0.78rem !important;
  margin-top: 4px !important;
}

/* Success message */
.enq-form-body .fluentform .ff-message-success {
  background: rgba(16,185,129,0.08) !important;
  border: 1px solid rgba(16,185,129,0.3) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  color: #065F46 !important;
  font-weight: 600 !important;
  text-align: center !important;
}

/* File Upload */
.enq-form-body .fluentform .ff-el-input--content .ff-el-file-upload {
  border: 2px dashed var(--border) !important;
  border-radius: 10px !important;
  padding: 20px !important;
  text-align: center !important;
  transition: border-color 0.3s !important;
}
.enq-form-body .fluentform .ff-el-input--content .ff-el-file-upload:hover {
  border-color: var(--primary) !important;
}

/* Grid layout inside form */
.enq-form-body .fluentform .ff-t-container {
  gap: 20px !important;
}

/* Section breaks / Dividers inside Fluent Forms */
.enq-form-body .fluentform .ff-el-section-break hr {
  border-color: var(--border) !important;
  margin: 24px 0 !important;
}
.enq-form-body .fluentform .ff-el-section-break .ff-el-section-title {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: var(--dark) !important;
}

/* ============================================
   ENQUIRY PAGE RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .enq-grid {
    grid-template-columns: 1fr;
  }
  .enq-hero-title { font-size: 2rem; }
}
@media (max-width: 600px) {
  .enq-form-header { flex-direction: column; text-align: center; padding: 24px 20px; }
  .enq-form-body { padding: 20px; }
  .enq-fallback-form .enq-form-row { grid-template-columns: 1fr; }
  .enq-trust-card { grid-template-columns: 1fr; }
  .enq-hero { padding: 60px 0 40px; }
  .enq-hero-title { font-size: 1.8rem; }
}

/* ---------- Enquiry Button Overrides ---------- */
.btn-enquiry {
  background: var(--gold) !important;
  color: var(--dark) !important;
  border: 1px solid var(--gold) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(245,158,11,0.2) !important;
}
.btn-enquiry:hover {
  background: #d97706 !important; /* darker amber/gold */
  border-color: #d97706 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

.btn-enq-row {
  background: var(--gold) !important;
  color: var(--dark) !important;
  border: 1px solid var(--gold) !important;
  font-weight: 600 !important;
  border-radius: 4px;
}
.btn-enq-row:hover {
  background: #d97706 !important;
  border-color: #d97706 !important;
  color: #fff !important;
}

