@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Premium Color Palette */
  --primary-color: #1A4331; /* Deep Green */
  --primary-light: #2A5C43;
  --primary-dark: #0D2B1F;
  --secondary-color: #8B5A2B; /* Earthy Tone */
  --accent-color: #D4AF37; /* Subtle Gold Accent */
  --accent-light: #F4E09E;
  --bg-color: #FFFFFF;
  --bg-light: #F8F9FA;
  --text-main: #2C3E50;
  --text-muted: #546E7A;
  --border-color: #E2E8F0;
  
  /* Typography */
  --font-family: 'Outfit', sans-serif;
  
  /* Shadows & Transitions */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  scroll-behavior: smooth;
  color: var(--text-main);
  background-color: var(--bg-color);
  font-size: 16px;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; position: relative; padding-bottom: 0.5rem; }
h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}
.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}
h3 { font-size: 1.5rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }

/* Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.bg-light { background-color: var(--bg-light); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background-color: var(--primary-color);
  color: white;
}
.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}
.btn-accent {
  background-color: var(--accent-color);
  color: var(--primary-dark) !important;
}
.btn-accent:hover {
  background-color: #c4a132;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary-dark);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Header & Navigation */
.header {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}
.logo span {
  color: var(--accent-color);
}
.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-menu li a {
  font-weight: 500;
  color: #fff ;
  position: relative;
}
.nav-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-dark);
  bottom: -4px;
  left: 0;
  transition: var(--transition);
}
.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--accent-color);
}
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(26, 67, 49, 0.6), rgba(26, 67, 49, 0.6)), url('../images/hero.webp') center/cover no-repeat;
  color: white;
  padding: 8rem 0;
  text-align: center;
}
.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 3rem;
  animation: slideUp 1s ease-out;
}
.hero p {
  color: var(--bg-light);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
  animation: slideUp 1s ease-out 0.2s backwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fade-in 1s ease-out 0.4s backwards;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.product-card {
  background: var(--bg-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.product-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-content h3 {
  margin-bottom: 0.5rem;
}
.product-content p {
  flex: 1;
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.feature-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-color);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  box-shadow: 0 0 0 5px rgba(42, 92, 67, 0.2);
}

/* Global Reach */
.global-reach {
  background-color: var(--primary-color);
  color: white;
}
.global-reach h2 { color: white; }
.global-reach p { color: #e2e8f0; }

/* Contact Forms */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.contact-info {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.info-icon {
  color: var(--accent-color);
  font-size: 1.25rem;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h3 {
  color: white;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}
.footer-col h3::after {
  display: none;
}
.footer-col p {
  color: #adb5bd;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: #adb5bd;
}
.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #adb5bd;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b858;
}

/* Animations */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 991px) {
  .hero h1 { font-size: 2.5rem; }
  .contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background-color: #0f3425;
    width: 100%;
    padding: 2rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    gap: 1.5rem;
    margin-top: 10px;
  }
  .nav-menu.active { left: 0; }
  .hero { padding: 5rem 0; }
  .hero h1 { font-size: 2rem; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 25px; }
}
