* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e1f22;
  background: #fff;
}

/* =========================
   CONTAINER
========================= */

.container {
  width: 92%;
  max-width: 1320px;
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 1000;
  transition: 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  height: 40px;
}

/* NAV */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #1e1f22;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #8B0E1A;
}

.cta-btn {
  padding: 14px 28px;
  background: #d4ac4a;
  color: #000;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 172, 74, 0.3);
}

.cta-btn:hover {
  background: #c59d3e;
  transform: translateY(-2px);
}

/* TOGGLE */

.toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.toggle-btn span {
  width: 26px;
  height: 3px;
  background: #1e1f22;
  border-radius: 2px;
}

/* CLOSE BUTTON */

.close-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .toggle-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 40px;
    gap: 40px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 2000;
  }

  .nav-menu.active {
    right: 0;
  }

  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 25px;
    margin-bottom: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 25px;
    width: 100%;
  }

  .nav-links a {
    font-size: 18px;
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu .cta-btn {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    padding: 100px 0 60px;
    background-position: 75% center;
  }
}

/* =========================
   COMPANY HERO (LINKGRID)
========================= */

.company-hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.company-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(0px);
}

.company-hero__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 0 20px;
}

.company-hero__label {
  color: #c9a227;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
}

.company-hero__title {
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.company-hero__desc {
  font-size: 17px;
  color: #f2f2f2;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.company-hero__cta {
  padding: 14px 30px;
  background: #c9a227;
  color: #111;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.company-hero__cta:hover {
  background: #b68f1f;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .company-hero {
    height: auto;
    padding: 100px 0;
    background-position: top center;
  }

  .company-hero__title {
    font-size: 36px;
  }

  .company-hero__desc {
    font-size: 15px;
  }

  .company-hero__cta {
    padding: 12px 26px;
  }
}

@media (max-width: 600px) {

  .company-hero__title {
    font-size: 28px;
  }

  .company-hero__desc {
    font-size: 14px;
  }
}

/* =========================
   COMPANY ADVANTAGE SECTION
========================= */

.company-advantage {
  padding: 100px 0;
  background: #f6f6f6;
}

.advantage-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */

.section-label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: #c9a227;
  margin-bottom: 18px;
  display: inline-block;
}

.advantage-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 22px;
}

.highlight {
  color: #8B0E1A;
}

.advantage-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
  max-width: 560px;
}

/* STATS */

.advantage-stats {
  display: flex;
  gap: 60px;
}

.stat h3 {
  font-size: 26px;
  color: #8B0E1A;
  margin-bottom: 6px;
}

.stat span {
  font-size: 13px;
  color: #777;
}

/* RIGHT VISUAL */

.advantage-visual {
  background: linear-gradient(135deg, #1f6b63, #2c8a7f);
  padding: 10px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.advantage-visual img {
  width: 100%;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .advantage-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .company-advantage {
    padding: 80px 0;
  }

  .advantage-content h2 {
    font-size: 28px;
  }

  .advantage-stats {
    gap: 40px;
  }
}

@media (max-width: 600px) {

  .advantage-content h2 {
    font-size: 22px;
  }

  .advantage-content p {
    font-size: 14px;
  }

  .advantage-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* =========================
   PROCUREMENT SECTION
========================= */

.procurement-section {
  padding: 100px 0;
  background: #f6f6f6;
}

.procurement-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #8B0E1A 0%, #1f6b63 100%);
  color: #fff;
}

/* CONTENT SIDE */

.procurement-content {
  padding: 60px 60px;
}

.procurement-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin-bottom: 20px;
}

.procurement-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
  color: #f0f0f0;
}

.procurement-list {
  list-style: none;
  padding: 0;
}

.procurement-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 14px;
}

.procurement-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c9a227;
  font-weight: bold;
}

.procurement-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.procurement-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Optional dark overlay for text balance */

.procurement-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .procurement-card {
    grid-template-columns: 1fr;
  }

  .procurement-content {
    padding: 50px 35px;
  }

  .procurement-content h2 {
    font-size: 28px;
  }

  .procurement-visual {
    min-height: 300px;
  }
}

@media (max-width: 600px) {

  .procurement-section {
    padding: 80px 0;
  }

  .procurement-content h2 {
    font-size: 22px;
  }

  .procurement-content p {
    font-size: 14px;
  }
}

/* =========================
   PRODUCT CATEGORIES
========================= */

.product-categories {
  padding: 80px 0;
  background: #fafafa;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c9a227;
  margin-bottom: 8px;
  display: inline-block;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* GRID */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */

.category-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
}

.category-icon {
  width: 48px;
  height: 48px;
  background: rgba(139,14,26,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: #8B0E1A;
}

.category-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}

.category-link {
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  color: #8B0E1A;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s ease;
}

.category-link:hover {
  gap: 10px;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet & small screens: 2 per row */
@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Very small screens: 1 per row */
@media (max-width: 500px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .product-categories {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 24px;
  }
}

/* =========================
   PARTNER / CONTACT SECTION
========================= */

.partner-section {
  padding: 100px 0;
  background: radial-gradient(circle at center, #0d1b2a, #071021);
  color: #fff;
}

.partner-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */

.partner-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.partner-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #cfcfcf;
  margin-bottom: 40px;
  max-width: 540px;
}

.partner-points {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.point {
  display: flex;
  gap: 18px;
}

.point-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.point-icon.gold {
  background: #c9a227;
  color: #111;
}

.point-icon.red {
  background: #8B0E1A;
}

.point h4 {
  margin-bottom: 6px;
}

.point p {
  font-size: 14px;
  color: #bbb;
  margin: 0;
}

/* RIGHT CARD */

.partner-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

.partner-card h3 {
  font-size: 22px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #ddd;
}

.contact-item i {
  color: #c9a227;
  width: 20px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 24px;
  background: #25D366;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .partner-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .partner-section {
    padding: 80px 0;
  }

  .partner-card {
    padding: 40px;
  }
}

@media (max-width: 600px) {
  .partner-content h2 {
    font-size: 26px;
  }

  .partner-card {
    padding: 30px;
  }
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: linear-gradient(135deg, #0f1114, #15181d);
  color: #d4d4d4;
  padding: 70px 0 30px;
  font-size: 14px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 5px;
}

/* LOGO */

.footer-logo {
  height: 55px;
  margin-bottom: 18px;
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}

/* SOCIAL */

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #1e2329;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a227;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #c9a227;
  color: #111;
}

/* HEADINGS */

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 18px;
  color: #fff;
}

/* LINKS */

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #b5b5b5;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #c9a227;
}

/* CONTACT */

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-list i {
  color: #c9a227;
  font-size: 14px;
}

/* BOTTOM */

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 12px;
  color: #888;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {

  .site-footer {
    padding: 50px 0 25px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-about p {
    max-width: 100%;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    font-size: 11px;
  }
}