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

:root {
  /* Color Palette */
  --primary-green: #2E7D32;
  --primary-light-green: #4CAF50;
  --secondary-gold: #FF9800;
  --secondary-orange: #F57C00;
  --text-charcoal: #263238;
  --text-light: #607D8B;
  --bg-white: #FFFFFF;
  --bg-offwhite: #FAFAFA;
  --bg-beige: #F5F5DC;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout & Spacing */
  --container-width: 1200px;
  --container-padding: 0 2rem;
  --section-padding: 5rem 0;
  
  /* Visuals */
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --box-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: 1px solid rgba(255, 255, 255, 0.2);
  --glass-blur: blur(12px);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-charcoal);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-charcoal);
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* Layout Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section-bg-offwhite {
  background-color: var(--bg-offwhite);
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 3rem 0;
  }
}

/* Typography Utilities */
.text-center { text-align: center; }
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-green);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(46, 125, 50, 0.39);
}

.btn-primary:hover {
  background-color: var(--primary-light-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.23);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-gold);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(255, 152, 0, 0.39);
}

.btn-secondary:hover {
  background-color: var(--secondary-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.23);
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

.btn-outline:hover {
  background-color: var(--primary-green);
  color: white;
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: var(--glass-border);
  z-index: 1000;
  padding: 1rem 0;
  transition: padding var(--transition-normal);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: -0.5px;
}
.logo-accent {
  color: var(--secondary-gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-green);
  transition: width var(--transition-fast);
}

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

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform var(--transition-fast);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* Footer */
.footer {
  background-color: var(--text-charcoal);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col p, .footer-col ul li a {
  color: #B0BEC5;
  margin-bottom: 0.8rem;
  display: block;
}

.footer-col ul li a:hover {
  color: var(--secondary-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #B0BEC5;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
  }
  .section {
    padding: 3rem 0;
  }
  .section-title {
    font-size: 2rem !important;
    line-height: 1.2;
  }
  .hero-flex {
    flex-direction: column !important;
    text-align: center;
    gap: 2rem !important;
  }
  .hero-flex > div {
    max-width: 100% !important;
  }
  .hero-buttons {
    justify-content: center !important;
    flex-direction: column;
    gap: 1rem;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }
  .floating-whatsapp svg {
    width: 25px;
    height: 25px;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .contact-container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .hero {
    padding: 8rem 0 4rem !important;
  }
  .page-header, .catalog-header, .contact-header {
    padding: 8rem 0 3rem !important;
  }
  .logo-container img {
    height: 45px !important;
  }
  .contact-info {
    padding: 2rem !important;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 50px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  .timeline-item:nth-child(even) {
    margin-left: 0;
  }
  .timeline-dot {
    left: 8px !important;
    right: auto !important;
  }
  .hero-badge {
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: -30px !important;
    width: 90% !important;
    justify-content: center;
  }
  .trust-banner {
    padding-top: 4rem !important;
  }
}

/* Crop Jumpshare UI globally for product images */
.product-img img, .hero-mockup img {
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.15);
}

