/* ==========================================================================
   Vivian Knit Garments - Master Stylesheet
   Color Identity: Deep Navy (#0c2340), Royal Blue (#0284c7), Light Accent (#38bdf8)
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary-navy: #0c2340;
  --primary-navy-dark: #08172b;
  --primary-navy-light: #16365c;
  --accent-blue: #0284c7;
  --accent-blue-hover: #0369a1;
  --accent-blue-light: #e0f2fe;
  --accent-sky: #38bdf8;
  --accent-cyan: #06b6d4;

  /* Neutral Shades */
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-slate-light: #f1f5f9;
  --border-light: #e2e8f0;
  --border-subtle: #cbd5e1;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Feedback Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --whatsapp: #25d366;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --shadow-card-hover: 0 20px 30px -10px rgba(12, 35, 64, 0.15);

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CSS 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(--text-body);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: 90px 0;
  position: relative;
}

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

/* Section Headings */
.section-badge-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: 12px;
  background: var(--accent-blue-light);
  padding: 5px 14px;
  border-radius: 999px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-sky));
  margin: 18px auto 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background-color: var(--primary-navy-dark);
  color: var(--text-light);
  font-size: 0.8125rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.top-bar-left span, .top-bar-left a, .top-bar-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
}

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

.top-pdf-btn {
  background: rgba(2, 132, 199, 0.2);
  color: #38bdf8 !important;
  padding: 3px 12px;
  border-radius: 4px;
  font-weight: 600;
  border: 1px solid rgba(56, 189, 248, 0.3);
  transition: all var(--transition-fast);
}

.top-pdf-btn:hover {
  background: rgba(2, 132, 199, 0.4);
  color: #ffffff !important;
}

.wa-top-btn {
  background: rgba(37, 211, 102, 0.15);
  color: #4ade80 !important;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
  transition: background var(--transition-fast);
}

.wa-top-btn:hover {
  background: rgba(37, 211, 102, 0.28);
}

.top-gst-badge {
  background: rgba(14, 165, 233, 0.16);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: #e2e8f0;
  padding: 3px 11px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.18);
}

.top-gst-badge i {
  color: #38bdf8;
  font-size: 0.8rem;
}

.top-gst-badge strong {
  color: #ffffff;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  font-weight: 700;
}

.drawer-gst-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(2, 132, 199, 0.08);
  border-radius: var(--radius-sm);
  color: var(--accent-blue);
  font-size: 0.82rem;
  font-weight: 600;
  margin: 6px 0;
}

.drawer-gst-item strong {
  color: var(--primary-navy);
  letter-spacing: 0.5px;
}

/* Download Profile Banner Card */
.download-profile-banner {
  background: linear-gradient(135deg, #0f2b48 0%, #0c2340 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.pdf-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.pdf-meta {
  flex-grow: 1;
}

.pdf-meta h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.pdf-meta p {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin: 0;
}

.btn-download {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .download-profile-banner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 16px;
  }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  transition: all var(--transition-smooth);
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.1);
  padding: 4px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
}

.drawer-logo-img {
  height: 40px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.brand-sub {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-blue);
  line-height: 1.1;
  margin-top: 2px;
}

.brand-tagline {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

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

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

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

.nav-link.nav-btn {
  background-color: var(--primary-navy);
  color: var(--bg-white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-link.nav-btn::after {
  display: none;
}

.nav-link.nav-btn:hover {
  background-color: var(--accent-blue);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hamburger */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hamburger-btn .bar {
  width: 26px;
  height: 3px;
  background-color: var(--primary-navy);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--bg-white);
  z-index: 1200;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-dark);
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 12px;
  flex-grow: 1;
  overflow-y: auto;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.drawer-link:hover, .drawer-link.active {
  background: var(--accent-blue-light);
  color: var(--accent-blue);
}

.drawer-link.highlight {
  background: var(--primary-navy);
  color: var(--bg-white);
  margin-top: 8px;
}

.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-light);
  font-size: 0.85rem;
}

.drawer-phone, .drawer-email {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
}

.drawer-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   Hero Section with Factory Image Background & Front Content
   ========================================================================== */
.hero-section {
  position: relative;
  background-color: var(--primary-navy-dark);
  color: #ffffff;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 85vh;
}

/* Background factory image & cinematic gradient overlays */
.hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.72) contrast(1.08) saturate(1.1);
  transform: scale(1.02);
  transition: transform 10s ease;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(8, 23, 43, 0.45) 0%, 
    rgba(12, 35, 64, 0.30) 45%, 
    rgba(8, 23, 43, 0.70) 100%);
}

