/* ===== XPRESSION FASHION — MASTER STYLESHEET ===== */
/* Color Palette: Deep maroon, gold accents, cream white */

:root {
  --maroon: #3C0A14;
  --maroon-dark: #280710;
  --maroon-light: #5a1020;
  --gold: #C9A84C;
  --gold-light: #e4c87a;
  --gold-pale: #f5e9c8;
  --cream: #FAF7F2;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-light: #666;
  --border: #e8ddd0;
  --shadow: 0 8px 40px rgba(60,10,20,0.12);
  --shadow-lg: 0 20px 60px rgba(60,10,20,0.18);
  --radius: 4px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.03em; }
em { font-style: italic; color: var(--gold); }
p { margin-bottom: 1rem; color: var(--text-light); }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); font-weight: 600; }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }
.section-title { color: var(--maroon); margin-bottom: 20px; }
.section-title.light { color: var(--white); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.grid-2.reverse { direction: rtl; }
.grid-2.reverse > * { direction: ltr; }
.grid-2.gap-lg { gap: 80px; }
.center { text-align: center; }
.mt { margin-top: 1.8rem; display: inline-block; }
.mt2 { margin-top: 2.5rem; }

.bg-maroon { background: var(--maroon); }
.bg-cream { background: var(--cream); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}
.btn-primary.large { padding: 18px 48px; font-size: 0.95rem; }
.btn-primary.full { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
#site-header.scrolled {
  background: var(--maroon-dark);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--maroon-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 2px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo-tagline {
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav .nav-cta {
  background: var(--gold);
  color: var(--maroon-dark);
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
}
.main-nav .nav-cta::after { display: none; }
.main-nav .nav-cta:hover { background: var(--gold-light); color: var(--maroon-dark); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  background: var(--maroon-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.nav-cta { color: var(--gold); }
.mobile-nav.open { display: flex; }

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.hero-slides { height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-content {
  padding: 0 60px;
  max-width: 700px;
  animation: slideUp 0.9s ease forwards;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .hero-sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero-title {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
}
.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 36px;
  letter-spacing: 0.06em;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active { background: var(--gold); width: 28px; border-radius: 4px; }
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--maroon); }
#heroPrev { left: 24px; }
#heroNext { right: 24px; }

/* ===== HIGHLIGHTS BAR ===== */
.highlights-bar {
  background: var(--maroon-dark);
  padding: 0;
  border-top: 3px solid var(--gold);
}
.highlights-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1;
  min-width: 200px;
}
.highlight-item:last-child { border-right: none; }
.hi-icon { font-size: 1.8rem; }
.highlight-item strong { font-size: 1.05rem; display: block; color: var(--gold-light); }
.highlight-item > div { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* ===== ABOUT TEASER ===== */
.about-imgs {
  position: relative;
  height: 480px;
}
.about-imgs .img-main {
  width: 85%;
  height: 370px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-imgs .img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

/* ===== MANUFACTURING ===== */
.mfg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mfg-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.mfg-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.mfg-img { height: 220px; overflow: hidden; }
.mfg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mfg-card:hover .mfg-img img { transform: scale(1.06); }
.mfg-body { padding: 24px; }
.mfg-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.3);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.mfg-body h3 { color: var(--white); margin-bottom: 10px; font-size: 1.2rem; }
.mfg-body p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 0; }

/* ===== PRODUCTS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  height: 360px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.product-card:nth-child(1) { grid-column: span 2; }
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(60,10,20,0.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transform: translateY(10px);
  opacity: 0.9;
  transition: var(--transition);
}
.product-card:hover .product-overlay { transform: translateY(0); opacity: 1; }
.product-overlay h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 6px; }
.product-overlay p { color: var(--gold-light); font-size: 0.82rem; margin: 0; letter-spacing: 0.05em; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-4px); }
.why-card span { font-size: 2rem; display: block; margin-bottom: 14px; }
.why-card h4 { color: var(--maroon); margin-bottom: 8px; font-size: 0.95rem; }
.why-card p { font-size: 0.82rem; margin: 0; }

/* ===== DDU SECTION ===== */
.ddu-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ddu-imgs img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.stat-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}
.stat-item.gold strong { color: var(--gold); }
.stat-item span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
.stat-item.gold span { color: rgba(255,255,255,0.6); }

/* ===== REVIEW SLIDER ===== */
.review-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.review-slides { min-height: 200px; }
.review-slide {
  display: none;
  animation: fadeInR 0.6s ease;
}
.review-slide.active { display: block; }
@keyframes fadeInR {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.stars { font-size: 1.4rem; color: var(--gold); margin-bottom: 20px; }
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: rgba(255,255,255,0.9);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
}
.reviewer { color: var(--gold-light); font-size: 0.85rem; letter-spacing: 0.08em; }
.review-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.rdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.rdot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.review-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}
.review-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--maroon); }
.rprev { left: -60px; }
.rnext { right: -60px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--gold-pale);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 72px 24px;
}
.cta-band h2 { color: var(--maroon); margin-bottom: 14px; }
.cta-band p { font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--maroon-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact p { font-size: 0.85rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding-top: var(--header-h);
}
.page-hero-content {
  padding: 60px;
  max-width: 700px;
}
.page-hero .hero-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
.breadcrumb { margin-top: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--gold-light); }

