:root {
  --bg-primary: #f8f9fc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #eef1f8;
  --text-primary: #1a1a2e;
  --text-secondary: #5a6177;
  --text-light: #8892a6;
  --accent-color: #6366f1;
  --accent-hover: #4f46e5;
  --accent-glow: rgba(99, 102, 241, 0.25);
  --accent-rose: #f43f5e;
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --card-bg: #ffffff;
  --border-color: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.1);
  --shadow-xl: 0 30px 60px rgba(0,0,0,0.12);
  --gradient-fabric: linear-gradient(135deg, #f43f5e, #a855f7, #6366f1);
  --gradient-hero: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* Keyframes */
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blob1 { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -50px) scale(1.1); } 66% { transform: translate(-20px, 20px) scale(0.9); } }
@keyframes blob2 { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(-30px, 25px) scale(1.1); } 66% { transform: translate(25px, -25px) scale(0.9); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* === GLOBAL OVERFLOW FIX === */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.2; color: var(--text-primary); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.section-padding { padding: 6rem 1.5rem; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 1.5rem; }

/* ========================================
   HEADER
   ======================================== */
header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.logo {
  font-size: 1.6rem;
  font-weight: 900;
  background: var(--gradient-fabric);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

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

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-hero);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.nav-cta {
  background: var(--accent-color) !important;
  color: white !important;
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.9rem !important;
  -webkit-text-fill-color: white !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--accent-glow);
}

.nav-cta::after { display: none !important; }

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

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #e0e7ff 0%, #f8f9fc 30%, #fdf2f8 60%, #f8f9fc 100%);
}

/* Blobs — contained inside hero via overflow:hidden */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.hero-blob-1 {
  width: 400px; height: 400px;
  background: rgba(99, 102, 241, 0.25);
  top: -10%; left: -5%;
  animation: blob1 14s ease-in-out infinite;
}

.hero-blob-2 {
  width: 350px; height: 350px;
  background: rgba(168, 85, 247, 0.2);
  bottom: -5%; right: 0;
  animation: blob2 16s ease-in-out infinite;
}

.hero-blob-3 {
  width: 250px; height: 250px;
  background: rgba(244, 63, 94, 0.15);
  top: 35%; right: 15%;
  animation: blob1 20s ease-in-out infinite reverse;
}

/* Grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  width: 100%;
  animation: slideUp 0.8s ease-out;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.hero-tagline .dot {
  width: 7px; height: 7px;
  background: var(--accent-emerald);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--text-primary);
}

.hero h1 .gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-brands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
  flex-wrap: wrap;
}

.hero-brands span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px var(--accent-glow);
}

.btn-secondary {
  background: white;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

/* ========================================
   TRUST STATS
   ======================================== */
.trust-stats {
  background: var(--bg-secondary);
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 102, 241, 0.2);
}

.stat-item h3 {
  font-size: 2.5rem;
  background: var(--gradient-fabric);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ========================================
   VALUE PROPS (Why Choose Us)
   ======================================== */
.value-props { background: var(--bg-primary); }

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

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 102, 241, 0.3);
}

