/* ============================================================
   SP Textiles – Main Stylesheet
   Premium B2B Industrial Design
   ============================================================ */

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

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --color-primary: #125B2D;
  /* Richer premium green */
  --color-primary-dark: #0B421F;
  --color-primary-light: #1E8A46;
  --color-primary-50: #f0fdf4;
  --color-primary-100: #dcfce7;
  --color-accent: #D4AF37;
  /* Premium Thread Gold */
  --color-accent-dark: #B5952F;
  --color-thread-silk: #E6DFD3;
  --color-thread-copper: #B87333;

  /* Neutral Palette */
  --color-dark: #0A0F0C;
  /* Deep Industrial Black */
  --color-dark-2: #141E18;
  --color-dark-3: #1B2921;
  --color-gray-900: #111827;
  --color-gray-700: #374151;
  --color-gray-500: #6B7280;
  --color-gray-300: #D1D5DB;
  --color-gray-100: #F3F4F6;
  --color-gray-50: #FAFAFA;
  /* Cleaner white-gray */
  --color-white: #FFFFFF;

  /* Typography */
  --font-body: 'Inter', 'DM Sans', sans-serif;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-ui: 'Inter', sans-serif;

  /* Spacing */
  --container-max: 1280px;
  --section-py: 6rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-green: 0 10px 30px rgba(18, 91, 45, 0.25);
  --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.25);

  /* Borders & Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.2);

  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Premium Textures & Animations ──────────────────────────── */
.texture-fabric-dark {
  background-color: var(--color-dark-2);
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
}

.texture-weave-light {
  background-color: var(--color-gray-50);
  background-image:
    linear-gradient(45deg, rgba(18, 91, 45, 0.02) 25%, transparent 25%, transparent 75%, rgba(18, 91, 45, 0.02) 75%, rgba(18, 91, 45, 0.02)),
    linear-gradient(45deg, rgba(18, 91, 45, 0.02) 25%, transparent 25%, transparent 75%, rgba(18, 91, 45, 0.02) 75%, rgba(18, 91, 45, 0.02));
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
}

@keyframes draw-thread {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes float-gentle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes thread-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.animate-float {
  animation: float-gentle 4s ease-in-out infinite;
}

.animate-pulse-gold {
  animation: thread-pulse 2s infinite;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-gray-700);
  background: var(--color-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-image:
    linear-gradient(rgba(18, 91, 45, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 91, 45, 0.01) 1px, transparent 1px);
  background-size: 80px 80px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* ─── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-100);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  /* Textile texture background */
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 6px 6px;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: visible;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  box-shadow:
    var(--shadow-sm),
    inset 0 0 0 2px var(--color-primary),
    inset 0 0 0 3px rgba(250, 250, 250, 0.15);/* Internal silk thread line */

}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary-dark);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary:hover::before {
  transform: scaleY(1);
}

.btn-primary:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    var(--shadow-green),
    inset 0 0 0 2px var(--color-primary-dark),
    inset 0 0 0 3px var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -1px;
  /* Use multiple backgrounds to create an animatable dashed border */
  background-image:
    linear-gradient(90deg, var(--color-accent) 50%, transparent 50%),
    linear-gradient(90deg, var(--color-accent) 50%, transparent 50%),
    linear-gradient(0deg, var(--color-accent) 50%, transparent 50%),
    linear-gradient(0deg, var(--color-accent) 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 12px 2px, 12px 2px, 2px 12px, 2px 12px;
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  border-radius: calc(var(--radius-sm) + 2px);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
  z-index: 2;
}

.btn-primary:hover::after {
  opacity: 1;
  transform: scale(1);
  inset: -5px;
  animation: stitch-walk 0.8s linear infinite;
}

@keyframes stitch-walk {
  0% {
    background-position: 0 0, 0 100%, 0 100%, 100% 0;
  }

  100% {
    background-position: 24px 0, -24px 100%, 0 0, 100% 24px;
  }
}

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

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

.btn-accent {
  background: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-accent-dark);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-accent:hover::before {
  transform: scaleX(1);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--color-dark);
}

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

.btn-white:hover {
  background: var(--color-primary-50);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

/* ─── Header / Navigation ─────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-slow);
}

#site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px dashed rgba(18, 91, 45, 0.2);
  /* Thread-like border */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 98px;
}

.site-logo img {
  height: 96px;
  width: auto;
  transition: var(--transition);
}

@media (max-width: 991px) {
  .header-inner {
    height: 80px;
  }

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

  #site-header.scrolled .header-inner {
    height: 70px;
  }

  .mobile-nav {
    top: 80px;
  }
}

.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.site-logo .logo-text span {
  color: var(--color-accent);
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gray-700);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: visible;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 1rem);
}