/* ===== ABOUT PAGE ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--maroon); box-shadow: var(--shadow); transform: translateY(-4px); }
.val-icon { font-size: 2.2rem; margin-bottom: 16px; }
.value-card h3 { color: var(--maroon); font-size: 1.2rem; margin-bottom: 12px; }

.facility-list { padding: 0; margin: 24px 0; }
.facility-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text); }

.process-steps {
  display: flex;
  align-items: center;
  gap: 16px;
}
.process-step { flex: 1; text-align: center; }
.process-step img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 20px;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.process-step h4 { color: var(--white); margin-bottom: 8px; font-size: 1.1rem; }
.process-step p { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin: 0; }
.process-arrow { font-size: 2rem; color: var(--gold); flex-shrink: 0; }

.ddu-full { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 48px; }
.ddu-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ddu-img-grid img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius); }

/* ===== GALLERY PAGE ===== */
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.filter-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-light);
  padding: 10px 24px;
  border-radius: 40px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(60,10,20,0.7);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.gallery-item.hidden { display: none; }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 20px;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lb-img-wrap { text-align: center; max-width: 80vw; }
.lb-img-wrap img {
  max-height: 80vh;
  max-width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
#lbCaption { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 16px; }
.lb-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}
.lb-close:hover { color: var(--gold); }
.lb-prev, .lb-next {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.lb-prev:hover, .lb-next:hover { background: var(--gold); border-color: var(--gold); color: var(--maroon); }

/* ===== CONTACT PAGE ===== */
.contact-section { padding-top: 72px; }
.contact-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--gold); background: var(--cream); }
.cc-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.contact-card h4 { color: var(--maroon); margin-bottom: 4px; font-size: 0.88rem; }
.contact-card p { margin: 0; font-size: 0.85rem; }
.contact-card a { color: var(--maroon); font-weight: 500; }
.contact-card a:hover { color: var(--gold); }

.form-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.form-card h3 { color: var(--maroon); margin-bottom: 8px; }
.form-card > p { margin-bottom: 28px; font-size: 0.88rem; }

.enquiry-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.err { font-size: 0.75rem; color: #c0392b; min-height: 16px; }

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.check-label input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--maroon); }

.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
}

.map-section { position: relative; }
.map-placeholder { position: relative; }
.map-info-band {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 28px 24px;
  background: var(--maroon);
  color: white;
  text-align: center;
}
.map-info-item strong { display: block; color: var(--gold-light); font-size: 0.85rem; margin-bottom: 4px; }
.map-info-item { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay1 { transition-delay: 0.12s; }
.delay2 { transition-delay: 0.24s; }
.delay3 { transition-delay: 0.36s; }
.delay4 { transition-delay: 0.48s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:nth-child(1) { grid-column: span 1; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-2.reverse { grid-template-columns: 1fr; direction: ltr; }
  .about-imgs { height: 320px; }
  .mfg-grid { grid-template-columns: 1fr; }
  .ddu-full { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .process-arrow { transform: rotate(90deg); }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stat-row { flex-wrap: wrap; gap: 20px; }
  .rprev { left: -20px; }
  .rnext { right: -20px; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .hero-content { padding: 0 28px; }
  .highlights-bar .container { flex-direction: column; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .page-hero-content { padding: 36px 24px; }
  .rprev { left: 0; }
  .rnext { right: 0; }
}
