/* ===================================================
   Sri Murugan Silk House — Global Design System
   =================================================== */

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

/* ─── CSS Variables ─────────────────────────────── */
:root {
  --primary: #FF8C42;
  --secondary: #4F4F52;
  --accent: #FFB366;
  --bg-light: #F8F9FA;
  --text-dark: #2C2C2C;
  --white: #FFFFFF;
  --primary-dark: #E0732E;
  --primary-light: #FFF0E6;
  --gradient-primary: linear-gradient(135deg, #FF8C42, #FFB366);
  --gradient-dark: linear-gradient(135deg, #2C2C2C, #4F4F52);
  --shadow-sm: 0 2px 8px rgba(255, 140, 66, 0.15);
  --shadow-md: 0 8px 30px rgba(255, 140, 66, 0.2);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
  --border-radius: 12px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
}

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

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

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

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

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

ul {
  list-style: none;
}

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

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

/* ─── Layout Utilities ───────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 5rem 0;
}

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

/* ─── Section Headers ────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin: 1rem auto 0;
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 140, 66, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 140, 66, 0.5);
  color: var(--white);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

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

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

.btn-dark {
  background: var(--secondary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--text-dark);
  transform: translateY(-3px);
  color: var(--white);
}

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(44, 44, 44, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 140, 66, 0.2);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(44, 44, 44, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

.nav-logo-icon {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(255, 140, 66, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-cta {
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.35);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.5);
  background: rgba(255, 140, 66, 0.1) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── PAGE HERO BANNER ───────────────────────────── */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 96px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.92), rgba(79, 79, 82, 0.85));
  z-index: 1;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 10s ease;
}

.page-hero:hover .page-hero-bg {
  transform: scale(1);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 1.5rem;
  width: 100%;
}

.page-hero-content .section-label {
  background: rgba(255, 140, 66, 0.2);
  color: var(--accent);
}

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

.page-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: var(--accent);
}

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

.breadcrumb .sep {
  color: var(--primary);
}

.breadcrumb .current {
  color: var(--white);
}

