:root {
  /* BRAND COLORS */
  --color-primary: #2d5026;       /* Deep Olive Green */
  --color-primary-dark: #1a3016;  /* Black-Green for Footer */
  --color-primary-light: #5d8e3e; /* Fresh Leaf Green */
  --color-accent: #c4a778;        /* Muted Gold */
  
  --color-bg: #fcfdfc;
  --color-bg-alt: #f4f7f4;
  --color-white: #ffffff;
  --color-text: #2c2c2c;
  --color-muted: #666666;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-lg: 8px;
  
  --shadow-sm: 0 4px 15px rgba(45, 80, 38, 0.05);
  --shadow-lg: 0 20px 40px rgba(45, 80, 38, 0.1);
}

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }

body { margin: 0; font-family: 'Lato', sans-serif; color: #2c2c2c; background-color: #fcfdfc; line-height: 1.8; font-weight: 300; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; color: #2d5026; margin-top: 0; line-height: 1.2; }
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
img { width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; margin: 0; }

/* Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* Components */
.btn { display: inline-block; padding: 0.9rem 2rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; border-radius: 50px; border: 1px solid transparent; cursor: pointer; transition: all 0.4s ease; }
.btn-primary { background: #2d5026; color: #ffffff; box-shadow: 0 4px 15px rgba(45, 80, 38, 0.2); }
.btn-primary:hover { background: #5d8e3e; transform: translateY(-2px); }
.btn-outline { border-color: #2d5026; color: #2d5026; }
.btn-outline:hover { background: #2d5026; color: #ffffff; }
.btn-outline-white { border-color: #ffffff; color: #ffffff; }
.btn-outline-white:hover { background: #ffffff; color: #2d5026; }
.btn-text { background: none; border: none; color: #5d8e3e; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; padding: 0; }
.btn-text:hover { color: #2d5026; text-decoration: underline; }
.eyebrow { font-family: 'Lato', sans-serif; color: #5d8e3e; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.75rem; font-weight: 700; margin-bottom: 1rem; display: block; }

/* Layout */
.section { padding: 5rem 0; }
.section-alt { background-color: #f4f7f4; }
.section-dark { background-color: #2d5026; color: #ffffff; }
.section-dark h2, .section-dark p { color: #ffffff; }

/* Header & Top Bar */
.top-bar { background: #2d5026; color: #ffffff; font-size: 0.75rem; padding: 0.8rem 0; letter-spacing: 0.05em; text-transform: uppercase; }
.top-bar-inner { display: flex; justify-content: space-between; }
.header-main { background: rgba(255,255,255,0.98); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 0.5rem 0; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: block; height: 60px; } 
.logo img { height: 100%; width: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: #2d5026; position: relative; font-weight: 600; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0%; height: 2px; background: #5d8e3e; transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hero */
.hero { position: relative; height: 80vh; display: flex; align-items: center; background: url('../img/hero-bg.jpg') no-repeat center/cover; background-attachment: fixed; }
.hero-overlay { 
  position: absolute; 
  inset: 0; 
  background: rgba(10, 25, 10, 0.65); 
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; color: #ffffff; }
.hero h1 { color: #ffffff; margin-bottom: 1.5rem; font-size: 3.5rem; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-subtitle { font-size: 1.25rem; opacity: 1; margin-bottom: 2rem; font-weight: 400; text-shadow: 0 1px 5px rgba(0,0,0,0.3); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; }
.page-header { background: #f4f7f4; padding: 6rem 0 3rem; text-align: center; }

/* Cards */
.category-grid, .two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.category-card, .product-card, .feature-card { background: #ffffff; border-radius: 8px; box-shadow: 0 4px 15px rgba(45, 80, 38, 0.05); transition: transform 0.4s ease, box-shadow 0.4s ease; overflow: hidden; border: 1px solid rgba(0,0,0,0.03); }
.category-card { padding: 3rem; position: relative; text-align: center; }
.category-card .link-arrow { color: #5d8e3e; font-weight: 700; font-size: 0.9rem; margin-top: 1rem; display: inline-block; text-transform: uppercase; letter-spacing: 0.05em; }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(45, 80, 38, 0.1); }
.product-image img { height: 280px; object-fit: cover; transition: 0.5s; }
.product-card:hover img { transform: scale(1.03); }
.product-body { padding: 1.5rem; text-align: center; }
.product-tag { font-size: 0.7rem; text-transform: uppercase; color: #666666; letter-spacing: 0.1em; display: block; margin-bottom: 0.5rem; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.feature-card { padding: 2rem; text-align: center; height: 100%; }
.feature-card h3 { color: #5d8e3e; }

/* Review Cards */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
.review-card { background: #fff; padding: 2rem; border-radius: 8px; box-shadow: 0 4px 15px rgba(45, 80, 38, 0.05); border: 1px solid #eee; }
.review-stars { color: #f4b400; margin-bottom: 0.5rem; }
.review-text { font-style: italic; font-size: 0.95rem; color: #666666; margin-bottom: 1rem; }
.review-author { font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; gap: 0.5rem; }
.google-icon { color: #4285F4; }

/* Gallery (Clean Masonry) */
.gallery-grid { column-count: 3; column-gap: 1.5rem; opacity: 0; transition: opacity 0.8s ease-in-out; min-height: 100vh; }
.gallery-item { break-inside: avoid; margin-bottom: 1.5rem; display: inline-block; width: 100%; border-radius: 8px; overflow: hidden; position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.05); background: #f0f0f0; }
.gallery-item img { width: 100%; height: auto; display: block; transition: transform 0.5s ease, opacity 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); opacity: 0.9; }
#gallery-loader { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 50; text-align: center; }
.spinner { width: 50px; height: 50px; border: 5px solid #f3f3f3; border-top: 5px solid #2d5026; border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 1rem; }
.loading-text { font-family: 'Lato', sans-serif; color: #2d5026; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Forms */
.quote-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.quote-form { background: #ffffff; padding: 3rem; border-radius: 8px; color: #2c2c2c; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group textarea { width: 100%; padding: 1rem; border: 1px solid #e0e0e0; font-family: inherit; border-radius: 4px; background: #f9f9f9; }
.form-group input:focus, .form-group textarea:focus { border-color: #5d8e3e; background: #fff; outline: none; }
.btn-full { width: 100%; }
.filters { display: flex; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.filter-btn { border: 1px solid #ddd; background: transparent; padding: 0.5rem 1.5rem; border-radius: 50px; cursor: pointer; font-family: 'Lato', sans-serif; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.05em; }
.filter-btn.active { background: #2d5026; color: #fff; border-color: #2d5026; }

/* Footer */
.footer { background: #1a3016; color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; margin-top: auto; border-top: 4px solid #5d8e3e; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand p { font-size: 0.9rem; max-width: 300px; }
.footer-logo { width: 130px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); }
.footer h4 { color: #ffffff; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer ul li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer ul a:hover { color: #ffffff; text-decoration: underline; }
.footer-socials { display: flex; gap: 1.2rem; margin-top: 1.5rem; }
.footer-socials a { color: #fff; font-size: 1.3rem; transition: 0.3s; opacity: 0.8; }
.footer-socials a:hover { opacity: 1; color: #5d8e3e; transform: translateY(-3px); }
.footer-bottom { padding-top: 1.5rem; font-size: 0.8rem; text-align: center; opacity: 0.6; }

/* Floating WhatsApp */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 25px; right: 25px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 32px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 1000; display: flex; align-items: center; justify-content: center; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); color: #FFF; }

/* Responsive */
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: #2d5026; margin: 5px 0; }
@media (max-width: 900px) {
  .hero h1 { font-size: 2.5rem; }
  .quote-container, .category-grid, .two-column, .footer-inner, .gallery-grid, .review-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { padding: 0 1rem; }
}
@media (max-width: 768px) {
  .top-bar-inner { flex-direction: column; align-items: center; gap: 0.5rem; }
  .menu-toggle { display: block; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 2rem; box-shadow: 0 10px 20px rgba(0,0,0,0.1); display: none; }
  .nav.active { display: flex; }
  .nav-links { flex-direction: column; align-items: center; }
  .hero { height: auto; padding: 6rem 0; background-attachment: scroll; }
}

/* About Page Video Fix */
.image-panel { max-height: 600px; aspect-ratio: 3 / 4; width: 100%; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin: 0 auto; }
.image-panel video.about-video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) { .image-panel { max-height: 400px; } }

/* --- POP-UP MODAL STYLES --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: #fff;
  padding: 3rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  transition: 0.3s;
}
.modal-close:hover { color: #2d5026; }
/* --- Quote Section YouTube Short --- */
.shorts-wrapper {
  width: 100%;
  max-width: 280px; /* Standard phone width */
  aspect-ratio: 9 / 16; /* Vertical video shape */
  border-radius: 20px; /* Nice rounded corners */
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  margin: 2rem 0; /* Space above and below */
  border: 4px solid rgba(255,255,255,0.1); /* Subtle border */
}

.shorts-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Ensure left column handles the extra height well */
.quote-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}