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

:root {
  --primary: #2d5016;
  --primary-light: #4a7c23;
  --secondary: #b7743a;
  --secondary-light: #d4915a;
  --accent: #c9a84c;
  --dark: #1a1a1a;
  --gray: #666;
  --light: #f8f6f0;
  --cream: #efe9dc;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

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

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  background: #fff;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 1px 15px rgba(0,0,0,0.05);
}

.navbar.scrolled {
  padding: 8px 5%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Logo Container */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  border-left: 2px solid var(--secondary);
  padding-left: 12px;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--primary);
  letter-spacing: 1.5px;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 9px;
  color: var(--secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 25px;
  font-weight: 500 !important;
  font-size: 12px !important;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-light) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta i {
  margin-right: 6px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

.navbar.scrolled {
  padding: 12px 5%;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 4px 40px rgba(0,0,0,0.12);
}

.logo a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.logo a:hover {
  transform: scale(1.03);
}

.logo img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  transition: var(--transition);
}

.logo a:hover .logo img {
  transform: scale(1.03);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--primary);
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(45, 80, 22, 0.1);
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--primary) !important;
  color: white !important;
  padding: 12px 28px !important;
  border-radius: 50px;
  font-weight: 500;
}

.nav-cta:hover {
  background: var(--primary-light) !important;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  font-size: 16px;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* ============ HERO SECTION ============ */
.hero {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(135deg, rgba(45,80,22,0.7) 0%, rgba(0,0,0,0.6) 100%),
              url("images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--light), transparent);
}

.hero-content {
  max-width: 700px;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.small {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 500px;
  line-height: 1.7;
}

.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(183, 116, 58, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 14px 34px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-block;
}

.btn-secondary:hover {
  background: white;
  color: var(--dark);
  transform: translateY(-3px);
}

.hero1 {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(135deg, rgba(45,80,22,0.7) 0%, rgba(0,0,0,0.6) 100%),
              url("images/hero1.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: white;
  position: relative;
}

.hero1::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--light), transparent);
}

.hero2 {
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(135deg, rgba(45,80,22,0.7) 0%, rgba(0,0,0,0.6) 100%),
              url("images/hero2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: white;
  position: relative;
}

.hero2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--light), transparent);
}

/* ============ SECTIONS ============ */
.section {
  padding: 100px 8%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 60px;
}

.section-left {
  flex: 1;
}

.tag {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 600;
}

.section-left h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  color: var(--dark);
}

.section-right {
  flex: 1;
  max-width: 450px;
}

.section-right p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 25px;
}

.header-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ============ FEATURES/STATS ============ */
.stats-section {
  background: var(--primary);
  color: white;
  padding: 60px 8%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 15px;
  opacity: 0.9;
}

/* ============ FEATURES ============ */
.features-section {
  padding: 100px 8%;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.feature-card {
  padding: 40px 30px;
  background: var(--light);
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

.feature-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* ============ GRID/CARDS ============ */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 25px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--dark);
}

.card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  text-align: center;
  padding: 100px 8%;
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ============ FOOTER ============ */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 8% 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.footer-about p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-links h3,
.footer-contact h3,
.newsletter h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.7;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact p {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p i {
  color: var(--secondary);
  width: 16px;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--secondary);
}

.newsletter p {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 15px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 25px;
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 13px;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--secondary);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--secondary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  opacity: 0.5;
  font-size: 13px;
}

/* ============ WHATSAPP BUTTON ============ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 5px 40px rgba(37, 211, 102, 0.6); }
}

/* ============ TRUST BADGES ============ */
.trust-section {
  padding: 80px 8%;
  background: var(--cream);
  text-align: center;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.trust-badge-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(183, 116, 58, 0.3);
  color: white;
  transition: var(--transition);
}

.trust-badge:hover .trust-badge-icon {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 12px 35px rgba(183, 116, 58, 0.4);
}

.trust-badge span {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid,
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 12px 5%;
    flex-wrap: wrap;
  }
  
  .logo img {
    width: 45px;
    height: 45px;
  }
  
  .logo-main {
    font-size: 16px;
  }
  
  .logo-sub {
    font-size: 8px;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 2px solid var(--secondary);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-cta {
    width: fit-content;
    text-align: center;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .section-header {
    flex-direction: column;
    text-align: center;
  }
  
  .stats-grid,
  .features-grid,
  .grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  
  .newsletter-form {
    justify-content: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .footer-about p {
    text-align: center;
  }
  
  .trust-badges {
    gap: 30px;
  }
}
