/* ===========================================================================
  FLOATING WHATSAPP ACTION
  ========================================================================== */

:root {
  /* Brand Palette */
  --navy-dark: #0f172a;
  --navy-primary: #1e1b4b;
  --blue-brand: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-soft: #eff6ff;

  --gold-accent: #f59e0b;
  --gold-hover: #d97706;
  --gold-light: #fffbeb;

  --emerald-pure: #059669;
  --emerald-light: #ecfdf5;

  /* Neutral Colors */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --bg-slate: #f8fafc;
  --white: #ffffff;

  /* Legacy Color Compatibility */
  --green: var(--navy-primary);
  --green-light: var(--blue-brand);
  --yellow: var(--gold-accent);
  --yellow-light: var(--gold-light);
  --ink: var(--slate-900);
  --muted: var(--slate-600);
  --border: var(--slate-200);

  /* Elevation Shadows & Transitions */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 10px 15px -5px rgba(15, 23, 42, 0.04);
  --shadow-gold: 0 10px 25px -5px rgba(245, 158, 11, 0.3);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--slate-800);
  background-color: var(--bg-slate);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy-primary);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Layout Container */
.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* ==========================================================================
   PRELOADER / INTRO SCREEN
   ========================================================================== */
#intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#intro.hide {
  opacity: 0;
  visibility: hidden;
}

.intro-box {
  max-width: 420px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-logo-img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(30, 27, 75, 0.15));
}

.coming-soon-box {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-primary);
  background: var(--gold-light);
  border: 2px solid var(--gold-accent);
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.loader-bar {
  width: 160px;
  height: 4px;
  background: var(--slate-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-progress {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-accent), var(--blue-brand));
  width: 0%;
  animation: fillProgress 1.8s ease-in-out forwards;
}

@keyframes fillProgress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* ==========================================================================
   TRANSPARENT GLASS HEADER OVERLAY (FULL WEBSITE & SCROLL)
   ========================================================================== */
/* Top Contact Bar */
.top-bar {
  background: #0f172a;
  color: #cbd5e1;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1002;
  width: 100%;
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar a {
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.top-bar a:hover {
  color: var(--gold-accent);
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.2);
}

header,
header.header-overlay {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 32px));
  z-index: 1000;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.18) 0%, rgba(30, 41, 59, 0.12) 50%, rgba(15, 23, 42, 0.22) 100%) !important;
  backdrop-filter: blur(16px) saturate(180%) brightness(1.15) !important;
  -webkit-backdrop-filter: blur(16px) saturate(180%) brightness(1.15) !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 
              inset 0 1.5px 2px rgba(255, 255, 255, 0.75), 
              inset 0 -1px 2px rgba(255, 255, 255, 0.15) !important;
  transition: all var(--transition-normal);
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  animation: wateryShimmer 6s infinite ease-in-out;
}

@keyframes wateryShimmer {
  0% { left: -100%; }
  30% { left: 200%; }
  100% { left: 200%; }
}

header.scrolled,
header.header-overlay.scrolled {
  top: 12px !important;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.38) 0%, rgba(30, 41, 59, 0.28) 100%) !important;
  backdrop-filter: blur(20px) saturate(200%) brightness(1.2) !important;
  -webkit-backdrop-filter: blur(20px) saturate(200%) brightness(1.2) !important;
  border: 1px solid rgba(245, 158, 11, 0.5) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 
              inset 0 1.5px 2.5px rgba(255, 255, 255, 0.85),
              0 0 20px rgba(245, 158, 11, 0.25) !important;
}

header nav {
  height: 72px;
  padding: 0 24px 0 32px;
}

header.scrolled nav {
  height: 64px;
}

nav {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  background: transparent !important;
  padding: 0;
  border: none;
  box-shadow: none;
  outline: none;
  transition: transform var(--transition-fast);
}

header .brand-logo img {
  height: 46px;
}

