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

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000; /* Black text on white background */
  background-color: #fff; /* White background */
}

a {
  color: #d4af37; /* Gold links */
  text-decoration: none;
}

a:hover {
  color: #bfa94f; /* Darker gold on hover */
}

/* Container */
.container {
  width: 90%;
  max-width: 1140px;
  margin: auto;
}

/* Header */
header {
  background-color: #2b2a30; /* Dark gray header */
  color: #d4af37; /* Gold text */
  padding: 30px 0;
  border-bottom: 4px solid #d4af37; /* Gold border */
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: #d4af37;
}

.tagline {
  font-size: 0.95rem;
  color: #f0e6b6; /* Soft gold/white */
}

.navbar {
  margin-top: 25px;
  text-align: center;
}

.navbar a {
  margin: 0 20px;
  font-weight: 600;
  color: #d4af37;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
}

.navbar a:hover {
  color: #fff; /* White on hover */
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d4af37;
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #d4af37, #bfa94f); /* Gold gradient */
  color: #000; /* Black text */
  padding: 80px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #000;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #3a2e00; /* Dark gold */
}

.btn-primary {
  background: #000;
  color: #d4af37;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background: #222;
  color: #fff;
}

/* Sections */
.section {
  padding: 60px 0;
  background: #fff; /* White background */
  color: #000; /* Black text */
}

.gray-bg {
  background: #f7f7f7; /* Light gray for alternate sections */
}

.section h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #d4af37;
}

/* Grid Layouts */
.grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.grid-2 ul {
  flex: 1;
  list-style: none;
  color: #000;
}

.grid-2 li {
  margin-bottom: 12px;
}

/* Industries */
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.industry-box {
  background: #000;
  padding: 20px;
  border: 1px solid #d4af37;
  flex: 1 1 calc(50% - 20px);
  text-align: center;
  font-weight: 600;
  color: #d4af37;
  border-radius: 6px;
}

/* Blockquote */
blockquote {
  border-left: 5px solid #d4af37;
  padding: 20px;
  background: #f0e6b6; /* Soft gold background */
  font-style: italic;
  font-size: 1.1rem;
  color: #000;
}

blockquote p {
  margin-bottom: 12px;
  line-height: 1.6;
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* Contact */
.contact p {
  margin-bottom: 12px;
  color: #000;
}

.btn-secondary {
  margin-top: 20px;
  display: inline-block;
  background: #d4af37;
  color: #000;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background: #bfa94f;
  color: #000;
}

/* Footer */
footer {
  background: #000;
  color: #d4af37;
  text-align: center;
  padding: 40px 0 20px 0;
  font-size: 0.9rem;
  border-top: 1px solid #d4af37;
}

/* Disclaimer blockquote uses same styling as other blockquotes */

/* Responsive */
@media (max-width: 768px) {
  .grid-2 {
    flex-direction: column;
    gap: 0;
  }

  /* Full-width single column — no extra left/right inset */
  .section:has(.grid-2) > .container {
    width: 100%;
    max-width: none;
    padding-left: 16px;
    padding-right: 16px;
  }

  .grid-2 ul {
    flex: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .industries {
    flex-direction: column;
  }

  .navbar {
    text-align: center;
    margin-top: 20px;
  }

  .navbar a {
    margin: 0 10px;
    font-size: 1rem;
    display: inline-block;
  }

  .logo {
    height: 150px;
  }

  .company-title {
    font-size: 1.3rem;
  }

  .company-id {
    font-size: 0.8rem;
  }

  header {
    padding: 20px 0;
  }

  .disclaimer {
    padding: 0 10px;
  }

  .disclaimer blockquote {
    padding: 12px 15px;
    font-size: 0.8rem;
  }

  .disclaimer h4 {
    font-size: 1rem;
  }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366; /* Keep WhatsApp green */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  z-index: 1000;
}

.whatsapp-btn:hover {
  background-color: #1ebe5b;
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Go to Top Button */
.go-top-btn {
  position: fixed;
  bottom: 95px; /* Position above WhatsApp button */
  right: 25px;
  background-color: #d4af37; /* Gold color to match theme */
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: none; /* Hidden by default, shown on scroll */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 1000;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
}

.go-top-btn:hover {
  background-color: #bfa94f;
  transform: translateY(-3px);
}

.go-top-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.go-top-btn span {
  line-height: 1;
  font-size: 0.75rem;
}

/* Blog Section */
.section.gray-bg {
  background-color: #f7f7f7;
}

#blog h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #d4af37;
}

.blog-post {
  background: #fff;
  padding: 1.8rem 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
  line-height: 1.6;
  color: #000;
}

.blog-post h4 {
  color: #d4af37;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-post h5 {
  margin-top: 1rem;
  margin-bottom: 0.6rem;
  color: #bfa94f;
  font-weight: 600;
}

.blog-post ul, .blog-post ol {
  margin-left: 1.2rem;
  margin-bottom: 1rem;
}

.blog-post ul li, .blog-post ol li {
  margin-bottom: 0.3rem;
  line-height: 1.4;
}

.blog-post p {
  margin-bottom: 1rem;
  color: #000;
}

/* Header Container & Logo */
.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 15px;
}

.logo {
  height: 200px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.4)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
  transition: filter 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 25px rgba(212, 175, 55, 0.6)) drop-shadow(0 0 35px rgba(212, 175, 55, 0.4));
}

