/*
 * Bhagwati Fashion - Premium Gen Z Design System Stylesheet
 * Colors: Luxury Maroon (#5C061E), Metallic Gold Accent (#C5A880), Elegant Champagne Cream (#FAF6F0)
 * Dark Luxury Block Contrast: Deep Midnight Wine (#1E0209)
 * Typography: Playfair Display (Serif), Plus Jakarta Sans & Inter (Sans-serif)
 */

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

:root {
  --color-primary: #5C061E;       /* Deep Wine Maroon */
  --color-primary-dark: #3D0312;  /* Dark Maroon */
  --color-primary-light: #7E1430; /* Lighter Maroon */
  --color-accent: #C5A880;        /* Metallic Gold */
  --color-accent-dark: #A58963;   /* Muted Gold Accent */
  --color-accent-light: #E0CDB4;  /* Soft Warm Gold */
  --color-bg-cream: #FAF6F0;      /* Main Champagne Cream Background */
  --color-bg-card: #F4EDE2;       /* Deeper Card Background */
  --color-text-dark: #1F1514;     /* Rich Black Coffee Text */
  --color-text-muted: #6E615D;    /* Soft Muted Gray-Brown Text */
  --color-white: #FFFFFF;
  --color-whatsapp: #25D366;      /* WhatsApp Green */
  
  /* Premium Dark Theme variables */
  --color-dark-bg: #1E0209;       /* Deep Luxury Maroon-Black */
  --color-dark-card: #2E0B14;     /* Contrast Dark Card */
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(92, 6, 30, 0.03);
  --shadow-md: 0 12px 30px rgba(92, 6, 30, 0.06);
  --shadow-lg: 0 24px 64px rgba(92, 6, 30, 0.12);
  --shadow-gold: 0 12px 32px rgba(197, 168, 128, 0.18);
  
  --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  
  --container-width: 1240px;
}

/* Lenis Smooth Scroll Compatibility */
html.lenis, html.lenis body {
  height: auto;
}
.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis-stopped {
  overflow: hidden;
}
.lenis-scrolling iframe {
  pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* 1. Global Reset & Body Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 500;
  line-height: 1.15;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

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

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

ul {
  list-style: none;
}

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

/* Custom Cursor */
.custom-cursor {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--color-accent);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-cursor.active,
.custom-cursor-dot.active {
  opacity: 1;
}

.custom-cursor.hover {
  width: 70px;
  height: 70px;
  background-color: rgba(197, 168, 128, 0.15);
  border-color: var(--color-accent-light);
}

@media (hover: none) {
  .custom-cursor, .custom-cursor-dot {
    display: none !important;
  }
}

/* 2. Utility Classes */
.container {
  width: 92%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-padding {
  padding: 8rem 0;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent-dark);
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

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

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
}

.btn-accent:hover {
  background-color: transparent;
  color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* High Contrast Alternate Section Styling */
.section-dark {
  background-color: var(--color-dark-bg) !important;
  color: var(--color-white) !important;
}

.section-dark .section-title,
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white) !important;
}

.section-dark p {
  color: rgba(250, 246, 240, 0.7) !important;
}

.section-dark .section-subtitle {
  color: var(--color-accent) !important;
}

.section-dark .stat-counter-card {
  background-color: var(--color-dark-card) !important;
  border: 1px solid rgba(197, 168, 128, 0.1) !important;
  border-bottom: 3px solid var(--color-accent) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
}

.section-dark .stat-num {
  color: var(--color-accent) !important;
}

.section-dark .stat-label {
  color: rgba(250, 246, 240, 0.7) !important;
}

.section-dark .why-choose-item i {
  background-color: var(--color-dark-card) !important;
  color: var(--color-accent) !important;
  border: 1.5px solid rgba(197, 168, 128, 0.1) !important;
}

.section-dark .why-choose-item h4 {
  color: var(--color-white) !important;
}

.section-dark .why-choose-item p {
  color: rgba(250, 246, 240, 0.6) !important;
}