.brand-logo img,
.intro-logo-img,
img[src*="logo"] {
  height: 60px;
  width: auto;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.4));
  transition: transform var(--transition-fast);
}

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

.navlinks {
  display: flex;
  align-items: center;
  gap: 28px;
}

@media (min-width: 993px) {
  .navlinks {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.navlinks a {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  position: relative;
  padding: 8px 16px;
  border-radius: 9999px;
  transition: all var(--transition-fast);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.navlinks a:hover {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  box-shadow: inset 0 1px 1.5px rgba(255, 255, 255, 0.5);
}

.dropdown-chevron {
  transition: transform var(--transition-fast);
}

.navlinks a:hover .dropdown-chevron {
  transform: translateY(2px);
}

.navlinks a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2.5px;
  background: var(--gold-accent);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.navlinks a:hover,
.navlinks a.active {
  color: #ffffff;
}

.navlinks a.active::after,
.navlinks a:hover::after {
  transform: scaleX(1);
}

/* Capsule Pill Gold GET IN TOUCH Button */
.btn-pill-gold {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  padding: 11px 24px !important;
  border-radius: 9999px !important;
  letter-spacing: 0.8px !important;
  text-shadow: none !important;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast) !important;
  margin-left: 8px;
}

.btn-pill-gold::after {
  display: none !important;
}

.btn-pill-gold:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.55);
  color: #ffffff !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--blue-brand) 100%);
  color: var(--white);
  padding: 12px 26px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(30, 27, 75, 0.2);
  transition: all var(--transition-fast);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 27, 75, 0.3);
  color: var(--white);
}

.btn:active {
  transform: translateY(0);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-accent) 0%, #d97706 100%);
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.45);
  color: var(--navy-dark);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-primary);
  border: 1.5px solid var(--slate-300);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--navy-primary);
  background: var(--blue-soft);
  color: var(--navy-primary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13.5px;
  border-radius: var(--radius-sm);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--navy-primary);
  position: relative;
  transition: background-color 0.2s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--navy-primary);
  transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-toggle.active .hamburger {
  background-color: transparent;
}

.nav-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
/* ==========================================================================
   FULL SECTION HERO BANNER (100VH ZERO-SCROLL FIT - NO CROPPING)
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 4px);
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a140d;
  overflow: hidden;
  border-bottom: 4px solid var(--gold-accent);
}

.hero-img {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-desktop-img {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-mobile-img {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  width: 100%;
}

.hero-content-glass {
  max-width: 820px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-lg);
  padding: 40px 45px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35), 0 0 30px rgba(245, 158, 11, 0.2);
  color: var(--white);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(245, 158, 11, 0.5);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.hero-text h1 {
  font-size: clamp(34px, 5vw, 54px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-text h1 span.highlight {
  color: #fbbf24;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 17px;
  color: var(--slate-200);
  line-height: 1.7;
  margin-bottom: 28px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Feature Pills Grid in Hero Glass Box */
.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.hero-feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.hero-feature-pill:hover {
  background: rgba(245, 158, 11, 0.18);
  border-color: var(--gold-accent);
  transform: translateY(-2px);
}

.pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.25);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(245, 158, 11, 0.5);
}

.pill-text strong {
  display: block;
  font-size: 13.5px;
  color: var(--white);
  line-height: 1.2;
}

.pill-text small {
  font-size: 11.5px;
  color: var(--slate-300);
}

.btn-glass-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-glass-white:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: var(--white);
  color: var(--white);
}

.btn-glass-gold {
  background: rgba(245, 158, 11, 0.2);
  color: var(--gold-light);
  border: 1.5px solid rgba(245, 158, 11, 0.5);
  backdrop-filter: blur(8px);
}

.btn-glass-gold:hover {
  background: rgba(245, 158, 11, 0.35);
  border-color: var(--gold-accent);
  color: var(--white);
}