.value-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.value-icon.icon-quality { background: #fef2f2; }
.value-icon.icon-wholesale { background: #eef2ff; }
.value-icon.icon-global { background: #ecfeff; }
.value-icon.icon-fast { background: #fffbeb; }
.value-icon.icon-secure { background: #ecfdf5; }
.value-icon.icon-support { background: #faf5ff; }

.value-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.value-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* ========================================
   FEATURED PRODUCTS
   ======================================== */
.featured-products { background: var(--bg-tertiary); }

/* ========================================
   FABRIC HIGHLIGHT
   ======================================== */
.fabric-highlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.fabric-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
}

.fabric-content { padding: 3.5rem; }

.fabric-badge {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background: var(--gradient-fabric);
  color: white;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.fabric-content h2 { font-size: 2.5rem; margin-bottom: 1.25rem; }
.fabric-content p { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 1.25rem; line-height: 1.8; }

/* ========================================
   PROCESS (How It Works)
   ======================================== */
.process-section { background: var(--bg-primary); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(to right, var(--accent-color), var(--accent-rose));
  opacity: 0.15;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.process-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 auto 1.25rem;
  background: var(--bg-secondary);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.process-step:hover .process-number {
  background: var(--accent-color);
  color: white;
  box-shadow: 0 0 25px var(--accent-glow);
}

.process-step h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-section { background: var(--bg-primary); }

.cta-inner {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.cta-inner h2 { font-size: 2.5rem; color: white; position: relative; z-index: 1; margin-bottom: 1rem; }
.cta-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner .btn {
  position: relative;
  z-index: 1;
  background: white;
  color: var(--accent-color);
  font-weight: 800;
}

.cta-inner .btn:hover {
  background: #f1f5f9;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section { background: var(--bg-secondary); }

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

.testimonial-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 102, 241, 0.2);
}

.testimonial-stars { color: var(--accent-amber); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 3px; }

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gradient-fabric);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-author h4 { font-size: 0.9rem; margin-bottom: 0.1rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ========================================
   CATEGORIES
   ======================================== */
.categories-section { background: var(--bg-tertiary); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: 2.75rem; }
.section-header p { font-size: 1.05rem; color: var(--text-secondary); max-width: 520px; margin: 0.75rem auto 0; }

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

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.85), transparent 55%);
}

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

.category-card h3 {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  font-size: 1.15rem;
  color: white;
}

/* ========================================
   PRODUCTS GRID
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 102, 241, 0.2);
}

.product-image-container { height: 200px; overflow: hidden; }

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

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

.product-info { padding: 1.25rem; }

.product-category {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.product-title {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 700;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   MEGA FOOTER
   ======================================== */
footer {
  background: #1a1a2e;
  padding: 4.5rem 1.5rem 1.5rem;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto 3.5rem;
}

.footer-brand .logo { display: inline-block; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; max-width: 320px; margin-bottom: 1.5rem; line-height: 1.6; }

.footer-socials { display: flex; gap: 0.5rem; }

.footer-socials span {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.footer-socials span:hover { background: var(--accent-color); border-color: var(--accent-color); transform: translateY(-3px); color: white; }

.footer-col h4 { font-size: 1rem; margin-bottom: 1.25rem; color: white; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { color: rgba(255,255,255,0.6); transition: all 0.3s ease; font-size: 0.9rem; }
.footer-col ul a:hover { color: white; padding-left: 4px; }

.newsletter-form { display: flex; margin-top: 0.75rem; }

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  border-radius: 10px 0 0 10px;
  color: white;
  font-size: 0.85rem;
  outline: none;
}

.newsletter-form input:focus { border-color: var(--accent-color); }

.newsletter-form button {
  padding: 0.75rem 1.25rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 0 10px 10px 0;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 0.85rem;
  white-space: nowrap;
}

.newsletter-form button:hover { background: var(--accent-hover); }

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-hero {
  padding: 11rem 1.5rem 4.5rem;
  text-align: center;
  background: linear-gradient(160deg, #e0e7ff 0%, #f8f9fc 40%, #fdf2f8 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  filter: blur(100px);
  top: -20%;
  right: -10%;
  pointer-events: none;
}

.contact-hero h1 { font-size: 3rem; position: relative; z-index: 1; margin-bottom: 0.75rem; }
.contact-hero p { font-size: 1.1rem; color: var(--text-secondary); position: relative; z-index: 1; max-width: 500px; margin: 0 auto; }

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

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 102, 241, 0.3);
}

.contact-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  background: #eef2ff;
}

.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.contact-info-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 1.15rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }

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

.form-group input, .form-group textarea, .form-group select {
  padding: 0.8rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.3s ease;
  width: 100%;
}

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

.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--bg-secondary); }

.contact-map {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.map-placeholder { text-align: center; padding: 2rem; }
.map-placeholder .map-icon { font-size: 3rem; margin-bottom: 1rem; }
.map-placeholder h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.map-placeholder p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8; }

/* ========================================
   PRODUCTS PAGE
   ======================================== */
