/* =============================================
   TERNS EXIM – Main Stylesheet
   ============================================= */

:root {
  /* Royal Navy Blue */
  --navy:         #002147;
  --navy-mid:     #003177;
  --navy-light:   #1B4F8A;
  /* Glossy Gold */
  --gold:         #D4AF37;
  --gold-light:   #F0D060;
  --gold-shine:   #F8E878;
  --gold-dark:    #9A7B0A;
  --gold-grad:    linear-gradient(180deg, #F0D060 0%, #D4AF37 50%, #9A7B0A 100%);
  --gold-grad-h:  linear-gradient(180deg, #F8E878 0%, #E8C84A 50%, #BF9800 100%);
  --white:        #ffffff;
  --off-white:    #f4f6fb;
  --gray-100:     #eef1f7;
  --gray-300:     #c8cedd;
  --gray-500:     #7f8ca4;
  --gray-700:     #3d4a62;
  --text:         #111827;
  --text-light:   #5a6880;
  --green-wa:     #25D366;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(0,33,71,0.12);
  --shadow-lg:    0 10px 48px rgba(0,33,71,0.2);
  --transition:   0.25s ease;
}

/* ===== SKIP LINK (keyboard accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 10px 20px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* ===== FOCUS-VISIBLE (keyboard navigation) ===== */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
/* Remove default outline for mouse users */
:focus:not(:focus-visible) { outline: none; }

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

.text-accent {
  color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

.btn-primary {
  background: var(--gold-grad);
  color: var(--navy);
  border: 1px solid var(--gold-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -1px 0 rgba(0,0,0,0.1), 0 4px 14px rgba(0,33,71,0.2);
}
.btn-primary:hover {
  background: var(--gold-grad-h);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 8px 24px rgba(0,33,71,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-download {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold-dark);
  border-width: 2px;
}
.btn-download:hover {
  background: var(--gold-grad);
  color: var(--navy);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--navy-light);
  color: var(--white);
  border-color: var(--navy-light);
}
.btn-accent:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
  width: 100%;
  justify-content: center;
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* Navy + Gold WhatsApp button for contact page */
.btn-wa-brand {
  background: var(--gold-grad);
  color: var(--navy);
  border: 1px solid var(--gold-dark);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 14px rgba(0,33,71,0.2);
  width: 100%;
  justify-content: center;
  font-weight: 700;
}
.btn-wa-brand:hover {
  background: var(--gold-grad-h);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 8px 22px rgba(0,33,71,0.25);
}
.wa-cta-content strong { color: var(--navy); }

.btn-block {
  width: 100%;
  justify-content: center;
}

.mt-auto { margin-top: auto; }

/* ===== SECTIONS ===== */
.section { padding: 88px 0; }
.section-light { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }

/* ===== CATALOG SECTION – Royal Navy + Royal Gold ===== */
.section-catalog {
  background: #001229;
  color: var(--white);
}

.section-catalog .section-eyebrow { color: var(--gold); }

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

.section-catalog .section-subtitle { color: rgba(255,255,255,0.6); }

/* category header in dark context */
.section-catalog .category-header {
  border-bottom: 2px solid rgba(207,181,59,0.25);
}
.section-catalog .category-header.accent {
  border-bottom-color: var(--gold);
}
.section-catalog .category-header h2 { color: var(--white); }

/* product cards – dark navy */
.section-catalog .product-card {
  background: #002455;
  border: 1px solid rgba(207,181,59,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}

/* gold accent line at top of every card */
.section-catalog .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
  transition: opacity var(--transition);
}

.section-catalog .product-card:hover {
  border-color: rgba(207,181,59,0.55);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transform: translateY(-5px);
}

.section-catalog .product-card:hover::before { opacity: 1; }

/* text in dark cards */
.section-catalog .product-card-header h3 { color: var(--white); }
.section-catalog .product-card > p { color: rgba(255,255,255,0.65); }

/* spec list – dark variant */
.section-catalog .spec-list {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
}
.section-catalog .spec-row span:first-child { color: var(--gold); }
.section-catalog .spec-row span:last-child  { color: rgba(255,255,255,0.78); }

/* product tag in dark context */
.section-catalog .product-tag {
  background: rgba(207,181,59,0.15);
  color: var(--gold);
}

/* product card icon box */
.section-catalog .product-card-icon {
  background: rgba(207,181,59,0.12);
  border: 1px solid rgba(207,181,59,0.25);
}

/* merchant cards in dark context */
.section-catalog .merchant-card {
  background: #002455;
  border-color: rgba(207,181,59,0.18);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.section-catalog .merchant-card:hover { border-color: rgba(207,181,59,0.5); }
.section-catalog .merchant-card h4 { color: var(--white); }
.section-catalog .merchant-card p  { color: rgba(255,255,255,0.6); }

/* merchant intro banner */
.section-catalog .merchant-intro {
  background: rgba(207,181,59,0.05);
  border-color: rgba(207,181,59,0.25);
}
.section-catalog .merchant-intro p       { color: rgba(255,255,255,0.75); }
.section-catalog .merchant-intro strong  { color: var(--gold); }
.section-dark h1, .section-dark h2, .section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== LOGO IMAGE ===== */
.nav-logo-img {
  height: 60px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: brightness(1) drop-shadow(0 1px 4px rgba(0,0,0,0.3));
  transition: opacity var(--transition), transform var(--transition);
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.9;
  transform: scale(1.02);
}

.footer-logo-img {
  height: 60px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: brightness(1.15) drop-shadow(0 1px 5px rgba(0,0,0,0.45));
}

/* ===== NAVBAR – White Bar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 2px solid rgba(207,181,59,0.35);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(11,31,58,0.12);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}

/* ===== BRAND NAME BESIDE LOGO ===== */
.nav-brand-name {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-terns {
  color: #0B1F3A;
  transition: color var(--transition);
}

.brand-exim {
  background: linear-gradient(180deg, #F0D060 0%, #D4AF37 45%, #9A7B0A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #D4AF37; /* fallback */
  transition: opacity var(--transition);
}
.nav-logo:hover .brand-exim { opacity: 0.85; }

.nav-logo:hover .brand-terns { color: #1a3a6e; }
.nav-logo:hover .brand-exim  { color: #c9a020; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  color: #0B1F3A;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 11px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(207,181,59,0.08);
}

.nav-link.active {
  color: var(--gold);
  background: rgba(207,181,59,0.08);
}

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

.nav-cta {
  background: var(--gold-grad);
  color: var(--navy) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--gold-grad-h);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 4px 14px rgba(0,33,71,0.22);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0f1f3f 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 132px 0 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(207,181,59,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(30,58,110,0.8) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(207,181,59,0.12);
  border: 1px solid rgba(207,181,59,0.3);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 720px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-seo-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item { display: flex; flex-direction: column; }

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: linear-gradient(180deg, #F0D060 0%, #D4AF37 55%, #B49010 100%);
  border-top: 1px solid #9A7B0A;
  border-bottom: 1px solid #9A7B0A;
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  letter-spacing: 0.04em;
  padding: 0 20px;
  text-transform: uppercase;
}

.marquee-track .sep {
  color: var(--navy);
  opacity: 0.4;
  padding: 0 4px;
  font-size: 0.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
  border-left: 3px solid var(--gold);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-radius: 18px;
  border: 1px solid rgba(207,181,59,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3), inset 0 0 20px rgba(207,181,59,0.04);
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  box-shadow: 0 6px 20px rgba(0,33,71,0.3);
  border-color: var(--gold);
  transform: scale(1.04);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== PRODUCTS PREVIEW ===== */
.products-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-card-preview {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.product-card-preview:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.product-card-preview.featured {
  background: rgba(207,181,59,0.08);
  border-color: rgba(207,181,59,0.3);
}

.product-icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 4px;
}

.product-card-preview h3 {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0;
}

.product-card-preview p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.card-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform var(--transition);
}

.product-card-preview:hover .card-arrow { transform: translateX(4px); }

/* ===== MARKETS ===== */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.market-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.market-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.market-flag {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 14px;
}

.market-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.market-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(207,181,59,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 132px 0 64px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.5); }

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto;
}

/* ===== ABOUT PAGE ===== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

.about-intro-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

.about-intro-content p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.highlight-item svg { color: var(--gold); flex-shrink: 0; }

.about-intro-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card-stat {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.big-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.big-label {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
}

.mv-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
}

.mv-icon {
  width: 56px;
  height: 56px;
  background: rgba(207,181,59,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.mv-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 12px; }
.mv-card p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.75; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-info { display: flex; flex-direction: column; gap: 24px; }

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.location-item strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.location-item p, .location-item a, .location-item span { font-size: 0.9rem; color: var(--text-light); }
.location-item a:hover { color: var(--gold); }

.location-map-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--gray-300);
}

.map-placeholder-inner {
  text-align: center;
  color: var(--gray-500);
}

.map-placeholder-inner p {
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-700);
  margin: 12px 0 4px;
}

.map-placeholder-inner span { font-size: 0.85rem; }

/* ===== PRODUCTS PAGE ===== */
.category-section { margin-bottom: 64px; }

.category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--gray-100);
}

.category-header.accent { border-bottom-color: var(--gold); }

.category-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.category-header h2 {
  font-size: 1.6rem;
  color: var(--navy);
}

.category-badge {
  background: rgba(207,181,59,0.12);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(207,181,59,0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(13,27,53,0.22);
  border-color: var(--gold);
}

.product-card:hover .pci-bg::before {
  background: radial-gradient(ellipse at 50% 50%, rgba(207,181,59,0.13) 0%, transparent 70%);
}

/* ===== PRODUCT REAL IMAGE OVERLAY ===== */
.prod-real-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;          /* always visible — SVG sits underneath as fallback */
  z-index: 3;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform 0.4s ease;
}

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

/* ===== PRODUCT CARD IMAGE AREA ===== */
.product-card-image {
  margin: -28px -28px 0 -28px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  position: relative;
}

.pci-bg {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* unique gradient per product type */
.pci-bolts   { background: linear-gradient(135deg, #002147 0%, #003177 60%, #001535 100%); }
.pci-nuts    { background: linear-gradient(135deg, #002147 0%, #002a60 60%, #001025 100%); }
.pci-screws  { background: linear-gradient(135deg, #001e45 0%, #003280 60%, #001a3c 100%); }
.pci-washers { background: linear-gradient(135deg, #002147 0%, #003580 60%, #001a3a 100%); }
.pci-rods    { background: linear-gradient(135deg, #001e40 0%, #002f70 60%, #002147 100%); }
.pci-anchor  { background: linear-gradient(135deg, #002147 0%, #003888 60%, #001c38 100%); }
.pci-custom  { background: linear-gradient(135deg, #002040 0%, #003a80 60%, #001f3e 100%); }

/* subtle radial glow overlay */
.pci-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(207,181,59,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* fine crosshatch grid texture */
.pci-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 18px
  ), repeating-linear-gradient(
    90deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 18px
  );
  pointer-events: none;
}

.pci-illustration {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  padding: 12px;
  z-index: 1;
}

.pci-label {
  position: absolute;
  bottom: 10px;
  right: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.pci-badge {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.pci-grade {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.product-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.product-card-header h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }

.product-tag {
  background: rgba(240,165,0,0.1);
  color: #8a7020;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card > p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

.spec-list {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-row {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  line-height: 1.5;
}

.spec-row span:first-child {
  color: var(--text-light);
  font-weight: 600;
  min-width: 72px;
  flex-shrink: 0;
}

.spec-row span:last-child { color: var(--text); }

.merchant-intro {
  background: rgba(207,181,59,0.06);
  border: 1px solid rgba(207,181,59,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 32px;
}

.merchant-intro p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.8;
}

.merchant-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.merchant-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.merchant-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.merchant-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.merchant-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.merchant-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }

.merchant-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.standards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.standard-badge {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(207,181,59,0.3);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.standard-badge:hover {
  background: rgba(207,181,59,0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info-panel h2,
.contact-forms-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-intro {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-icon.whatsapp-icon {
  background: var(--gold-grad);
  color: var(--navy);
  border: 1px solid var(--gold-dark);
}

.contact-info-text { display: flex; flex-direction: column; gap: 2px; }
.contact-info-text strong { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.contact-info-text span, .contact-info-text a { font-size: 0.9rem; color: var(--text-light); }
.contact-info-text small { font-size: 0.78rem; color: var(--gray-500); }
.contact-info-text a:hover { color: var(--gold); }

.wa-cta-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f5f0e0 0%, #ede3be 100%);
  border: 2px solid rgba(212,175,55,0.4);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.wa-cta-icon {
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 4px;
}

.wa-cta-content strong { font-size: 0.95rem; color: var(--text); display: block; margin-bottom: 4px; }
.wa-cta-content p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 14px; line-height: 1.6; }

.inquiry-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.inquiry-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); }

.inquiry-card-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.inquiry-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.inquiry-icon.accent { background: linear-gradient(135deg, var(--navy-light) 0%, #2d5aa0 100%); }

.inquiry-card-header h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.inquiry-card-header p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

.inquiry-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.inquiry-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
}

.inquiry-features li svg { color: var(--gold); flex-shrink: 0; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.faq-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(207,181,59,0.3);
}

.faq-item h4 { font-size: 0.97rem; color: var(--white); margin-bottom: 12px; font-weight: 600; }
.faq-item p { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.75; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer-social a:hover { background: var(--green-wa); color: var(--white); }

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.footer-contact-list li svg { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list li a { color: rgba(255,255,255,0.55); }
.footer-contact-list li a:hover { color: var(--gold); }

.footer-inquiry-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.footer-inquiry-btns .btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 8px 16px;
  justify-content: center;
}

.footer-inquiry-btns .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ===== HOMEPAGE REAL-IMAGE CATALOG ===== */
.hp-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.hp-catalog-card {
  display: flex;
  flex-direction: column;
  background: #002455;
  border: 1px solid rgba(207,181,59,0.18);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
  position: relative;
}

.hp-catalog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
  transition: opacity var(--transition);
}

.hp-catalog-card:hover {
  border-color: rgba(207,181,59,0.55);
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
}

.hp-catalog-card:hover::before { opacity: 1; }

.hp-catalog-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #001229;
  position: relative;
  display: block;
}

.hp-catalog-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.hp-catalog-card:hover .hp-catalog-img img { transform: scale(1.05); }

.hp-catalog-info {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.hp-catalog-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.hp-catalog-info p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}

.hp-catalog-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  transition: gap var(--transition);
}

.hp-catalog-card:hover .hp-catalog-cta { gap: 10px; }

/* ===== COUNTRIES WE SERVE ===== */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.country-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 0 0 20px 0;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.country-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

/* Flag area – full-width banner at top of each card */
.country-flag-wrap {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f3f8;
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
  overflow: hidden;
}

.country-card:hover .country-flag-wrap {
  border-bottom-color: var(--gold);
  background: #e8edf8;
}

/* Inline SVG flag */
.flag-svg {
  width: 80px;
  height: auto;
  display: block;
  border-radius: 3px;
  border: 1px solid rgba(0,33,71,0.18);
  box-shadow: 0 3px 10px rgba(0,33,71,0.15);
  transition: transform var(--transition);
}

.country-card:hover .flag-svg {
  transform: scale(1.06);
}

.country-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0 10px;
  margin-bottom: 0;
}

/* ===== INDUSTRIES SERVED ===== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.industry-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(207,181,59,0.3);
}

.industry-icon {
  width: 56px;
  height: 56px;
  background: rgba(207,181,59,0.1);
  border: 1px solid rgba(207,181,59,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: all var(--transition);
}

.industry-card:hover .industry-icon {
  box-shadow: 0 6px 18px rgba(0,33,71,0.3);
  border-color: var(--gold);
  background: rgba(207,181,59,0.18);
}

.industry-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.industry-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
}

/* ===== QUALITY ASSURANCE STRIP ===== */
.quality-strip {
  background: linear-gradient(135deg, #001229 0%, #002455 100%);
  padding: 56px 0;
  border-top: 1px solid rgba(207,181,59,0.15);
  border-bottom: 1px solid rgba(207,181,59,0.15);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.quality-item {
  text-align: center;
}

.quality-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.quality-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.quality-divider {
  width: 1px;
  background: rgba(207,181,59,0.2);
  align-self: stretch;
}

/* ===== FAQ SECTION ===== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item-main {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(207,181,59,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item-main:hover { border-color: rgba(207,181,59,0.4); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.faq-q:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(207,181,59,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1;
  transition: all var(--transition);
}

.faq-item-main.open .faq-icon {
  background: rgba(207,181,59,0.15);
  border-color: var(--gold);
  box-shadow: 0 2px 10px rgba(0,33,71,0.2);
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-item-main.open .faq-a { display: block; }

/* ===== BRAND STATEMENT (SEO block) ===== */
.brand-statement {
  background: linear-gradient(135deg, #001229 0%, #002455 100%);
  border-top: 1px solid rgba(207,181,59,0.15);
  border-bottom: 1px solid rgba(207,181,59,0.15);
  padding: 64px 0;
}

.brand-statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.brand-statement h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.brand-statement h2 span { color: var(--gold); }

.brand-statement p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  margin-bottom: 16px;
}

.brand-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.brand-kw {
  background: rgba(207,181,59,0.08);
  border: 1px solid rgba(207,181,59,0.2);
  color: rgba(207,181,59,0.85);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}

.footer-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(207,181,59,0.08);
  border: 1px solid rgba(207,181,59,0.2);
  color: rgba(207,181,59,0.7);
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  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 6px 24px rgba(37,211,102,0.45);
  transition: all var(--transition);
}

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

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  box-shadow: var(--shadow);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid var(--navy);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .markets-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-divider { display: none; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-visual { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .merchant-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-logo-img { height: 45px; max-width: 180px; }
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    gap: 4px;
    border-top: 1px solid rgba(207,181,59,0.25);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    box-shadow: 0 8px 32px rgba(11,31,58,0.15);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link { padding: 12px 16px; font-size: 1rem; color: #0B1F3A; }
  .nav-cta { margin-left: 0; margin-top: 8px; justify-content: center; padding: 12px 16px; }
  .nav-brand-name { font-size: 26px; }

  .section { padding: 64px 0; }

  .features-grid { grid-template-columns: 1fr; }
  .products-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .markets-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .merchant-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .about-intro-visual { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .hp-catalog-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-statement-inner { grid-template-columns: 1fr; gap: 32px; }

  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 340px; justify-content: center; }

  .merchant-cta { flex-direction: column; }
  .merchant-cta .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-preview-grid { grid-template-columns: 1fr 1fr; }
  .markets-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-intro-visual { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2rem; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .nav-logo-img { height: 45px; max-width: 150px; }
  .nav-brand-name { font-size: 22px; }
  .footer-logo-img { height: 50px; }
  .pci-bg { height: 160px; }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================
   PRODUCT LANDING PAGES (.pl-*)
   ============================================= */

/* Overview 2-column layout */
.pl-overview-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}

.pl-overview-text > h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 20px;
  line-height: 1.25;
}

.pl-overview-text > p {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

.pl-overview-text > h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 12px;
}

/* Applications list */
.pl-app-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.pl-app-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.pl-app-list li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Standard tags */
.pl-standards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pl-std-tag {
  background: rgba(207,181,59,0.1);
  border: 1px solid rgba(207,181,59,0.28);
  color: #7a6212;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* Sticky sidebar spec card */
.pl-sidebar-inner {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  position: sticky;
  top: 104px;
}

.pl-sidebar-inner > h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.pl-sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

/* Product types grid (dark section) */
.pl-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pl-type-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  transition: all var(--transition);
}

.pl-type-card:hover {
  background: rgba(207,181,59,0.08);
  border-color: rgba(207,181,59,0.3);
  transform: translateY(-3px);
}

.pl-type-icon {
  width: 52px;
  height: 52px;
  background: rgba(207,181,59,0.1);
  border: 1px solid rgba(207,181,59,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 14px;
  transition: all var(--transition);
}

.pl-type-card:hover .pl-type-icon {
  background: rgba(207,181,59,0.18);
  border-color: var(--gold);
}

.pl-type-card h4 { font-size: 0.92rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.pl-type-card p  { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* Materials grid */
.pl-materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pl-material-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.pl-material-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pl-material-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 16px;
}

.pl-material-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pl-material-card p  { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }

/* Full-width spec table */
.pl-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.pl-spec-table th {
  background: var(--navy);
  color: var(--gold);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 18px;
  text-align: left;
}

.pl-spec-table td {
  padding: 11px 18px;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: top;
  line-height: 1.55;
}

.pl-spec-table tr:nth-child(even) td { background: var(--off-white); }
.pl-spec-table tr:last-child td { border-bottom: none; }
.pl-spec-table tr:hover td { background: rgba(207,181,59,0.05); }

/* Related products grid */
.pl-related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pl-related-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.pl-related-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pl-related-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background var(--transition);
}

.pl-related-card:hover .pl-related-icon { background: var(--navy-light); }

.pl-related-card span { font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.pl-related-card small { font-size: 0.72rem; color: var(--text-light); }

/* Product image block */
.pl-product-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fc;
  border-radius: 12px;
  overflow: hidden;
  padding: 16px;
}

.pl-product-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.pl-product-img-wrap:hover .pl-product-img {
  transform: scale(1.03);
}

/* Responsive overrides */
@media (max-width: 1024px) {
  .pl-overview-grid   { grid-template-columns: 1fr 320px; gap: 40px; }
  .pl-materials-grid  { grid-template-columns: repeat(2, 1fr); }
  .pl-related-grid    { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .pl-overview-grid  { grid-template-columns: 1fr; gap: 32px; }
  .pl-sidebar-inner  { position: static; }
  .pl-types-grid     { grid-template-columns: repeat(2, 1fr); }
  .pl-materials-grid { grid-template-columns: repeat(2, 1fr); }
  .pl-related-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .pl-types-grid     { grid-template-columns: 1fr 1fr; }
  .pl-related-grid   { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   LEAD CAPTURE FORM — Phase 1 CRM
   ============================================= */

/* Two-column layout: text left, form right */
.lead-section-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.lead-section-text .section-eyebrow { margin-bottom: 8px; }
.lead-section-text .section-title   { font-size: 1.75rem; margin-bottom: 12px; }
.lead-section-text p                { color: var(--text-light); line-height: 1.7; }

.lead-benefits {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lead-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}
.lead-benefits li svg { color: var(--gold); flex-shrink: 0; }

/* Form card */
.lead-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Two-column name + phone row */
.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

/* Individual field */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}

.form-required { color: #e53e3e; margin-left: 2px; }
.form-optional { color: var(--gray-500); font-weight: 400; font-size: 0.8rem; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237f8ca4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-group textarea { resize: vertical; min-height: 88px; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.18);
}

.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12);
}

.form-error {
  font-size: 0.8rem;
  color: #e53e3e;
  min-height: 1em;
}

/* Submit button */
.lead-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 13px 28px;
  font-size: 1rem;
  margin-top: 4px;
}

/* Footer: WhatsApp fallback */
.lead-form-footer {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.6;
}

.lead-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--green-wa);
  font-weight: 600;
  transition: opacity var(--transition);
}
.lead-wa-link:hover { opacity: 0.85; }

/* ── Thank You Page ──────────────────────────────────────────────────────── */
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background: var(--off-white);
}

.thank-you-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 56px 48px;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.ty-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
}

.thank-you-card h1 {
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.ty-message {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.ty-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.ty-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-light);
}
.ty-detail-item svg { color: var(--gold); flex-shrink: 0; }

.ty-urgent {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.ty-wa-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}

.ty-back-link {
  display: inline-block;
  color: var(--navy-light);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}
.ty-back-link:hover { color: var(--gold); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lead-section-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .lead-form-row  { grid-template-columns: 1fr; gap: 0; }
  .lead-form-wrap { padding: 24px 18px; }
  .thank-you-card { padding: 36px 20px; }
  .thank-you-card h1 { font-size: 1.5rem; }
}

/* =============================================
   ENQUIRY POPUP MODAL
   ============================================= */

#enquiry-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 21, 47, 0.72);
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#enquiry-overlay.open {
  opacity: 1;
  pointer-events: all;
}

#enquiry-modal {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,21,47,0.35);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
}

#enquiry-overlay.open #enquiry-modal {
  transform: translateY(0) scale(1);
}

.em-header {
  background: #1a2b5e;
  border-radius: 12px 12px 0 0;
  border-top: 4px solid #c9a84c;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #c9a84c;
  position: sticky;
  top: 0;
  z-index: 1;
}

.em-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.em-header-text { flex: 1; }

.em-subtitle {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.em-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s ease;
}
.em-close:hover { color: #c9a84c; }

.em-body {
  padding: 28px;
}

.em-intro {
  font-size: 0.9rem;
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.6;
}

.em-body form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.em-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.em-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.em-group label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: #1a2b5e;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.em-required { color: #e53e3e; margin-left: 2px; }
.em-optional { color: #7f8ca4; font-weight: 400; font-size: 0.78rem; }

.em-group input,
.em-group select,
.em-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dde2ee;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a2b5e;
  background: #f8f9fc;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.em-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237f8ca4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}

.em-group textarea { resize: vertical; min-height: 80px; }

.em-group input:focus,
.em-group select:focus,
.em-group textarea:focus {
  outline: none;
  border-color: #c9a84c;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.em-group input.em-input-error,
.em-group select.em-input-error,
.em-group textarea.em-input-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
}

.em-error {
  font-size: 0.78rem;
  color: #e53e3e;
  min-height: 1em;
}

.em-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 32px;
  background: linear-gradient(135deg, #c9a84c, #b8962e);
  color: #1a2b5e;
  border: none;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}

.em-submit:hover {
  background: linear-gradient(135deg, #d4b45a, #c9a84c);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.5);
}

/* Navbar "Get a Quote" button */
.nav-quote-btn {
  background: #c9a84c;
  color: #1a2b5e;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
  white-space: nowrap;
}

.nav-quote-btn:hover {
  background: #b8962e;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
}

@media (max-width: 768px) {
  .nav-quote-btn {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
    padding: 12px 16px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  #enquiry-modal { max-height: 95vh; }
  .em-body { padding: 20px 16px; }
  .em-row { grid-template-columns: 1fr; gap: 0; }
}

/* ── Country landing page shared styles ──────────────────────────────────────── */
.cs-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.cs-value-card {
  background: #1e3047;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 8px;
  padding: 1.4rem 1.25rem;
  transition: border-color 0.2s;
}
.cs-value-card:hover { border-color: rgba(201,168,76,0.5); }
.cs-value-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.85rem;
  color: var(--gold);
}
.cs-value-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
}
.cs-value-body {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
}
.cs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.cs-infobox {
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 8px;
  padding: 1.4rem 1.5rem;
}
.cs-infobox-dark {
  background: #1e3047;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 1.4rem 1.5rem;
}
.cs-infobox h3 { color: #1a2a3a; font-size: 1rem; font-weight: 600; margin: 0 0 0.75rem; }
.cs-infobox-dark h3 { color: var(--gold); font-size: 1rem; font-weight: 600; margin: 0 0 0.75rem; }
.cs-infobox ul { color: #374151; }
.cs-infobox-dark ul { color: rgba(255,255,255,0.65); }
.cs-infobox ul, .cs-infobox-dark ul { margin: 0; padding: 0 0 0 1.1rem; font-size: 0.875rem; line-height: 1.95; }
.cs-infobox p { color: #374151; font-size: 0.875rem; line-height: 1.7; margin: 0.5rem 0 0; }
.cs-infobox-dark p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.7; margin: 0.5rem 0 0; }
.cs-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 5px 6px 0;
}
@media (max-width: 680px) {
  .cs-two-col { grid-template-columns: 1fr; gap: 1rem; }
  .cs-value-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) { .cs-value-grid { grid-template-columns: 1fr; } }

/* ── Footer export-markets row ──────────────────────────────────────────────── */
.footer-markets {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  padding: 0.9rem 0 1.1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 1.5rem;
  font-size: 0.82rem;
}
.footer-markets-label { color: rgba(255,255,255,0.38); font-weight: 500; white-space: nowrap; }
.footer-markets a { color: rgba(255,255,255,0.52); text-decoration: none; transition: color 0.2s; }
.footer-markets a:hover { color: var(--gold); }
.footer-markets-sep { color: rgba(255,255,255,0.18); }

/* ── Blog index ──────────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.blog-card {
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 10px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.09); border-color: #c9a84c; }
.blog-card-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 2px 9px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  width: fit-content;
}
.blog-card h3 { color: #1a2a3a; font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin: 0 0 0.6rem; }
.blog-card p { color: #4b5563; font-size: 0.875rem; line-height: 1.7; margin: 0 0 1rem; flex-grow: 1; }
.blog-card-meta { font-size: 0.78rem; color: #9ca3af; margin-bottom: 0.85rem; }
.blog-card-link { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.875rem; display: inline-flex; align-items: center; gap: 4px; }
.blog-card-link:hover { text-decoration: underline; }

/* ── Blog article body ───────────────────────────────────────────────────────── */
.article-wrap { max-width: 740px; margin: 0 auto; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.article-tag {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 2px 9px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.article-body { color: #374151; font-size: 0.975rem; line-height: 1.85; }
.article-body h2 {
  color: #1a2a3a;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2.5rem 0 0.9rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--gold);
}
.article-body h3 { color: #1a2a3a; font-size: 1.05rem; font-weight: 600; margin: 1.75rem 0 0.5rem; }
.article-body p { margin: 0 0 1.05rem; }
.article-body ul, .article-body ol { margin: 0 0 1.1rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: 0.4rem; line-height: 1.75; }
.article-body strong { color: #1a2a3a; }
.article-body a { color: var(--gold); }
.article-body blockquote {
  border-left: 4px solid var(--gold);
  background: #fffbf2;
  padding: 0.9rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 6px 6px 0;
  color: #4b5563;
  font-style: italic;
}
.article-toc {
  background: #f5f7fa;
  border: 1px solid #e0e7ef;
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  margin: 0 0 2rem;
  font-size: 0.875rem;
}
.article-toc strong { color: #1a2a3a; display: block; margin-bottom: 0.5rem; }
.article-toc ol { margin: 0; padding-left: 1.25rem; color: #374151; }
.article-toc li { margin-bottom: 0.25rem; }
.article-toc a { color: #1a2a3a; text-decoration: none; }
.article-toc a:hover { color: var(--gold); }
@media (max-width: 600px) {
  .article-body h2 { font-size: 1.15rem; }
  .blog-grid { grid-template-columns: 1fr; }
}
