/* ===================================================
   BakeSource – Wholesale Bakery Ingredients & Equipment
   Theme: Navy #1B2A4A + Orange #E8631A + Pure Warm White
   =================================================== */

/* ============ CSS CUSTOM PROPERTIES ============ */
:root {
  /* Brand Colors — BakeSource logo */
  --color-primary: #E8631A;
  --color-primary-light: #F07A38;
  --color-primary-dark: #C44F0E;
  --color-primary-glow: rgba(232, 99, 26, 0.18);
  --color-primary-soft: rgba(232, 99, 26, 0.08);

  /* Navy — logo dark color */
  --color-navy: #1B2A4A;
  --color-navy-light: #253A62;
  --color-navy-dark: #0F1E38;
  --color-navy-soft: rgba(27, 42, 74, 0.06);

  /* Themed card colors */
  --color-theme-choco: #C4681A;
  --color-theme-dairy: #1E8E3E;
  --color-theme-equip: #1B2A4A;

  /* White / Light Backgrounds */
  --color-bg: #FFFFFF;
  --color-bg-2: #FDF9F6;
  --color-bg-3: #FAF5F0;
  --color-bg-warm: #FFF8F3;
  --color-bg-card: #FFFFFF;
  --color-surface: #F7F3EE;

  /* Borders */
  --color-border: rgba(27, 42, 74, 0.10);
  --color-border-strong: rgba(27, 42, 74, 0.20);
  --color-border-accent: rgba(232, 99, 26, 0.25);

  /* Text */
  --color-text: #1B2A4A;
  --color-text-muted: #536780;
  --color-text-faint: #8A9DB5;
  --color-heading: #0F1E38;

  /* Utility */
  --color-white: #FFFFFF;
  --color-cream: #FDF9F6;
  --color-green: #1E8E3E;
  --color-green-soft: rgba(30, 142, 62, 0.10);
  --color-whatsapp: #25D366;

  /* Typography */
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-2xl: 48px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(27, 42, 74, 0.06);
  --shadow-sm: 0 2px 12px rgba(27, 42, 74, 0.08);
  --shadow-md: 0 6px 24px rgba(27, 42, 74, 0.10);
  --shadow-lg: 0 14px 44px rgba(27, 42, 74, 0.12);
  --shadow-xl: 0 24px 64px rgba(27, 42, 74, 0.15);
  --shadow-orange: 0 6px 28px rgba(232, 99, 26, 0.28);
  --shadow-card: 0 4px 20px rgba(27, 42, 74, 0.06);
  --shadow-hover: 0 12px 36px rgba(27, 42, 74, 0.14);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Container */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 4vw, 3rem);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ============ UTILITY ============ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-eyebrow.light {
  color: #FFB085;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header.text-left {
  text-align: left;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: normal;
  color: var(--color-primary);
}

.section-title.light {
  color: #FFFFFF;
}

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

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.85);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff !important;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(232, 99, 26, 0.45);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

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

.btn-hero-lg {
  padding: 1.1rem 3rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 32px rgba(232, 99, 26, 0.45);
}

.btn-hero-lg:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 44px rgba(232, 99, 26, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-border-strong);
}

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

.btn-outline-white {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: #FFFFFF;
  color: var(--color-navy) !important;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.78rem;
}

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

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.delay-1 {
  transition-delay: 0.12s !important;
}

.delay-2 {
  transition-delay: 0.22s !important;
}

.delay-3 {
  transition-delay: 0.32s !important;
}