.products-header {
  padding: 11rem 1.5rem 4.5rem;
  text-align: center;
  background: linear-gradient(160deg, #eef2ff 0%, #f8f9fc 50%, #fdf2f8 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.products-header::before {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.08);
  filter: blur(100px);
  bottom: -30%; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.products-header h1 { font-size: 3rem; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.products-header p { color: var(--text-secondary); font-size: 1.1rem; position: relative; z-index: 1; }

.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}

.filter-btn {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px var(--accent-glow);
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .section-padding { padding: 4.5rem 1.25rem; }
  .container { padding: 0 1.25rem; }
  .section-header h2 { font-size: 2.25rem; }
  .section-header { margin-bottom: 2.5rem; }

  .hero h1 { font-size: 3.25rem; }
  .hero p { font-size: 1.05rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 550px; margin-left: auto; margin-right: auto; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }

  .fabric-highlight { grid-template-columns: 1fr; }
  .fabric-image { min-height: 300px; }
  .fabric-content { padding: 2.5rem 2rem; }
  .fabric-content h2 { font-size: 2rem; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }

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

  .contact-form-section { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-hero h1 { font-size: 2.5rem; }

  .products-header h1 { font-size: 2.5rem; }

  .cta-inner { padding: 3.5rem 2rem; }
  .cta-inner h2 { font-size: 2.25rem; }
}

/* ========================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  .section-padding { padding: 3.5rem 1rem; }
  .container { padding: 0 1rem; }
  .section-header h2 { font-size: 1.85rem; }
  .section-header p { font-size: 0.9rem; }

  /* Header */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    height: 100dvh;
    background: white;
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0.25rem;
    transition: right 0.35s ease;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 999;
    overflow-y: auto;
  }

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

  .nav-links a {
    font-size: 1.05rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
  }

  .nav-links a::after { display: none; }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    display: block;
    padding: 0.75rem 1.5rem;
    border-bottom: none !important;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    display: none;
  }

  .mobile-overlay.show { display: block; }

  /* Hero */
  .hero { padding: 7rem 1rem 3.5rem; min-height: auto; }
  .hero h1 { font-size: 2.25rem; }
  .hero p { font-size: 0.95rem; margin-bottom: 2rem; }
  .hero-tagline { font-size: 0.75rem; padding: 0.4rem 0.9rem; margin-bottom: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-bottom: 2.5rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-brands { gap: 1rem; padding-top: 2rem; }
  .hero-brands span { font-size: 0.65rem; letter-spacing: 1px; }
  .hero-blob-1 { width: 250px; height: 250px; }
  .hero-blob-2 { width: 200px; height: 200px; }
  .hero-blob-3 { width: 150px; height: 150px; }

  /* Stats */
  .trust-stats { padding: 2.5rem 1rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-item { padding: 1.25rem 0.75rem; }
  .stat-item h3 { font-size: 1.85rem; }
  .stat-item p { font-size: 0.7rem; letter-spacing: 1px; }

  /* Value */
  .value-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
  .value-card { padding: 2rem 1.5rem; }

  /* Fabric */
  .fabric-highlight { border-radius: var(--radius-md); }
  .fabric-image { min-height: 220px; }
  .fabric-content { padding: 2rem 1.5rem; }
  .fabric-content h2 { font-size: 1.75rem; }
  .fabric-content p { font-size: 0.95rem; }

  /* Products */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .product-image-container { height: 160px; }
  .product-info { padding: 1rem; }
  .product-title { font-size: 0.9rem; margin-bottom: 0.5rem; }
  .product-price { font-size: 1.05rem; }
  .product-category { font-size: 0.65rem; }

  /* Process */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .process-number { width: 50px; height: 50px; font-size: 1rem; }

  /* Categories */
  .category-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .category-card { height: 200px; border-radius: var(--radius-md); }
  .category-card h3 { font-size: 0.95rem; bottom: 1rem; left: 1rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; margin-top: 2rem; }
  .testimonial-card { padding: 1.75rem 1.25rem; }

  /* CTA */
  .cta-inner { padding: 3rem 1.5rem; border-radius: var(--radius-md); }
  .cta-inner h2 { font-size: 1.75rem; }
  .cta-inner p { font-size: 0.9rem; }

  /* Footer */
  footer { padding: 3rem 1rem 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }

  /* Contact */
  .contact-hero { padding: 8.5rem 1rem 3rem; }
  .contact-hero h1 { font-size: 2rem; }
  .contact-hero p { font-size: 0.95rem; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-card { padding: 1.75rem 1.25rem; }
  .contact-form-section { gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }

  /* Products Page */
  .products-header { padding: 8.5rem 1rem 3rem; }
  .products-header h1 { font-size: 2rem; }
  .products-header p { font-size: 0.95rem; }
  .filters { gap: 0.4rem; padding: 0 1rem; margin-bottom: 2rem; }
  .filter-btn { padding: 0.5rem 0.9rem; font-size: 0.75rem; }
}

/* ========================================
   RESPONSIVE — SMALL PHONE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.85rem; }
  .hero p { font-size: 0.9rem; }
  .stat-item h3 { font-size: 1.5rem; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process-step p { font-size: 0.8rem; }
  .hero-brands { flex-direction: column; gap: 0.5rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .product-image-container { height: 130px; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { height: 180px; }
  .cta-inner h2 { font-size: 1.5rem; }
  .fabric-content h2 { font-size: 1.5rem; }
}