.nav-link .arrow {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
  overflow: hidden;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  color: var(--color-gray-700);
  transition: var(--transition);
  border-bottom: 1px solid var(--color-gray-100);
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  background: var(--color-primary-50);
  color: var(--color-primary);
  padding-left: 1.75rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-dark);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  overflow-y: auto;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

/* ─── Hero Section ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-dark-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: bgZoom 20s infinite alternate ease-in-out;
}

@keyframes bgZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 15, 12, 0.88) 0%,
      rgba(18, 91, 45, 0.75) 50%,
      rgba(10, 15, 12, 0.8) 100%);
  z-index: 1;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 1;
  opacity: 0.6;
}

.fiber-particle {
  position: absolute;
  bottom: -20px;
  width: 1px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  z-index: 2;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(5deg);
    opacity: 0;
  }

  20% {
    opacity: 0.8;
  }

  80% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-100vh) rotate(-5deg);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px dashed rgba(212, 175, 55, 0.5);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  background: rgba(10, 15, 12, 0.3);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.15;
  text-align: right;
  margin-left: 2.3rem;
}

@media (min-width: 1024px) {
  .hero h1 {
    color: var(--color-white);
    margin-bottom: 1.25rem;
    font-size: clamp(2.2rem, 5vw, 3.75rem);
    line-height: 1.15;
    text-align: right;
    margin-left: 19.3rem;
  }
}


.hero h1 em {
  color: var(--color-accent);
  font-style: normal;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.5;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6));
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

/* ─── Dynamic Hero Layouts ────────────────────────────────────── */

/* Carousel Styles (Swiper) */
.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero .swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}

.hero .swiper-pagination-bullet-active {
  background: var(--color-accent);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* Interactive 3D Style */
.hero-interactive-3d {
  perspective: 1000px;
}

.hero-interactive-3d .hero-content {
  background: rgba(10, 15, 12, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.float-element {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.float-element-1 {
  top: 15%;
  right: 15%;
  width: clamp(100px, 15vw, 250px);
}

.float-element-2 {
  bottom: 20%;
  right: 10%;
  width: clamp(80px, 12vw, 200px);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

/* ─── Page Header (inner pages) ────────────────────────────── */
.page-header {
  padding-top: 88px;
  /* account for fixed header */
  position: relative;
  overflow: hidden;
}

.page-header-inner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-dark-2) 0%, var(--color-dark-3) 100%);
}

.page-header-bg {
  position: absolute;
  inset: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
}

.page-header-content {
  position: relative;
  z-index: 1;
  color: var(--color-white);
  padding: 3rem 0;
}

.page-header-content h1 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.page-header-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ─── Breadcrumbs ─────────────────────────────────────────────── */
.breadcrumbs {
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-300);
  padding: 0.65rem 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--color-gray-500);
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--color-gray-300);
}

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

.breadcrumbs li:last-child {
  color: var(--color-gray-700);
  font-weight: 500;
}

/* ─── Sections ─────────────────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
}

.section-sm {
  padding: 3rem 0;
}

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

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

.section-green {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-muted {
  background: var(--color-gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header p {
  max-width: 640px;
  margin: 1rem auto 0;
  color: var(--color-gray-500);
  font-size: 1.05rem;
}

/* ─── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: rgba(255, 255, 255, 0.05);
  /* Make it floating/glass if placed correctly */
  position: relative;
  z-index: 10;
  margin-top: -6rem;
  /* Pull up over hero */
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  padding: 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-gray-300), transparent);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-100);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 107, 58, 0.2);
}

/* Category Cards */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(18, 91, 45, 0.3);
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-slow);
  transform: scale(0.95);
}

.category-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.category-card-img {
  height: 240px;
  overflow: hidden;
  background: var(--color-primary-50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.category-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  z-index: 1;
  opacity: 0.5;
  transition: var(--transition);
}

.category-card:hover .category-card-img::before {
  opacity: 0.2;
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card:hover .category-card-img img {
  transform: scale(1.1) rotate(1deg);
}

.category-card-icon {
  font-size: 3rem;
  color: var(--color-primary);
}

.category-card-body {
  padding: 1.5rem;
}

.category-card-body h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.category-card-body p {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin-bottom: 1.25rem;
}

.category-card-link {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.category-card-link:hover {
  gap: 0.7rem;
}

/* Product Cards */
.product-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-gray-100);
  transition: var(--transition-bounce);
  position: relative;
  background: var(--color-white);
  overflow: hidden;
}

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

.product-card::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed transparent;
  border-radius: calc(var(--radius-md) - 8px);
  transition: var(--transition);
  pointer-events: none;
  z-index: 5;
}

.product-card:hover::after {
  border-color: rgba(212, 175, 55, 0.4);
}

.product-card-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary-50), var(--color-gray-100));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

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

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

.product-card-body {
  padding: 1.25rem;
}

.product-card-body h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 0.35rem;
}

