/* ===========================
   LIMRA TRADING CO. — STYLESHEET
   =========================== */

:root {
  --green-dark: #1a3a2a;
  --green-mid: #2d5a3d;
  --green-light: #3d7a52;
  --gold: #c9973a;
  --gold-light: #e8b96a;
  --cream: #f8f4ee;
  --cream-dark: #ede8df;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --shadow: 0 8px 40px rgba(0,0,0,0.1);
  --radius: 16px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--font-display); }

.section-pad { padding: 90px 0; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 4px 16px;
  margin-bottom: 16px;
}
.section-tag.light { color: var(--gold-light); border-color: var(--gold-light); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--green-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }

.section-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ===== BACKGROUNDS ===== */
.bg-cream { background: var(--cream); }
.bg-dark-green { background: var(--green-dark); }
.bg-white { background: var(--white); }

/* ===== NAVBAR ===== */
#mainNav {
  background: rgba(26, 58, 42, 0.0);
  backdrop-filter: blur(0);
  padding: 20px 0;
  transition: all 0.4s ease;
}
#mainNav.scrolled {
  background: rgba(26, 58, 42, 0.97);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.brand-text span { color: var(--gold-light); }

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.1);
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.4);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 10px;
  transition: all 0.3s;
  letter-spacing: 0.02em;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 151, 58, 0.4);
}
.btn-dark-green {
  background: var(--green-dark);
  color: var(--white);
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 10px;
  transition: all 0.3s;
}
.btn-dark-green:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 58, 42, 0.3);
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0d2218 0%, #1a3a2a 40%, #2d5a3d 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: 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");
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
}

/* Decorative circles */
.hero-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,58,0.12) 0%, transparent 70%);
  right: -100px; top: -100px;
}
.hero-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,122,82,0.2) 0%, transparent 70%);
  right: 200px; bottom: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(201,151,58,0.15);
  border: 1px solid rgba(201,151,58,0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 560px;
}

.hero-stats { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== MARQUEE ===== */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ABOUT IMAGE ===== */
.about-img-wrap {
  position: relative;
  height: 420px;
}
.about-img-bg {
  position: absolute;
  width: 85%; height: 85%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius);
  top: 0; left: 0;
  overflow: hidden;
}
.about-img-bg::after {
  content: '🌾';
  position: absolute;
  font-size: 8rem;
  bottom: -10px; right: 20px;
  opacity: 0.15;
}
.about-img-card {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
}
.about-img-card i {
  font-size: 1.8rem;
  color: var(--gold);
}
.about-img-card strong {
  font-size: 0.9rem;
  color: var(--green-dark);
}
.about-img-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.about-pattern {
  position: absolute;
  top: 30px; right: 30px;
  width: 80px; height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.3;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  height: 100%;
}
.feature-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,151,58,0.3);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px;
  background: rgba(201,151,58,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.feature-card h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 32px 24px;
  height: 100%;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green-light);
}
.product-card.featured {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.product-card.featured h5 { color: var(--white); }
.product-card.featured p { color: rgba(255,255,255,0.65); }
.product-card.featured .product-link { color: var(--gold-light); }

.product-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}
.product-icon { font-size: 2.5rem; margin-bottom: 18px; }
.product-card h5 {
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.product-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.product-link {
  color: var(--green-mid);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.product-link:hover { color: var(--gold); }

/* ===== STEP CARDS ===== */
.step-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  background: var(--white);
  transition: all 0.3s;
  position: relative;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.step-card h5 {
  color: var(--green-dark);
  margin-bottom: 10px;
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-card.featured-testimonial {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.testimonial-card.featured-testimonial p { color: rgba(255,255,255,0.8); }
.testimonial-card.featured-testimonial .stars { color: var(--gold-light); }
.testimonial-card.featured-testimonial strong { color: var(--white) !important; }
.testimonial-card.featured-testimonial span { color: rgba(255,255,255,0.5) !important; }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--green-dark); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0d2218, #1a3a2a);
  overflow: hidden;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,151,58,0.1) 0%, transparent 70%);
}
.cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0d1f16;
  padding: 70px 0 0;
}
.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-heading {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
}
.footer-contact li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-divider { border-color: rgba(255,255,255,0.08); margin: 50px 0 20px; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.82rem; margin: 0 0 20px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #0d2218, #1a3a2a);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,151,58,0.1) 0%, transparent 70%);
  right: -50px; top: -50px;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.page-breadcrumb { margin-bottom: 16px; }
.page-breadcrumb a, .page-breadcrumb span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.page-breadcrumb .active { color: var(--gold-light); }

/* ===== CONTACT FORM ===== */
.contact-form .form-control,
.contact-form .form-select {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: all 0.2s;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,90,61,0.12);
  background: var(--white);
}
.contact-form label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

/* ===== INFO BOX ===== */
.info-box {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  height: 100%;
  transition: all 0.3s;
}
.info-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.info-box-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.info-box h6 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.info-box p { color: var(--green-dark); font-weight: 500; margin: 0; font-size: 0.92rem; }

/* ===== MARKET CARDS ===== */
.market-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}
.market-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-mid);
}
.market-flag { font-size: 2.5rem; margin-bottom: 12px; }
.market-card h5 { color: var(--green-dark); font-size: 1rem; margin-bottom: 6px; }
.market-card p { color: var(--text-muted); font-size: 0.82rem; margin: 0; }

/* ===== ABOUT VALUES ===== */
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.value-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.value-item h6 { color: var(--green-dark); font-size: 1rem; margin-bottom: 4px; }
.value-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* ===== PRODUCT DETAIL ===== */
.product-detail-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: all 0.3s;
}
.product-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-detail-img {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  position: relative;
}
.product-detail-body { padding: 28px; }
.product-detail-body h4 { color: var(--green-dark); margin-bottom: 10px; }
.product-detail-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; }
.product-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.product-spec i { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 140px 0 80px; }
  .about-img-wrap { height: 320px; }
  .section-pad { padding: 60px 0; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.6rem; }
}
