/* ==========================================================================
   CLOVER 7 - KNITTED APPAREL & T-SHIRT MANUFACTURER
   Factory: Tirupur, Tamil Nadu, India
   ========================================================================== */

:root {
  /* Clean White Foundation with Rich Clover Forest Green & Gold Palette */
  --bg-body: #ffffff;
  --bg-surface: #f9fbf8;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f7ee;
  --bg-elevated: #e2f0df;
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-faint: #64748b;
  --text-inverse: #ffffff;
  
  /* Brand Accent Colors (Clover 7 Forest Green & Gold) */
  --color-primary: #184309; /* Deep Forest/Clover Green Swatch */
  --color-primary-dark: #0e2705; /* Deep Forest Shadow */
  --color-primary-light: #2a6913; /* Leaf Green */
  --color-primary-subtle: #f0f7ee; /* Soft Sage Background */
  
  --color-accent: #d97706; /* Artisan Amber Gold */
  --color-accent-light: #fef3c7; /* Warm Amber Tint */
  --color-accent-dark: #b45309;
  
  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-strong: #184309;
  --border-active: #2a6913;
  
  --btn-primary-bg: linear-gradient(135deg, #0e2705 0%, #184309 50%, #2a6913 100%);
  --btn-primary-text: #ffffff;
  --btn-primary-hover-bg: linear-gradient(135deg, #184309 0%, #2a6913 100%);
  
  --btn-secondary-bg: #ffffff;
  --btn-secondary-text: #184309;
  --btn-secondary-border: #184309;
  --btn-secondary-hover-bg: #f0f7ee;
  --btn-secondary-hover-text: #184309;
  
  --badge-bg: #f0f7ee;
  --badge-text: #184309;
  --badge-border: #bbf7d0;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 25px rgba(24, 67, 9, 0.12);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.09);
  --shadow-glow: 0 0 25px rgba(42, 105, 19, 0.25);

  --font-heading: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-brand: 'Outfit', 'Plus Jakarta Sans', var(--font-heading);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Optional Dark Mode (Inverted Black & White) */
[data-theme="dark"] {
  --bg-body: #08080a;
  --bg-surface: #101014;
  --bg-card: #15151a;
  --bg-card-hover: #1c1c24;
  --bg-elevated: #22222a;
  
  --text-main: #ffffff;
  --text-muted: #a1a1aa;
  --text-faint: #71717a;
  --text-inverse: #08080a;
  
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-medium: rgba(255, 255, 255, 0.2);
  --border-strong: rgba(255, 255, 255, 0.85);
  --border-active: #ffffff;
  
  --btn-primary-bg: #ffffff;
  --btn-primary-text: #000000;
  --btn-primary-hover-bg: #e4e4e7;
  
  --btn-secondary-bg: rgba(255, 255, 255, 0.06);
  --btn-secondary-text: #ffffff;
  --btn-secondary-border: rgba(255, 255, 255, 0.25);
  --btn-secondary-hover-bg: rgba(255, 255, 255, 0.15);
  --btn-secondary-hover-text: #ffffff;
  
  --badge-bg: #1c1c22;
  --badge-text: #ffffff;
  --badge-border: rgba(255, 255, 255, 0.2);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.8);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.95);
  --shadow-glow: 0 0 25px rgba(255, 255, 255, 0.12);
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
}

/* Image Utility - subtle natural saturation */
.bw-filter {
  filter: saturate(1.1) contrast(1.04);
  transition: transform var(--transition-normal), filter var(--transition-normal), box-shadow var(--transition-normal);
}

.bw-filter:hover {
  filter: saturate(1.22) contrast(1.08);
}

/* Container */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (Sleek Obsidian & Emerald Luxury Edition)
   ========================================================================== */
.top-announcement-bar {
  background: #0f172a;
  border-bottom: 1px solid rgba(74, 222, 128, 0.2);
  padding: 0.55rem 0;
  font-size: 0.8125rem;
  color: #e2e8f0;
  position: relative;
  z-index: 101;
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
}

.announcement-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #0e2705 0%, #184309 100%);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(74, 222, 128, 0.3);
  flex-shrink: 0;
}