.hero-overlay-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(2, 132, 199, 0.10) 0%, rgba(8, 23, 43, 0.25) 80%);
}

.hero-overlay-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.25;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 95px 20px 65px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 35, 64, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-sky);
  margin-bottom: 22px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(56, 189, 248, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.5px;
}

.text-gradient {
  background: linear-gradient(100deg, #38bdf8 0%, #93c5fd 60%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: #e2e8f0;
  line-height: 1.75;
  margin-bottom: 35px;
  max-width: 820px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(2, 132, 199, 0.45);
}

.btn-primary:hover {
  background: #0369a1;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(2, 132, 199, 0.55);
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost-light {
  background: rgba(12, 35, 64, 0.6);
  color: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  background: rgba(2, 132, 199, 0.35);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: var(--accent-sky);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-navy) 100%);
  color: #ffffff;
  padding: 16px 24px;
  font-size: 1.05rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #0369a1 0%, #08172b 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-block {
  width: 100%;
}

/* Trust Badges in Hero */
.hero-cert-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(12, 35, 64, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #f1f5f9;
}

.cert-pill i {
  color: var(--accent-sky);
}

/* Glassmorphic Quick Metric Highlights Bar */
.hero-quick-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 980px;
  margin-top: 10px;
}

.quick-stat-card {
  background: rgba(12, 35, 64, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.quick-stat-card:hover {
  background: rgba(12, 35, 64, 0.85);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.quick-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  color: var(--accent-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.quick-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.quick-stat-lbl {
  font-size: 0.72rem;
  color: #cbd5e1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Key Stats Strip */
.stats-strip {
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--border-light);
  padding: 36px 0;
  position: relative;
  z-index: 10;
}

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

.stat-box {
  text-align: center;
  padding: 10px 16px;
  border-right: 1px solid var(--border-light);
}

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

.stat-number-wrap {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-plus {
  color: var(--accent-blue);
}

.stat-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   About Us Section - Revamped Executive Presentation
   ========================================================================== */
.about-section {
  background-color: #ffffff;
  padding: 95px 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
}

.about-lead-card {
  margin-bottom: 20px;
}

.est-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--accent-blue-light);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.about-subtitle {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.3;
  margin-bottom: 18px;
}

.lead-p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.7;
}

.about-text-content p {
  margin-bottom: 16px;
  color: var(--text-body);
  line-height: 1.7;
}

/* 4 Pillars Grid */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.pillar-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent-blue);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all var(--transition-smooth);
}

.pillar-card:hover {
  background: #ffffff;
  border-color: var(--border-light);
  border-left-color: var(--accent-sky);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.pillar-text h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.pillar-text p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

/* About Media Composition with Authentic Factory & Leadership Photos */
.about-media-column {
  position: relative;
}

.about-media-composition {
  position: relative;
  padding-bottom: 50px;
  padding-top: 15px;
}

.about-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  background: #ffffff;
  transition: transform var(--transition-smooth);
}

.primary-photo-card {
  position: relative;
  z-index: 1;
}

.photo-img-wrap {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: var(--primary-navy);
}

.about-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.primary-photo-card:hover .about-showcase-img {
  transform: scale(1.03);
}

.photo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(12, 35, 64, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.photo-badge.light-badge {
  background: rgba(2, 132, 199, 0.92);
  border-color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
}

.photo-meta-bar {
  padding: 16px 20px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.meta-title-group h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.meta-title-group p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.secondary-photo-card {
  position: relative;
  bottom: auto;
  right: auto;
  width: 100%;
  margin-top: 16px;
  border: 4px solid #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 38px rgba(12, 35, 64, 0.22);
  z-index: 3;
}

.secondary-photo-card:hover {
  transform: translateY(-4px);
}

.showroom-wrap {
  height: 220px;
  position: relative;
}

/* Floating Experience Emblem Badge */
.experience-floating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #0c2340 0%, #0284c7 100%);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.exp-icon-wrap {
  font-size: 1.6rem;
  color: #fbbf24;
}

.exp-years {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.exp-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-sky);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Download Profile Banner Card */
.download-profile-banner {
  background: linear-gradient(135deg, #0f2b48 0%, #0c2340 100%);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-lg);
  padding: 28px 34px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 45px;
  box-shadow: var(--shadow-lg);
}

.pdf-icon-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.pdf-meta {
  flex-grow: 1;
}

.banner-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--accent-sky);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pdf-meta h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.pdf-meta p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}

.btn-download {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Certifications Banner Card */
.certifications-card {
  background: linear-gradient(135deg, #0c2340 0%, #163e6e 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
}

.cert-header {
  text-align: center;
  margin-bottom: 34px;
}

.cert-sub-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-sky);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cert-header h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.cert-header p {
  color: #cbd5e1;
  font-size: 0.95rem;
  max-width: 720px;
  margin: 0 auto;
}

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

.cert-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all var(--transition-fast);
}

.cert-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(56, 189, 248, 0.4);
}