.section-dark .industry-card {
  background-color: var(--color-dark-card) !important;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-dark .industry-card i {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-accent);
}

/* GSAP Reveal Masks */
.reveal-wrapper {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}

/* 3. Header & Navigation */
.top-bar {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  font-size: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
  letter-spacing: 0.5px;
}

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

.top-bar-info span {
  margin-right: 2rem;
  display: inline-flex;
  align-items: center;
}

.top-bar-info i {
  margin-right: 0.6rem;
  color: var(--color-accent);
}

.top-bar-social a {
  margin-left: 1.2rem;
  color: rgba(250, 246, 240, 0.8);
}

.top-bar-social a:hover {
  color: var(--color-accent);
  transform: translateY(-1px);
}

header {
  background-color: rgba(250, 246, 240, 0.85);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
  transition: all var(--transition-normal);
}

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

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

.logo svg {
  width: 48px;
  height: 48px;
}

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

.logo-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 1;
}

.logo-subtitle {
  font-size: 0.65rem;
  letter-spacing: 6px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: 0.15rem;
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-dark);
  padding: 0.5rem 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-cta {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-normal);
}

/* 4. Hero Slider Section */
.hero-slider {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 600px;
  overflow: hidden;
  background-color: var(--color-dark-bg);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transform: scale(1.05);
  transition: transform 12s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide.active .slide-img {
  transform: scale(1);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  max-width: 750px;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s, opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-tagline {
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}

.slide-title {
  font-size: 4.8rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1.05;
}

.slide-desc {
  font-size: 1.15rem;
  margin-bottom: 3rem;
  color: rgba(250, 246, 240, 0.85);
  font-weight: 300;
  line-height: 1.7;
}

.slider-nav {
  position: absolute;
  bottom: 4rem;
  left: 5%;
  z-index: 10;
  display: flex;
  gap: 1.5rem;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

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

/* USP Strip */
.usp-strip {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 0.5rem;
}

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

.usp-item i {
  color: var(--color-accent);
  font-size: 1.6rem;
}

.usp-item span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* 5. About Section */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.about-intro-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.about-img-main {
  grid-column: 1 / 10;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 128, 0.15);
}

.about-img-main img,
.about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-main:hover img,
.about-img-sub:hover img {
  transform: scale(1.05);
}

.about-img-sub {
  grid-column: 7 / 13;
  margin-top: 35%;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid var(--color-bg-cream);
}

.about-intro-content {
  padding-left: 0;
}

.about-intro-title {
  font-size: 4rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.about-intro-highlight {
  font-size: 1.35rem;
  color: var(--color-accent-dark);
  font-family: var(--font-heading);
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* 6. Product Categories Section */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.category-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  border: 1px solid rgba(197, 168, 128, 0.08);
  transition: all var(--transition-normal);
}

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 2, 9, 0.98) 12%, rgba(30, 2, 9, 0.4) 60%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: var(--color-white);
  transition: var(--transition-normal);
}

.category-card-title {
  color: var(--color-white);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.category-card-count {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
  transform: translateY(15px);
  opacity: 0;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-color: var(--color-accent);
}

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

.category-card:hover .category-card-count {
  transform: translateY(0);
  opacity: 1;
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(to top, rgba(30, 2, 9, 0.98) 22%, rgba(30, 2, 9, 0.5) 70%, rgba(30, 2, 9, 0.15));
}

/* 7. Stats & Why Choose Us Section */
.stats-section {
  background-color: var(--color-bg-card);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.stats-content-side h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: -1px;
}

.why-choose-list {
  margin: 3rem 0;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.why-choose-item i {
  color: var(--color-primary);
  background-color: var(--color-white);
  padding: 1.1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-item h4 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.why-choose-item p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.stats-counter-side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-counter-card {
  background-color: var(--color-white);
  padding: 3.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 4px solid var(--color-accent);
  transition: var(--transition-normal);
  border: 1px solid rgba(197, 168, 128, 0.05);
}

.stat-counter-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  border-bottom-color: var(--color-primary);
}

.stat-num {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  font-weight: 700;
}

/* 8. Industries We Serve */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  margin-top: 4rem;
}

.industry-card {
  background-color: var(--color-white);
  padding: 3.5rem 2.2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(197, 168, 128, 0.05);
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.industry-card:hover h4,
.industry-card:hover p {
  color: var(--color-white);
}

.industry-card:hover i {
  color: var(--color-accent);
  background-color: rgba(255, 255, 255, 0.08);
}

.industry-card i {
  font-size: 2.2rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  background-color: var(--color-bg-cream);
  border-radius: 50%;
  transition: var(--transition-normal);
}

.industry-card h4 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  transition: var(--transition-normal);
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  transition: var(--transition-normal);
  line-height: 1.6;
}

/* 9. Call to Action Banner (Compact Height) */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  text-align: center;
  padding: 4.5rem 0; /* Reduced padding from 8rem to 4.5rem */
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.04);
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  font-size: 2.8rem; /* Reduced font size from 3.6rem to 2.8rem */
  color: var(--color-white);
  margin-bottom: 1rem; /* Reduced margin from 1.8rem to 1rem */
  font-weight: 400;
  letter-spacing: -1px;
}