.announcement-text {
  color: #cbd5e1;
  font-size: 0.8125rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.8125rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.announcement-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #4ade80;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.announcement-wa:hover {
  color: #86efac;
  text-decoration: underline;
}

.announcement-divider {
  color: rgba(255, 255, 255, 0.2);
}

.theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.theme-toggle:hover {
  background: #ffffff;
  color: #0f172a;
}

/* ==========================================================================
   MAIN SITE HEADER & NAVIGATION (Redesigned & Flawless)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

[data-theme="dark"] .site-header {
  background: rgba(8, 8, 10, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-symbol-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0e2705 0%, #184309 50%, #2a6913 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 4px 14px rgba(24, 67, 9, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  flex-shrink: 0;
}

.brand-logo:hover .logo-symbol-box {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 20px rgba(24, 67, 9, 0.5);
}

.clover-icon {
  font-size: 1.15rem;
  color: #4ade80;
}

.clover-num {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.logo-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
  line-height: 1.1;
}

.brand-title {
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-main);
  white-space: nowrap;
  line-height: 1.1;
}

.brand-seven {
  color: var(--color-primary);
  font-weight: 900;
  margin-left: 1px;
}

.brand-subtitle {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2px;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.2rem;
  transition: color var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.nav-link:hover,
.nav-item:hover > .nav-link {
  color: var(--color-primary);
}

.nav-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
  opacity: 0.7;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--color-primary);
}

/* Dropdown Menus */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 290px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 200;
}

.dropdown-right {
  left: auto;
  right: 0;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-bottom: 0.5rem;
  padding-left: 0.6rem;
  text-transform: uppercase;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-list li a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.dropdown-list li a i {
  font-size: 0.85rem;
  width: 18px;
  color: var(--text-faint);
  transition: color var(--transition-fast);
}

.dropdown-list li a:hover {
  background: var(--color-primary-subtle);
  color: var(--color-primary);
}

.dropdown-list li a:hover i {
  color: var(--color-primary-light);
}

/* Header Action Buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-whatsapp-header i {
  font-size: 1.1rem;
  color: #22c55e;
}

.btn-whatsapp-header:hover {
  background: #166534;
  color: #ffffff;
  border-color: #166534;
}

.btn-whatsapp-header:hover i {
  color: #ffffff;
}

.header-btn-sample {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
}

/* ==========================================================================
   BUTTONS (BLACK & WHITE HIGH CONTRAST)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.3);
}

.btn-primary:hover {
  background: var(--btn-primary-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29, 78, 216, 0.4);
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border: 1.5px solid var(--btn-secondary-border);
}

.btn-secondary:hover {
  background: var(--btn-secondary-hover-bg);
  border-color: var(--color-primary-light);
  color: var(--btn-secondary-hover-text);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 5rem 0 4rem;
  background: radial-gradient(circle at 50% 10%, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

[data-theme="dark"] .hero-section {
  background: radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.hero-backdrop-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border-subtle) 1px, transparent 1px),
                    linear-gradient(90deg, var(--border-subtle) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: center;
  opacity: 0.35;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  text-align: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.2rem;
  background: var(--color-primary-subtle);
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.75rem;
  box-shadow: 0 2px 10px rgba(24, 67, 9, 0.12);
}

.pill-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

@media (min-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.text-gradient {
  display: inline;
  background: linear-gradient(135deg, #184309 0%, #2a6913 50%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .text-gradient {
  display: inline;
  background: linear-gradient(135deg, #4ade80 0%, #86efac 50%, #bbf7d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead-highlight {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.underline-white {
  border-bottom: 3px solid #2a6913;
  padding-bottom: 2px;
  color: var(--color-primary);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 880px;
  margin: 0 auto 2.5rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #0e2705 0%, #184309 50%, #2a6913 100%);
  color: #ffffff;
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(24, 67, 9, 0.35);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #184309 0%, #2a6913 100%);
  box-shadow: 0 12px 30px rgba(24, 67, 9, 0.45);
}

.btn-hero-secondary {
  background: #ffffff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  border-radius: var(--radius-full);
}

.btn-hero-secondary:hover {
  background: var(--color-primary-subtle);
  border-color: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(24, 67, 9, 0.15);
}

/* Metrics Bar */
.hero-metrics-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-md);
  gap: 1.5rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