/* Hero Visual Card Showcase */
.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12), 0 0 25px rgba(245, 158, 11, 0.15);
  border: 2px solid rgba(245, 158, 11, 0.3);
  background: var(--white);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hero-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px rgba(15, 23, 42, 0.18), 0 0 35px rgba(245, 158, 11, 0.28);
  border-color: var(--gold-accent);
}

.hero-image-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #fdfbf7;
}

.hero-image-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--navy-primary), var(--blue-brand));
  color: #fef08a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  z-index: 3;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover .hero-banner-img {
  transform: scale(1.03);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.hero-image-wrapper:hover .hero-image-overlay {
  opacity: 1;
}

.zoom-icon {
  background: var(--white);
  color: var(--navy-primary);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-specs-strip {
  display: flex;
  justify-content: space-around;
  background: var(--navy-primary);
  color: var(--slate-200);
  padding: 12px 14px;
  font-size: 12px;
  border-top: 2px solid var(--gold-accent);
  flex-wrap: wrap;
  gap: 8px;
}

.strip-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.strip-badge strong {
  color: var(--gold-light);
}

/* Specifications Card on Hero Right */
.specs-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transition: transform var(--transition-normal);
}

.specs-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-accent), var(--blue-brand));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.specs-header {
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.specs-title {
  font-size: 22px;
  color: var(--navy-primary);
  margin-bottom: 4px;
}

.specs-subtitle {
  font-size: 13.5px;
  color: var(--slate-500);
  font-weight: 500;
}

.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.specs-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--slate-200);
}

.specs-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.specs-label {
  color: var(--slate-600);
  font-weight: 500;
}

.specs-value {
  color: var(--navy-primary);
  font-weight: 700;
  text-align: right;
}

/* ==========================================================================
   INFO STRIP / TRUST BADGES
   ========================================================================== */
.info-strip {
  background-color: var(--navy-primary);
  color: var(--white);
  padding: 45px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.strip-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-accent);
}

.strip-item h3 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.strip-item p {
  color: var(--slate-300);
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================================================
   PRODUCTS SHOWCASE & FILTERS
   ========================================================================== */
.products-section {
  padding: 90px 0;
  background-color: var(--bg-slate);
}

.why-choose-uday-block {
  margin-top: 60px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.why-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 35px;
}

.why-header h3 {
  font-size: clamp(22px, 3vw, 30px);
  margin: 10px 0;
  color: var(--navy-primary);
}

.why-header p {
  font-size: 15px;
  color: var(--slate-600);
}

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

.why-card {
  background: var(--bg-slate);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  transition: all var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-md);
}

.why-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(30, 27, 75, 0.08);
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-top: 10px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  color: var(--slate-600);
}

/* Filter Pills */
.filter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-600);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--blue-brand);
  color: var(--blue-brand);
}

.filter-btn.active {
  background: var(--navy-primary);
  color: var(--white);
  border-color: var(--navy-primary);
  box-shadow: var(--shadow-md);
}

/* Product Cards Grid & Carousel Slider */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.products-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0 20px 0;
}

.products-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.products-slider-track .product-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  color: var(--navy-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--navy-primary);
  color: var(--white);
  border-color: var(--navy-primary);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--slate-300);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--gold-accent);
}

@media (max-width: 992px) {
  .products-slider-track .product-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .products-slider-track .product-card {
    flex: 0 0 100%;
  }
}

.product-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-top: 3.5px solid var(--gold-accent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -10px rgba(13, 71, 42, 0.15);
  border-color: var(--gold-hover);
}

/* Image Container with Pedestal Shadow */
.product-img-wrapper {
  width: 100%;
  height: 190px;
  background: radial-gradient(circle at center, #ffffff 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  border-bottom: 1px solid var(--slate-100);
}

/* Floor Pedestal Shadow behind Product Bottle/Tin */
.product-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1;
}