.product-card-body .yarn-count {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  background: var(--color-primary-100);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

/* ─── Grids ──────────────────────────────────────────────────── */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

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

/* ─── Forms ──────────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-700);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 107, 58, 0.12);
}

.form-control::placeholder {
  color: var(--color-gray-300);
}

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

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ─── Why Choose Us Cards ─────────────────────────────────── */
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  transition: var(--transition);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--color-white);
}

.feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-gray-100);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-primary-100);
  line-height: 1;
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-avatar-letter {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.25rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonial-company {
  font-size: 0.8rem;
  color: var(--color-gray-500);
}

/* ─── Enquiry Form Box ─────────────────────────────────────── */
.enquiry-box {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-100);
}

.enquiry-box h3 {
  font-size: 1.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.enquiry-box .subtitle {
  font-size: 0.9rem;
  color: var(--color-gray-500);
  margin-bottom: 1.75rem;
}

/* ─── Alert Messages ─────────────────────────────────────────── */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.alert-success {
  background: var(--color-primary-100);
  color: var(--color-primary-dark);
  border-left: 4px solid var(--color-primary);
}

.alert-error {
  background: #FEE2E2;
  color: #991B1B;
  border-left: 4px solid #EF4444;
}

/* ─── Footer ──────────────────────────────────────────────────── */
#site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-white);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-col ul a:hover {
  color: var(--color-accent);
  padding-left: 0.3rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 95px;
  right: 30px;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-green 2s ease-in-out infinite;
}

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

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 36px rgba(37, 211, 102, 0.7);
  }
}

/* ─── AOS Custom ─────────────────────────────────────────────── */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ─── Utilities ──────────────────────────────────────────────── */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-primary);
}

.text-accent {
  color: var(--color-accent);
}

.text-white {
  color: var(--color-white);
}

