/* ============================================================
   TIJARAT GLOBAL PRIVATE LIMITED — Main Stylesheet
   Primary: #961a1c | Gold: #c8a043 | Cream: #faf7f2
   ============================================================ */

/* --- Variables --- */
:root {
  --primary:       #961a1c;
  --primary-dark:  #6d1215;
  --primary-light: #b82124;
  --gold:          #c8a043;
  --gold-light:    #e8c56a;
  --gold-dark:     #9e7d2f;
  --green:         #3d6b4f;
  --cream:         #faf7f2;
  --text-dark:     #1c1c1c;
  --text-med:      #4a4a4a;
  --text-light:    #7a7a7a;
  --border:        #e8e0d5;
  --shadow:        0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.12);
  --radius:        12px;
  --radius-sm:     8px;
  --ease:          0.3s ease;
  --nav-h:         80px;
  --serif:         'Playfair Display', Georgia, serif;
  --sans:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text-dark); background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--sans); }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.section-tag::before {
  content: '';
  width: 1.75rem;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.section-title { margin-bottom: 0.9rem; }
.section-sub {
  font-size: 1.02rem;
  color: var(--text-med);
  max-width: 600px;
  line-height: 1.75;
}

/* --- Layout --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.text-center { text-align: center; }
.text-center .section-tag { justify-content: center; }
.text-center .section-tag::before { display: none; }
.text-center .section-tag::after {
  content: '';
  width: 1.75rem;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
.text-center .section-sub { margin: 0 auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.9rem;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(150,26,28,.35); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-red { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-red:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--gold-dark); font-weight: 600; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* =========================
   NAVIGATION
   ========================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--ease), box-shadow var(--ease);
}
.navbar.scrolled { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.09); }
.navbar.scrolled .nav-link { color: var(--text-dark); }
.navbar.scrolled .nav-link:hover { color: var(--primary); }
.navbar.scrolled .logo-name { color: var(--primary); }
.navbar.scrolled .hamburger span { background: var(--text-dark); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.nav-logo img { height: 46px; width: auto; }
.logo-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.logo-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nav-links { display: flex; align-items: center; gap: 2.25rem; }
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  position: relative;
  transition: var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--gold-light); }

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: #25D366;
  color: #fff;
  padding: 0.48rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--ease);
}
.nav-whatsapp:hover { background: #1da851; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--ease); }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  padding: 1.25rem 2rem 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { color: var(--text-dark); padding: 0.85rem 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
.mobile-menu .nav-link::after { display: none; }
.mobile-menu .nav-whatsapp { margin-top: 1rem; justify-content: center; }

/* =========================
   HERO — HOMEPAGE
   ========================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #1a0506 0%, #3d0e10 35%, #7a1618 65%, #961a1c 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(200,160,67,.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(200,160,67,.06) 0%, transparent 45%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* Right decorative element */
.hero-deco {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 580px;
  height: 580px;
  pointer-events: none;
}
.hero-deco .ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(200,160,67,.18);
}
.hero-deco .ring:nth-child(1) { width: 540px; height: 540px; }
.hero-deco .ring:nth-child(2) { width: 400px; height: 400px; border-color: rgba(200,160,67,.22); }
.hero-deco .ring:nth-child(3) { width: 260px; height: 260px; background: rgba(200,160,67,.04); border-color: rgba(200,160,67,.3); }
.hero-deco-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.hero-deco-icon {
  font-size: 5rem;
  opacity: 0.25;
  filter: grayscale(1) brightness(2);
}

.hero-content { position: relative; z-index: 2; max-width: 680px; padding: 4rem 0; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}
.hero h1 { color: #fff; margin-bottom: 1.5rem; font-weight: 700; }
.hero h1 .gold { color: var(--gold-light); }
.hero-sub { font-size: 1.06rem; color: rgba(255,255,255,.72); margin-bottom: 2.5rem; line-height: 1.75; max-width: 560px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-divider { width: 100%; height: 1px; background: rgba(255,255,255,.1); margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }
.hero-stat-val { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero-stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }

/* =========================
   MARQUEE TICKER
   ========================= */
.ticker {
  background: var(--primary);
  padding: 0.8rem 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255,255,255,.82);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 0 2.5rem;
}
.ticker-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================
   ABOUT SNIPPET
   ========================= */
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.85;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 120px;
}
.about-badge-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-badge-lbl { font-size: 0.72rem; opacity: 0.9; margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.05em; }

