/*
 * Rasam India Ventures Private Limited
 * Premium B2B Lead-Generation Website Stylesheet
 * Responsive, Modern, High-Performance Design System
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

/* CSS Variables */
:root {
  /* Brand Color Palette */
  --primary: #FF6421;             /* Exact Brand Orange (CTAs, Badges, Highlights) */
  --primary-dark: #E04E0E;        /* Deep Orange for Button Hover & Active States */
  --primary-light: #FFF1EB;       /* Soft Light Orange Tint for Cards & Backgrounds */
  --primary-hsl: 18, 100%, 56%;   /* HSL for translucent overlays */
  
  --secondary: #001740;           /* Exact Brand Deep Blue (Headings, Stats, Trust Badges) */
  --secondary-light: #EDF2F9;     /* Soft Corporate Blue Tint */
  
  --dark: #001740;                /* Rich Brand Blue for Dark Backgrounds */
  --dark-soft: #1E293B;           /* Dark Slate Grey for readable paragraph text */
  --light: #F8FAFC;               /* Clean Modern Crisp Off-White */
  --white: #FFFFFF;
  --grey: #64748B;                /* Slate Grey for muted descriptions */
  --grey-light: #E2E8F0;          /* Clean divider & border grey */
  --success: #10B981;
  
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 23, 64, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 23, 64, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 23, 64, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 23, 64, 0.06);
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--dark-soft);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-muted { color: var(--grey); }

.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--dark); color: var(--white); }

.py-sm { padding: 40px 0; }
.py-md { padding: 80px 0; }
.py-lg { padding: 120px 0; }

.mb-xs { margin-bottom: 8px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 48px; }

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

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

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

/* Glassmorphism Card styling */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px;
  transition: var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-hsl), 0.4);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 100, 33, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 100, 33, 0.45);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--secondary);
  border: 1.5px solid var(--secondary);
}

.btn-secondary:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background-color: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background-color: #00225c;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 20px 0;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 23, 64, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
  color: var(--secondary);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
}

/* Responsive Logo Image */
.site-logo-img {
  height: auto!important;
  width: auto!important;
  max-width: 260px!important;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .site-logo-img {
    height: 38px;
    max-width: 170px;
  }
}

@media (max-width: 480px) {
  .site-logo-img {
    height: 32px;
    max-width: 140px;
  }
}

.footer-logo {
  background-color: #fff;
  border-radius: 12px;
  padding: 10px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark-soft);
  position: relative;
  padding: 6px 0;
}

.nav-links a.btn {
  padding: 8px 18px !important;
  color: var(--white) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
}

.nav-links a.btn::after {
  display: none !important;
}

.nav-links a.btn:hover {
  background-color: var(--primary-dark) !important;
  color: var(--white) !important;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-normal);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary);
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--dark);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 80% 20%, var(--primary-light) 0%, var(--light) 60%);
  padding-top: 160px;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(255, 100, 33, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-subtitle span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--secondary);
  border-radius: var(--radius-full);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--secondary);
  margin-bottom: 24px;
}

.hero-title span {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--dark-soft);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  border: 4px solid var(--white);
  background: var(--white);
  width: 100%;
  height: auto;
}

.hero-image-bg {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--primary-light);
  border-radius: var(--radius-lg);
  z-index: 1;
}

/* Trust Badges / Stats Section */
.stats-section {
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  border: 1px solid var(--grey-light);
}

.stat-item {
  text-align: center;
  border-right: 1px solid var(--grey-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--grey);
  letter-spacing: 1px;
}

/* Division / B2B Solutions Section */
.solutions-section {
  background-color: var(--light);
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.section-description {
  max-width: 600px;
  margin: 0 auto 56px auto;
  font-size: 1.05rem;
}

.solution-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.solution-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.solution-card h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.solution-card p {
  color: var(--grey);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.solution-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.solution-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* Products Section & Cards */
.products-section {
  background-color: var(--white);
}

.product-card {
  background-color: var(--light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--grey-light);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-hsl), 0.4);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--secondary);
  color: var(--white);
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  z-index: 10;
}

.product-image-container {
  position: relative;
  height: 280px;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: hidden;
}

.product-image-container img {
  max-height: 100%;
  object-fit: contain;
  transition: var(--transition-slow);
}

.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