.text-muted {
  color: var(--color-gray-500);
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.mt-auto {
  margin-top: auto;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.w-100 {
  width: 100%;
}

.justify-content-center {
  justify-content: center;
}

.text-sm {
  font-size: 0.875rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.rounded {
  border-radius: var(--radius-md);
}

.border {
  border: 1px solid var(--color-gray-100);
}

.bg-light {
  background: var(--color-gray-50);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.text-accent {
  color: var(--color-accent);
}

.container-full {
  width: 100%;
  max-width: 100%;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}


/* ─── Premium UI Interactions ────────────────────────────────── */
.hover-lift {
  transition: var(--transition-slow);
  will-change: transform, box-shadow;
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

/* ─── Grid Sidebar Layout ────────────────────────────────────── */
.grid-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
  /* Accounts for fixed header */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ─── Sidebar Widgets ────────────────────────────────────────── */
.sidebar-widget {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.sidebar-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}

.widget-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-50);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.sidebar-links li {
  margin-bottom: 0.75rem;
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-gray-700);
  transition: var(--transition);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.sidebar-links a:hover {
  color: var(--color-primary);
  background: var(--color-primary-50);
  transform: translateX(4px);
}

.sidebar-links i {
  font-size: 0.75em;
  transition: var(--transition);
}

.sidebar-links a:hover i {
  transform: translateX(4px);
}

/* ─── Sidebar Promo ──────────────────────────────────────────── */
.sidebar-promo {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.sidebar-promo .promo-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  z-index: 0;
}

.sidebar-promo .promo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.sidebar-promo .promo-content {
  position: relative;
  z-index: 1;
}

.sidebar-promo h4 {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.sidebar-promo p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* ─── Enhanced Content Box ───────────────────────────────────── */
.secondary-content-box {
  background: var(--color-gray-50);
  border-left: 4px solid var(--color-accent);
  padding: 2rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}


/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-py: 3.5rem;
  }

  .main-nav,
  .header-actions .btn {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .hero {
    min-height: 100svh;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .enquiry-box {
    padding: 1.5rem;
  }
}

/* ─── Print ──────────────────────────────────────────────────── */
@media print {

  #site-header,
  #site-footer,
  .whatsapp-float {
    display: none;
  }

  body {
    font-size: 12pt;
  }
}

/* ─── Swiper Overrides ──────────────────────────────────────── */
.swiper-pagination-bullet-active {
  background: var(--color-primary) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-primary) !important;
}

/* ─── Rich Text Content ─────────────────────────────────────── */
.rich-content h1,
.rich-content h2,
.rich-content h3 {
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.rich-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.rich-content ul,
.rich-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.rich-content ul {
  list-style: disc;
}

.rich-content ol {
  list-style: decimal;
}

.rich-content li {
  margin-bottom: 0.4rem;
}

.rich-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}

.rich-content table th,
.rich-content table td {
  padding: 0.75rem;
  border: 1px solid var(--color-gray-300);
  text-align: left;
}

.rich-content table th {
  background: var(--color-primary);
  color: white;
  font-weight: 600;
}

.rich-content table tr:nth-child(even) {
  background: var(--color-gray-50);
}

.rich-content img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.rich-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 1rem 1.5rem;
  background: var(--color-primary-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}

/* ─── Added Utility Classes ─────────────────────────────────── */
.bg-white {
  background-color: var(--color-white);
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-50 {
  opacity: 0.5;
}

.border-2 {
  border-width: 2px;
}

.border-t-2 {
  border-top-width: 2px;
}

.border-b-2 {
  border-bottom-width: 2px;
}

.border-accent {
  border-color: var(--color-accent);
}

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

.border-dashed {
  border-style: dashed;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.transform {
  transform: translate(var(--tw-translate-x, 0), var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1));
}

.translate-x-4 {
  --tw-translate-x: 1rem;
  transform: translateX(1rem) translateY(var(--tw-translate-y, 0));
}

.translate-y-4 {
  --tw-translate-y: 1rem;
  transform: translateX(var(--tw-translate-x, 0)) translateY(1rem);
}

.-translate-y-1\/2 {
  transform: translateY(-50%);
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.overflow-hidden {
  overflow: hidden;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.h-0\.5 {
  height: 0.125rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.-my-8 {
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.text-gray-200 {
  color: #e5e7eb;
}

.text-gray-700 {
  color: #374151;
}

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

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.flex {
  display: flex;
}

.top-1\/2 {
  top: 50%;
}

.left-0 {
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}

.hover\:bg-white:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
}

.hover\:text-dark:hover {
  color: var(--color-dark);
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:block {
    display: block;
  }
}

/* ─── Textile & Thread Animations ────────────────────────────── */

/* 1. Scrolling Vertical Thread Connector */
#vertical-thread-container {
  position: fixed;
  top: 0;
  left: 30px;
  width: 2px;
  height: 100vh;
  z-index: 100;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.05);
  /* Track */
}

@media (max-width: 768px) {
  #vertical-thread-container {
    left: 10px;
    opacity: 0.5;
  }
}

#vertical-thread-progress {
  width: 100%;
  height: 0%;
  background: repeating-linear-gradient(to bottom,
      var(--color-accent),
      var(--color-accent) 12px,
      transparent 12px,
      transparent 20px);
  position: relative;
  transition: height 0.1s ease-out;
}

#vertical-thread-progress::after {
  content: '\f8c3';
  /* FontAwesome spool icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-accent);
  background: var(--color-white);
  border-radius: 50%;
  padding: 4px;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: spool-rotate 3s linear infinite;
}

@keyframes spool-rotate {
  from {
    transform: translateX(-50%) rotate(0deg);
  }

  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

/* 2. Marching Stitch Border (Hover Effect) */
.stitch-hover {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stitch-hover::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: calc(var(--radius-lg) + 4px);
  background:
    linear-gradient(90deg, var(--color-accent) 50%, transparent 50%),
    linear-gradient(90deg, var(--color-accent) 50%, transparent 50%),
    linear-gradient(0deg, var(--color-accent) 50%, transparent 50%),
    linear-gradient(0deg, var(--color-accent) 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 15px 2px, 15px 2px, 2px 15px, 2px 15px;
  background-position: left top, right bottom, left bottom, right top;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

.stitch-hover:hover::before {
  opacity: 1;
  animation: border-dance 0.8s infinite linear;
}

@keyframes border-dance {
  0% {
    background-position: left top, right bottom, left bottom, right top;
  }

  100% {
    background-position: left 15px top, right 15px bottom, left bottom 15px, right top 15px;
  }
}

/* 3. Floating Fiber Particles */
.fiber-particle {
  position: absolute;
  width: 2px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  pointer-events: none;
  animation: float-fiber 10s infinite linear;
  z-index: 1;
}

@keyframes float-fiber {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }

  20% {
    opacity: 0.8;
  }

  80% {
    opacity: 0.8;
  }

  100% {
    transform: translateY(-20vh) translateX(50px) rotate(180deg);
    opacity: 0;
  }
}

/* 4. Fabric Weave Movement */
.texture-fabric-dark,
.texture-weave-light {
  animation: bg-drift 60s linear infinite;
}

@keyframes bg-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 100px 100px;
  }
}

/* ─────────────────────────────────────────────────────────────
   Certificate Marquee Slider (Left to Right)
   ───────────────────────────────────────────────────────────── */

.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 2.5rem 0;
  background: var(--color-white);
  border-top: 1px dashed var(--color-gray-200);
  border-bottom: 1px dashed var(--color-gray-200);
}

/* Fading gradient edges */
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--color-white) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--color-white) 0%, transparent 100%);
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused !important;
}

.marquee-content {
  display: inline-block;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  /* Uniform height container */
  margin: 0 3.5rem;
  vertical-align: middle;
}

.marquee-item img {
  height: 75px;
  /* Uniform image height */
  max-width: 250px;
  object-fit: contain;
  /* Ensures logos don't stretch */
  filter: grayscale(100%) opacity(0.65);
  transition: var(--transition);
}