/* ============ HEADER / NAV ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.65rem 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 16px rgba(27, 42, 74, 0.05);
  transition: all var(--transition-smooth);
}

.header.scrolled {
  padding: 0.45rem 0;
  box-shadow: 0 4px 24px rgba(27, 42, 74, 0.10);
  background: rgba(255, 255, 255, 0.99);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

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

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

.nav-link {
  padding: 0.6rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-navy);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
  background: var(--color-primary-soft);
}

.nav-cta-link {
  margin-left: 0.75rem;
  padding: 0.7rem 1.6rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-orange);
  transition: all var(--transition-smooth);
}

.nav-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 99, 26, 0.40);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
  background: var(--color-primary);
}

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

.hamburger.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
  background: var(--color-primary);
}

/* ============ HERO (CLEAN CENTERED WITH VIDEO) ============ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 100px;
  background: var(--color-navy-dark);
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.70;
  filter: brightness(0.85);
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(15, 30, 56, 0.65) 0%, rgba(15, 30, 56, 0.88) 100%);
  z-index: 2;
}

.hero-centered-container {
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-center-content {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 2.25rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.hero-title-main em {
  font-style: normal;
  color: var(--color-primary-light);
  display: block;
}

.hero-actions-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

/* ============ INNER PAGE HEADER ============ */
.page-header {
  padding: 155px 0 65px;
  background: linear-gradient(135deg, #1B2A4A 0%, #15223C 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 99, 26, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 58, 98, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FFB085;
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-title em {
  font-style: normal;
  color: var(--color-primary-light);
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* ============ MARQUEE STRIP ============ */
.marquee-strip {
  background: var(--color-navy);
  color: #FFFFFF;
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

.marquee-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 35s linear infinite;
}

.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

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

/* ============ TRUST / VALUE PROPOSITIONS ============ */
.trust-strip {
  background: #FFFFFF;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-bg-warm);
  border: 1px solid rgba(232, 99, 26, 0.2);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* ============ WHAT WE DO (DISTINCT THEMED CARDS) ============ */
.what-we-do {
  background: var(--color-bg-2);
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wwd-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.wwd-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.wwd-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.wwd-card:hover::before {
  opacity: 1;
}

/* Card 1 Theme: Chocolates & Compounds (Warm Amber/Bronze) */
.wwd-card-choco::before {
  background: linear-gradient(90deg, #C4681A, #E08535);
}
.wwd-card-choco:hover {
  border-color: rgba(196, 104, 26, 0.35);
}
.wwd-card-choco .wwd-icon-box {
  background: rgba(196, 104, 26, 0.12);
  color: #C4681A;
  border: 1.5px solid rgba(196, 104, 26, 0.28);
}
.wwd-card-choco .wwd-list li span {
  color: #C4681A;
}

/* Card 2 Theme: Dairy, Margarines & Powders (Fresh Green) */
.wwd-card-dairy::before {
  background: linear-gradient(90deg, #1E8E3E, #34A853);
}
.wwd-card-dairy:hover {
  border-color: rgba(30, 142, 62, 0.35);
}
.wwd-card-dairy .wwd-icon-box {
  background: rgba(30, 142, 62, 0.12);
  color: #1E8E3E;
  border: 1.5px solid rgba(30, 142, 62, 0.28);
}
.wwd-card-dairy .wwd-list li span {
  color: #1E8E3E;
}

/* Card 3 Theme: Equipment & Moulds (Navy & Orange) */
.wwd-card-equip::before {
  background: linear-gradient(90deg, #1B2A4A, #E8631A);
}
.wwd-card-equip:hover {
  border-color: rgba(232, 99, 26, 0.35);
}
.wwd-card-equip .wwd-icon-box {
  background: rgba(27, 42, 74, 0.10);
  color: #1B2A4A;
  border: 1.5px solid rgba(27, 42, 74, 0.25);
}
.wwd-card-equip .wwd-list li span {
  color: #E8631A;
}

.wwd-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-smooth);
}

.wwd-icon-box svg {
  width: 32px;
  height: 32px;
}

.wwd-card:hover .wwd-icon-box {
  transform: scale(1.08);
}

.wwd-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.wwd-card p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.wwd-list {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.wwd-list li {
  font-size: 0.85rem;
  color: var(--color-navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.wwd-list li span {
  font-weight: 700;
}

/* ============ PRODUCT CATALOG & SEARCH ============ */
.catalog-section {
  background: var(--color-bg);
  min-height: 60vh;
}

.catalog-controls {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Live Search */
.catalog-search-wrap {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.catalog-search-input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border-strong);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-navy);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.catalog-search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-glow);
}

.catalog-search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-faint);
  pointer-events: none;
}

/* Category Filter Tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.filter-tab {
  padding: 0.6rem 1.35rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
}

.filter-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-soft);
}

.filter-tab.active {
  background: var(--color-navy);
  color: #FFFFFF;
  border-color: var(--color-navy);
  box-shadow: var(--shadow-sm);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
}

/* B2B Product Card */
.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border-accent);
}

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

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-veg-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(30, 142, 62, 0.3);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-green);
  box-shadow: var(--shadow-xs);
}

.veg-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
}

