/* =============================================
   JINAL COLLECTION – style.css
   Aesthetic: Luxury Editorial (warm ivory + deep navy + gold)
   ============================================= */

/* ── CSS Variables ─────────────────────────── */
:root {
  --navy:      #0d1b2a;
  --navy-mid:  #1a2d42;
  --gold:      #b8860b;
  --gold-lt:   #d4a017;
  --gold-glow: rgba(184,134,11,0.18);
  --ivory:     #faf7f2;
  --ivory-dk:  #f0ebe2;
  --cream:     #ede7dc;
  --warm-gray: #8a8279;
  --text-dark: #1a1208;
  --text-mid:  #4a3f2f;
  --text-light:#7a7060;
  --white:     #ffffff;
  --green-wa:  #25d366;
  --red-err:   #c0392b;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
  --shadow-gold: 0 4px 20px rgba(184,134,11,0.25);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 70px;
}

/* ── Reset & Base ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Container ──────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Spacing ────────────────────────── */
.section { padding: 100px 0; }
@media (max-width: 768px) { .section { padding: 72px 0; } }

/* ── Section Header ─────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.section-header h2 em { font-style: italic; color: var(--gold); }
.section-sub {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--text-light);
  font-size: 1rem;
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-wa {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}
.btn-wa:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Navbar ─────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,134,11,0.2);
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.navbar.scrolled {
  background: rgba(13,27,42,0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.logo-j {
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 400;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold); background: rgba(184,134,11,0.1); }
.btn-wa-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--green-wa);
  color: var(--white);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 500;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-wa-nav:hover { background: #1ebe5a; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  pointer-events: none;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 0 80px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(184,134,11,0.04) 40px,
      rgba(184,134,11,0.04) 41px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(184,134,11,0.03) 40px,
      rgba(184,134,11,0.03) 41px
    );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,134,11,0.15);
  border: 1px solid rgba(184,134,11,0.35);
  color: var(--gold-lt);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
.star-icon { color: var(--gold-lt); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 0.83rem;
}
/* ── Marquee Strip ──────────────────────────── */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 6px;
}
.marquee-track .sep { color: rgba(255,255,255,0.5); font-size: 0.65rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── About ──────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── About – real photo ── */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #e8e4de;
}
.about-real-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 5%;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.about-img-wrap:hover .about-real-img {
  transform: scale(1.02);
}
.about-badge-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  border: 2.5px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
}
@media (max-width: 768px) {
  .about-real-img { aspect-ratio: 4/3; object-position: center 15%; }
  .about-badge-float { right: 12px; bottom: 12px; }
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.fabric-visual {
  width: 100%;
  height: 100%;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.fabric-stripe {
  flex: 1;
  transition: var(--transition);
}
.s1 { background: linear-gradient(135deg, #1a2d42, #0d1b2a); }
.s2 { background: linear-gradient(135deg, #b8860b, #8b6508); }
.s3 { background: linear-gradient(135deg, #2c4a6e, #1a2d42); }
.s4 { background: linear-gradient(135deg, #d4a017, #b8860b); }
.fabric-overlay-text {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  line-height: 1.3;
}
.rating-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.rating-stars { display: block; color: var(--gold); font-size: 1rem; margin: 4px 0; }
.rating-label { display: block; font-size: 0.75rem; color: var(--text-light); font-weight: 500; }
.about-text .section-eyebrow { text-align: left; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-text h2 em { font-style: italic; color: var(--gold); }
.about-desc {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 0.97rem;
  line-height: 1.75;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.why-card {
  background: var(--ivory);
  border: 1px solid var(--ivory-dk);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.why-icon { font-size: 1.6rem; display: block; margin-bottom: 10px; }
.why-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

/* ── Products ───────────────────────────────── */
.products { background: var(--ivory); }
.tab-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 28px;
  border-radius: 99px;
  border: 2px solid var(--cream);
  background: var(--white);
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.tab-content { animation: fadeIn 0.4s ease; }
.tab-content.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ivory-dk);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184,134,11,0.3);
}
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.product-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.87rem;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  margin-top: auto;
}
.product-cta:hover { border-bottom-color: var(--gold); }
.product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-placeholder { transform: scale(1.05); }

/* ── Product cards – real photos ─────────────── */
.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .product-real-img {
  transform: scale(1.06);
}

/* Fabric texture images — square crop, centered */
.fabric-img {
  object-fit: cover;
  object-position: center center;
}

/* Suiting mannequin cards — taller portrait ratio */
.portrait-wrap {
  aspect-ratio: 3/4 !important;
}
.portrait-wrap .product-real-img {
  object-position: center top;
}

/* ── Sherwani cards — royal styling ─────────── */
.sherwani-img {
  object-position: center 5%;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .sherwani-img {
  transform: scale(1.04);
}

/* Bottom overlay strip — slides up on hover */
.sherwani-overlay-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(13,27,42,0.95) 0%,
    rgba(13,27,42,0.7) 60%,
    transparent 100%
  );
  padding: 28px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 3;
}
.product-card:hover .sherwani-overlay-strip {
  transform: translateY(0);
}
.sherwani-icon {
  font-size: 1.4rem;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 6px rgba(184,134,11,0.8));
}
.sherwani-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold-lt);
  letter-spacing: 0.04em;
  text-align: center;
}
.sherwani-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Silk strip — peach/rose gold tone */
.silk-strip {
  background: linear-gradient(
    to top,
    rgba(30,15,5,0.95) 0%,
    rgba(40,20,10,0.7) 60%,
    transparent 100%
  );
}
.silk-strip .sherwani-name { color: #f4c88a; }

/* Brocade strip — deep gold */
.brocade-strip {
  background: linear-gradient(
    to top,
    rgba(10,8,2,0.97) 0%,
    rgba(20,15,5,0.75) 60%,
    transparent 100%
  );
}
.brocade-strip .sherwani-name { color: #ffd700; }
.brocade-strip .sherwani-icon {
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.9));
}

/* Gold shimmer border on sherwani cards */
.product-card:has(.sherwani-img) {
  border-color: rgba(184,134,11,0.2);
}
.product-card:has(.sherwani-img):hover {
  border-color: rgba(184,134,11,0.55);
  box-shadow: 0 20px 56px rgba(184,134,11,0.18), var(--shadow-lg);
}

/* ── Uniform cards ───────────────────────────── */
.uniform-wrap {
  aspect-ratio: 1/1 !important;
  overflow: hidden;
}
.uniform-img {
  object-position: center center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .uniform-img {
  transform: scale(1.08);
}

/* Full overlay — slides up from bottom on hover */
.uniform-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0;
  z-index: 3;
  pointer-events: none;
}
.uniform-overlay-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px 18px;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.product-card:hover .uniform-overlay-content {
  transform: translateY(0);
}
.uniform-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
  line-height: 1;
}
.uniform-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.uniform-desc {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  text-align: center;
}

/* School — bright navy/blue academic feel */
.school-theme {
  background: linear-gradient(135deg, rgba(26,58,120,0.95), rgba(13,27,80,0.98));
  border-top: 2px solid rgba(100,160,255,0.5);
}
.school-theme .uniform-title { color: #a8d4ff; }
.school-theme .uniform-desc  { color: rgba(200,225,255,0.8); }

/* Corporate — deep charcoal professional */
.corporate-theme {
  background: linear-gradient(135deg, rgba(13,27,42,0.97), rgba(30,45,65,0.98));
  border-top: 2px solid rgba(184,134,11,0.6);
}
.corporate-theme .uniform-title { color: var(--gold-lt); }
.corporate-theme .uniform-desc  { color: rgba(255,255,255,0.65); }

/* Industrial — dark steel/iron feel */
.industrial-theme {
  background: linear-gradient(135deg, rgba(28,28,28,0.97), rgba(50,50,50,0.98));
  border-top: 2px solid rgba(150,150,150,0.5);
}
.industrial-theme .uniform-title { color: #d0d0d0; }
.industrial-theme .uniform-desc  { color: rgba(200,200,200,0.7); }

/* Card border themes */
.product-card:has(.school-theme):hover {
  border-color: rgba(100,160,255,0.4);
  box-shadow: 0 20px 48px rgba(26,58,120,0.2), var(--shadow-lg);
}
.product-card:has(.corporate-theme):hover {
  border-color: rgba(184,134,11,0.45);
  box-shadow: 0 20px 48px rgba(184,134,11,0.15), var(--shadow-lg);
}
.product-card:has(.industrial-theme):hover {
  border-color: rgba(120,120,120,0.4);
  box-shadow: 0 20px 48px rgba(80,80,80,0.2), var(--shadow-lg);
}
.satin-img {
  filter: brightness(1.06) contrast(1.05) saturate(0.9);
}
.product-card:hover .satin-img {
  filter: brightness(1.12) contrast(1.08) saturate(1.0);
}

/* Elegant overlay on hover for all real-image cards */
.product-img-wrap:has(.product-real-img)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(184,134,11,0.0) 0%,
    rgba(13,27,42,0.55) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}
.product-card:hover .product-img-wrap:has(.product-real-img)::after {
  opacity: 1;
}

/* Fabric label overlay — bottom left corner */
.fabric-label-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(13,27,42,0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(184,134,11,0.4);
  border-radius: 99px;
  padding: 6px 14px 6px 10px;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.product-card:hover .fabric-label-overlay {
  opacity: 1;
  transform: translateY(0);
}
.fabric-tag-icon { font-size: 0.9rem; line-height: 1; }
.fabric-tag-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Satin label gets gold shimmer */
.satin-label {
  background: rgba(184,134,11,0.25);
  border-color: rgba(184,134,11,0.7);
}
.satin-label .fabric-tag-text { color: #ffd700; }

/* Keep badge above overlay */
.product-img-wrap .product-badge { z-index: 2; }
/* Fabric swatch color themes */
.suit-1 { background: linear-gradient(135deg, #2c3e50 0%, #3d5166 30%, #1a2533 60%, #b8860b 100%); }
.suit-2 { background: linear-gradient(135deg, #4a6741 0%, #5c7a52 40%, #2d4028 70%, #d4a017 100%); }
.suit-3 { background: linear-gradient(135deg, #5c4a7e 0%, #7b6599 40%, #3d2f58 70%, #c9a227 100%); }
.shirt-1 { background: linear-gradient(135deg, #e8d5b7 0%, #f0e6ce 30%, #c8b89a 60%, #b8860b 100%); }
.shirt-2 { background: linear-gradient(135deg, #c8d8e4 0%, #d9e8f0 40%, #9bb5c5 70%, #7a9aad 100%); }
.shirt-3 { background: linear-gradient(135deg, #2d1b4e 0%, #4a2d7a 40%, #1a0f30 70%, #d4af37 100%); }
.sherw-1 { background: linear-gradient(135deg, #1a0a00 0%, #3d1f00 30%, #6b3800 60%, #d4a017 80%, #ffd700 100%); }
.sherw-2 { background: linear-gradient(135deg, #4a0000 0%, #800020 40%, #2d0000 70%, #c9a227 100%); }
.sherw-3 { background: linear-gradient(135deg, #0a1a0a 0%, #1a3d1a 40%, #063006 70%, #b8860b 80%, #ffd700 100%); }
.uni-1 { background: linear-gradient(135deg, #1a3a5c 0%, #2d5a8c 40%, #0f2238 70%, #4a7aad 100%); }
.uni-2 { background: linear-gradient(135deg, #2d4a2d 0%, #3d6b3d 40%, #1a2d1a 70%, #5c8a5c 100%); }
.uni-3 { background: linear-gradient(135deg, #3d2d1a 0%, #5c4228 40%, #261c10 70%, #8a6440 100%); }
/* Fabric texture overlay */
.product-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.04) 3px,
    rgba(255,255,255,0.04) 4px
  );
  pointer-events: none;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.new-badge { background: var(--navy); }
.product-tags span {
  background: var(--ivory);
  border: 1px solid var(--cream);
  color: var(--text-mid);
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 99px;
  font-weight: 500;
}
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.87rem;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.product-cta:hover { border-bottom-color: var(--gold); }
/* Brands Row */
.brands-row {
  margin-top: 56px;
  text-align: center;
}
.brands-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.brands-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.brand-chip {
  background: var(--white);
  border: 1.5px solid var(--cream);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.06em;
  transition: var(--transition);
}
.brand-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* ── Services ───────────────────────────────── */
.services { background: var(--navy); }
.services .section-eyebrow { color: var(--gold-lt); }
.services h2 { color: var(--white); }
.services .section-sub { color: rgba(255,255,255,0.55); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.service-card:hover {
  background: rgba(184,134,11,0.1);
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.service-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(184,134,11,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: rgba(184,134,11,0.25); }
.service-icon { font-size: 1.8rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; }
.service-highlight {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* ── Stats Strip ────────────────────────────── */
.stats-strip {
  background: var(--gold);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-unit { font-size: 2rem; font-weight: 700; color: rgba(255,255,255,0.75); line-height: 1; display: inline; }
.stat-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── Testimonials ───────────────────────────── */
.testimonials { background: var(--ivory-dk); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184,134,11,0.3);
}
.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-card footer strong { display: block; color: var(--navy); font-size: 0.9rem; }
.testi-card footer span { font-size: 0.82rem; color: var(--text-light); }
.testi-google-badge {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.g-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 3px; }
.g-rating {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}
.g-label { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }

/* ── Contact ────────────────────────────────── */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 56px;
}
.contact-info .section-eyebrow { text-align: left; }
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 36px;
}
.contact-info h2 em { font-style: italic; color: var(--gold); }
.info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-block h3 { font-size: 0.88rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.info-block address, .info-block p { color: var(--text-dark); font-size: 0.95rem; line-height: 1.65; }
.info-link { color: var(--navy); font-weight: 500; transition: color var(--transition); }
.info-link:hover { color: var(--gold); }
.closed-tag {
  display: inline-block;
  background: #fef2f2;
  color: var(--red-err);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
}
.contact-action-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.contact-form {
  background: var(--ivory);
  border: 1px solid var(--ivory-dk);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.form-group label span { color: var(--gold); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--cream);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.93rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}
.form-group input.error,
.form-group textarea.error { border-color: var(--red-err); }
.form-group textarea { resize: vertical; min-height: 110px; }
.field-error {
  display: block;
  font-size: 0.78rem;
  color: var(--red-err);
  margin-top: 5px;
  min-height: 18px;
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}
.maps-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ivory-dk);
}
.maps-wrap iframe { display: block; }

/* ── Footer ─────────────────────────────────── */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.87rem;
  font-weight: 500;
  transition: var(--transition);
}
.footer-wa:hover { background: #1ebe5a; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col address { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.7; margin-bottom: 14px; }
.footer-phone {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 4px;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--gold); }
.footer-hours {
  margin-top: 14px;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 24px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  margin-bottom: 4px;
}
.footer-tagline { color: rgba(184,134,11,0.5) !important; }

/* ── Floating WhatsApp ──────────────────────── */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: waFloat 3s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-wa:hover { animation: none; }

/* ── Reveal Animations ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Navbar mobile */
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(184,134,11,0.2);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 1000;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { padding: 12px 16px; width: 100%; text-align: center; font-size: 1rem; }
  .btn-wa-nav { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: calc(var(--nav-h) + 48px) 0 60px; }
  .hero-title { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-badge-float { right: 12px; bottom: 12px; }
  .about-real-img {
    aspect-ratio: 4/5 !important;
    object-position: center top;
    width: 100%;
    min-height: 400px;
  }
  .about-img-wrap {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }
  .tab-bar { gap: 6px; }
  .tab-btn { padding: 8px 18px; font-size: 0.85rem; }

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

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

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-action-btns { flex-direction: column; }

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

  /* Float WA */
  .float-wa { bottom: 20px; right: 16px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-trust { flex-direction: column; }
  .trust-pill { text-align: center; }
  .contact-form { padding: 24px 20px; }
  .brands-list { gap: 8px; }
  .brand-chip { padding: 8px 16px; font-size: 0.82rem; }
}

/* ── Utility ─────────────────────────────────── */
.hidden { display: none !important; }

/* ── Logo images ─────────────────────────────── */
.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 14px;
}