.marquee-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
  /* Slight pop on hover */
}

/* The LTR sliding animation */
@keyframes marquee-slide-ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

/* ─────────────────────────────────────────────────────────────
   Process Zigzag Layout
   ───────────────────────────────────────────────────────────── */

.process-zigzag {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 1rem 0;
}

.process-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-zigzag {
    gap: 5rem;
  }

  .process-row {
    flex-direction: row;
    gap: 4rem;
  }

  .process-row-reverse {
    flex-direction: row-reverse;
  }

  .process-image-col,
  .process-text-col {
    flex: 1;
  }
}

.process-image-col {
  position: relative;
  width: 100%;
}

.process-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.process-row:hover .process-img {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.process-img-placeholder {
  width: 100%;
  height: 350px;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-number {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(222, 173, 58, 0.4);
  border: 4px solid var(--color-white);
  z-index: 2;
}

@media (min-width: 768px) {
  .process-row-reverse .process-number {
    right: auto;
    left: -20px;
  }
}

.process-text-col h3 {
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

/* ─── Ratings & Reviews ────────────────────────────────────────── */
.reviews-dashboard {
  background: #0A0A0A;
  color: #fff;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-header h2 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
}

.reviews-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  right: 25%;
  height: 3px;
  background: var(--color-accent);
}

.reviews-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.rating-summary .big-rating {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.rating-summary .stars {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.rating-summary .reviewer-count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: #fff;
}

.rating-bar-item .star-label {
  width: 25px;
}

.rating-bar-container {
  flex-grow: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: #4ADE80;
  /* Success green */
  border-radius: 10px;
}

.satisfaction-metrics {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.satisfaction-metrics h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.metric-item {
  display: grid;
  grid-template-columns: 100px 1fr 40px;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.metric-bar-container {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  background: #4ADE80;
  border-radius: 10px;
}

/* Review Cards */
.relevant-reviews-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-accent);
  padding-left: 1rem;
}

.reviews-scroll-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: #0A0A0A;
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  background: #111;
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.25rem;
}

.reviewer-name-loc h4 {
  color: #fff;
  margin-bottom: 2px;
}

.reviewer-name-loc p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.review-meta {
  text-align: right;
}

.review-meta .review-stars {
  color: var(--color-accent);
  margin-bottom: 2px;
}

.review-meta .review-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.review-card-body h5 {
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.review-card-body p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.review-satisfaction-list {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: #fff;
}

.review-satisfaction-list span i {
  color: #4ADE80;
  margin-left: 4px;
}

/* ─── Responsiveness & Layout Overhaul ───────────────────────── */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 2rem;
}

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

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

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

@media (max-width: 991px) {

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

  .reviews-stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rating-bars {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 767px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .big-rating {
    font-size: 2.5rem;
  }

  .metric-item {
    grid-template-columns: 80px 1fr 35px;
  }

  .reviews-dashboard {
    padding: 2rem 1rem;
  }

  .product-gallery {
    height: auto !important;
  }

  .thumb-grid {
    justify-content: center !important;
    padding: 0.5rem 0 !important;
  }

  .thumb {
    width: 60px !important;
    height: 60px !important;
  }

  .specs-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }
}

/* Product Specific Tweaks */
.product-info-sticky {
  position: sticky;
  top: 100px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.spec-tile {
  background: var(--color-gray-50);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gray-100);
  border-bottom: 2px solid var(--color-gray-100);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.spec-tile:hover {
  transform: translateY(-5px);
  background: var(--color-white);
  border-bottom-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.spec-tile span {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-gray-500);
  margin-bottom: 4px;
}

.spec-tile strong {
  font-size: 1rem;
  color: var(--color-dark);
}


/* ─── Enhanced Specifications Section ───────────────────────── */
.specs-section-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.specs-header-bar {
  background: var(--color-dark);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.specs-header-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
}

.specs-header-title {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
}

.specs-header-sub {
  color: var(--color-gray-400);
  font-size: 0.75rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.specs-table {
  padding: 0.5rem 0;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--color-gray-50);
  transition: var(--transition);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:hover {
  background: var(--color-primary-50);
}

.spec-row-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-gray-600);
}

.spec-icon-badge {
  width: 32px;
  height: 32px;
  background: white;
  color: var(--spec-color, var(--color-primary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-gray-100);
}

.spec-row-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: right;
}

/* Applications Block */
.specs-applications-block {
  background: var(--color-primary-50);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 1.5rem;
}

.specs-app-header {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.specs-app-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-gray-700);
  margin: 0;
}

@media (max-width: 576px) {
  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .spec-row-value {
    padding-left: 2.85rem;
    text-align: left;
  }
}


/* Base Gallery Styles */
.thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.thumb.active {
  border-color: var(--color-primary);
}

.thumb:hover {
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   MODERN UI ENHANCEMENT SYSTEM — v2.0
   Trendy, professional design tokens for product pages
   ═══════════════════════════════════════════════════════════════ */

/* ─── Section accent stripe ─────────────────────────────────── */
.section-accent-top {
  position: relative;
}

.section-accent-top::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
  border-radius: 2px;
  margin-bottom: 3rem;
}

/* ─── Gradient Hero Overlay ──────────────────────────────────── */
.page-header-inner {
  min-height: 420px;
}


/* ─── Badge / Tag styles ─────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-primary {
  background: var(--color-primary-50);
  color: var(--color-primary);
  border: 1px solid rgba(18, 91, 45, 0.2);
}

.badge-accent {
  background: rgba(217, 168, 54, 0.12);
  color: #a8821b;
  border: 1px solid rgba(217, 168, 54, 0.3);
}

.badge-success {
  background: rgba(74, 222, 128, 0.12);
  color: #16a34a;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

/* ─── Glass Card variant ─────────────────────────────────────── */
.card-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* Category Specs Content */
.specs-content-body.rich-content table {
  margin: 0;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.specs-content-body.rich-content table td,
.specs-content-body.rich-content table th {
  padding: 1rem 1.25rem;
  border-color: var(--color-gray-100);
}

.specs-content-body.rich-content table th {
  background: var(--color-gray-100);
  color: var(--color-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.specs-content-body.rich-content ul {
  padding-left: 1.25rem;
  margin-bottom: 0;
}

.specs-content-body.rich-content li {
  position: relative;
  padding-left: 0.5rem;
}

.specs-content-body.rich-content li::marker {
  color: var(--color-primary);
  font-weight: 800;
}

/* ─── Gradient Number Pill ───────────────────────────────────── */
.step-pill {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─── Feature strip / icon row ───────────────────────────────── */
.feature-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-gray-700);
}

.feature-item i {
  width: 28px;
  height: 28px;
  background: var(--color-primary-50);
  color: var(--color-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ─── Divider ────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gray-200), transparent);
  margin: 2rem 0;
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORY LIST PAGE
   ═══════════════════════════════════════════════════════════════ */
.category-list-hero {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.category-list-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
}

.category-list-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  color: #fff;
}

/* New category card — full revamp */
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-gray-100);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.cat-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-gray-50);
  position: relative;
}

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

