/* ===================================================
   RAMDEEP PRIVATE LIMITED — style.css
   Theme: Navy (#0B1F4B) + Gold (#C9A84C) + White
   =================================================== */

/* ---------- RESET & ROOT ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0B1F4B;
  --navy-light: #1a3a7c;
  --navy-dark:  #07132f;
  --gold:       #C9A84C;
  --gold-light: #e4c87a;
  --gold-dark:  #a0812e;
  --white:      #ffffff;
  --off-white:  #f8f6f1;
  --light-grey: #f2f4f7;
  --mid-grey:   #8898aa;
  --text-dark:  #1e2d45;
  --text-body:  #4a5568;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-sm:  0 2px 8px rgba(11,31,75,.08);
  --shadow-md:  0 8px 30px rgba(11,31,75,.13);
  --shadow-lg:  0 20px 60px rgba(11,31,75,.18);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- CONTAINER ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- TYPOGRAPHY HELPERS ---------- */
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,.12);
  color: var(--gold-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(201,168,76,.3);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }

.section {
  padding: 100px 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(201,168,76,.4); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: 0 4px 15px rgba(201,168,76,.35);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,76,.5); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(11,31,75,.3);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(11,31,75,.4); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); transform: translateY(-3px); }

.btn-full { width: 100%; justify-content: center; border-radius: var(--radius-sm); }

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: .9rem;
  transition: gap var(--transition);
  margin-top: 10px;
}
.btn-text-link:hover { gap: 12px; }

/* ---------- TOP BAR ---------- */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 8px 0;
  position: relative;
  z-index: 100;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar span, .top-bar a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  transition: color .2s;
}
.top-bar a:hover { color: var(--gold); }
.top-bar i { color: var(--gold); font-size: .75rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,31,75,.07);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  display: flex; align-items: center; justify-content: center;
}
.logo-r {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gold);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-sub {
  font-size: .65rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 50px;
  transition: all .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width .3s;
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 28px); }

.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: .88rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}
.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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(7,19,47,.88) 0%,
    rgba(11,31,75,.75) 55%,
    rgba(11,31,75,.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeDown .8s ease both;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
  animation: fadeDown .9s .1s ease both;
}

.hero-subtitle {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--gold-light);
  font-style: italic;
  margin-bottom: 18px;
  animation: fadeDown .9s .2s ease both;
}

.hero-desc {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  margin-bottom: 36px;
  animation: fadeDown .9s .3s ease both;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeDown .9s .4s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  width: fit-content;
  animation: fadeDown .9s .5s ease both;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  animation: fadeIn 1.5s ease both;
}
.scroll-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: scrollBounce 1.8s ease-in-out infinite;
}

/* ---------- MARQUEE ---------- */
.marquee-strip {
  background: linear-gradient(90deg, var(--navy), var(--navy-light), var(--navy));
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-track span i { color: var(--gold); font-size: .7rem; }

/* ---------- ABOUT ---------- */
.about-section { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap { position: relative; }
.about-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 3px solid var(--gold);
  z-index: 1;
  opacity: .15;
}
.about-img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); transition: transform .6s ease; }
.about-img:hover { transform: scale(1.03); }

.about-badge-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border-top: 3px solid var(--gold);
  animation: float 4s ease-in-out infinite;
}
.about-badge-card h4 { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); }
.about-badge-card p  { font-size: .76rem; color: var(--mid-grey); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-top: 2px; }
.about-badge-card.card-2 { bottom: auto; top: -24px; right: auto; left: -24px; border-top: none; border-bottom: 3px solid var(--navy); animation-delay: 1.5s; }

.about-content { }
.about-text { color: var(--text-body); margin-bottom: 16px; font-size: 1.02rem; }

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 32px;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-dark);
  font-weight: 500;
}
.highlight-item i { margin-top: 3px; font-size: .85rem; flex-shrink: 0; }