.product-cat-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(27, 42, 74, 0.9);
  backdrop-filter: blur(6px);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.product-specs-box {
  background: var(--color-bg-2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--color-border);
  margin-top: auto;
  margin-bottom: 1.25rem;
}

.product-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}

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

.spec-label {
  color: var(--color-text-muted);
  font-weight: 500;
}

.spec-val {
  font-weight: 600;
}

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

.btn-inquire {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: var(--color-navy);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all var(--transition-smooth);
}

.btn-inquire:hover {
  background: var(--color-primary);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

/* Empty search state */
.catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1rem;
  display: none;
}

.catalog-empty.show {
  display: block;
}

.catalog-empty-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.catalog-empty h3 {
  font-size: 1.4rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.catalog-empty p {
  color: var(--color-text-muted);
}

/* ============ ABOUT PAGE DETAILED ============ */
.about-detailed {
  background: #FFFFFF;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.about-intro-text .section-title {
  margin-bottom: 1.5rem;
}

.about-lead-box {
  background: var(--color-bg-warm);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.5rem;
}

.about-lead-box p {
  font-size: 1.02rem;
  color: var(--color-navy);
  font-weight: 500;
  line-height: 1.7;
}

.about-para {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-intro-img {
  position: relative;
}

.about-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid #FFFFFF;
}

.about-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about-guwahati-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-navy);
  color: #FFFFFF;
  padding: 1.25rem 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 280px;
}

.about-guwahati-badge h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #FFB085;
  margin-bottom: 0.25rem;
}

.about-guwahati-badge p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* Core Values / Pillars */
.pillars-section {
  background: var(--color-bg-2);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.pillar-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-border-accent);
}

.pillar-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

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

/* ============ WHO WE SERVE / CLIENTS (BIGGER STYLED ICONS) ============ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}

.client-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
}

.client-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, rgba(232, 99, 26, 0.12) 100%);
  border: 1.5px solid rgba(232, 99, 26, 0.3);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--transition-smooth), background var(--transition-smooth);
}

.client-icon-box svg {
  width: 36px;
  height: 36px;
}

.client-card:hover .client-icon-box {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #FFFFFF;
}

.client-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
}

.client-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============ CONTACT & INQUIRY PAGE ============ */
.contact-section {
  background: #FFFFFF;
}

.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
}

/* Contact Details Column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-card-box {
  background: var(--color-bg-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.contact-card-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.contact-card-box p.intro {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.contact-detail-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}

.cd-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.cd-text h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-faint);
  margin-bottom: 0.25rem;
}

.cd-text p,
.cd-text address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-navy);
  font-weight: 500;
  line-height: 1.5;
}

.cd-phone-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cd-phone-list a {
  color: var(--color-navy);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.cd-phone-list a:hover {
  color: var(--color-primary);
}

.cd-email-link {
  font-weight: 600;
  color: var(--color-primary);
}

.cd-email-link:hover {
  text-decoration: underline;
}

/* Wholesale Inquiry Form Wrap */
.inquiry-form-wrap {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 2.75rem 2.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.inquiry-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.inquiry-form-wrap p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border-strong);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-navy);
  background: #FFFFFF;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

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