.cert-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-family: var(--font-heading);
}

.iso-bg { background: #1e3a8a; color: #93c5fd; }
.sedex-bg { background: #be123c; color: #ffe4e6; }
.wrap-bg { background: #047857; color: #a7f3d0; }
.disney-bg { background: #6b21a8; color: #e9d5ff; font-size: 1.4rem; }

.cert-brand-text {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.cert-meta strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 2px;
}

.cert-meta span {
  font-size: 0.78rem;
  color: #93c5fd;
  display: block;
  line-height: 1.3;
}

.cert-benefit {
  font-size: 0.75rem;
  color: #cbd5e1;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.35;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.cert-benefit i {
  color: #38bdf8;
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ==========================================================================
   Capabilities - Inside Factory Photo Slideshow
   ========================================================================== */
.factory-slideshow-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 45px;
}

.slideshow-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 16px;
}

.slideshow-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  background: var(--accent-blue-light);
  padding: 4px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-ring 2s infinite;
}

.slideshow-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-top: 4px;
}

.slideshow-controls-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.slide-counter-badge {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.current-slide {
  color: var(--accent-blue);
  font-size: 1.15rem;
  font-weight: 800;
}

.counter-slash {
  color: var(--text-light);
}

.total-slides {
  color: var(--text-muted);
}

.slideshow-nav-btns {
  display: flex;
  gap: 8px;
}

.slide-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--primary-navy);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.slide-nav-btn:hover {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
  transform: scale(1.05);
}

.factory-slideshow-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  background: #08172b;
  box-shadow: var(--shadow-md);
  outline: none;
}

.factory-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.02);
  z-index: 1;
}

.factory-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.factory-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(12, 35, 64, 0.15) 0%, 
    rgba(12, 35, 64, 0.3) 40%, 
    rgba(8, 23, 43, 0.94) 100%);
  pointer-events: none;
}

.slide-caption-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 720px;
  z-index: 5;
  color: #ffffff;
}

.slide-dept-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.slide-caption-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.slide-caption-desc {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  max-width: 660px;
}

/* Slideshow Interactive Thumbnail Navigation Strip */
.slideshow-thumbs-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.thumb-card {
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 6px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.thumb-card:hover {
  background: #ffffff;
  border-color: var(--border-subtle);
  transform: translateY(-2px);
}

.thumb-card.active {
  background: #ffffff;
  border-color: var(--accent-blue);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}

.thumb-img-box {
  height: 52px;
  border-radius: 4px;
  overflow: hidden;
  background: #0c2340;
}

.thumb-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.thumb-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
}

.thumb-num {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.thumb-text {
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Dots for mobile view */
.slideshow-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

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

.dot-btn.active {
  width: 24px;
  border-radius: 999px;
  background: var(--accent-blue);
}

/* ==========================================================================
   Capabilities & Manufacturing Flow
   ========================================================================== */
.infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.infra-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  transition: all var(--transition-fast);
}

.infra-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent-blue);
}

.infra-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.infra-stat {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.1;
  margin-bottom: 4px;
}

.infra-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.infra-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Strengths Feature Banner */
.strengths-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.strength-pill {
  background: #ffffff;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.strength-pill i {
  font-size: 1.6rem;
  color: var(--accent-blue);
}

.strength-pill strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.strength-pill span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* 7-Step Process Stepper */
.process-container {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
}

.process-header {
  text-align: center;
  margin-bottom: 36px;
}

.sub-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-blue);
  text-transform: uppercase;
}

.process-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-top: 4px;
}

.process-steps-track {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  position: relative;
}

.process-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  position: relative;
  transition: all var(--transition-fast);
}

