/* ==========================================================
   Mineral Gate Trading Pvt Ltd — Stylesheet
   Palette: Royal Blue (#050B14 → #0A1128) + Ore Gold (#D4AF37)
   ========================================================== */

:root {
  --bg-primary: #050B14;
  --bg-secondary: #0A1128;
  --bg-tertiary: #0F1A33;
  --gold: #D4AF37;
  --gold-light: #E8C757;
  --gold-dark: #B89124;
  --blue: #1D4ED8;
  --blue-light: #3B5FE0;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --glass: rgba(10, 17, 40, 0.65);
  --shadow-gold: 0 10px 40px -10px rgba(212, 175, 55, 0.35);
  --shadow-card: 0 8px 30px -8px rgba(0, 0, 0, 0.5);
  --container: 1280px;
  --transition: 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(29, 78, 216, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(212, 175, 55, 0.08), transparent);
  background-attachment: fixed;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Manrope', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

p { color: var(--text-secondary); }

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1280px) { .container { padding: 0 64px; } }

/* ============== NAVIGATION ============== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 11, 20, 0.75);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .nav-inner { padding: 0 48px; } }
@media (min-width: 1280px) { .nav-inner { padding: 0 64px; } }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}
.brand img {
  height: 48px;
  width: 48px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border-strong);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text span:first-child { color: var(--gold); font-size: 16px; }
.brand-text span:last-child { color: var(--text-secondary); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }

.nav-links {
  display: none;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  display: none;
  align-items: center;
}
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  color: var(--text-primary);
  cursor: pointer;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(5, 11, 20, 0.95);
  backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { width: 100%; margin-top: 18px; justify-content: center; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #0A0A0A;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: #0A0A0A;
  transform: translateY(-2px);
  box-shadow: 0 14px 50px -10px rgba(212, 175, 55, 0.55);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 96px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  pointer-events: none;
}
.hero .container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,11,20,0.92) 0%, rgba(5,11,20,0.75) 55%, rgba(5,11,20,0.45) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero .container > * { position: relative; z-index: 1; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(29, 78, 216, 0.20), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.15), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.30);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 920px;
}
.hero h1 .accent { color: var(--gold); font-style: italic; font-weight: 500; }

.hero p.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 640px;
  margin-bottom: 40px;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
  max-width: 720px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }

.hero-stat .num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero-stat .num span { color: var(--gold); }
.hero-stat .label {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============== SECTIONS ============== */
.section { padding: 96px 0; position: relative; }
@media (min-width: 768px) { .section { padding: 120px 0; } }

.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.section .sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-secondary);
  max-width: 600px;
}
.section-head.center .sub { margin-left: auto; margin-right: auto; }

/* ============== ABOUT (home preview) ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }

.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 11, 20, 0.5));
  z-index: 1;
}
.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  padding: 18px 22px;
  border-radius: 6px;
}
.about-badge .v {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.about-badge .l {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.about-content p { margin-bottom: 18px; font-size: 16px; }
.about-content .btn { margin-top: 16px; }

/* ============== SERVICES GRID ============== */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover .card-img img { transform: scale(1.06); }
.card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 11, 20, 0.7));
}

.card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.30);
  border-radius: 8px;
  color: var(--gold);
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  font-weight: 600;
}
.card p { font-size: 14.5px; flex: 1; }
.card .more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============== PRODUCTS GRID ============== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition);
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.product-card .pimg {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.product-card .pimg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.product-card:hover .pimg img { transform: scale(1.08); }
.product-card .pbody { padding: 22px 24px 24px; }
.product-card .ptag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Detailed product block (minerals page) */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) { .product-detail { grid-template-columns: 1fr 1.4fr; gap: 56px; padding: 56px 0; } }

.product-detail .pd-img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
}
.product-detail .pd-img img { width: 100%; height: 100%; object-fit: cover; }

.product-detail .pd-num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
}
.product-detail h3 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 14px;
  font-weight: 600;
}
.product-detail p { margin-bottom: 18px; font-size: 15px; }

.spec-list, .app-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 22px;
}
.spec-list li, .app-list li {
  font-size: 14.5px;
  color: var(--text-secondary);
  padding-left: 22px;
  position: relative;
}
.spec-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}
.app-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
.product-detail h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 16px 0 10px;
}

/* ============== WHY CHOOSE US ============== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-item {
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all var(--transition);
}
.why-item:hover { border-color: rgba(212, 175, 55, 0.4); }
.why-item .why-num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.why-item p { font-size: 14px; }

/* ============== CTA STRIP ============== */
.cta-strip {
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.10), rgba(29, 78, 216, 0.10)),
    var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/l-mining.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  mix-blend-mode: overlay;
}
.cta-strip .inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  position: relative;
  z-index: 1;
}
@media (min-width: 900px) { .cta-strip .inner { flex-direction: row; align-items: center; } }
.cta-strip h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  max-width: 660px;
}
.cta-strip h2 .accent { color: var(--gold); }

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; } }