.metric-separator {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  border: 1px solid #bbf7d0;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.text-center .section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  background: var(--color-primary-subtle);
  border: 1px solid #bbf7d0;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.text-center .section-tag::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--text-main);
  margin: 0.4rem auto 0;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

.max-w-700 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   SECTION 2: GOTS CERTIFICATION CARD
   ========================================================================== */
.section-gots {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.gots-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .gots-card {
    grid-template-columns: 1.1fr 1fr;
  }
}

.gots-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  background: var(--bg-surface);
}

.gots-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.gots-overlay-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.gots-lead {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.gots-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.gots-callout-box {
  background: var(--color-primary-subtle);
  border: 1px solid #bbf7d0;
  border-left: 4px solid var(--color-primary-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.callout-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.callout-heading i {
  color: var(--color-primary-light);
}

.callout-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.callout-text strong {
  color: var(--text-main);
}

.gots-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   SECTION 3: FABRICS WE ARE SPECIALISED IN
   ========================================================================== */
.section-fabrics {
  border-bottom: 1px solid var(--border-subtle);
}

.fabrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .fabrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .fabrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fabric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.fabric-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary-light);
  box-shadow: 0 16px 36px rgba(24, 67, 9, 0.16);
}

.fabric-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--bg-surface);
}

.fabric-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.fabric-card:hover .fabric-img {
  transform: scale(1.06);
}

.fabric-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(6, 78, 59, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(167, 243, 208, 0.5);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.fabric-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fabric-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.fabric-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.fabric-link-btn {
  background: none;
  border: none;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

.fabric-link-btn:hover {
  gap: 0.85rem;
  color: var(--color-primary-light);
}

/* ==========================================================================
   SECTION 4: WHY CHOOSE VARTHAGAM INTERNATIONAL (8 PILLARS)
   ========================================================================== */
.section-why-us {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.why-card:hover {
  border-color: #86efac;
  transform: translateY(-4px);
  background: var(--color-primary-subtle);
  box-shadow: 0 12px 30px rgba(24, 67, 9, 0.12);
}

.why-card:hover .why-icon-box {
  transform: scale(1.08);
  background: #dcfce7;
  border-color: var(--color-primary-light);
}

.why-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--color-primary-subtle);
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 0.85rem;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.why-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(29%) sepia(91%) saturate(548%) hue-rotate(124deg) brightness(94%) contrast(98%);
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.why-card:hover .why-img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(85%) saturate(452%) hue-rotate(115deg) brightness(95%) contrast(92%);
}

.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-text {
  font-size: 0.9125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 5: BRAND LOGOS MARQUEE (MONOCHROME CAROUSEL)
   ========================================================================== */
.section-trusted-brands {
  border-bottom: 1px solid var(--border-subtle);
  padding: 5rem 0 4rem;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
}

.marquee-logo-card {
  height: 72px;
  min-width: 140px;
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.marquee-logo-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.client-logo {
  max-height: 38px;
  max-width: 110px;
  object-fit: contain;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   SECTION 6: WHAT WE MANUFACTURE (CIRCULAR AVATARS)
   ========================================================================== */
.section-products {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.circle-products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.25rem 2.5rem;
  max-width: 1050px;
  margin: 0 auto;
}

.circle-product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  group: true;
}

.circle-avatar-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-medium);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.circle-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-normal);
}

.circle-product-item:hover .circle-avatar-wrap {
  border-color: var(--color-primary-light);
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 12px 28px rgba(24, 67, 9, 0.22);
}

.circle-product-item:hover .circle-avatar-img {
  transform: scale(1.1);
}

.circle-product-label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  transition: color var(--transition-fast);
}