.about-content .section-sub { margin-bottom: 1.75rem; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1rem; margin-bottom: 2rem; }
.about-check { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; font-weight: 500; }
.check-icon { color: var(--primary); flex-shrink: 0; }

/* =========================
   PRODUCTS PREVIEW
   ========================= */
.products-preview { background: #fff; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 3rem 0 2.5rem; }
.p-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--ease); background: #fff; }
.p-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.p-card-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream) 0%, #e4d5c0 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  position: relative;
}
.p-card-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--primary); }
.p-card-body { padding: 1.2rem; }
.p-card-type { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.4rem; }
.p-card h3 { font-size: 0.98rem; margin-bottom: 0.4rem; }
.p-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

/* =========================
   WHY CHOOSE US
   ========================= */
.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; margin-top: 3rem; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.75rem; text-align: center; transition: var(--ease); }
.why-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.why-card:hover .why-icon { background: var(--primary); color: #fff; }
.why-icon { width: 62px; height: 62px; background: rgba(150,26,28,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; color: var(--primary); transition: var(--ease); }
.why-card h3 { font-size: 1rem; margin-bottom: 0.65rem; }
.why-card p { font-size: 0.83rem; color: var(--text-med); line-height: 1.65; }

/* =========================
   MARKETS SECTION
   ========================= */
.markets-section {
  background: linear-gradient(140deg, #1a0506 0%, #3d0e10 40%, #6d1215 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.markets-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,160,67,.07) 0%, transparent 60%);
}
.markets-section .section-tag { color: var(--gold-light); }
.markets-section .section-tag::before { background: var(--gold); }
.markets-section .section-title { color: #fff; }
.markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; position: relative; }
.market-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); padding: 1.75rem; transition: var(--ease); }
.market-card:hover { background: rgba(200,160,67,.1); border-color: rgba(200,160,67,.3); }
.market-flag { font-size: 2.25rem; margin-bottom: 0.85rem; }
.market-region { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 0.4rem; }
.market-card h3 { color: #fff; font-size: 1rem; margin-bottom: 0.4rem; }
.market-card p { font-size: 0.81rem; color: rgba(255,255,255,.5); line-height: 1.55; }

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials-section { background: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.t-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; position: relative; transition: var(--ease); }
.t-card:hover { box-shadow: var(--shadow); }
.t-quote { position: absolute; top: 1.25rem; right: 1.5rem; font-family: var(--serif); font-size: 5rem; color: var(--primary); opacity: .1; line-height: 1; }
.t-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--gold); font-size: 0.82rem; }
.t-text { font-size: 0.88rem; color: var(--text-med); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 0.85rem; flex-shrink: 0; }
.t-name { font-weight: 600; font-size: 0.88rem; }
.t-role { font-size: 0.76rem; color: var(--text-light); margin-top: 0.1rem; }

/* =========================
   CTA SECTION
   ========================= */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 5.5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -40%; left: -5%; width: 480px; height: 480px; border-radius: 50%; background: rgba(200,160,67,.07); }