.contact-info-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.contact-info-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-info-card .desc {
  font-size: 14.5px;
  margin-bottom: 28px;
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.contact-row .ico {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.30);
  border-radius: 6px;
  color: var(--gold);
}
.contact-row .ico svg { width: 18px; height: 18px; }
.contact-row .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-row .val {
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
}
.contact-row .val a:hover { color: var(--gold); }

/* form */
.form-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.form-card h3 { font-size: 24px; margin-bottom: 6px; }
.form-card .desc { font-size: 14.5px; margin-bottom: 28px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-field label .req { color: var(--gold); margin-left: 2px; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  transition: all var(--transition);
  outline: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-field select option { background: var(--bg-secondary); color: var(--text-primary); }

.form-card .btn { width: 100%; margin-top: 12px; padding: 16px; }
.form-note { font-size: 12.5px; color: var(--text-muted); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  padding: 18px 22px;
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.40);
  border-radius: 6px;
  color: var(--text-primary);
  font-size: 14.5px;
  margin-bottom: 18px;
}
.form-success.show { display: block; }

/* ============== PAGE HEADER ============== */
.page-header {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(29, 78, 216, 0.20), transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header .crumb {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-header h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-header p {
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 680px;
}

/* ============== ABOUT PAGE BLOCKS ============== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.value-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 6px;
  border-top: 3px solid var(--gold);
  transition: all var(--transition);
}
.value-card:hover { background: rgba(255, 255, 255, 0.05); transform: translateY(-3px); }
.value-card .lbl {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.value-card h3 { font-size: 24px; margin-bottom: 12px; font-weight: 600; }
.value-card p { font-size: 15px; }

/* ============== FOOTER ============== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; } }

.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p {
  font-size: 14.5px;
  color: var(--text-secondary);
  max-width: 320px;
  line-height: 1.65;
}
.footer h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.footer ul li { margin-bottom: 12px; }
.footer ul li a { font-size: 14.5px; color: var(--text-secondary); }
.footer ul li a:hover { color: var(--gold); }
.footer-contact div {
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); margin-top: 4px; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }

/* ============== FADE IN ANIMATION ============== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* selection */
::selection { background: var(--gold); color: #0A0A0A; }

/* scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============== LOGISTICS GRID (with image left, content right) ============== */
.logistics-list { display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 768px) { .logistics-list { gap: 32px; } }

.logistics-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition);
}
@media (min-width: 768px) { .logistics-item { grid-template-columns: 1fr 1.4fr; } }
.logistics-item:hover { border-color: rgba(212,175,55,0.4); transform: translateY(-3px); }
.logistics-item:nth-child(even) > .li-img { order: 2; }
@media (max-width: 767px) { .logistics-item:nth-child(even) > .li-img { order: 0; } }

.li-img { aspect-ratio: 4 / 3; overflow: hidden; }
@media (min-width: 768px) { .li-img { aspect-ratio: auto; min-height: 100%; } }
.li-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.logistics-item:hover .li-img img { transform: scale(1.05); }

.li-body { padding: 28px 28px 32px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .li-body { padding: 36px 40px; } }
.li-num {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
}
.li-body h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; margin-bottom: 12px; }
.li-body p { font-size: 14.5px; margin-bottom: 14px; }
.li-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.li-tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ============== GLOBAL PRESENCE STATS BLOCK ============== */
.presence-block {
  background: linear-gradient(135deg, rgba(29,78,216,0.08), rgba(212,175,55,0.05));
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 32px;
  margin-top: 56px;
}
@media (min-width: 768px) { .presence-block { padding: 64px 56px; } }

.presence-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 40px;
}
.presence-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.presence-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}

.presence-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
@media (min-width: 768px) { .presence-stats { grid-template-columns: repeat(4, 1fr); gap: 32px; } }
.presence-stat .num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.presence-stat .label {
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ============== TESTIMONIALS ============== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.testimonial {
  position: relative;
  padding: 36px 32px 28px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -12px;
  left: 24px;
  font-family: 'Outfit', serif;
  font-size: 100px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.5;
}
.testimonial blockquote {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-primary);
  flex: 1;
  margin-bottom: 20px;
}
.testimonial .who {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testimonial .who .name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}
.testimonial .who .org {
  font-size: 13px;
  color: var(--gold);
  margin-top: 2px;
}

/* ============== WHATSAPP FLOATING BUTTON ============== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: white;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 4px rgba(37, 211, 102, 0.18);
  transition: all 280ms ease;
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  color: white;
  box-shadow: 0 14px 40px -8px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.18);
}
.wa-float svg { width: 32px; height: 32px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 480px) {
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}