.circle-product-item:hover .circle-product-label {
  color: var(--color-primary);
}

/* ==========================================================================
   SECTION 7: MARCH TEE FOUNDER STORY
   ========================================================================== */
.section-story {
  border-bottom: 1px solid var(--border-subtle);
  background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
}

.story-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .story-card {
    grid-template-columns: 1fr 1.15fr;
  }
}

.story-media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.story-media-frame:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.story-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.story-quote-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
}

.story-quote-title {
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.story-author {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.story-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.story-action-wrap {
  margin-top: 2rem;
}

/* ==========================================================================
   SECTION 8: MANUFACTURING PROCESS (6-STEP GRID)
   ========================================================================== */
.section-process {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-subtle);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.process-card:hover {
  border-color: var(--color-primary-light);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(24, 67, 9, 0.14);
}

.process-img-wrap {
  width: 100%;
  height: 210px;
  position: relative;
  overflow: hidden;
  background: var(--color-primary-subtle);
}

.process-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-normal);
}

.process-card:hover .process-img {
  transform: scale(1.06);
}

.process-step-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #86efac;
  background: rgba(14, 39, 5, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(134, 239, 172, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.process-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.process-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  line-height: 1.4;
}

.process-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SECTION 9: OUR GLOBAL REACH
   ========================================================================== */
.section-global-reach {
  border-bottom: 1px solid var(--border-subtle);
}

.global-reach-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .global-reach-card {
    grid-template-columns: 1.15fr 1fr;
  }
}

.global-reach-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.reach-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .reach-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reach-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.reach-feature-box i {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-top: 0.2rem;
}

.reach-feature-info strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.reach-feature-info span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

.global-reach-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  background: var(--bg-surface);
}

.global-map-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==========================================================================
   SECTION 10: READY TO MANUFACTURE & INTERACTIVE INQUIRY FORM
   ========================================================================== */
.section-contact {
  background: var(--bg-surface);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1.15fr;
  }
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-subtext {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.spec-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--color-primary-subtle);
  border: 1px solid #bbf7d0;
  color: var(--color-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
}

.spec-pill i {
  color: var(--color-primary-light);
}

.spec-pill i {
  font-size: 0.75rem;
}

.contact-direct-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.direct-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.direct-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-primary-subtle);
  border: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.direct-details h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.direct-details p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.phone-link, .whatsapp-link {
  display: inline-block;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-top: 0.35rem;
  text-decoration: underline;
}

/* Contact Form Card */
.form-container-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-header {
  margin-bottom: 2rem;
}