/* ─── CARDS ──────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ─── STATS ──────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ─── PROCESS TIMELINE ───────────────────────────── */
.timeline {
  position: relative;
  padding: 1rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(even) .timeline-content {
  order: 3;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-image {
  order: 1;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
  order: 1;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-image {
  order: 3;
}

.timeline-node {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 0 0 6px var(--primary-light), 0 4px 15px rgba(255, 140, 66, 0.4);
  flex-shrink: 0;
  z-index: 1;
  font-family: var(--font-heading);
}

.timeline-content h3 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.95rem;
}

.timeline-content .step-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.timeline-image img {
  width: 100%;
  max-width: 300px;
  border-radius: var(--border-radius);
  object-fit: cover;
  height: 200px;
  box-shadow: var(--shadow-md);
}

/* ─── ICON FEATURES ──────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border-top: 4px solid transparent;
  text-align: center;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
}

/* ─── GALLERY GRID ───────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: #ddd;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
}

.gallery-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

/* ─── SCROLL ANIMATIONS ──────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ─── DARK SECTION ───────────────────────────────── */
.dark-section {
  background: var(--gradient-dark);
  color: var(--white);
}

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

.dark-section .section-desc {
  color: rgba(255, 255, 255, 0.75);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.75);
}

/* ─── ORANGE SECTION ─────────────────────────────── */
.orange-section {
  background: var(--gradient-primary);
  color: var(--white);
}

.orange-section .section-title {
  color: var(--white);
}

.orange-section .section-desc {
  color: rgba(255, 255, 255, 0.85);
}

.orange-section .section-label {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .nav-logo-name {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

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

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

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-icon {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

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

.social-link:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {

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

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

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

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ─── CONTACT FORM ───────────────────────────────── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 2px solid #e8e8e8;
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.1);
}

.form-control::placeholder {
  color: #aaa;
}

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

/* ─── ORNAMENTAL DIVIDER ─────────────────────────── */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd);
}

.ornament-divider::after {
  background: linear-gradient(to left, transparent, #ddd);
}

.ornament-divider span {
  font-size: 1.5rem;
  color: var(--primary);
}

/* ─── RESPONSIVE ─────────────────────────────────── */

/* ── Large Tablet (≤ 1280px) ── */
@media (max-width: 1280px) {
  .nav-container { padding: 0 1.25rem; }
  .nav-logo-name { font-size: 0.95rem; }
}

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .timeline-item { grid-template-columns: 1fr; text-align: center !important; }
  .timeline::before { display: none; }
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content { order: 2; text-align: center !important; }
  .timeline-item:nth-child(even) .timeline-image,
  .timeline-item:nth-child(odd) .timeline-image { order: 3; text-align: center !important; }
  .timeline-node { order: 1; margin: 0 auto; }
  .timeline-image img { max-width: 100%; margin: 0 auto; }

  .comparison-table { font-size: 0.88rem; }
  .comparison-table th, .comparison-table td { padding: 0.75rem 1rem; }

  .section-pad { padding: 4rem 0; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  /* Navbar */
  .nav-menu {
    display: none;
    position: fixed;
    top: 92px;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 2px solid var(--primary);
    backdrop-filter: blur(20px);
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-link { width: 100%; padding: 0.75rem 1rem; border-radius: 8px; }
  .nav-logo-icon { width: 88px; height: 88px; }
  .nav-logo-sub { font-size: 0.7rem; letter-spacing: 0.07em; }
  .nav-container { height: 92px; }

  /* Page hero */
  .page-hero { min-height: 280px; }
  .page-hero-content { padding: 2rem 1rem; }

  /* Timeline */
  .timeline::before { display: none; }
  .timeline-item {
    grid-template-columns: 1fr;
    text-align: center !important;
  }
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content { order: 2; text-align: center !important; }
  .timeline-item:nth-child(even) .timeline-image,
  .timeline-item:nth-child(odd) .timeline-image { order: 3; text-align: center !important; }
  .timeline-node { order: 1; margin: 0 auto; }
  .timeline-image img { max-width: 100%; margin: 0 auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 3rem 0 0; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2.2rem; }

  /* Section */
  .section-pad { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  /* Comparison table scroll */
  .comparison-table { display: block; overflow-x: auto; white-space: nowrap; }

  /* WhatsApp & back-to-top */
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; font-size: 1.4rem; }
  .back-to-top { bottom: 4.5rem; right: 1.25rem; }

  /* Machine grid */
  .machine-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Small Mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .machine-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

  .btn { padding: 0.75rem 1.5rem; font-size: 0.88rem; }

  .section-pad { padding: 2.75rem 0; }

  .page-hero { min-height: 240px; }

  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  h3 { font-size: clamp(1.1rem, 4vw, 1.5rem); }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 2rem 1.5rem; }

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

  .testimonial-card { padding: 1.75rem 1.25rem; }

  .nav-logo-icon { width: 80px; height: 80px; }
  .nav-logo-name { font-size: 0.92rem; }
  .nav-logo-sub { font-size: 0.72rem; letter-spacing: 0.06em; }
}

/* ── Extra Small (≤ 360px) ── */
@media (max-width: 360px) {
  .container { padding: 0 0.75rem; }
  .btn { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
  .section-pad { padding: 2.25rem 0; }
  .nav-logo-name { font-size: 0.85rem; }
  .nav-logo-sub { font-size: 0.65rem; letter-spacing: 0.05em; }
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

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

/* ─── MOBILE BOTTOM NAV ─────────────────────────── */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
  padding: 0.6rem 0;
  padding-bottom: calc(0.6rem + env(safe-area-inset-bottom));
  border-top: 1px solid #f0f0f0;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #888;
  font-size: 0.65rem;
  font-weight: 600;
  gap: 0.25rem;
  transition: var(--transition);
  flex: 1;
}

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

.bottom-nav-icon {
  font-size: 1.25rem;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.bottom-nav-item:hover .bottom-nav-icon,
.bottom-nav-item.active .bottom-nav-icon {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
  
  /* Prevent content hiding behind bottom nav */
  body {
    padding-bottom: 72px; 
  }
  
  /* Lift float buttons above bottom nav */
  .whatsapp-float {
    bottom: calc(1.25rem + 72px) !important;
  }
  .back-to-top {
    bottom: calc(4.5rem + 72px) !important;
  }
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: #888;
}

.stars {
  color: #FFB800;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

/* Page transition */
.page-transition {
  animation: fadeInPage 0.5s ease;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading shimmer */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

/* Tag chip */
.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  background: var(--primary-light);
  color: var(--primary);
  letter-spacing: 0.05em;
}

/* Highlight box */
.highlight-box {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 1.5rem;
}

/* Machine components grid */
.machine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.machine-component {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
  border-bottom: 3px solid transparent;
}

.machine-component:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--primary);
}

.machine-component-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.machine-component h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.machine-component p {
  font-size: 0.85rem;
}

/* Image with overlay text */
.img-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

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

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

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table th {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: left;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.92rem;
  color: #555;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
  background: var(--bg-light);
}

/* Category filter */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #e0e0e0;
  background: var(--white);
  color: #666;
  transition: var(--transition);
}

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

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes float {

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

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

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.float-anim {
  animation: float 6s ease-in-out infinite;
}

/* Decorative patterns */
.pattern-dots {
  background-image: radial-gradient(circle, rgba(255, 140, 66, 0.15) 1px, transparent 1px);
  background-size: 24px 24px;
}

.pattern-lines {
  background-image: repeating-linear-gradient(45deg,
      transparent,
      transparent 8px,
      rgba(255, 140, 66, 0.05) 8px,
      rgba(255, 140, 66, 0.05) 16px);
}

/* Premium Gallery Grid for categories */
.cat-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cat-gallery-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  background: #f5f0ea;
  cursor: pointer;
}

.cat-gallery-card.featured {
  grid-column: span 2;
}

.cat-gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.cat-gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  display: block;
  transition: var(--transition-slow);
}

.cat-gallery-card.featured img {
  height: auto;
}

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

.cat-gallery-info {
  padding: 1.25rem;
  background: var(--white);
}

.cat-gallery-info h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.cat-gallery-info p {
  font-size: 0.82rem;
  color: #888;
}

.cat-gallery-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.cat-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  background: var(--primary-light);
  color: var(--primary);
}

.handloom-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(255,140,66,0.3);
}

