:root {
  --primary: #1a5c2e;
  --primary-dark: #0f3d1e;
  --gold: #c9a227;
  --light-bg: #f8f9f4;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.top-bar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 0;
}

.top-bar a {
  color: var(--gold);
}

.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary) !important;
}

.navbar-brand span {
  color: var(--gold);
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.hero-slide {
  height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 40px;
}

.hero-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.1rem;
  margin: 10px 0 20px;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: #a8861f;
  color: #fff;
}

.btn-green {
  background: var(--primary);
  color: #fff;
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-green:hover {
  background: var(--primary-dark);
  color: #fff;
}

.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}

.section-title h2 span {
  color: var(--gold);
}

.section-title p {
  color: #666;
  margin-top: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.bg-light-green {
  background: var(--light-bg);
}

.welcome-text h1 {
  font-size: 2.2rem;
  color: var(--primary);
  font-weight: 700;
}

.welcome-text h1 span {
  color: var(--gold);
}

.info-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card .icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.info-card h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.product-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  background: #fff;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card .card-body {
  padding: 20px;
  text-align: center;
}

.product-card h5 {
  color: var(--primary);
}

.brand-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.brand-card h5 {
  color: var(--primary);
  margin: 12px 0 6px;
}

.brand-card p {
  font-size: 0.9rem;
  color: #666;
}

.why-item {
  text-align: center;
  padding: 20px;
}

.why-item .icon {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 15px;
}

.why-item h5 {
  color: var(--primary);
}

.page-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 50px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

.page-content {
  padding: 50px 0;
}

.page-content p {
  color: #555;
  margin-bottom: 16px;
}

.contact-info-box {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 8px;
  height: 100%;
}

.contact-info-box h4 {
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info-box p {
  margin-bottom: 12px;
}

.contact-info-box i {
  color: var(--gold);
  width: 24px;
}

.contact-form .form-control {
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(26, 92, 46, 0.15);
}

footer {
  background: var(--primary-dark);
  color: #ccc;
  padding: 40px 0 20px;
}

footer h5 {
  color: var(--gold);
  margin-bottom: 15px;
}

footer a {
  color: #ccc;
}

footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.whatsapp-float:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .hero-slide {
    height: 300px;
  }

  .hero-content h2 {
    font-size: 1.6rem;
  }

  .welcome-text h1 {
    font-size: 1.6rem;
  }
}