.form-title {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.form-group label .req {
  color: #ef4444;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-body);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--border-active);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.field-error {
  font-size: 0.75rem;
  color: #ef4444;
  min-height: 1rem;
}

.btn-submit {
  background: linear-gradient(135deg, #0e2705 0%, #184309 50%, #2a6913 100%);
  color: #ffffff;
  padding: 1.1rem 1.75rem;
  font-size: 1.05rem;
  margin-top: 0.5rem;
  box-shadow: 0 6px 20px rgba(24, 67, 9, 0.35);
  border: none;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #184309 0%, #2a6913 100%);
  box-shadow: 0 10px 25px rgba(24, 67, 9, 0.45);
  transform: translateY(-2px);
}

.form-status-alert {
  display: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.form-status-alert.success {
  display: block;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-faint);
  text-align: center;
  margin-top: 0.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #000000;
  color: #e4e4e7;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2.5rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}

.footer-logo-name {
  font-family: var(--font-brand);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.footer-logo-tag {
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #86efac;
}

.footer-about {
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cert-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  background: #18181b;
  border: 1px solid #27272a;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  color: #ffffff;
}

.footer-heading {
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links li a {
  font-size: 0.875rem;
  color: #a1a1aa;
  transition: color var(--transition-fast);
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 3px;
}

/* SEO Cloud */
.footer-seo-cloud {
  border-top: 1px solid #1f1f23;
  border-bottom: 1px solid #1f1f23;
  padding: 2.5rem 0;
  margin-bottom: 2.5rem;
}

.seo-cloud-title {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #71717a;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.seo-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.seo-tag {
  background: #121215;
  border: 1px solid #27272a;
  color: #a1a1aa;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.seo-tag:hover {
  background: #27272a;
  color: #ffffff;
}

/* Bottom Bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #71717a;
}

.footer-bottom-bar strong {
  color: #ffffff;
}

/* ==========================================================================
   FLOATING QUICK ACTIONS
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  z-index: 99;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  cursor: pointer;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform var(--transition-fast);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  background: #25D366;
  color: #ffffff;
  border: 1px solid #1eb757;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.quote-btn {
  background: linear-gradient(135deg, #0e2705 0%, #184309 100%);
  color: #ffffff;
  border: 1px solid #2a6913;
  box-shadow: 0 8px 24px rgba(24, 67, 9, 0.35);
}

.floating-tooltip {
  position: absolute;
  right: 64px;
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition-fast);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  padding: 2.25rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-dialog-lg {
  max-width: 680px;
}

.modal-backdrop.active .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.85rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-main);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0.5rem 0 0.35rem;
}

.modal-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.modal-alert {
  display: none;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  background: var(--bg-surface);
  border: 1px solid var(--text-main);
  color: var(--text-main);
}

.modal-alert.show {
  display: block;
}

/* Story Modal Specifics */
.story-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.story-quote-highlight {
  background: var(--bg-surface);
  border-left: 3px solid var(--text-main);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
}

.story-modal-cta {
  margin-top: 1rem;
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 250;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  background: var(--bg-card);
  border-right: 1px solid var(--border-medium);
  z-index: 260;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.25rem;
  cursor: pointer;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.logo-sub {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-top: 2px;
}

.drawer-body {
  padding: 1.5rem;
  overflow-y: auto;
  flex-grow: 1;
}

.drawer-section-title {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-faint);
  margin-bottom: 0.85rem;
  margin-top: 1.5rem;
  text-transform: uppercase;
}

.drawer-section-title:first-child {
  margin-top: 0;
}

.drawer-links-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drawer-link {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.drawer-link:hover {
  color: var(--text-main);
}

.drawer-action-group {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE QUERIES — TABLET (max 991px)
   ========================================================================== */
@media (max-width: 991px) {
  .desktop-nav { display: none; }
  .mobile-nav-toggle { display: flex; }
  .header-btn-talk { display: none; }

  .hero-title { font-size: 2.35rem; }

  /* Two-col layouts stack */
  .two-col,
  .gots-content-col,
  .gots-image-col {
    grid-column: 1 / -1;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-form-col,
  .contact-info-col {
    width: 100%;
    max-width: 100%;
  }

  /* Grids: 2 columns on tablet */
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .fabrics-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .reach-features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   RESPONSIVE QUERIES — MOBILE (max 640px)
   ========================================================================== */
@media (max-width: 640px) {

  /* ── Global spacing ── */
  section { padding: 3rem 1rem !important; }
  .container, .section-container { padding-left: 1rem; padding-right: 1rem; }

  /* ── Announcement bar ── */
  .announcement-right { display: none; }
  .announcement-bar { font-size: 0.75rem; padding: 0.4rem 1rem; }

  /* ── Header ── */
  .site-header { padding: 0 1rem; }
  .header-logo-text { font-size: 1.1rem; }

  /* ── Hero ── */
  .hero-section { padding: 5rem 1rem 3rem; text-align: center; }
  .hero-title { font-size: 1.75rem; line-height: 1.25; }
  .hero-lead-highlight { font-size: 1.05rem; }
  .hero-description { font-size: 0.9rem; }
  .hero-badge-pill { font-size: 0.72rem; }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-cta-group .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-metrics-bar {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .metric-separator { display: none; }
  .metric-value { font-size: 1.4rem; }

  /* ── GOTS / Two-col ── */
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .gots-image-col { order: -1; }
  .gots-image-col img { border-radius: 12px; width: 100%; }

  /* ── Section headings ── */
  .section-label { font-size: 0.7rem; }
  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.9rem; }

  /* ── Fabrics grid ── */
  .fabrics-grid { grid-template-columns: 1fr; gap: 1rem; }
  .fabric-card { padding: 1.25rem; }

  /* ── Why Us ── */
  .why-us-grid { grid-template-columns: 1fr; gap: 1rem; }
  .why-card { padding: 1.25rem; }

  /* ── Products circle grid ── */
  .circle-products-grid {
    gap: 1.25rem 1rem;
  }

  /* ── Manufacturing process ── */
  .process-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .process-card { flex-direction: column; }
  .process-img-wrap { width: 100%; height: 180px; }
  .process-body { padding: 1.25rem; }

  /* ── Global reach ── */
  .reach-features-grid { grid-template-columns: 1fr; gap: 1rem; }
  .global-reach-card { padding: 1.25rem; }

  /* ── GOTS / Certification cards ── */
  .gots-card { flex-direction: column; align-items: flex-start; gap: 0.75rem; }

  /* ── Contact section ── */
  .contact-wrapper { flex-direction: column; gap: 1.5rem; }
  .contact-form-col, .contact-info-col { width: 100%; }
  .contact-direct-cards { grid-template-columns: 1fr; }
  .direct-card { padding: 1rem; }
  .form-container-card { padding: 1.25rem; }
  .contact-heading { font-size: 1.4rem; }

  /* ── Footer ── */
  .footer-top-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-col { text-align: left; }
  .brand-col { text-align: center; }

  /* ── Marquee / logos ── */
  .marquee-logo-card { padding: 0.5rem 1rem; }

  /* ── Buttons global ── */
  .btn { min-height: 44px; padding: 0.65rem 1.25rem; font-size: 0.875rem; }

  /* ── Forms ── */
  .form-row { flex-direction: column; gap: 0.75rem; }
  input, select, textarea {
    font-size: 16px !important; /* prevent iOS zoom on focus */
  }

  /* ── Drawer ── */
  .mobile-drawer { width: 100% !important; }
}

/* ==========================================================================
   HUMAN VERIFICATION / "I'M NOT A ROBOT" COMPONENT
   ========================================================================== */
.captcha-container {
  margin: 1rem 0 0.5rem 0;
}

.captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  max-width: 310px;
  cursor: pointer;
  user-select: none;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.captcha-box:hover {
  border-color: var(--color-primary);
  box-shadow: 0 2px 10px rgba(24, 67, 9, 0.12);
}

.captcha-box:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.captcha-box.captcha-error {
  border-color: #ef4444 !important;
  animation: captchaShake 0.4s ease;
}

@keyframes captchaShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.captcha-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.captcha-checkbox {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 2px solid #71717a;
  background: var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.captcha-box:hover .captcha-checkbox {
  border-color: var(--color-primary);
}

.captcha-check-icon {
  color: #ffffff;
  font-size: 0.95rem;
  display: none;
  transform: scale(0.5);
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.captcha-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(24, 67, 9, 0.2);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: captchaSpin 0.7s linear infinite;
}

@keyframes captchaSpin {
  to { transform: rotate(360deg); }
}

.captcha-box.verifying .captcha-checkbox {
  border-color: transparent;
  background: transparent;
}

.captcha-box.verifying .captcha-spinner {
  display: block;
}

.captcha-box.verified {
  border-color: #16a34a;
  background: rgba(22, 163, 74, 0.05);
  cursor: default;
}

.captcha-box.verified .captcha-checkbox {
  background: #16a34a;
  border-color: #16a34a;
}

.captcha-box.verified .captcha-check-icon {
  display: block;
  transform: scale(1);
}

.captcha-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.captcha-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  opacity: 0.75;
  padding-left: 0.5rem;
  border-left: 1px solid var(--border-subtle);
}

.captcha-badge-icon {
  width: 24px;
  height: 24px;
}

.captcha-brand-text {
  font-size: 0.625rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1;
}

.captcha-privacy-text {
  font-size: 0.5rem;
  color: var(--text-muted);
  white-space: nowrap;
  line-height: 1;
}