.cta-section::after { content: ''; position: absolute; bottom: -35%; right: -3%; width: 380px; height: 380px; border-radius: 50%; background: rgba(200,160,67,.05); }
.cta-section .section-tag { color: var(--gold-light); justify-content: center; }
.cta-section .section-tag::before { display: none; }
.cta-section .section-tag::after { content: ''; width: 1.75rem; height: 2px; background: var(--gold); display: inline-block; }
.cta-section h2 { color: #fff; margin-bottom: 0.85rem; position: relative; z-index: 1; }
.cta-section > .container > p { color: rgba(255,255,255,.72); font-size: 1.04rem; margin-bottom: 2.5rem; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; margin-bottom: 3.5rem; }
.cta-contacts { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-contact-item { display: flex; align-items: center; gap: 0.65rem; color: rgba(255,255,255,.75); font-size: 0.88rem; }
.cta-contact-item svg { color: var(--gold-light); flex-shrink: 0; }
.cta-contact-item a { color: rgba(255,255,255,.75); }
.cta-contact-item a:hover { color: #fff; }

/* =========================
   FOOTER
   ========================= */
footer { background: #0e0203; color: #fff; padding: 4.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 42px; }
.footer-logo-text { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; }
.footer-logo-text small { display: block; font-family: var(--sans); font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.55; font-weight: 400; }
.footer-desc { font-size: 0.83rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 270px; margin-bottom: 1.5rem; }
.footer-col-title { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link { font-size: 0.83rem; color: rgba(255,255,255,.5); transition: var(--ease); display: inline-block; }
.footer-link:hover { color: #fff; padding-left: 0.4rem; }
.footer-contact-item { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.85rem; }
.fc-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.fc-text { font-size: 0.82rem; color: rgba(255,255,255,.5); line-height: 1.55; }
.fc-text a { color: rgba(255,255,255,.5); }
.fc-text a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,.3); }

/* =========================
   WHATSAPP FLOAT
   ========================= */
.wa-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  z-index: 9999;
  transition: var(--ease);
  color: #fff;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.55); }

/* =========================
   PAGE HERO (inner pages)
   ========================= */
.page-hero {
  background: linear-gradient(140deg, #1a0506 0%, var(--primary) 100%);
  padding: calc(var(--nav-h) + 3.5rem) 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(200,160,67,.08) 0%, transparent 55%); }
.ph-eyebrow {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.65rem;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold-light); margin-bottom: 1rem;
}
.ph-eyebrow::before, .ph-eyebrow::after { content: ''; width: 1.5rem; height: 1px; background: var(--gold); }
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; position: relative; }
.page-hero p { color: rgba(255,255,255,.68); font-size: 1.04rem; max-width: 560px; margin: 0 auto; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 1.75rem; font-size: 0.8rem; color: rgba(255,255,255,.4); position: relative; }
.breadcrumb a { color: rgba(255,255,255,.4); transition: var(--ease); }
.breadcrumb a:hover { color: var(--gold-light); }

/* =========================
   PRODUCTS PAGE
   ========================= */
.products-full-section { background: #fff; }
.filter-bar { display: flex; gap: 0.65rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.filter-btn { padding: 0.45rem 1.1rem; border-radius: 50px; border: 1.5px solid var(--border); font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: var(--ease); background: #fff; color: var(--text-med); }
.filter-btn.active, .filter-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(150,26,28,.05); }

.products-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.pf-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--ease); background: #fff; }
.pf-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.pf-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #f0e8d8 0%, #ddc9a8 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.pf-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(150,26,28,.55) 0%, transparent 60%); opacity: 0; transition: var(--ease); }
.pf-card:hover .pf-img-overlay { opacity: 1; }
.pf-body { padding: 1.5rem; }
.pf-type { display: inline-block; font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); background: rgba(150,26,28,.07); padding: 0.22rem 0.65rem; border-radius: 50px; margin-bottom: 0.7rem; }
.pf-card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.pf-card p { font-size: 0.83rem; color: var(--text-med); line-height: 1.65; margin-bottom: 1.2rem; }
.pf-specs { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.25rem; }
.spec-tag { font-size: 0.7rem; padding: 0.2rem 0.55rem; background: var(--cream); border: 1px solid var(--border); border-radius: 4px; color: var(--text-med); }
.btn-inquiry { width: 100%; justify-content: center; background: transparent; border: 1.5px solid var(--primary); color: var(--primary); padding: 0.62rem 1rem; border-radius: 6px; font-weight: 500; font-size: 0.84rem; transition: var(--ease); cursor: pointer; font-family: var(--sans); display: flex; align-items: center; gap: 0.4rem; }
.btn-inquiry:hover { background: var(--primary); color: #fff; }

/* Catalog Banner */
.catalog-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; margin: 3.5rem 0;
}
.catalog-banner h3 { color: #fff; font-size: 1.4rem; margin-bottom: 0.4rem; }
.catalog-banner p { color: rgba(255,255,255,.8); font-size: 0.88rem; }

/* Inquiry Form Section */
.inquiry-section { background: var(--cream); }
.inquiry-wrap { max-width: 760px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fg { display: flex; flex-direction: column; gap: 0.35rem; }
.fg.full { grid-column: 1/-1; }
.fg label { font-size: 0.8rem; font-weight: 500; color: var(--text-med); }
.fg input, .fg select, .fg textarea {
  padding: 0.72rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--text-dark);
  background: #fff;
  transition: var(--ease);
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(150,26,28,.08); }
.fg textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.5rem; display: flex; justify-content: center; }

/* =========================
   ABOUT PAGE
   ========================= */
.story-section { background: #fff; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.story-highlights { display: flex; flex-direction: column; gap: 1.25rem; margin: 1.75rem 0 2rem; }
.sh-item { display: flex; gap: 1rem; align-items: flex-start; }
.sh-icon { width: 40px; height: 40px; background: rgba(150,26,28,.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.sh-text h4 { font-size: 0.93rem; font-family: var(--sans); font-weight: 600; margin-bottom: 0.2rem; }
.sh-text p { font-size: 0.81rem; color: var(--text-med); line-height: 1.55; }

.story-img-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--cream) 0%, #e0cdb5 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}

.mv-section { background: var(--cream); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.mv-card { background: #fff; padding: 2.5rem; border-radius: var(--radius); border: 1px solid var(--border); position: relative; overflow: hidden; }
.mv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.mv-card.mission::before { background: var(--primary); }
.mv-card.vision::before { background: var(--gold); }
.mv-icon-wrap { width: 54px; height: 54px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.mv-card.mission .mv-icon-wrap { background: rgba(150,26,28,.08); color: var(--primary); }
.mv-card.vision .mv-icon-wrap { background: rgba(200,160,67,.1); color: var(--gold-dark); }
.mv-card h3 { font-size: 1.3rem; margin-bottom: 0.65rem; }
.mv-card p { font-size: 0.88rem; color: var(--text-med); line-height: 1.75; }

.values-section { background: #fff; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.val-card { text-align: center; padding: 2rem 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); transition: var(--ease); }
.val-card:hover { box-shadow: var(--shadow); border-color: var(--primary); }
.val-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 700; color: rgba(150,26,28,.1); line-height: 1; margin-bottom: 0.75rem; }
.val-card h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }
.val-card p { font-size: 0.81rem; color: var(--text-med); line-height: 1.6; }

.pakistan-section { background: var(--cream); }
.pakistan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.pak-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.pak-stat { background: #fff; border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); text-align: center; }
.pak-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--primary); line-height: 1; }
.pak-lbl { font-size: 0.76rem; color: var(--text-light); margin-top: 0.35rem; text-transform: uppercase; letter-spacing: 0.07em; }

/* =========================
   SCROLL ANIMATIONS
   ========================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .products-full-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-whatsapp { display: none; }
  .hamburger { display: flex; }

  .hero { padding-bottom: 4rem; min-height: auto; }
  .hero-deco { display: none; }
  .hero-stats { gap: 1.75rem; }

  .about-grid, .story-grid, .pakistan-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge { bottom: -0.75rem; right: -0.5rem; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .why-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .products-full-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .pak-stats { grid-template-columns: 1fr 1fr; }

  .catalog-banner { flex-direction: column; text-align: center; padding: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-contacts { flex-direction: column; align-items: center; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .why-grid { grid-template-columns: 1fr; }
}