.cta-banner-content p {
  color: rgba(250, 246, 240, 0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem; /* Reduced margin from 3.5rem to 2rem */
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  margin-bottom: 0.5rem;
}

/* 10. Footer Structure (Condensed 4-Column Layout) */
footer {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 3.5rem 0 2rem; /* Reduced padding from 6rem to 3.5rem */
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.3fr;
  gap: 3rem; /* Reduced gap from 4rem to 3rem */
  margin-bottom: 2.5rem; /* Reduced margin from 5rem to 2.5rem */
}

.footer-col h3 {
  color: var(--color-accent);
  font-size: 1rem; /* Reduced from 1.1rem */
  margin-bottom: 1rem; /* Reduced from 2rem */
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-col h3::after {
  content: '';
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-accent);
  margin-top: 0.4rem;
}

.footer-col p {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo svg {
  width: 38px;
  height: 38px;
  fill: var(--color-accent);
}

.footer-logo-title {
  color: var(--color-white);
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 0.6rem; /* Reduced from 0.9rem */
}

.footer-links a {
  color: rgba(250, 246, 240, 0.75);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

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

.footer-contact li {
  display: flex;
  margin-bottom: 0.8rem; /* Reduced from 1.2rem */
  font-size: 0.88rem;
  color: rgba(250, 246, 240, 0.75);
  line-height: 1.5;
}

.footer-contact i {
  color: var(--color-accent);
  margin-right: 0.8rem;
  margin-top: 0.2rem;
  font-size: 1rem;
}

.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.8rem; /* Reduced from 2.5rem */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-social-compact {
  display: flex;
  gap: 1.2rem;
}

.footer-social-compact a {
  color: rgba(250, 246, 240, 0.7);
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.footer-social-compact a:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Back to Top & WhatsApp floating widgets */
.floating-widgets {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 999;
}

.widget-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-size: 1.6rem;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
}

.widget-whatsapp {
  background-color: var(--color-whatsapp);
}

.widget-whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
}

.widget-top {
  background-color: var(--color-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

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

.widget-top:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(92, 6, 30, 0.35);
}

/* 11. Generic Page Header styling */
.page-header {
  background: linear-gradient(rgba(30, 2, 9, 0.82), rgba(30, 2, 9, 0.88)), url('https://images.unsplash.com/photo-1558244661-d248897f7bc4?auto=format&fit=crop&w=1400&q=80') no-repeat center/cover;
  color: var(--color-white);
  padding: 6rem 0;
  text-align: center;
  border-bottom: 1.5px solid rgba(197, 168, 128, 0.15);
}

.page-header h1 {
  color: var(--color-white);
  font-size: 4rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
  letter-spacing: -1.5px;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.breadcrumbs a {
  color: var(--color-white);
}

.breadcrumbs a:hover {
  color: var(--color-accent-light);
}

.breadcrumbs span {
  margin: 0 0.6rem;
  color: rgba(255, 255, 255, 0.3);
}

/* 12. About Page Layouts (Timeline & Cards) */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.vision-card {
  background-color: var(--color-white);
  padding: 4.5rem 3.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--color-primary);
  border-left: 1px solid rgba(197, 168, 128, 0.05);
}

.vision-card i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  display: block;
}

.vision-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem;
  margin-top: 4rem;
}

.value-card {
  background-color: var(--color-white);
  padding: 3.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border: 1px solid rgba(197, 168, 128, 0.05);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.value-card i {
  font-size: 2.2rem;
  color: var(--color-accent-dark);
  margin-bottom: 1.5rem;
  display: block;
}

.value-card h4 {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

/* Timeline Process */
.timeline {
  position: relative;
  max-width: 960px;
  margin: 5rem auto 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 2px;
  background-color: var(--color-accent);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-container {
  padding: 15px 50px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  right: -9px;
  background-color: var(--color-white);
  border: 4px solid var(--color-primary);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition-normal);
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -9px;
}

.timeline-content {
  padding: 2.2rem 2.8rem;
  background-color: var(--color-white);
  position: relative;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(197, 168, 128, 0.05);
  transition: var(--transition-normal);
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
  transform: scale(1.02);
}

.timeline-step {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 2px;
}

.timeline-content h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* 13. Products Page Layouts */
.products-wrapper {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.sidebar-filters {
  background-color: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 130px;
  height: fit-content;
  border: 1px solid rgba(197, 168, 128, 0.08);
}

.filter-group-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-bg-cream);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
}

.filter-list li {
  margin-bottom: 0.9rem;
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.filter-btn span {
  font-size: 0.75rem;
  background-color: var(--color-bg-cream);
  color: var(--color-text-muted);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  transition: var(--transition-fast);
  font-weight: 600;
}

.filter-btn:hover span,
.filter-btn.active span {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.sidebar-bulk-widget {
  background-color: var(--color-bg-cream);
  padding: 2.2rem 1.8rem;
  border-radius: 20px;
  margin-top: 2.5rem;
  text-align: center;
  border: 1px dashed var(--color-accent);
}

.sidebar-bulk-widget h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.sidebar-bulk-widget p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.8rem;
}

/* Product Cards Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product-card {
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(197, 168, 128, 0.08);
  height: 100%; /* Stretch cards to equal height in each row */
}

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

.product-card-img-wrap {
  height: 380px; /* Standard vertical height matching retail fashion catalogs */
  overflow: hidden;
  position: relative;
  display: block;
  border-bottom: 1px solid var(--color-bg-cream);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the container fully - no extra white space, no image distortion */
  display: block;
  transition: transform var(--transition-slow);
}

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

.product-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 30px;
  letter-spacing: 1.5px;
}

.product-card-details {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.product-card-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 1.2rem;
  line-height: 1.45;
  height: 48px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-bg-cream);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 600;
}