.cat-card:hover .cat-card-media img {
  transform: scale(1.07);
}

.cat-card-icon-wrap {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-primary-50), #e8f5ee);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-card-icon-wrap i {
  font-size: 3.5rem;
  color: var(--color-primary);
  opacity: 0.7;
}

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

.cat-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cat-card-body p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.cat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-gray-100);
  padding-top: 1rem;
}

.cat-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.cat-card:hover .cat-card-link {
  gap: 0.75rem;
}

.cat-card-count {
  font-size: 0.75rem;
  color: var(--color-gray-500);
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORY DETAIL PAGE
   ═══════════════════════════════════════════════════════════════ */
.category-detail-header h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}

/* Product grid within category */
.product-mini-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-mini-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.product-mini-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--color-gray-50);
}

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

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

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

.product-mini-card-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.product-mini-card-body p {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 0.9rem;
}

/* Sidebar enquiry card */
.enquiry-sidebar {
  position: sticky;
  top: 100px;
}

.enquiry-sidebar .card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.enquiry-sidebar-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.enquiry-sidebar-header h4 {
  color: #fff;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

/* Why us card */
.why-us-card {
  background: linear-gradient(135deg, #f0faf4, #e8f5ee);
  border: 1px solid rgba(18, 91, 45, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.why-us-card h4 {
  color: var(--color-primary-dark);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.why-us-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.why-us-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--color-gray-700);
}

.why-us-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.65rem;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════════════════════ */

/* Breadcrumb for product pages */
.product-breadcrumb-bar {
  background: var(--color-gray-50);
  border-bottom: 1px solid var(--color-gray-100);
  padding: 0.75rem 0;
  font-size: 0.8rem;
}

/* Gallery */
.product-gallery-wrap {
  position: sticky;
  top: 110px;
}

.product-main-img {
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: none;
}

.product-thumb-row::-webkit-scrollbar {
  display: none;
}

.product-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-gray-100);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-thumb:hover {
  transform: translateY(-2px);
}

.product-thumb.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-50);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Panel */
.product-info-panel {
  padding: 0 0.5rem;
}

.product-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  background: var(--color-primary-50);
  color: var(--color-primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.product-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}

.product-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.product-price-tag .price-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-body);
}

.product-price-tag .price-unit {
  font-size: 0.9rem;
  color: var(--color-gray-500);
}

.product-stars-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.product-stars-row .stars i {
  color: #f59e0b;
  font-size: 0.9rem;
}

.product-stars-row .rating-val {
  font-weight: 700;
}