.product-card:hover .product-img-wrapper::after {
  transform: translateX(-50%) scale(0.85);
  opacity: 0.5;
}

.product-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), filter 0.45s ease;
  filter: drop-shadow(0 14px 20px rgba(15, 23, 42, 0.3));
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 20px 28px rgba(245, 158, 11, 0.35));
}

/* Badges (No Overlap) */
.product-badge-group {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  z-index: 10;
}

.product-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  white-space: nowrap;
  line-height: 1.2;
  box-shadow: var(--shadow-sm);
}

.badge-gold {
  background: var(--gold-accent);
  color: var(--navy-dark);
}

.badge-blue {
  background: var(--blue-brand);
  color: var(--white);
}

.badge-green {
  background: var(--emerald-pure);
  color: var(--white);
}

.veg-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--emerald-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  border-radius: 2px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.veg-icon::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--emerald-pure);
  border-radius: 50%;
}

/* Compact Product Content Section */
.product-content {
  padding: 16px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-brand {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-hover);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.product-title {
  font-size: 15.5px;
  line-height: 1.25;
  color: var(--navy-primary);
  margin-bottom: 5px;
  font-weight: 700;
}

.product-desc {
  font-size: 12.5px;
  color: var(--slate-600);
  margin-bottom: 10px;
  line-height: 1.35;
}

/* Compact Spec Details */
.product-meta-box {
  background: var(--bg-slate);
  border-radius: var(--radius-md);
  padding: 8px 12px;
  margin-bottom: 10px;
  border: 1px solid var(--slate-200);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-bottom: 4px;
}

.meta-row:last-child {
  margin-bottom: 0;
}

.meta-key {
  color: var(--slate-500);
  font-weight: 500;
}

.meta-val {
  color: var(--navy-primary);
  font-weight: 700;
}

.price-tag {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-primary);
}

.price-sub {
  font-size: 12.5px;
  color: var(--emerald-pure);
  font-weight: 600;
}

/* Action Buttons */
.product-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

/* ==========================================================================
   WHY CHOOSE SHUBH LAXMI - EXACT MATCH TO REFERENCE SCREENSHOT
   ========================================================================== */
.why-choose-uday-block {
  margin-top: 60px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

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

.why-normal-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.why-normal-card:hover {
  border-color: var(--gold-accent);
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.06);
  transform: translateY(-6px);
}

.why-normal-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.06);
  color: #d97706;
  border: 1.5px solid rgba(245, 158, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.why-normal-icon svg {
  stroke: #d97706 !important;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.why-normal-card:hover .why-normal-icon {
  background: var(--gold-accent);
  color: var(--white);
  border-color: var(--gold-accent);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
  transform: scale(1.05);
}

.why-normal-card:hover .why-normal-icon svg {
  stroke: var(--white) !important;
}

.why-normal-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-normal-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
}

@media (max-width: 992px) {
  .why-normal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-normal-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-uday-block {
    padding: 30px 18px;
  }
}

/* ==========================================================================
   INTERACTIVE QUICK VIEW MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  width: min(850px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.84) translateY(30px);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  background: var(--slate-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--slate-200);
  color: var(--navy-primary);
}

.modal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.modal-img-col {
  background: var(--bg-slate);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--slate-200);
}

.modal-img-col img {
  max-height: 320px;
  object-fit: contain;
}

.modal-info-col {
  padding: 40px;
}

/* ==========================================================================
   ABOUT / LEGACY SECTION
   ========================================================================== */
.about-section {
  padding: 90px 0;
  background-color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-highlight-box {
  background: var(--gold-light);
  border-left: 4px solid var(--gold-accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy-primary);
  font-style: italic;
  margin: 25px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 25px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy-primary);
}