.product-price span {
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-weight: 400;
}

.btn-whatsapp-sm {
  background-color: var(--color-whatsapp);
  color: var(--color-white);
  padding: 0.6rem 1.1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-whatsapp-sm:hover {
  background-color: #1eb354;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* 14. Gallery Filter & Lightbox */
.gallery-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  border: 1px solid var(--color-accent-light);
  padding: 0.7rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

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

.gallery-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 1px solid rgba(197, 168, 128, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(92, 6, 30, 0.9);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-normal);
}

.gallery-item-overlay i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-accent);
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-item-overlay h4 {
  color: var(--color-white);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  font-weight: 400;
}

.gallery-item-overlay p {
  color: var(--color-accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

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

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

.gallery-item:hover .gallery-item-overlay i {
  transform: translateY(0);
}

/* Lightbox overlay popup */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 1, 4, 0.98);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  box-shadow: 0 10px 50px rgba(0,0,0,0.8);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--color-white);
  font-size: 2.2rem;
  cursor: pointer;
  background: transparent;
  border: none;
}

.lightbox-close:hover {
  color: var(--color-accent);
}

.lightbox-caption {
  color: var(--color-white);
  text-align: center;
  margin-top: 1.5rem;
}

.lightbox-caption h4 {
  color: var(--color-white);
  font-size: 1.35rem;
}