.product-stars-row .rating-count {
  color: var(--color-gray-500);
}

/* Spec tiles — elite */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.spec-tile {
  background: var(--color-white);
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-gray-100);
  border-left: 3.5px solid var(--color-primary);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

/* Shine Sweep Effect Visibility Fix */
.spec-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: -250%;
  /* Start farther out to ensure clean entry */
  width: 150%;
  /* Wider shine for more presence */
  height: 100%;
  background: linear-gradient(105deg,
      transparent 0%,
      rgba(255, 255, 255, 0) 30%,
      rgba(212, 175, 55, 0.1) 45%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(212, 175, 55, 0.1) 55%,
      rgba(255, 255, 255, 0) 70%,
      transparent 100%);
  transform: skewX(-25deg);
  transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 5;
  /* Higher z-index to ensure it's on top of everything */
  pointer-events: none;
}

.spec-tile:hover::before {
  left: 250%;
}

/* Sparkle Particles */
.spec-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--color-accent) 1px, transparent 1.5px),
    radial-gradient(circle at 80% 20%, var(--color-accent) 0.8px, transparent 1.2px),
    radial-gradient(circle at 40% 70%, var(--color-accent) 1px, transparent 1.5px),
    radial-gradient(circle at 75% 85%, var(--color-accent) 0.7px, transparent 1.1px),
    radial-gradient(circle at 10% 90%, var(--color-accent) 0.5px, transparent 1px);
  background-size: 102% 102%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}

.spec-tile:hover {
  transform: translateY(-8px);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(18, 91, 45, 0.05);
  border-left-color: var(--color-accent);
}

.spec-tile:hover::after {
  opacity: 0.8;
  animation: tile-sparkle 3s infinite ease-in-out;
}

@keyframes tile-sparkle {
  0% {
    transform: scale(1) translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.05) translateY(-2px);
    opacity: 0.8;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 0.4;
  }
}

.spec-tile span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-500);
  margin-bottom: 2px;
  transition: var(--transition);
  position: relative;
  z-index: 3;
}

.spec-tile:hover span {
  color: var(--color-primary);
}

.spec-tile span i {
  color: var(--color-primary);
  opacity: 0.4;
  font-size: 0.85em;
  transition: var(--transition-bounce);
}

.spec-tile:hover span i {
  opacity: 1;
  transform: scale(1.3) rotate(15deg);
  color: var(--color-accent);
}

.spec-tile strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  transition: var(--transition);
  position: relative;
  z-index: 3;
}

.spec-tile:hover strong {
  transform: translateX(3px);
  color: var(--color-primary-dark);
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.1);
}

/* CTA sticky bottom on mobile */
.product-cta-bar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

/* Reviews overhaul */
.reviews-section {
  background: linear-gradient(180deg, #000 0%, #0d1117 100%);
  padding: 5rem 0;
}

.reviews-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.reviews-header-row h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
}