@media (max-width: 1024px) {
  .cat-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-gallery-card.featured { grid-column: span 1; }
}

@media (max-width: 768px) {
  .cat-gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cat-gallery-grid { grid-template-columns: 1fr; }
}
/* Extracted from about.html */
/* â”€â”€ ABOUT PAGE SPECIFIC â”€â”€ */
    .about-intro-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-intro-content p {
      margin-bottom: 1.2rem;
    }

    .about-intro-img {
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      height: auto;
      box-shadow: var(--shadow-lg);
      position: relative;
    }

    .about-intro-img img {
      width: 100%;
      height: auto;
      display: block;
    }

    .about-intro-img-badge {
      position: absolute;
      bottom: 2rem;
      right: -1.5rem;
      background: var(--gradient-primary);
      color: var(--white);
      padding: 1.2rem;
      border-radius: var(--border-radius);
      text-align: center;
      box-shadow: var(--shadow-md);
    }

    /* Mission & Vision */
    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .mv-card {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 2.5rem;
      box-shadow: var(--shadow-card);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .mv-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient-primary);
    }

    .mv-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .mv-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .mv-card h3 {
      margin-bottom: 1rem;
      color: var(--primary);
      font-family: var(--font-heading);
    }

    /* Heritage Story */
    .heritage-section {
      background: linear-gradient(135deg, #fdf3ec, #fff9f5);
      position: relative;
    }

    .heritage-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 140, 66, 0.06) 1px, transparent 1px);
      background-size: 30px 30px;
    }

    .heritage-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .heritage-img {
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      height: auto;
      box-shadow: var(--shadow-lg);
    }

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

    .heritage-content p {
      margin-bottom: 1rem;
    }

    .heritage-quote {
      background: var(--white);
      border-left: 5px solid var(--primary);
      padding: 1.5rem 2rem;
      border-radius: 0 var(--border-radius) var(--border-radius) 0;
      margin: 2rem 0;
      box-shadow: var(--shadow-card);
    }

    .heritage-quote p {
      font-style: italic;
      font-size: 1.05rem;
      color: var(--text-dark);
      line-height: 1.7;
    }

    .heritage-quote cite {
      display: block;
      margin-top: 0.75rem;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--primary);
    }

    /* Timeline */
    .biz-timeline {
      position: relative;
      padding-left: 3rem;
    }

    .biz-timeline::before {
      content: '';
      position: absolute;
      left: 16px;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, var(--primary), var(--accent), transparent);
      border-radius: 2px;
    }

    .biz-timeline-item {
      position: relative;
      padding-bottom: 2.5rem;
      opacity: 0;
      transform: translateX(-20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .biz-timeline-item.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .biz-timeline-item::before {
      content: '';
      position: absolute;
      left: -2.25rem;
      top: 6px;
      width: 14px;
      height: 14px;
      background: var(--primary);
      border-radius: 50%;
      border: 3px solid var(--primary-light);
      box-shadow: 0 0 0 3px var(--primary);
    }

    .biz-timeline-year {
      display: inline-block;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      color: var(--white);
      background: var(--gradient-primary);
      padding: 0.2rem 0.8rem;
      border-radius: 50px;
      margin-bottom: 0.5rem;
    }

    .biz-timeline-item h4 {
      color: var(--text-dark);
      margin-bottom: 0.4rem;
    }

    .biz-timeline-item p {
      font-size: 0.9rem;
    }

    /* Stats band */
    .stats-band {
      background: var(--gradient-dark);
      padding: 3rem 0;
    }

    .stats-band .stat-number {
      color: var(--primary);
    }

    .stats-band .stat-label {
      color: rgba(255, 255, 255, 0.65);
    }

    @media (max-width: 1024px) {
      .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .about-intro-img {
        height: auto;
      }

      .mv-grid {
        gap: 1.5rem;
      }

      .heritage-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .heritage-img {
        height: auto;
      }
    }

    @media (max-width: 768px) {

      .about-intro-grid,
      .mv-grid,
      .heritage-grid {
        grid-template-columns: 1fr;
      }

      .about-intro-img {
        height: auto;
      }

      .heritage-img {
        height: auto;
      }

      .about-intro-img-badge {
        right: 0.5rem;
      }

      .mv-card {
        padding: 2rem 1.5rem;
      }

      .biz-timeline {
        padding-left: 2rem;
      }

      .heritage-quote {
        padding: 1.25rem 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .about-intro-img {
        height: auto;
      }

      .heritage-img {
        height: auto;
      }

      .mv-card {
        padding: 1.5rem 1.25rem;
      }

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

      .biz-timeline {
        padding-left: 1.5rem;
      }

      .stats-band {
        padding: 2rem 0;
      }
    }

/* Extracted from collections.html */
/* â”€â”€ COLLECTIONS PAGE â”€â”€ */

    .collections-intro {
      background: linear-gradient(135deg, #fdf3ec, #fff9f5);
      padding: 3.5rem 0;
    }

    .collections-intro-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .collections-intro-text h2 { margin-bottom: 1rem; }
    .collections-intro-text p { margin-bottom: 1rem; }

    .collections-note {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 1.5rem;
      box-shadow: var(--shadow-card);
      border-left: 4px solid var(--primary);
      margin-top: 1.5rem;
    }

    .collections-note p {
      margin: 0;
      font-size: 0.9rem;
      font-style: italic;
      color: #666;
    }

    .collections-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .col-stat {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 1.5rem;
      text-align: center;
      box-shadow: var(--shadow-card);
    }

    .col-stat-num {
      display: block;
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }

    .col-stat-label {
      font-size: 0.8rem;
      color: #777;
      margin-top: 0.4rem;
      font-weight: 500;
    }

    /* Category Sections */
    .category-section {
      padding: 5rem 0;
      border-bottom: 1px solid #f0f0f0;
    }

    .category-section:nth-child(even) {
      background: var(--bg-light);
    }

    .category-section:nth-child(odd) {
      background: var(--white);
    }

    .category-section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .category-section-header-left h2 { margin-bottom: 0.4rem; }

    .category-badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--white);
      background: var(--gradient-primary);
      padding: 0.35rem 1rem;
      border-radius: 50px;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .category-desc {
      color: #777;
      font-size: 0.95rem;
      max-width: 500px;
    }

    @media (max-width: 1024px) {
      .collections-intro-inner { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      .inquiry-banner-inner { flex-direction: column; text-align: center; }
      .inquiry-actions { justify-content: center; }
      .collections-stats { grid-template-columns: repeat(2, 1fr); }
      .category-section { padding: 3.5rem 0; }
    }

    @media (max-width: 480px) {
      .inquiry-actions { flex-direction: column; width: 100%; }
      .inquiry-actions .btn { width: 100%; justify-content: center; }
      .col-stat-num { font-size: 2rem; }
      .category-section { padding: 2.5rem 0; }
      .category-section-header { flex-direction: column; align-items: flex-start; }
    }

/* Extracted from contact.html */
/* â”€â”€ CONTACT PAGE STYLES â”€â”€ */

    .contact-intro {
      background: linear-gradient(135deg, #fdf3ec, #fff9f5);
      padding: 3rem 0;
      text-align: center;
    }

    .contact-intro p {
      max-width: 600px;
      margin: 0 auto;
      font-size: 1.05rem;
    }

    /* Contact Info Cards */
    .contact-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-bottom: 4rem;
    }

    .contact-card {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 2rem 1.5rem;
      text-align: center;
      box-shadow: var(--shadow-card);
      transition: var(--transition);
      border-bottom: 4px solid transparent;
      text-decoration: none;
    }

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

    .contact-card-icon {
      width: 65px;
      height: 65px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 1rem;
      transition: var(--transition);
    }

    .contact-card.phone .contact-card-icon {
      background: #EFF6FF;
    }

    .contact-card.whatsapp .contact-card-icon {
      background: #F0FDF4;
    }

    .contact-card.email .contact-card-icon {
      background: #FFF7ED;
    }

    .contact-card.address .contact-card-icon {
      background: #FFF0F0;
    }

    .contact-card:hover .contact-card-icon {
      background: var(--gradient-primary);
    }

    .contact-card h4 {
      color: var(--text-dark);
      margin-bottom: 0.5rem;
      font-size: 1rem;
    }

    .contact-card p {
      font-size: 0.88rem;
      color: #666;
      line-height: 1.6;
    }

    .contact-card .contact-link {
      color: var(--primary);
      font-weight: 600;
      font-size: 0.9rem;
      display: block;
      margin-top: 0.5rem;
    }

    /* Main Contact Layout */
    .contact-main-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    /* Contact Form */
    .contact-form-card {
      background: var(--white);
      border-radius: var(--border-radius-lg);
      padding: 3rem;
      box-shadow: var(--shadow-lg);
    }

    .contact-form-header {
      margin-bottom: 2rem;
    }

    .contact-form-header h2 {
      margin-top: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .contact-form-header p {
      font-size: 0.95rem;
    }

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

    .form-submit-btn {
      width: 100%;
      padding: 1rem;
      background: var(--gradient-primary);
      color: var(--white);
      border: none;
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
      letter-spacing: 0.03em;
    }

    .form-submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 140, 66, 0.5);
    }

    /* Contact Sidebar */
    .contact-sidebar {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .info-card {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 2rem;
      box-shadow: var(--shadow-card);
    }

    .info-card h3 {
      font-size: 1.2rem;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      padding-bottom: 0.75rem;
      border-bottom: 2px solid var(--primary-light);
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 0.75rem 0;
      border-bottom: 1px solid #f5f5f5;
    }

    .info-item:last-child {
      border-bottom: none;
    }

    .info-icon {
      width: 40px;
      height: 40px;
      background: var(--primary-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .info-content {
      flex: 1;
    }

    .info-label {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 0.2rem;
    }

    .info-value {
      color: var(--text-dark);
      font-size: 0.9rem;
      font-weight: 500;
    }

    .info-value a {
      color: var(--text-dark);
    }

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

    /* Map section */
    .map-section {
      background: var(--bg-light);
      padding: 4rem 0;
    }

    .map-container {
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      height: 420px;
      background: #e8e0d8;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .map-placeholder {
      text-align: center;
      color: #888;
    }

    .map-placeholder .map-icon {
      font-size: 4rem;
      margin-bottom: 1rem;
      display: block;
    }

    .map-placeholder h3 {
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .map-placeholder p {
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .map-embed {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* Quick Connect section */
    .quick-connect {
      background: var(--gradient-dark);
      padding: 3rem 0;
    }

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

    .quick-connect-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--border-radius);
      padding: 2rem;
      text-align: center;
      transition: var(--transition);
      text-decoration: none;
    }

    .quick-connect-card:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-4px);
      border-color: var(--primary);
    }

    .quick-connect-card .icon {
      font-size: 2.5rem;
      display: block;
      margin-bottom: 0.75rem;
    }

    .quick-connect-card h4 {
      color: var(--white);
      margin-bottom: 0.4rem;
    }

    .quick-connect-card p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.85rem;
    }

    .quick-connect-card .link-text {
      color: var(--accent);
      font-size: 0.9rem;
      font-weight: 600;
      margin-top: 0.5rem;
      display: block;
    }

    /* Business hours */
    .hours-grid {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.88rem;
      padding: 0.4rem 0;
      border-bottom: 1px dashed #f0f0f0;
    }

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

    .hours-day {
      color: #666;
    }

    .hours-time {
      color: var(--text-dark);
      font-weight: 600;
    }

    .hours-time.closed {
      color: #ccc;
    }

    @media (max-width: 1024px) {
      .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .quick-connect-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .contact-cards-grid {
        grid-template-columns: 1fr 1fr;
      }

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

      .contact-form-card {
        padding: 2rem 1.5rem;
      }

      .quick-connect-grid {
        grid-template-columns: 1fr;
      }

      .map-container {
        height: 320px;
      }
    }

    @media (max-width: 480px) {
      .contact-cards-grid {
        grid-template-columns: 1fr;
      }

      .contact-form-card {
        padding: 1.5rem 1.25rem;
      }

      .map-container {
        height: 260px;
      }

      .map-section {
        padding: 2.5rem 0;
      }

      .quick-connect {
        padding: 2rem 0;
      }

      .quick-connect-card {
        padding: 1.5rem;
      }

      .info-card {
        padding: 1.5rem;
      }
    }

/* Extracted from founder.html */
/* â”€â”€ FOUNDER PAGE STYLES â”€â”€ */

    /* Hero Override */
    .founder-page-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 72px;
    }

    .founder-hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #1a0f05 0%, #2c1a0e 40%, #3d2010 100%);
    }

    .founder-hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('images/founder_portrait.png');
      background-size: cover;
      background-position: center top;
      opacity: 0.25;
    }

    .founder-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right,
          rgba(26, 15, 5, 0.97) 45%,
          rgba(26, 15, 5, 0.5) 70%,
          transparent 100%);
    }

    .founder-hero-content {
      position: relative;
      z-index: 2;
      padding: 4rem 0;
      width: 100%;
    }

    .founder-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 2rem 1.5rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-stat-item {
      flex: 0 0 calc(33.333% - 1.5rem);
      text-align: center;
      min-width: 140px;
    }

    .founder-hero-text .section-label {
      background: rgba(255, 140, 66, 0.2);
      color: var(--accent);
    }

    .founder-hero-text h1 {
      color: var(--white);
      font-size: clamp(2.5rem, 5vw, 3.8rem);
      margin: 1rem 0;
    }

    .founder-hero-text h1 span {
      color: var(--primary);
    }

    .founder-hero-text .subtitle {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .founder-hero-name {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      color: var(--accent);
      font-style: italic;
      margin-bottom: 0.3rem;
    }

    .founder-hero-title-label {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.5);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .founder-img-frame {
      position: relative;
      z-index: 2;
    }

    .founder-img-portrait {
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      overflow: hidden;
      width: 380px;
      height: 450px;
      margin: 0 auto;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
      border: 5px solid rgba(255, 140, 66, 0.4);
    }

    .founder-img-portrait img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .founder-img-ring {
      position: absolute;
      inset: -20px;
      border: 2px dashed rgba(255, 140, 66, 0.3);
      border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
      animation: spin-slow 20s linear infinite;
    }

    @keyframes spin-slow {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .founder-img-badge {
      position: absolute;
      bottom: 0;
      right: -2rem;
      background: var(--gradient-primary);
      color: var(--white);
      padding: 1rem 1.2rem;
      border-radius: var(--border-radius);
      text-align: center;
      box-shadow: var(--shadow-md);
    }

    /* Story Section */
    .founder-story-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 4rem;
      align-items: start;
    }

    .founder-story-img {
      position: sticky;
      top: 100px;
    }

    .founder-story-img img {
      width: 100%;
      border-radius: var(--border-radius-lg);
      height: auto;
      object-fit: contain;
      box-shadow: var(--shadow-lg);
    }

    .founder-story-img-caption {
      text-align: center;
      margin-top: 1rem;
      color: #888;
      font-size: 0.85rem;
      font-style: italic;
    }

    .founder-story-content h2 {
      margin-bottom: 1.2rem;
    }

    .founder-story-content p {
      margin-bottom: 1.2rem;
    }

    /* Values */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .value-card {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 1.8rem;
      box-shadow: var(--shadow-card);
      border-left: 4px solid var(--primary);
      transition: var(--transition);
    }

    .value-card:hover {
      transform: translateX(6px);
      box-shadow: var(--shadow-md);
    }

    .value-card h4 {
      color: var(--primary);
      font-family: var(--font-heading);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .value-card p {
      font-size: 0.9rem;
    }

    /* Vision cards */
    .vision-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }

    .vision-card {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 2rem;
      box-shadow: var(--shadow-card);
      text-align: center;
      transition: var(--transition);
    }

    .vision-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .vision-icon {
      width: 65px;
      height: 65px;
      background: var(--primary-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 1.2rem;
    }

    .vision-card h4 {
      margin-bottom: 0.75rem;
    }

    .vision-card p {
      font-size: 0.9rem;
    }

    /* Personal Message */
    .personal-message-section {
      background: linear-gradient(135deg, #1a0f05, #2c1a0e);
      position: relative;
      overflow: hidden;
    }

    .personal-message-section::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 140, 66, 0.1), transparent 70%);
      border-radius: 50%;
    }

    .personal-msg-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 3rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .personal-msg-img img {
      width: 100%;
      border-radius: var(--border-radius-lg);
      height: 350px;
      object-fit: cover;
      border: 4px solid rgba(255, 140, 66, 0.3);
    }

    .personal-msg-content h2 {
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .personal-msg-content h2 span {
      color: var(--primary);
    }

    .message-block {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 140, 66, 0.2);
      border-radius: var(--border-radius);
      padding: 2rem;
      position: relative;
    }

    .message-block::before {
      content: '"';
      position: absolute;
      top: -20px;
      left: 2rem;
      font-family: var(--font-heading);
      font-size: 6rem;
      color: var(--primary);
      opacity: 0.4;
      line-height: 1;
    }

    .message-block p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.05rem;
      line-height: 1.9;
      font-style: italic;
    }

    .message-sig {
      margin-top: 1.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .message-sig-line {
      flex: 1;
      height: 1px;
      background: rgba(255, 140, 66, 0.3);
    }

    .message-sig-text {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      color: var(--accent);
      font-style: italic;
    }

    @media (max-width: 1024px) {
      .founder-page-hero {
        min-height: auto;
        padding-top: 80px;
      }

      .founder-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .founder-img-portrait {
        width: 280px;
        height: 340px;
      }

      .founder-img-badge {
        right: -0.5rem;
      }

      .founder-story-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
      }

      .founder-story-content {
        display: contents;
      }

      .founder-story-content>h3 {
        order: 1;
      }

      .founder-story-content>p:nth-of-type(1) {
        order: 2;
        margin-bottom: 1.5rem !important;
      }

      .founder-story-img {
        position: static;
        order: 3;
        width: 100%;
        margin-bottom: 2rem;
      }

      .founder-story-content>p:nth-of-type(2) {
        order: 4;
      }

      .founder-story-content>.highlight-box {
        order: 5;
      }



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

      .personal-msg-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .founder-page-hero {
        padding-top: 80px;
      }

      .founder-hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .founder-hero-text h1 {
        font-size: clamp(2rem, 7vw, 2.8rem);
      }

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

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

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

      .hero-stat-item {
        flex: 0 0 calc(50% - 1.5rem);
      }

      .personal-msg-img img {
        height: 240px;
      }

      .message-block {
        padding: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .founder-img-portrait {
        width: 220px;
        height: 270px;
      }

      .founder-img-badge {
        right: 0;
        bottom: -0.5rem;
        padding: 0.75rem 1rem;
      }

      .founder-img-ring {
        display: none;
      }

      .founder-hero-text .subtitle {
        font-size: 0.95rem;
      }



      .value-card {
        padding: 1.5rem 1.25rem;
      }

      .vision-card {
        padding: 1.5rem;
      }
    }

/* Extracted from machines.html */
/* â”€â”€ MACHINES PAGE â”€â”€ */

    /* Overview grid */
    .machine-overview-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .machine-overview-content p {
      margin-bottom: 1.2rem;
    }

    .machine-main-img {
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      height: auto;
      box-shadow: var(--shadow-lg);
      position: relative;
    }

    .machine-main-img img {
      width: 100%;
      height: auto;
      display: block;
    }

    .machine-main-img::after {
      content: 'Traditional Handloom';
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gradient-primary);
      color: var(--white);
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 700;
      white-space: nowrap;
      letter-spacing: 0.05em;
    }

    /* How it works steps */
    .how-works-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      counter-reset: step-counter;
    }

    .how-works-card {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 2rem 1.5rem;
      box-shadow: var(--shadow-card);
      text-align: center;
      transition: var(--transition);
      position: relative;
      counter-increment: step-counter;
    }

    .how-works-card::before {
      content: counter(step-counter, decimal-leading-zero);
      position: absolute;
      top: 1rem;
      right: 1rem;
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary-light);
      line-height: 1;
    }

    .how-works-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .how-works-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .how-works-card h4 {
      margin-bottom: 0.75rem;
    }

    .how-works-card p {
      font-size: 0.88rem;
    }

    /* Arrow connectors */
    .how-works-connector {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: var(--primary);
      padding-top: 1rem;
    }

    /* Components section */
    .components-section {
      background: linear-gradient(135deg, #fdf3ec, #fff9f5);
    }

    .component-detail-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 4rem;
      padding-bottom: 4rem;
      border-bottom: 1px solid rgba(255, 140, 66, 0.15);
    }

    .component-detail-grid:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .component-detail-grid:nth-child(even)>*:first-child {
      order: 2;
    }

    .component-detail-grid:nth-child(even)>*:last-child {
      order: 1;
    }

    .component-img {
      border-radius: var(--border-radius);
      overflow: hidden;
      height: auto;
      box-shadow: var(--shadow-md);
    }

    .component-img img {
      width: 100%;
      height: auto;
      display: block;
      transition: var(--transition-slow);
    }

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

    .component-content h3 {
      margin-bottom: 1rem;
    }

    .component-content p {
      margin-bottom: 1rem;
    }

    .component-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-top: 1.2rem;
    }

    .spec-item {
      background: var(--white);
      border-radius: 8px;
      padding: 0.75rem;
      box-shadow: var(--shadow-card);
    }

    .spec-label {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: block;
    }

    .spec-value {
      font-size: 0.9rem;
      color: var(--text-dark);
      font-weight: 500;
    }

    /* Importance section */
    .importance-section {
      background: var(--white);
    }

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

    .importance-card {
      background: var(--bg-light);
      border-radius: var(--border-radius);
      padding: 2rem;
      text-align: center;
      transition: var(--transition);
      border-top: 4px solid transparent;
    }

    .importance-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
      border-top-color: var(--primary);
      background: var(--white);
    }

    .importance-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .importance-card h4 {
      margin-bottom: 0.75rem;
    }

    .importance-card p {
      font-size: 0.9rem;
    }

    /* Comparison */
    .comparison-section {
      background: var(--bg-light);
    }

    .comparison-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .trad-box,
    .modern-box {
      background: var(--white);
      border-radius: var(--border-radius);
      padding: 2rem;
      box-shadow: var(--shadow-card);
      text-align: center;
    }

    .trad-box {
      border-top: 5px solid var(--primary);
    }

    .modern-box {
      border-top: 5px solid var(--secondary);
    }

    .trad-box h3 {
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .modern-box h3 {
      color: var(--secondary);
      margin-bottom: 1rem;
    }

    .trad-box ul,
    .modern-box ul {
      text-align: left;
      padding-left: 1rem;
      color: #555;
      font-size: 0.9rem;
      line-height: 2.2;
    }

    @media (max-width: 1024px) {
      .machine-overview-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .machine-main-img {
        height: 360px;
      }

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

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

      .comparison-intro {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .component-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2.5rem;
      }

      .component-detail-grid:nth-child(even)>*:first-child {
        order: unset;
      }

      .component-detail-grid:nth-child(even)>*:last-child {
        order: unset;
      }

      .component-img {
        height: auto;
      }

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

      .how-works-grid {
        grid-template-columns: 1fr 1fr;
      }

      .machine-main-img {
        height: auto;
      }
    }

    @media (max-width: 480px) {
      .how-works-grid {
        grid-template-columns: 1fr;
      }

      .component-img {
        height: auto;
      }

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

      .importance-card {
        padding: 1.5rem;
      }

      .how-works-card {
        padding: 1.5rem 1.25rem;
      }

      .machine-main-img {
        height: auto;
      }
    }

/* Extracted from process.html */
/* â”€â”€ PROCESS PAGE STYLES â”€â”€ */

    /* Full-width Timeline Layout */
    .process-timeline {
      position: relative;
    }

    .process-timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .process-step {
      display: grid;
      grid-template-columns: 1fr 80px 1fr;
      gap: 2rem;
      align-items: center;
      margin-bottom: 4rem;
      opacity: 0;
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .process-step:nth-child(odd) {
      transform: translateX(-30px);
    }

    .process-step:nth-child(even) {
      transform: translateX(30px);
    }

    .process-step.visible {
      opacity: 1;
      transform: translateX(0) !important;
    }

    /* Odd steps: content left, image right */
    .process-step:nth-child(odd) .step-content {
      order: 1;
      text-align: right;
    }

    .process-step:nth-child(odd) .step-center {
      order: 2;
    }

    .process-step:nth-child(odd) .step-media {
      order: 3;
    }

    /* Even steps: image left, content right */
    .process-step:nth-child(even) .step-content {
      order: 3;
      text-align: left;
    }

    .process-step:nth-child(even) .step-center {
      order: 2;
    }

    .process-step:nth-child(even) .step-media {
      order: 1;
    }

    .step-content {
      padding: 1rem;
    }

    .step-number-badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--primary);
      background: var(--primary-light);
      padding: 0.3rem 1rem;
      border-radius: 50px;
      margin-bottom: 0.75rem;
      text-transform: uppercase;
    }

    .step-content h3 {
      font-size: 1.5rem;
      color: var(--text-dark);
      margin-bottom: 0.75rem;
      font-family: var(--font-heading);
    }

    .step-content p {
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .step-detail {
      margin-top: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .step-detail-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      color: #555;
      font-weight: 500;
    }

    .process-step:nth-child(odd) .step-detail {
      align-items: flex-end;
    }

    .step-detail-item::before {
      content: 'âœ“';
      width: 18px;
      height: 18px;
      background: var(--primary);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .step-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 1;
    }

    .step-node {
      width: 80px;
      height: 80px;
      background: var(--gradient-primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 8px var(--primary-light), 0 6px 25px rgba(255, 140, 66, 0.45);
      flex-shrink: 0;
    }

    .step-node-num {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--white);
    }

    .step-media {
      border-radius: var(--border-radius);
      overflow: hidden;
      height: auto;
      box-shadow: var(--shadow-md);
    }

    .step-media img {
      width: 100%;
      height: auto;
      display: block;
      transition: var(--transition-slow);
    }

    .step-media:hover img {
      transform: scale(1.06);
    }

    /* Intro strip */
    .process-intro-strip {
      background: linear-gradient(135deg, #fdf3ec, #fff9f5);
      padding: 3rem 0;
    }

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

    .process-intro-item {
      padding: 1.5rem 1rem;
    }

    .process-intro-icon {
      font-size: 2rem;
      margin-bottom: 0.75rem;
    }

    .process-intro-item h4 {
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }

    .process-intro-item p {
      font-size: 0.82rem;
    }

    /* Final product banner */
    .final-product {
      background: var(--gradient-dark);
      position: relative;
      overflow: hidden;
    }

    .final-product::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('images/saree_collection.png');
      background-size: cover;
      background-position: center;
      opacity: 0.15;
    }

    .final-product-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .final-product-content h2 {
      color: var(--white);
      margin-bottom: 1rem;
    }

    .final-product-content p {
      color: rgba(255, 255, 255, 0.75);
      max-width: 600px;
      margin: 0 auto 2rem;
    }

    @media (max-width: 900px) {
      .process-timeline::before {
        display: none;
      }

      .process-step {
        grid-template-columns: 1fr;
        text-align: center !important;
        margin-bottom: 2.5rem;
      }

      .process-step:nth-child(odd) .step-content,
      .process-step:nth-child(even) .step-content {
        order: 2;
        text-align: center !important;
      }

      .process-step:nth-child(odd) .step-media,
      .process-step:nth-child(even) .step-media {
        order: 3;
      }

      .step-center {
        order: 1;
      }

      .step-detail {
        align-items: center !important;
      }

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

      .step-media {
        height: auto;
      }
    }

    @media (max-width: 768px) {
      .step-content {
        padding: 0.5rem;
      }

      .step-content h3 {
        font-size: 1.25rem;
      }

      .step-node {
        width: 64px;
        height: 64px;
      }

      .step-node-num {
        font-size: 1.3rem;
      }

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

      .process-intro-strip {
        padding: 2rem 0;
      }
    }

    @media (max-width: 480px) {
      .process-intro-grid {
        grid-template-columns: 1fr 1fr;
      }

      .process-intro-item {
        padding: 1rem 0.5rem;
      }

      .step-media {
        height: auto;
      }

      .step-detail-item {
        font-size: 0.8rem;
      }
    }

/* Extracted from product.html */
/* â”€â”€ PRODUCT DETAILS PAGE â”€â”€ */
    .product-hero {
      padding: 8rem 0 3rem;
      background: linear-gradient(135deg, #fdf3ec, #fff9f5);
      text-align: center;
    }
    .product-hero h1 {
      font-family: var(--font-heading, 'Playfair Display', serif);
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    
    .product-details-section {
      padding: 5rem 0;
    }
    .product-details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    
    .product-gallery {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .main-image-container {
      width: 100%;
      border-radius: var(--border-radius, 12px);
      overflow: hidden;
      background: #fff;
      box-shadow: var(--shadow-card);
    }
    .main-image-container img {
      width: 100%;
      aspect-ratio: 3 / 4;
      object-fit: contain;
      display: block;
      transition: transform 0.3s ease;
    }
    .main-image-container:hover img {
      transform: scale(1.03);
    }
    
    .thumbnail-gallery {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
      flex-wrap: wrap;
    }
    .thumbnail {
      width: 80px;
      height: 80px;
      border-radius: var(--border-radius, 8px);
      cursor: pointer;
      object-fit: cover;
      border: 2px solid transparent;
      opacity: 0.6;
      transition: all 0.3s ease;
      background: #fff;
    }
    .thumbnail:hover, .thumbnail.active {
      opacity: 1;
      border-color: var(--primary, #FF8C42);
    }
    

    .product-info {
      padding: 1rem 0;
    }
    .product-badge {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--white);
      background: var(--gradient-primary);
      padding: 0.35rem 1rem;
      border-radius: 50px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .product-title {
      font-family: var(--font-heading, 'Playfair Display', serif);
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      color: var(--text-dark, #2d2d2d);
    }
    .product-subtitle {
      font-size: 1.1rem;
      color: #777;
      margin-bottom: 1.5rem;
    }
    
    .product-description {
      font-size: 1.05rem;
      color: #555;
      line-height: 1.7;
      margin-bottom: 2rem;
    }
    
    .product-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    
    @media (max-width: 992px) {
      .product-details-grid {
        gap: 2rem;
      }
    }
    
    @media (max-width: 768px) {
      .product-details-grid {
        grid-template-columns: 1fr;
      }
      .product-title {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 480px) {
    }