.process-card:hover {
  background: #ffffff;
  border-color: var(--accent-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-navy);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  margin: 8px auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.process-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.process-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Fabric & Material Expertise
   ========================================================================== */
.fabrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.fabric-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

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

.fabric-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.fabric-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.fabric-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.fabric-summary {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex-grow: 0;
}

.fabric-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  flex-grow: 1;
}

.fabric-list li {
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.fabric-list li i {
  color: var(--accent-blue);
  font-size: 0.75rem;
  margin-top: 4px;
}

.fabric-cta-banner {
  background: linear-gradient(135deg, #0c2340 0%, #16365c 100%);
  border-radius: var(--radius-md);
  padding: 30px 40px;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.fabric-cta-text h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.fabric-cta-text p {
  font-size: 0.9rem;
  color: #cbd5e1;
  max-width: 700px;
}

/* ==========================================================================
   Product Gallery
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.filter-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

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

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

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

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

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

.product-thumb {
  position: relative;
  height: 320px;
  background: #f8fafc;
  overflow: hidden;
  cursor: pointer;
}

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

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

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.kids-tag {
  background: rgba(224, 242, 254, 0.95);
  color: #0284c7;
}

.tees-tag {
  background: rgba(240, 253, 244, 0.95);
  color: #15803d;
}

.polos-tag {
  background: rgba(241, 245, 249, 0.95);
  color: var(--primary-navy);
}

.hoodies-tag {
  background: rgba(254, 243, 199, 0.95);
  color: #b45309;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 35, 64, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: #ffffff;
  color: var(--primary-navy);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.quick-view-btn:hover {
  background: var(--accent-blue);
  color: #ffffff;
  transform: scale(1.05);
}

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

.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-blue);
  margin-bottom: 4px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.product-spec {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.moq-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.inquire-btn {
  background: none;
  border: 1px solid var(--accent-blue);
  color: var(--accent-blue);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.inquire-btn:hover {
  background: var(--accent-blue);
  color: #ffffff;
}

/* ==========================================================================
   Garment Technical Specifications Section
   ========================================================================== */
.specs-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

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

.spec-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.spec-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-blue);
}

.spec-box-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.spec-box-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--accent-blue-light);
  padding-bottom: 8px;
}

.spec-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-dark);
}

.spec-box-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.spec-box-list li i {
  color: var(--accent-blue);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.spec-tag-accent {
  display: inline-block;
  background: #f0fdf4;
  color: #15803d;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid #bbf7d0;
  margin-top: 4px;
}

/* ==========================================================================
   Global Reach & Logistics
   ========================================================================== */
.export-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.export-markets-card, .why-partner-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.export-markets-card h3, .why-partner-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
}

.export-p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.market-regions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.region-box {
  display: flex;
  gap: 16px;
  background: var(--bg-light);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-blue);
}

.region-flag-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.region-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.region-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.partner-reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reason-item {
  display: flex;
  gap: 16px;
}

.reason-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-blue);
  background: var(--accent-blue-light);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reason-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.reason-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Contact & RFQ Form Section
   ========================================================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-info-panel {
  background: var(--primary-navy);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xl);
}

.company-brand-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 4px;
}

.company-brand-header .sub-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-sky);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-items-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0;
}

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

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: #ffffff;
  margin-bottom: 4px;
}

.info-item p, .info-item a {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.info-item a:hover {
  color: var(--accent-sky);
}

.whatsapp-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
}

.wa-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.wa-content p {
  font-size: 0.8rem;
  color: #cbd5e1;
  margin-bottom: 14px;
}

.wa-direct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  width: 100%;
}

.wa-direct-btn:hover {
  background: #20ba59;
  color: #ffffff;
}

/* Contact Form Panel */
.contact-form-panel {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.req {
  color: var(--error);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap i {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
}

.input-wrap input, .input-wrap select, .input-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  color: var(--text-dark);
  background-color: var(--bg-white);
  transition: all var(--transition-fast);
}

.input-wrap input:focus, .input-wrap select:focus, .input-wrap textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.input-wrap.text-area-wrap {
  align-items: flex-start;
}

.input-wrap textarea {
  padding: 12px 14px;
  resize: vertical;
}

.field-error {
  display: none;
  font-size: 0.75rem;
  color: var(--error);
  margin-top: 4px;
}

.form-group.has-error .field-error {
  display: block;
}

.form-group.has-error input, .form-group.has-error textarea {
  border-color: var(--error);
}

.privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   Map & Connectivity Section
   ========================================================================== */
.map-section {
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
}

.map-header {
  padding: 40px 20px 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.map-text h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.map-text h3 i {
  color: var(--accent-blue);
}

.map-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 680px;
}

.map-frame-container {
  width: 100%;
  height: 360px;
  filter: grayscale(15%) contrast(105%);
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  background-color: var(--primary-navy-dark);
  color: #cbd5e1;
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.3fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  display: block;
  line-height: 1;
}

.footer-brand-sub {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent-sky);
  display: block;
}