/* Multi-select Checklist in Form */
.product-select-box {
  max-height: 160px;
  overflow-y: auto;
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  background: var(--color-bg-warm);
}

.product-check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--color-navy);
  font-weight: 500;
  cursor: pointer;
  user-select: none;
}

.product-check-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
}

/* Map Section */
.map-section {
  padding: 0 0 var(--space-2xl);
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  height: 400px;
  background: #EEE;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--color-navy) 0%, #15223C 100%);
  padding: var(--space-xl) 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.cta-banner-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--color-navy-dark);
  color: #FFFFFF;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Footer Logo Converted to Pure Crisp White */
.footer-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition-fast);
}

.footer-logo-img:hover {
  opacity: 0.9;
}

.footer-desc {
  font-size: 0.9rem;
  color: #A0B2C6;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-veg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(30, 142, 62, 0.15);
  border: 1px solid rgba(30, 142, 62, 0.4);
  border-radius: var(--radius-full);
  color: #4CAF50;
  font-size: 0.78rem;
  font-weight: 600;
}

.footer-col h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: #A0B2C6;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-primary-light);
  transform: translateX(3px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fc-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #A0B2C6;
}

.fc-icon {
  color: var(--color-primary-light);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.fc-row a {
  color: #FFFFFF;
  font-weight: 500;
}

.fc-row a:hover {
  color: var(--color-primary-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #788EA8;
}

.footer-bottom a {
  color: #A0B2C6;
}

.footer-bottom a:hover {
  color: var(--color-primary-light);
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  transition: all var(--transition-smooth);
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #FFFFFF;
  display: block;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.7);
  background-color: #20BA5A;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--color-navy);
  color: #FFFFFF;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  transform: translateX(8px);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 6.5rem;
  right: 2.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-smooth);
  z-index: 990;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-navy);
  color: #FFFFFF;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 2000;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  border: 1px solid rgba(232, 99, 26, 0.3);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============ GALLERY SECTION ============ */
.gallery-section {
  background: var(--color-bg-1);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.gallery-item {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  background: #000;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-tag {
  align-self: flex-start;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-primary);
  background: rgba(232, 99, 26, 0.15);
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(232, 99, 26, 0.3);
}

.gallery-item-title {
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gallery-item-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Play button for video item */
.gallery-video-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(232, 99, 26, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(232, 99, 26, 0.4);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.gallery-item:hover .gallery-video-indicator {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-primary);
}

.gallery-video-indicator svg {
  fill: #FFFFFF;
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-modal.active .lightbox-content-wrapper {
  transform: scale(1);
}

.lightbox-content-wrapper img,
.lightbox-content-wrapper video {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: rotate(90deg);
}

.lightbox-caption {
  position: absolute;
  bottom: -45px;
  left: 0;
  right: 0;
  text-align: center;
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  background: rgba(15, 23, 42, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* ============ RESPONSIVE BREAKPOINTS ============ */
@media (max-width: 1080px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 860px) {
  .hamburger {
    display: flex;
  }

  .nav-logo-img {
    height: 60px;
  }

  .footer-logo-img {
    height: 60px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 95px 2rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.35s ease;
    z-index: 1000;
    gap: 0.5rem;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .nav-cta-link {
    width: 100%;
    text-align: center;
    margin: 1rem 0 0;
    padding: 0.85rem;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cta-banner-actions {
    width: 100%;
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-item {
    height: 320px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 130px 0 70px;
    min-height: 70vh;
  }

  .hero-title-main {
    font-size: 2.3rem;
    margin-bottom: 1.75rem;
  }

  .btn-hero-lg {
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .product-select-box {
    grid-template-columns: 1fr;
  }

  .inquiry-form-wrap {
    padding: 2rem 1.5rem;
  }

  .about-img-frame img {
    height: 300px;
  }

  .about-guwahati-badge {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }

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

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .back-to-top {
    bottom: 5.2rem;
    right: 1.45rem;
  }
}