.reviews-header-row p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.rating-big-display {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-big-num {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.rating-big-stars i {
  color: #f59e0b;
  font-size: 1.25rem;
}

.rating-big-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.review-stat-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.review-stat-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-stat-bar-row:last-child {
  margin-bottom: 0;
}

.star-lbl {
  width: 22px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
}

.bar-bg {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.bar-fg {
  height: 100%;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  border-radius: 10px;
}

.pct-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  width: 30px;
}

.satisfaction-panel {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.satisfaction-panel h5 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
}

.sat-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

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

.sat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  width: 70px;
}

.sat-bar-bg {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.sat-bar-fg {
  height: 100%;
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  border-radius: 10px;
}

.sat-val {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  width: 32px;
  text-align: right;
}

/* Review cards grid */
.review-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card-new {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: background 0.25s ease;
}

.review-card-new:hover {
  background: rgba(255, 255, 255, 0.07);
}

.review-card-new-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.reviewer-left {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.reviewer-avatar-new {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-meta h5 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1px;
}

.reviewer-meta span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

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

.review-stars-new i {
  color: #f59e0b;
  font-size: 0.85rem;
}

.review-date-new {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 3px;
}

.review-text-new {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.review-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
}

.review-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.no-reviews-msg {
  text-align: center;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

/* Enquiry section */
.enquiry-section {
  background: var(--color-white);
  padding: 5rem 0;
}

.enquiry-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.enquiry-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-gray-700);
}

.enquiry-feature-list li i {
  color: var(--color-primary);
  font-size: 0.8rem;
}

/* Related products */
.related-section {
  background: var(--color-gray-50);
  padding: 5rem 0;
}

/* ─── Responsive overrides ───────────────────────────────────── */
@media (max-width: 991px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .review-stat-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .satisfaction-panel {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }

  .product-gallery-wrap {
    position: static;
  }

  .enquiry-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .review-stat-panel {
    grid-template-columns: 1fr;
  }

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

  .rating-big-num {
    font-size: 3rem;
  }

  .reviews-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-header-inner {
    min-height: 320px;
  }
}

/* ─── FlexPages / CMS Content ────────────────────────────────── */
.rich-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

.rich-content h2,
.rich-content h3,
.rich-content h4 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
}

.rich-content p {
  margin-bottom: 1.5rem;
}

.rich-content ul,
.rich-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.rich-content ul {
  list-style-type: disc;
}

.rich-content ol {
  list-style-type: decimal;
}

.rich-content li {
  margin-bottom: 0.5rem;
}

.rich-content img {
  border-radius: var(--radius-md);
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
  max-width: 100%;
  height: auto;
}

.landing-page-wrapper {
  padding-top: 2rem;
}

.category-landing-wrapper .category-header {
  border-bottom: 1px solid var(--color-gray-100);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.sidebar-layout-wrapper {
  padding-top: 1rem;
}

.rich-content a {
  color: var(--color-primary);
  text-decoration: underline;
  font-weight: 500;
}

.rich-content a:hover {
  color: var(--color-accent-dark);
}

.landing-hero .page-header-inner {
  text-align: center;
  padding: 6rem 0;
}

.landing-hero h1 {
  font-size: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}


.text-gold-gradient {
  background: linear-gradient(135deg, #D4AF37 0%, #F1D38A 50%, #B5952F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  font-weight: 700;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.premium-border {
  position: relative;
  padding: 2px;
  background: linear-gradient(135deg, var(--color-accent), transparent, var(--color-accent));
  border-radius: var(--radius-lg);
}

.premium-border-inner {
  background: var(--color-white);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 2rem;
}

.section-dark .premium-border-inner {
  background: var(--color-dark-2);
}


/* About Style Page */
.about-page-wrapper .grid-2 {
  align-items: center;
}

.premium-image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
}

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

.about-page-wrapper .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.secondary-content {
  border-top: 1px dashed var(--color-gray-300);
  margin-top: 3rem;
  padding-top: 3rem;
}

/* Responsive Grids */
@media (max-width: 991px) {

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

@media (max-width: 640px) {

  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Luxury Dark Layout */
.premium-dark-layout {
  background-color: var(--color-dark-2);
  color: var(--color-white);
  padding: 5rem 0;
}


.premium-dark-layout .rich-content {
  color: rgba(255, 255, 255, 0.85);
}

.premium-dark-layout .rich-content h1,
.premium-dark-layout .rich-content h2,
.premium-dark-layout .rich-content h3 {
  color: var(--color-accent);
}

/* Feature Grid Layout */
.feature-grid-wrapper {
  padding: 4rem 0;
}

.feature-grid-item {
  background: var(--color-white);
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
  text-align: center;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.feature-grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-grid-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.feature-grid-item:hover::before {
  transform: scaleX(1);
}

.feature-grid-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  display: inline-block;
  transition: var(--transition);
}

.feature-grid-item:hover .feature-grid-icon {
  color: var(--color-accent);
  transform: scale(1.1) rotate(5deg);
}

/* Split Showcase */
.split-showcase-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  gap: 0;
}

.split-image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.split-content {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-gray-50);
}

@media (max-width: 991px) {
  .split-showcase-wrapper {
    grid-template-columns: 1fr;
  }

  .split-image {
    height: 350px;
  }

  .split-content {
    padding: 3rem 1.5rem;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-accent);
  color: var(--color-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  cursor: pointer;
}

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

.scroll-to-top:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Mobile Icon Adjustments */
@media (max-width: 768px) {

  .whatsapp-float {
    right: 24px;
  }
}

/* Footer Address Grids */
.footer-corporate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-unit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-corporate-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-unit-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Premium UI Enhancements for Footer Grids */
.footer-corporate-grid .footer-contact-item,
.footer-unit-grid .footer-contact-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.footer-corporate-grid .footer-contact-item::before,
.footer-unit-grid .footer-contact-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-accent);
  opacity: 0;
  transition: var(--transition);
}

.footer-corporate-grid .footer-contact-item:hover::before,
.footer-unit-grid .footer-contact-item:hover::before {
  opacity: 1;
}

.footer-corporate-grid .footer-contact-item:hover,
.footer-unit-grid .footer-contact-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.05);
}

.footer-corporate-grid .footer-contact-item i,
.footer-unit-grid .footer-contact-item i {
  font-size: 1.4rem;
  margin-top: 0.25rem;
  color: var(--color-accent);
  filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
}

.footer-corporate-grid .footer-contact-item strong,
.footer-unit-grid .footer-contact-item strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.footer-unit-grid .footer-contact-item {
  padding: 1.25rem 1rem;
  gap: 0.75rem;
}

.footer-unit-grid .footer-contact-item i {
  font-size: 1.1rem;
}

.footer-unit-grid .footer-contact-item strong {
  font-size: 1.05rem;
}