.lightbox-caption p {
  color: var(--color-accent);
  font-size: 0.85rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  margin-top: 0.3rem;
  letter-spacing: 2px;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--color-white);
  font-size: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  backdrop-filter: blur(5px);
}

.lightbox-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
}

.lightbox-prev { left: 3rem; }
.lightbox-next { right: 3rem; }

/* 15. Contact Page & Forms Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-info-card {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  padding: 4rem 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(197, 168, 128, 0.1);
}

.contact-info-card h3 {
  color: var(--color-accent);
  font-size: 2rem;
  margin-bottom: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-info-list i {
  color: var(--color-accent);
  font-size: 1.3rem;
  margin-top: 0.3rem;
  width: 24px;
  text-align: center;
}

.contact-info-list h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-list p {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-socials-wrap {
  margin-top: auto;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-socials {
  display: flex;
  gap: 1.2rem;
}

.contact-socials a {
  width: 44px;
  height: 44px;
  background-color: rgba(255,255,255,0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.05);
}

.contact-socials a:hover {
  background-color: var(--color-accent);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
  border-color: var(--color-accent);
}

.contact-form-wrap {
  background-color: var(--color-white);
  padding: 4.5rem 4rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(197, 168, 128, 0.08);
}

.contact-form-wrap h3 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.contact-form-wrap p {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

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

.form-group {
  margin-bottom: 2rem;
}

.form-group.full-width {
  grid-column: 1 / 3;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-dark);
}

.form-control {
  width: 100%;
  padding: 1.1rem 1.4rem;
  background-color: var(--color-bg-cream);
  border: 1.5px solid rgba(197, 168, 128, 0.1);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  color: var(--color-text-dark);
}

.form-control:focus {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  box-shadow: 0 0 0 4px rgba(92, 6, 30, 0.08);
}

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

.form-feedback {
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  display: none;
}

.form-feedback.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-feedback.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* Map Section */
.map-section {
  width: 100%;
  height: 500px;
  background-color: var(--color-bg-card);
  border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* 16. Responsive Adaptations */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-title {
    font-size: 3rem;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 6rem 0;
  }
  .section-title {
    font-size: 2.6rem;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2.5rem;
    box-shadow: 10px 0 30px rgba(22, 1, 6, 0.08);
    transition: var(--transition-slow);
    gap: 2rem;
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  .nav-cta {
    display: none;
  }
  .hero-slider {
    height: 75vh;
  }
  .slide-title {
    font-size: 3.2rem;
  }
  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .usp-item:nth-child(3),
  .usp-item:nth-child(6) {
    border-right: none;
  }
  .about-intro-grid,
  .stats-grid,
  .vision-mission-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-intro-images {
    max-width: 500px;
    margin: 0 auto;
  }
  .categories-grid {
    grid-template-columns: 1fr 1fr;
  }
  .industries-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline::after {
    left: 31px;
  }
  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-container::after {
    left: 22px;
  }
  .timeline-right {
    left: 0%;
  }
  .products-wrapper {
    grid-template-columns: 1fr;
  }
  .sidebar-filters {
    position: static;
    margin-bottom: 3rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .top-bar-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  .top-bar {
    padding: 0.8rem 0;
  }
  .slide-title {
    font-size: 2.4rem;
  }
  .slide-desc {
    font-size: 1rem;
  }
  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .usp-item {
    border-right: none;
  }
  .categories-grid,
  .industries-grid,
  .values-grid,
  .gallery-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: auto;
  }
  .contact-form-wrap {
    padding: 3rem 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .copyright-bar {
    text-align: center;
    flex-direction: column;
    gap: 1.2rem;
  }
  .lightbox-btn {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }
  .lightbox-prev { left: 0.8rem; }
  .lightbox-next { right: 0.8rem; }
}

/* 17. Safe Native Scroll Reveals (Failsafe) */
.js-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

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