/* ---------- PRODUCTS / PATTERNS ---------- */
.products-section { background: var(--white); }

.patterns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.pattern-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11,31,75,.08);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
}
.pattern-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.pattern-icon-wrap { height: 180px; overflow: hidden; position: relative; }
.pattern-visual {
  width: 100%; height: 100%;
  transition: transform .4s ease;
}
.pattern-card:hover .pattern-visual { transform: scale(1.05); }

/* Pattern visual backgrounds */
.plain-visual    { background: linear-gradient(135deg, #d4e4f7 0%, #b8ccef 50%, #8aaad6 100%); }
.checks-visual   { background: repeating-conic-gradient(#1a3a7c 0% 25%, #d4e4f7 0% 50%) 0 0/40px 40px; }
.stripes-visual  { background: repeating-linear-gradient(90deg, #0B1F4B 0px, #0B1F4B 18px, #C9A84C 18px, #C9A84C 30px, #fff 30px, #fff 48px); }
.prints-visual   { background: radial-gradient(circle at 20% 30%, #C9A84C30 20%, transparent 20%), radial-gradient(circle at 70% 70%, #0B1F4B30 20%, transparent 20%), radial-gradient(circle at 50% 50%, #e4c87a30 30%, transparent 30%), linear-gradient(135deg, #f8e5b5, #fdf4e3); }
.dobby-visual    {
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 8px, rgba(11,31,75,.12) 8px, rgba(11,31,75,.12) 9px),
    repeating-linear-gradient(90deg, transparent, transparent 8px, rgba(11,31,75,.12) 8px, rgba(11,31,75,.12) 9px),
    linear-gradient(135deg, #e8d5b0, #d4b870);
}
.jacquard-visual {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,.6) 0%, transparent 60%),
    repeating-conic-gradient(rgba(11,31,75,.15) 0% 12.5%, transparent 0% 25%) 0 0/30px 30px,
    linear-gradient(135deg, #0B1F4B, #1a3a7c);
}

.pattern-info { padding: 20px 22px 24px; }
.pattern-info h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pattern-info p { font-size: .88rem; color: var(--text-body); line-height: 1.6; }

.pattern-tag {
  display: inline-block;
  background: rgba(201,168,76,.12);
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,.3);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 12px;
}

/* Sizes */
.sizes-section {
  text-align: center;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid rgba(11,31,75,.06);
}
.sizes-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.sizes-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.size-chip {
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: default;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.size-chip:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.sizes-note { color: var(--mid-grey); font-size: .88rem; margin-top: 8px; }

/* ---------- SHOWCASE ---------- */
.showcase-section { background: var(--navy-dark); }

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-content .section-label { background: rgba(201,168,76,.15); }
.showcase-content .section-title { color: var(--white); }
.showcase-content .about-text { color: rgba(255,255,255,.72); }

.showcase-features { margin: 24px 0 36px; }
.feature-row { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
  transition: all .25s;
}
.feature-pill i { color: var(--gold); }
.feature-pill:hover { background: rgba(201,168,76,.15); border-color: var(--gold); }

.showcase-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.showcase-img {
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
  transition: transform .5s ease;
}
.showcase-img:hover { transform: scale(1.02) rotate(-1deg); }

.showcase-ribbon {
  position: absolute;
  top: 24px; right: -16px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(201,168,76,.5);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .04em;
}

/* ---------- FABRICS ---------- */
.fabrics-section { background: var(--off-white); }

.fabrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fabric-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(11,31,75,.07);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.fabric-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.fabric-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.fabric-card:hover::before { transform: scaleX(1); }
.fabric-etc { border: 2px dashed rgba(11,31,75,.15); background: rgba(11,31,75,.02); }

.fabric-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--gold-dark);
  transition: all var(--transition);
}
.fabric-card:hover .fabric-icon {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.fabric-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.fabric-card p { font-size: .84rem; color: var(--text-body); line-height: 1.6; margin-bottom: 14px; }

.fabric-properties {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.fabric-properties span {
  background: var(--light-grey);
  color: var(--navy);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 50px;
}

/* ---------- MANUFACTURING ---------- */
.manufacturing-section { background: var(--white); }

.manufacturing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manufacturing-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.manufacturing-img {
  border-radius: var(--radius-lg);
  width: 100%; height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.mfg-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
}
.mfg-badge i { color: var(--gold); }
.mfg-badge span { font-size: .85rem; font-weight: 600; line-height: 1.3; }

.process-steps { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--off-white);
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
}
.process-step:hover { background: var(--light-grey); transform: translateX(6px); }
.step-num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}
.step-info h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-info p  { font-size: .84rem; color: var(--text-body); }

/* ---------- WHY US ---------- */
.why-section { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(11,31,75,.07);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}
.why-card:hover::after { opacity: 1; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card:hover .why-icon,
.why-card:hover h3,
.why-card:hover p { color: var(--white); position: relative; z-index: 1; }
.why-card:hover .why-icon { background: rgba(255,255,255,.1); color: var(--gold); }

.why-icon {
  width: 68px; height: 68px;
  background: rgba(11,31,75,.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0 auto 20px;
  transition: all var(--transition);
  position: relative; z-index: 1;
}
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  position: relative; z-index: 1;
  transition: color var(--transition);
}
.why-card p {
  font-size: .88rem;
  color: var(--text-body);
  line-height: 1.65;
  position: relative; z-index: 1;
  transition: color var(--transition);
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}
.cta-content {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- CONTACT ---------- */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 60px;
}

.contact-info-panel {
  background: linear-gradient(160deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: var(--white);
  height: 100%;
}
.contact-info-panel h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .95rem;
  flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 4px; }
.contact-info-item p { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.6; }
.contact-info-item a { color: rgba(255,255,255,.8); transition: color .2s; }
.contact-info-item a:hover { color: var(--gold); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.social-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1rem;
  transition: all .3s;
  border: 1px solid rgba(255,255,255,.15);
}
.social-btn:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-3px); }

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid rgba(11,31,75,.06);
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(11,31,75,.08);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid rgba(11,31,75,.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-group textarea { resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,31,75,.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab; }

.form-success {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  color: #166534;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

/* Map */
.map-section { text-align: center; }
.map-header { margin-bottom: 24px; }
.map-header i { font-size: 2rem; margin-bottom: 10px; display: block; }
.map-header h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--navy); margin-bottom: 6px; }
.map-header p  { color: var(--mid-grey); }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(11,31,75,.07);
}

/* ---------- FOOTER ---------- */
.footer { background: var(--navy-dark); }

.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-tagline {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 14px;
}
.footer-desc { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.7; margin-bottom: 24px; }

.footer-social { display: flex; gap: 10px; }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,.6);
  font-size: .84rem;
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact-list i { color: var(--gold); font-size: .85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact-list a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .8rem; }
.footer-bottom i { font-size: .75rem; }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all .3s;
  z-index: 998;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--navy-light); transform: translateY(-3px); }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  z-index: 999;
  transition: all .3s;
  animation: pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 30px rgba(37,211,102,.6); animation: none; }
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: var(--navy-dark);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---------- ANIMATIONS ---------- */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(14px); opacity: 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 6px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays for children */
.patterns-grid  .pattern-card:nth-child(1) { transition-delay: .05s; }
.patterns-grid  .pattern-card:nth-child(2) { transition-delay: .12s; }
.patterns-grid  .pattern-card:nth-child(3) { transition-delay: .19s; }
.patterns-grid  .pattern-card:nth-child(4) { transition-delay: .26s; }
.patterns-grid  .pattern-card:nth-child(5) { transition-delay: .33s; }
.patterns-grid  .pattern-card:nth-child(6) { transition-delay: .40s; }
.why-grid .why-card:nth-child(1)  { transition-delay: .05s; }
.why-grid .why-card:nth-child(2)  { transition-delay: .12s; }
.why-grid .why-card:nth-child(3)  { transition-delay: .19s; }
.why-grid .why-card:nth-child(4)  { transition-delay: .26s; }
.why-grid .why-card:nth-child(5)  { transition-delay: .33s; }
.why-grid .why-card:nth-child(6)  { transition-delay: .40s; }
.fabrics-grid .fabric-card:nth-child(1) { transition-delay: .05s; }
.fabrics-grid .fabric-card:nth-child(2) { transition-delay: .10s; }
.fabrics-grid .fabric-card:nth-child(3) { transition-delay: .15s; }
.fabrics-grid .fabric-card:nth-child(4) { transition-delay: .20s; }
.fabrics-grid .fabric-card:nth-child(5) { transition-delay: .25s; }
.fabrics-grid .fabric-card:nth-child(6) { transition-delay: .30s; }
.fabrics-grid .fabric-card:nth-child(7) { transition-delay: .35s; }
.fabrics-grid .fabric-card:nth-child(8) { transition-delay: .40s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- TABLET (≤1024px) --- */
@media (max-width: 1024px) {
  .about-grid          { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap    { max-width: 560px; margin: 0 auto; }
  .about-img           { height: 400px; }
  .about-badge-card    { bottom: -16px; right: -10px; }
  .about-badge-card.card-2 { top: -16px; left: -10px; }

  .showcase-grid       { grid-template-columns: 1fr; }
  .showcase-image-wrap { order: -1; }

  .manufacturing-grid  { grid-template-columns: 1fr; gap: 48px; }
  .manufacturing-img-wrap { max-width: 560px; margin: 0 auto; }
  .manufacturing-img   { height: 380px; }

  .patterns-grid       { grid-template-columns: repeat(2, 1fr); }
  .fabrics-grid        { grid-template-columns: repeat(2, 1fr); }
  .why-grid            { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* --- MOBILE (≤768px) --- */
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .top-bar { display: none; }

  /* Navbar mobile */
  .hamburger   { display: flex; }
  .nav-cta     { display: none; }
  .nav-links {
    position: fixed;
    top: 0; left: -100%;
    width: 80%; max-width: 300px; height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 24px 40px;
    box-shadow: var(--shadow-lg);
    transition: left .35s cubic-bezier(.4,0,.2,1);
    z-index: 998;
  }
  .nav-links.open { left: 0; }
  .nav-link {
    width: 100%;
    padding: 14px 12px;
    font-size: 1rem;
    border-bottom: 1px solid var(--light-grey);
  }
  .nav-link::after { display: none; }

  /* Hero */
  .hero-content { padding: 100px 0 80px; }
  .hero-stats   { flex-wrap: wrap; gap: 0; padding: 16px 20px; }
  .stat-item    { padding: 8px 16px; }
  .stat-divider { display: none; }
  .hide-mobile  { display: none; }

  /* Grids */
  .about-highlights    { grid-template-columns: 1fr; }
  .patterns-grid       { grid-template-columns: 1fr; }
  .fabrics-grid        { grid-template-columns: 1fr 1fr; }
  .why-grid            { grid-template-columns: 1fr; }
  .contact-grid        { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand        { text-align: center; }
  .footer-social       { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .form-row            { grid-template-columns: 1fr; }

  .showcase-ribbon { right: 10px; }
  .hero-actions    { flex-direction: column; }
  .hero-actions .btn { width: fit-content; }

  .sizes-grid { gap: 10px; }
  .size-chip  { width: 58px; height: 58px; }

  .about-badge-card, .about-badge-card.card-2 { display: none; }
  .mfg-badge { display: none; }
}

/* --- SMALL MOBILE (≤480px) --- */
@media (max-width: 480px) {
  .hero-title  { font-size: 2.2rem; }
  .fabrics-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .contact-info-panel { padding: 28px 20px; }
}