.product-info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.product-tagline {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-specs-list {
  list-style: none;
  margin-bottom: 24px;
  font-size: 0.9rem;
  flex-grow: 1;
}

.product-specs-list li {
  padding: 6px 0;
  border-bottom: 1px dashed var(--grey-light);
  display: flex;
  justify-content: space-between;
}

.product-specs-list li:last-child {
  border-bottom: none;
}

.product-specs-list span {
  font-weight: 600;
  color: var(--dark-soft);
}

/* Machinery Highlight Section */
.machinery-highlight {
  background-color: var(--secondary-light);
}

.feature-list {
  list-style: none;
  margin: 24px 0 32px 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 1rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Private Labeling CTA section */
.oem-cta-section {
  background: radial-gradient(circle at 10% 50%, #002766 0%, var(--secondary) 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.oem-cta-section .section-title {
  color: var(--white);
}

.oem-cta-section p {
  color: var(--grey-light);
  font-size: 1.1rem;
}

/* Interactive Quote/Calculator Widget */
.quote-widget {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-light);
}

.widget-title {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 24px;
  text-align: center;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background-color: var(--light);
  border: 1px solid var(--grey-light);
  transition: var(--transition-fast);
  color: var(--dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(var(--primary-hsl), 0.2);
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  cursor: pointer;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

/* B2B Contact / Form Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info-panel {
  background-color: var(--secondary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 48px;
  height: 100%;
}

.contact-info-panel h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.contact-info-list {
  list-style: none;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-text h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-text p, .contact-text a {
  color: var(--grey-light);
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

/* Map Wrapper */
.map-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-light);
  height: 350px;
  margin-top: 32px;
}

/* Product Tabs / Details Page Filters */
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  background-color: var(--grey-light);
  color: var(--dark-soft);
}

.tab-btn:hover {
  background-color: var(--primary-light);
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--white);
}

/* Table Specifications */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-light);
}

.swipe-indicator {
  display: none;
  text-align: center;
  color: var(--grey);
  font-size: 0.85rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.specs-table th, .specs-table td {
  padding: 16px 24px;
  text-align: left;
}

.specs-table th {
  background-color: var(--secondary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
}

.specs-table tr {
  border-bottom: 1px solid var(--grey-light);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table tr:nth-child(even) {
  background-color: var(--light);
}

/* Footer styling */
footer {
  background-color: var(--secondary);
  color: var(--white);
  padding: 80px 0 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-logo .logo-title {
  color: var(--secondary);
}

.footer-logo .logo-subtitle {
  color: var(--primary);
}

.footer-about {
  color: #C0CDE0;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-title {
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
  color: var(--white);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #C0CDE0;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

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

.footer-contact-info {
  list-style: none;
  color: #C0CDE0;
  font-size: 0.95rem;
}

.footer-contact-info li {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
}

.footer-contact-info i {
  color: var(--primary);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #C0CDE0;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .stat-item {
    border-right: none;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--grey-light);
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
  }
  .hero-description {
    margin: 0 auto 32px auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-image-wrapper {
    margin-top: 48px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 40px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-normal);
    gap: 20px;
  }
  
  .nav-links.active {
    right: 0;
  }

  .btn {
    padding: 10px 22px !important;
    font-size: 0.85rem !important;
  }

  .btn-sm {
    padding: 6px 14px !important;
    font-size: 0.8rem !important;
  }

  .specs-table {
    min-width: 750px;
  }
  
  .swipe-indicator {
    display: block !important;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  body.no-scroll {
    overflow: hidden;
  }
  .hero-image-bg {
    right: 0;
    top: 10px;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .stat-item {
    border-right: none !important;
    padding: 16px 0;
    border-bottom: 1px solid var(--grey-light);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .checkbox-group {
    grid-template-columns: 1fr;
  }
  .product-specs-list li {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    padding: 8px 0 !important;
  }
  .product-specs-list li span {
    text-align: left !important;
    display: block !important;
    color: var(--dark-soft) !important;
    font-weight: 600 !important;
    margin-top: 2px !important;
  }
}

/* Floating B2B Quick Contact Widget */
.floating-contact-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
}

.float-call {
  background-color: var(--primary);
}

.float-call:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-whatsapp:hover {
  background-color: #20BA56;
  transform: translateY(-2px);
}

/* Mobile Layout: Fixed split bottom bar layout */
@media (max-width: 768px) {
  body {
    padding-bottom: 54px !important;
  }

  .floating-contact-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: row;
    gap: 0;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .floating-btn {
    flex: 1;
    border-radius: 0;
    justify-content: center;
    padding: 16px 12px;
    font-size: 0.95rem;
    box-shadow: none;
  }
}


.footer-bottom p {
  color: #fff;
}