.feature-chip span {
  width: 24px;
  height: 24px;
  background: var(--emerald-light);
  color: var(--emerald-pure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ==========================================================================
   CONTACT & ENQUIRY FORM
   ========================================================================== */
.contact-section {
  padding: 90px 0;
  background-color: var(--bg-slate);
}

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

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-card-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.contact-card-item:hover {
  border-color: var(--blue-brand);
  transform: translateX(4px);
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  background: var(--blue-soft);
  color: var(--blue-brand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.form-box {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.form-box h3 {
  font-size: 26px;
  margin-bottom: 24px;
}

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

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

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--slate-900);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-brand);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & CALL)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}

.float-whatsapp {
  background: #25d366;
}

.float-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* ==========================================================================
   CTA BANNER & FOOTER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--slate-300);
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 30px;
}

/* Modern Multi-Column Footer System */
footer {
  background: var(--navy-dark);
  color: var(--slate-300);
  border-top: 4px solid var(--gold-accent);
  padding: 65px 0 0 0;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse at top, rgba(245, 158, 11, 0.08) 0%, rgba(15, 23, 42, 0) 70%);
  pointer-events: none;
}

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

.footer-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2.5px;
  background: var(--gold-accent);
  border-radius: var(--radius-full);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.5px;
}

.footer-brand-text span {
  color: var(--gold-accent);
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.footer-desc {
  color: var(--slate-400);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 13.5px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-accent);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: var(--gold-accent);
  color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.25);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--slate-400);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
}

.footer-links a:hover {
  color: var(--gold-accent);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--slate-300);
  margin-bottom: 14px;
  font-size: 13.5px;
  line-height: 1.5;
}

.footer-contact-icon {
  color: var(--gold-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a {
  color: var(--slate-300);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--gold-accent);
}

.footer-bottom-bar {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: var(--slate-400);
}

.footer-bottom-left span {
  color: var(--gold-accent);
  font-weight: 600;
}

.footer-bottom-right {
  display: flex;
  gap: 20px;
}

.footer-bottom-right a {
  color: var(--slate-400);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-bottom-right a:hover {
  color: var(--gold-accent);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 992px) {

  .hero-grid,
  .about-grid,
  .contact-grid,
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .modal-img-col {
    border-right: none;
    border-bottom: 1px solid var(--slate-200);
  }

  .hero {
    aspect-ratio: 16 / 11;
    min-height: 500px;
  }
}

/* Mobile Phone Screen Responsiveness (< 768px) */
@media (max-width: 768px) {

  header,
  header.header-overlay,
  header.scrolled,
  header.header-overlay.scrolled {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    border-radius: 0 !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    background: rgba(15, 23, 42, 0.92) !important;
    backdrop-filter: blur(20px) !important;
  }

  nav {
    height: 66px;
    padding: 0 16px;
  }

  header .brand-logo img {
    height: 44px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    z-index: 1100;
  }

  .hamburger,
  .hamburger::before,
  .hamburger::after {
    background-color: #ffffff !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  }

  .navlinks {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 2px solid var(--gold-accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
    z-index: 1000;
  }

  .navlinks.active {
    transform: translateY(0);
  }

  .navlinks a {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .btn-pill-gold {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 8px;
  }

  .hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 4px);
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a140d;
    overflow: hidden;
    border-bottom: 4px solid var(--gold-accent);
  }

  .hero-desktop-img {
    display: none !important;
  }

  .hero-mobile-img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100vh !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
  }

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

  .product-card-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DYNAMIC MODERN ANIMATIONS SYSTEM
   ========================================================================== */

/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatSubtle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulseAura {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Scroll Reveal Utility Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Delays for Grid Children */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* Enhanced Card & Image Micro-Interactions */
.product-card, .why-card, .stat-card, .excellence-card, .fact-item {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
}

.product-img-wrapper img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.07);
}

/* Button Light Sweep & Shimmer Effects */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.btn:hover::after {
  left: 200%;
}

.float-whatsapp {
  animation: pulseAura 2.5s infinite;
}

.stat-card {
  animation: floatSubtle 6s ease-in-out infinite;
}