.company-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 10px;
}

.company-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #d4af37;
  display: block;
  margin-bottom: 5px;
}

.company-id {
  font-size: 0.9rem;
  color: #f0e6b6;
  display: block;
}

.navbar a.active {
  color: #fff;
}

.navbar a.active::after {
  width: 100%;
}

/* Products page — match site gold / dark theme */
.products-hero {
  background: linear-gradient(to right, #d4af37, #bfa94f);
  color: #000;
  padding: 80px 0;
  text-align: center;
}

.products-eyebrow {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #3a2e00;
}

.products-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #000;
  font-weight: 700;
}

.products-intro {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #3a2e00;
}

.products-section {
  padding-top: 60px;
}

.products-section > .container > h3 {
  text-align: center;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  border: 1px solid #d4af37;
  background: #000;
  color: #d4af37;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #d4af37;
  color: #000;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border: 1px solid #d4af37;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.35);
}

.product-image {
  position: relative;
  height: 210px;
  background: #2b2a30;
  overflow: hidden;
  border-bottom: 1px solid #d4af37;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #000;
  color: #d4af37;
  border: 1px solid #d4af37;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
}

.product-body {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
}

.product-brand {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #d4af37;
  margin-bottom: 8px;
}

.product-body h3 {
  font-size: 1.1rem;
  color: #000;
  text-align: left;
  margin-bottom: 10px;
  line-height: 1.35;
}

.product-desc {
  color: #000;
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid #f0e6b6;
}

.product-price {
  font-weight: 700;
  color: #000;
}

.product-moq {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
}

.product-link {
  display: inline-block;
  font-weight: 600;
  color: #d4af37;
  font-size: 0.95rem;
}

.product-link:hover {
  color: #bfa94f;
}

.products-cta {
  margin-top: 50px;
  text-align: center;
  padding: 36px 28px;
  background: #000;
  border: 1px solid #d4af37;
  border-radius: 6px;
}

.products-cta h3 {
  margin-bottom: 12px;
  color: #d4af37;
}

.products-cta p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: #f0e6b6;
}

.cta-btn {
  display: inline-block;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  margin: 6px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background: #bfa94f;
  color: #000;
}

.cta-btn--ghost {
  background: transparent;
  border: 1px solid #d4af37;
  color: #d4af37;
}

.cta-btn--ghost:hover {
  background: #d4af37;
  color: #000;
}

@media (max-width: 640px) {
  .products-hero {
    padding: 60px 0;
  }

  .products-hero h1 {
    font-size: 1.7rem;
  }

  .product-filters {
    justify-content: center;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
}

/* Product hub (split catalogs) */
.product-hub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.product-hub-card {
  display: flex;
  flex-direction: column;
  background: #000;
  border: 1px solid #d4af37;
  border-radius: 6px;
  overflow: hidden;
  color: #d4af37;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-hub-card:hover {
  color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(212, 175, 55, 0.35);
}

.product-hub-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #d4af37;
  display: block;
}

.product-hub-card div {
  padding: 24px 22px 28px;
}

.product-hub-card h3 {
  color: #d4af37;
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.product-hub-card p {
  color: #f0e6b6;
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-hub-card span {
  font-weight: 700;
  color: #d4af37;
}

@media (max-width: 768px) {
  .product-hub {
    grid-template-columns: 1fr;
  }
}