.footer-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social-links a:hover {
  background: var(--accent-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-blue);
}

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

.footer-links-list a {
  font-size: 0.875rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--accent-sky);
  transform: translateX(3px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--accent-sky);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-legal a:hover {
  color: #cbd5e1;
}

.footer-legal .sep {
  color: #475569;
}

/* ==========================================================================
   Quick View Modal
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
}

.modal-backdrop.open .modal-dialog {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-slate-light);
  border: none;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.modal-img-wrap {
  height: 100%;
  min-height: 340px;
  background: #f1f5f9;
}

.modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  background: #f8fafc;
}

.modal-content {
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}

.modal-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-blue);
  background: var(--accent-blue-light);
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 10px;
  align-self: flex-start;
}

.modal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-specs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-light);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

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

.spec-value {
  color: var(--text-dark);
  font-weight: 700;
}

/* ==========================================================================
   Floating Action Buttons (WhatsApp & Phone)
   ========================================================================== */
.floating-cta-container {
  position: fixed;
  bottom: 26px;
  right: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-fast);
  position: relative;
}

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

.float-wa:hover {
  background-color: #20ba59;
  transform: scale(1.1);
}

.float-call {
  background-color: var(--primary-navy);
  font-size: 1.1rem;
}

.float-call:hover {
  background-color: var(--accent-blue);
  transform: scale(1.1);
}

.float-tooltip {
  position: absolute;
  right: 64px;
  background: var(--primary-navy);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.float-wa:hover .float-tooltip {
  opacity: 1;
}

/* WhatsApp button with number */
.float-btn-wide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-fast);
  position: relative;
  text-decoration: none;
}

.float-btn-wide.float-wa {
  background-color: var(--whatsapp);
}

.float-btn-wide.float-wa:hover {
  background-color: #20ba59;
  transform: scale(1.05);
}

.float-wa-number {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}

/* ==========================================================================
   Toast Notification
   ========================================================================== */
