/* ============================================================
   UrekaX — Wholesale Distributor Website
   styles.css
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #2d3748;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: #0d1b2a; text-decoration: none; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand img {
  height: 110px;
  width: auto;
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: #4a5568;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: #0d1b2a; background: #f4f6f8; }
.nav-links a.active { color: #0d1b2a; font-weight: 600; }

.nav-links .nav-cta {
  background: #0d1b2a !important;
  color: #fff !important;
  padding: 10px 20px !important;
  margin-left: 8px;
  font-weight: 600 !important;
}

.nav-links .nav-cta:hover { background: #000000 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2d3748;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(150deg, #f5f6f8 0%, #e8eaee 55%, #dde1e6 100%);
  padding: 100px 0 88px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  color: #0d1b2a;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero-tagline {
  font-size: clamp(17px, 2.5vw, 21px);
  color: #0d1b2a;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  color: #4a5568;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: inherit;
}

.btn-primary { background: #0d1b2a; color: #fff; border-color: #0d1b2a; }
.btn-primary:hover { background: #000000; border-color: #000000; color: #fff; }

.btn-outline { background: transparent; color: #0d1b2a; border-color: #0d1b2a; }
.btn-outline:hover { background: #f4f6f8; }

.btn-white { background: #fff; color: #0d1b2a; border-color: #fff; }
.btn-white:hover { background: #f4f6f8; }

.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 26px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-badge { display: flex; align-items: center; gap: 12px; }

.trust-badge-icon {
  width: 40px;
  height: 40px;
  background: #f4f6f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg { width: 20px; height: 20px; color: #0d1b2a; }

.trust-badge-text strong { display: block; font-size: 14px; color: #0d1b2a; font-weight: 600; }
.trust-badge-text span { font-size: 12px; color: #718096; }

/* ===== SECTIONS ===== */
.section { padding: 84px 0; }
.section-alt { background: #f7f9fc; }
.section-dark { background: #0d1b2a; }

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }

.section-label {
  display: inline-block;
  color: #0d1b2a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  color: #0d1b2a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 17px;
  color: #718096;
  max-width: 600px;
  line-height: 1.8;
}

.section-header.center .section-desc { margin: 0 auto; }

/* ===== CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(13,27,42,0.1);
  transform: translateY(-2px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: #f4f6f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg { width: 26px; height: 26px; color: #0d1b2a; }
.card h3 { font-size: 18px; color: #0d1b2a; margin-bottom: 10px; font-weight: 700; }
.card p { font-size: 15px; color: #718096; line-height: 1.7; }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2942 100%);
  padding: 80px 0 56px;
  text-align: center;
}

.page-header h1 { color: #fff; font-size: clamp(28px, 4vw, 46px); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.5px; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 18px; max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: #f4f6f8;
  border: 1px solid #dde1e6;
  border-left: 4px solid #0d1b2a;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 24px 0;
}

.highlight-box h4 { color: #0d1b2a; margin-bottom: 8px; font-size: 15px; font-weight: 600; }
.highlight-box p, .highlight-box li { color: #2d3748; font-size: 14px; line-height: 1.7; }
.highlight-box ul { padding-left: 18px; margin-top: 8px; }
.highlight-box li { margin-bottom: 4px; }

/* ===== CHECK LIST ===== */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 16px 0; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #2d3748;
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #0d1b2a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  border-radius: 50%;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 32px; }

.step { display: flex; gap: 20px; align-items: flex-start; }

.step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #0d1b2a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
}

.step-content h4 { font-size: 17px; color: #0d1b2a; font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 15px; color: #718096; line-height: 1.7; }

/* ===== STATS ===== */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; text-align: center; }
.stat-num { font-size: 44px; font-weight: 800; color: #0d1b2a; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 15px; color: #718096; }

/* ===== CONTACT INFO CARD ===== */
.contact-info-card {
  background: #0d1b2a;
  border-radius: 14px;
  padding: 44px 36px;
}

.contact-info-card h3 { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 40px; line-height: 1.7; }

.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-item:last-child { margin-bottom: 0; }

.ci-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-icon svg { width: 20px; height: 20px; color: #a0aec0; }

.ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.ci-value { font-size: 15px; color: #fff; font-weight: 500; }
.ci-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ===== CONTACT FORM ===== */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }

.form-group label { display: block; font-size: 14px; font-weight: 600; color: #2d3748; margin-bottom: 6px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: #2d3748;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #0d1b2a;
  box-shadow: 0 0 0 3px rgba(13,27,42,0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }
.form-required { color: #e53e3e; margin-left: 2px; }
.form-note { font-size: 13px; color: #718096; margin-top: 8px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2942 100%);
  padding: 84px 0;
  text-align: center;
}

.cta-banner h2 { color: #fff; font-size: clamp(24px, 3.5vw, 38px); font-weight: 700; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 18px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.8; }

/* ===== FOOTER ===== */
footer {
  background: #0d1b2a;
  padding: 64px 0 32px;
}

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

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

.footer-brand .footer-logo {
  height: 76px;
  width: 76px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 280px; }

.footer-brand .footer-parent {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ===== LEGAL PAGES ===== */
.legal { max-width: 820px; margin: 0 auto; }
.legal-updated { background: #f7f9fc; border-radius: 6px; padding: 12px 18px; font-size: 14px; color: #718096; margin-bottom: 36px; border-left: 3px solid #0d1b2a; }
.legal h2 { font-size: 22px; color: #0d1b2a; margin: 48px 0 14px; padding-bottom: 10px; border-bottom: 2px solid #e2e8f0; }
.legal h3 { font-size: 17px; color: #0d1b2a; margin: 28px 0 8px; font-weight: 600; }
.legal p { font-size: 15px; color: #4a5568; margin-bottom: 16px; line-height: 1.8; }
.legal ul, .legal ol { padding-left: 24px; margin: 12px 0 20px; }
.legal li { font-size: 15px; color: #4a5568; margin-bottom: 8px; line-height: 1.7; }

/* ===== DIVIDER ===== */
.divider { border: none; border-top: 1px solid #e2e8f0; margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-brand img { height: 72px; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; border-radius: 0; }
  .nav-links .nav-cta { margin: 8px 16px; text-align: center; border-radius: 6px; }
  .hamburger { display: flex; }

  .hero { padding: 72px 0 60px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .trust-bar-inner { gap: 24px; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .cards { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stats { grid-template-columns: 1fr; }
}