.toast-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  background: #ffffff;
  border-left: 4px solid var(--success);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  transform: translateX(150%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-icon {
  color: var(--success);
  font-size: 1.3rem;
}

.toast-message {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .hero-quick-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

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

  .stat-box {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-media-composition {
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 30px;
  }

  .secondary-photo-card {
    right: auto;
    width: 100%;
  }

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

  .factory-slideshow-container {
    height: 440px;
  }

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

  .infrastructure-grid, .strengths-banner {
    grid-template-columns: 1fr;
  }

  .process-steps-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

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

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

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {

  /* --- Top bar --- */
  .top-bar-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .top-bar-left, .top-bar-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .top-gst-badge {
    display: none; /* hide GSTIN on mobile, shown in footer */
  }

  /* --- Navigation --- */
  .hide-mobile {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  /* --- Sections --- */
  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  /* --- Hero --- */
  .hero-section {
    min-height: 100svh;
  }

  .hero-title {
    font-size: 2rem;
    letter-spacing: -0.25px;
  }

  .hero-content-wrapper {
    padding: 80px 16px 50px 16px;
  }

  .hero-desc {
    font-size: 0.975rem;
    line-height: 1.7;
  }

  .hero-quick-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .quick-stat-card {
    padding: 12px 14px;
    gap: 10px;
  }

  .quick-stat-val {
    font-size: 1.1rem;
  }

  .quick-stat-lbl {
    font-size: 0.68rem;
  }

  .hero-cert-row {
    gap: 8px;
  }

  .cert-pill {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  /* --- Stats strip --- */
  .stats-strip {
    padding: 28px 0;
  }

  .stat-number-wrap {
    font-size: 2.25rem;
  }

  /* --- About --- */
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }

  .secondary-photo-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
    box-shadow: var(--shadow-md);
  }

  .showroom-wrap {
    height: 200px;
  }

  .experience-floating-badge {
    top: 10px;
    right: 10px;
    padding: 10px 14px;
  }

  .certifications-card {
    padding: 28px 20px;
  }

  .cert-logos-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* --- Download banner --- */
  .download-profile-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

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

  /* --- Slideshow --- */
  .factory-slideshow-wrapper {
    padding: 16px;
    border-radius: var(--radius-lg);
  }

  .slideshow-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .slideshow-title {
    font-size: 1.2rem;
  }

  .factory-slideshow-container {
    height: 300px;
  }

  .slide-caption-box {
    bottom: 12px;
    left: 12px;
    right: 12px;
  }

  .slide-caption-title {
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  .slide-caption-desc {
    display: none;
  }

  .slideshow-thumbs-track {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
  }

  .slideshow-thumbs-track::-webkit-scrollbar {
    display: none;
  }

  .thumb-card {
    flex: 0 0 110px;
    scroll-snap-align: start;
  }

  .thumb-img-box {
    height: 46px;
  }

  .slideshow-dots {
    display: flex;
  }

  /* --- Infrastructure & strengths --- */
  .infrastructure-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .strengths-banner {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
  }

  .infra-card {
    padding: 20px 16px;
  }

  /* --- Process steps --- */
  .process-container {
    padding: 28px 18px;
  }

  .process-steps-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-preview-banner {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
  }

  .process-real-img {
    max-height: 200px;
    width: 100%;
    object-fit: cover;
  }

  /* --- Fabrics --- */
  .fabrics-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fabric-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }

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

  /* --- Products --- */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .product-thumb {
    height: 240px;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .moq-badge {
    font-size: 0.68rem;
  }

  .inquire-btn {
    width: 100%;
    text-align: center;
  }

  /* --- Specs --- */
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* --- Export --- */
  .export-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .export-markets-card, .why-partner-card {
    padding: 24px 20px;
  }

  /* --- Contact form --- */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-wrapper {
    gap: 32px;
  }

  /* --- Footer --- */
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* --- Modal: slide-up sheet on mobile --- */
  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .modal-dialog {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 92svh;
    overflow-y: auto;
    width: 100%;
    max-width: 100%;
  }

  .modal-body-grid {
    grid-template-columns: 1fr;
  }

  .modal-img-wrap {
    height: 220px;
    min-height: auto;
  }

  .modal-content {
    padding: 24px 20px;
  }

  /* --- Toast --- */
  .toast-notification {
    right: 12px;
    left: 12px;
    top: 16px;
    transform: translateY(-120%);
  }

  .toast-notification.show {
    transform: translateY(0);
  }

  /* --- Map section --- */
  .map-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

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

/* ── 640 px – landscape small phones ── */
@media (max-width: 640px) {
  .process-steps-track {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .region-box {
    flex-direction: column;
    gap: 10px;
  }

  .map-frame-container iframe {
    height: 260px;
  }

  .modal-close-btn {
    top: 12px;
    right: 12px;
  }
}

/* ── 480 px – small phones ── */
@media (max-width: 480px) {

  .brand-logo-img {
    height: 38px;
    max-width: 210px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.55rem;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  /* --- Hero --- */
  .hero-title {
    font-size: 1.75rem;
    letter-spacing: 0;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .cert-pill {
    font-size: 0.7rem;
    padding: 4px 8px;
    gap: 5px;
  }

  /* --- Stats: 2-column grid at small size --- */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-box {
    padding: 16px 10px;
    border-right: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }

  .stat-box:nth-child(2n) {
    border-right: none;
  }

  .stat-box:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stat-number-wrap {
    font-size: 2rem;
  }

  .stat-title {
    font-size: 0.875rem;
  }

  .stat-sub {
    font-size: 0.75rem;
  }

  /* --- Slideshow --- */
  .factory-slideshow-container {
    height: 240px;
  }

  .slide-dept-badge {
    font-size: 0.68rem;
    padding: 4px 10px;
  }

  .slide-caption-title {
    font-size: 0.95rem;
  }

  .slideshow-controls-top {
    gap: 10px;
  }

  .slide-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }

  /* --- Products: single column --- */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-thumb {
    height: 280px;
  }

  /* --- Certifications --- */
  .certifications-card {
    padding: 22px 16px;
  }

  .cert-item {
    padding: 16px 14px;
  }

  /* --- Form: prevent iOS zoom on focus --- */
  .input-wrap input,
  .input-wrap select,
  .input-wrap textarea {
    font-size: 16px;
  }

  /* --- Process --- */
  .process-container {
    padding: 22px 14px;
  }

  /* --- Floating buttons --- */
  .floating-cta-container {
    bottom: 18px;
    right: 18px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  /* --- Modal --- */
  .modal-content {
    padding: 20px 16px;
  }

  .modal-content h3 {
    font-size: 1.2rem;
  }

  /* --- Brand tagline --- */
  .brand-tagline {
    display: none;
  }
}

/* ── 360 px – very small phones (e.g. Galaxy A01, older budget phones) ── */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-desc {
    font-size: 0.85rem;
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-logo-img {
    height: 32px;
    max-width: 170px;
  }

  .header-inner {
    height: 66px;
  }

  .btn {
    font-size: 0.88rem;
    padding: 11px 16px;
  }

  .filter-btn {
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  .product-thumb {
    height: 240px;
  }

  .lang-option-btn {
    min-width: 64px;
    padding: 0.6rem 0.5rem;
  }

  .lang-flag {
    font-size: 1.4rem;
  }
}



/* ==========================================================================
   Language Selection Popup & Switcher
   ========================================================================== */

/* Full-screen overlay */
.lang-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 23, 43, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: langFadeIn 0.4s ease;
}

.lang-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

@keyframes langFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Popup card */
.lang-popup {
  background: linear-gradient(145deg, #0f1f3a 0%, #0c2340 50%, #0e1e38 100%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 24px;
  padding: 2.5rem 2rem 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 40px 80px -12px rgba(0,0,0,0.6), 0 0 0 1px rgba(56, 189, 248, 0.1);
  animation: langSlideUp 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

@keyframes langSlideUp {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* Header: logo + welcome text */
.lang-popup-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.lang-popup-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.2);
}

.lang-popup-welcome h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 0 0 0.4rem;
  line-height: 1.4;
}

.lang-popup-welcome p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* Language option buttons grid */
.lang-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.lang-option-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.22s ease;
  min-width: 90px;
  color: #cbd5e1;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.lang-option-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.15), rgba(56, 189, 248, 0.05));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.lang-option-btn:hover::before,
.lang-option-btn.active::before {
  opacity: 1;
}

.lang-option-btn:hover {
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.2);
}

.lang-option-btn.active {
  border-color: var(--accent-sky);
  background: rgba(56, 189, 248, 0.12);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15), 0 8px 20px rgba(2, 132, 199, 0.25);
  color: #f1f5f9;
}

.lang-flag {
  font-size: 2rem;
  line-height: 1;
}

.lang-name {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.lang-option-btn.active .lang-name {
  color: #94a3b8;
}

.lang-native {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e2e8f0;
}

/* Confirm button */
.lang-confirm-btn {
  width: 100%;
  max-width: 320px;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-sky) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 auto 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
  letter-spacing: 0.01em;
}

.lang-confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(2, 132, 199, 0.5);
  filter: brightness(1.05);
}

.lang-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
  opacity: 0.75;
  font-family: var(--font-body);
}

/* Language Switcher button in top bar */
.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent-sky);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.lang-switch-btn:hover {
  background: rgba(56, 189, 248, 0.22);
  border-color: var(--accent-sky);
  transform: scale(1.05);
}

.lang-switch-btn i {
  font-size: 0.9rem;
}

/* RTL support for Arabic */
[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .top-bar-inner,
[dir="rtl"] .header-inner,
[dir="rtl"] .nav-menu,
[dir="rtl"] .hero-actions,
[dir="rtl"] .about-lead-card,
[dir="rtl"] .hero-cert-row,
[dir="rtl"] .hero-quick-stats {
  direction: rtl;
}

[dir="rtl"] .hero-main-content {
  text-align: right;
}

/* Mobile responsive for lang popup */
@media (max-width: 480px) {
  .lang-popup {
    padding: 2rem 1.25rem 1.5rem;
    border-radius: 18px;
  }

  .lang-options-grid {
    gap: 0.5rem;
  }

  .lang-option-btn {
    min-width: 75px;
    padding: 0.75rem 0.75rem;
  }

  .lang-flag {
    font-size: 1.6rem;
  }

  .lang-popup-welcome h2 {
    font-size: 0.95rem;
  }
}
