/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary-dark: #113f26;
  --primary: #1e5e3a;
  --primary-light: #2d8b57;
  --primary-accent: #eaf6ee;
  --accent-gold: #fbc02d;
  --accent-orange: #d97706;
  --accent-orange-light: #fef3c7;
  --bg-cream: #fdfbf7;
  --bg-white: #ffffff;
  
  --text-dark: #1f2937;
  --text-muted: #4b5563;
  --text-light: #ffffff;
  
  --font-header: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --border-radius-sm: 12px;
  --border-radius-md: 20px;
  --border-radius-lg: 28px;
  
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.04);
  --shadow-md: 0 10px 20px rgba(17,63,38,0.06);
  --shadow-lg: 0 20px 30px rgba(17,63,38,0.1);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-header);
  color: var(--primary-dark);
  line-height: 1.2;
}

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

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

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* Global Content Container Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px max(4%, 20px);
}

/* Global Buttons & UI Elements */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-header);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary { background-color: var(--primary); color: var(--text-light); }
.btn-primary:hover { background-color: var(--primary-dark); }
.btn-gold { background-color: var(--accent-gold); color: var(--primary-dark); }
.btn-gold:hover { background-color: #f5b004; }
.btn-whatsapp { background-color: #25d366; color: var(--text-light); font-weight: 700; width: 100%; }
.btn-whatsapp:hover { background-color: #128c7e; }

.badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--accent-orange-light);
  color: var(--accent-orange);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px auto;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

/* Promotional Marquee Engine */
.promo-marquee-banner {
  background-color: var(--accent-orange);
  color: var(--text-light);
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 999;
  box-shadow: var(--shadow-sm);
  margin-top: 85px;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: runMarquee 30s linear infinite;
}

@keyframes runMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Scroll Reveal Structural Layout Animations */
.reveal-on-scroll {
  opacity: 0;
  transition-duration: 0.85s;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.reveal-on-scroll.fade-in { transform: scale(0.98); }
.reveal-on-scroll.slide-up { transform: translateY(30px); }
.reveal-on-scroll.slide-left { transform: translateX(-30px); }
.reveal-on-scroll.slide-right { transform: translateX(30px); }
.reveal-on-scroll.scale-in { transform: scale(0.94); }

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Header & Navigation Layer */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 63, 38, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px max(4%, 20px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 1.5rem;
}

.logo span { color: var(--accent-orange); }
.logo-img {
  width: clamp(50px, 8vw, 60px);
  height: clamp(50px, 8vw, 60px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.logo:hover .logo-img, .logo.active-spin .logo-img {
  transform: rotate(360deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: min(2.5vw, 24px);
}

.nav-link {
  font-family: var(--font-header);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 6px 0;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-cta {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  justify-content: space-between;
  z-index: 1010;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Base Architecture */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(17,63,38,0.85), rgba(17,63,38,0.55)), url('assets/images/hero_farm.png') no-repeat center center/cover;
  color: var(--text-light);
  padding: 60px max(4%, 20px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.hero-content h1 {
  color: var(--text-light);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.hero-content h1 span { color: var(--accent-gold); }
.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.offer-card-floating {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.offer-card-floating h3 { color: var(--text-light); font-size: 1.4rem; }
.offer-price-tag { font-size: clamp(2.5rem, 4vw, 3rem); font-weight: 800; color: var(--accent-gold); margin: 10px 0; }
.offer-price-tag span { font-size: 1rem; color: var(--text-light); font-weight: 400; }
.offer-card-floating p { font-size: 0.92rem; margin-bottom: 18px; color: rgba(255,255,255,0.85); }
.offer-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-gold); font-weight: 700; }

.rolling-animation {
  animation: rollingFloat 6s ease-in-out infinite alternate;
  transform-style: preserve-3d;
  will-change: transform;
}

@keyframes rollingFloat {
  0% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-8px) rotateX(3deg) rotateY(-3deg); }
  100% { transform: translateY(6px) rotateX(-3deg) rotateY(3deg); }
}

/* Quick Stats Section */
.layout-stats-container {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -45px;
  position: relative;
  z-index: 10;
}

.stats-bar {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px;
  gap: 16px;
  border: 1px solid rgba(17,63,38,0.06);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 12px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(17,63,38,0.1);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-info h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.stat-info p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.3; }

/* Product Inventory Sub-Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid rgba(17,63,38,0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-image-container {
  position: relative;
  height: 220px;
  width: 100%;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-orange);
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.78rem;
}

.product-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-details h3 { font-size: 1.3rem; margin-bottom: 6px; }
.product-price { font-size: 1.6rem; font-weight: 800; color: var(--accent-orange); margin-bottom: 12px; }
.product-price span { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }
.product-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; flex-grow: 1; }

.product-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.88rem;
}

.benefit-item {
  display: flex;
  align-items: start;
  gap: 8px;
  line-height: 1.4;
}

.benefit-item i { flex-shrink: 0; margin-top: 2px; }
.product-actions .btn { width: 100%; }

/* Transaction Order Calculator Engine Layout */
.order-calc-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px max(4%, 20px);
}

.calculator-section {
  background: linear-gradient(135deg, var(--primary-dark), #0f3520);
  color: var(--text-light);
  border-radius: var(--border-radius-lg);
  padding: 45px;
  box-shadow: var(--shadow-lg);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: stretch;
}

.calc-intro h2 { color: var(--text-light); font-size: clamp(1.75rem, 3vw, 2.2rem); margin-bottom: 12px; }
.calc-intro p { color: rgba(255,255,255,0.8); margin-bottom: 24px; font-size: 0.95rem; }
.calc-card-container { display: flex; flex-direction: column; gap: 16px; }

.calc-product-row {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.calc-prod-info { display: flex; align-items: center; gap: 14px; min-width: 0; }
.calc-prod-img { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.calc-prod-meta { min-width: 0; }
.calc-prod-meta h4 { color: var(--text-light); font-size: 1rem; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.calc-prod-meta p { font-size: 0.85rem; color: var(--accent-gold); font-weight: 600; margin-top: 2px; }

.promo-mini-tag {
  font-size: 0.7rem;
  background-color: var(--accent-orange);
  color: white;
  padding: 1px 6px;
  border-radius: 10px;
  margin-left: 4px;
}

.qty-selector {
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  flex-shrink: 0;
}

.qty-btn { color: var(--text-light); width: 36px; height: 36px; font-size: 1.2rem; font-weight: 600; text-align: center; line-height: 1; }
.qty-btn:hover { background: rgba(255,255,255,0.1); color: var(--accent-gold); }
.qty-input {
  color: var(--text-light);
  width: 44px;
  text-align: center;
  font-weight: 700;
  background: transparent;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.calc-summary-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.calc-summary-panel h3 { color: var(--text-light); font-size: 1.3rem; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; }
.summary-rows { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.summary-row .label { flex: 1.5; }
.summary-row .qty-val { flex: 1; text-align: right; color: var(--accent-gold); font-weight: 600; }
.summary-row .price-val { flex: 1; text-align: right; font-weight: 700; }

.summary-row.total-row {
  border-top: 1px dashed rgba(255,255,255,0.15);
  padding-top: 18px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
}
.summary-row.total-row .total-amount { color: var(--accent-gold); font-size: 1.8rem; font-family: var(--font-header); }
.calc-instructions { background: rgba(0,0,0,0.15); border-radius: 8px; padding: 14px; font-size: 0.82rem; color: rgba(255,255,255,0.72); margin-bottom: 24px; border-left: 4px solid var(--accent-gold); line-height: 1.4; }
.calc-action-wrapper { margin-top: auto; }

/* Why Us Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(17,63,38,0.04);
  box-shadow: var(--shadow-sm);
}

.why-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.why-card p { color: var(--text-muted); font-size: 0.92rem; }

.why-card-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 1.5rem;
}

.why-card.feature-wide {
  grid-column: span 2;
  display: flex;
  text-align: left;
  align-items: center;
  gap: 24px;
}

.why-card.feature-wide .why-card-icon { margin: 0; flex-shrink: 0; }

/* Process Timeline Architecture */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step { text-align: center; }
.process-step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.4; }

.process-step-num {
  width: 64px;
  height: 64px;
  background-color: var(--bg-white);
  border: 4px solid var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  margin: 0 auto 16px auto;
  box-shadow: var(--shadow-sm);
}

/* Gallery Module Layout */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--bg-white);
  border: 1px solid rgba(17,63,38,0.08);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-header);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17,63,38,0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  padding: 20px;
  text-align: center;
  color: var(--text-light);
}

.gallery-overlay h4 { color: var(--text-light); font-size: 1.2rem; margin-bottom: 4px; }
.gallery-overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.gallery-zoom-icon { font-size: 1.5rem; margin-top: 10px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item.hide-item {
  display: none !important;
}

/* Testimonials System */
.testimonials-slider-container {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 8px;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 40px min(6vw, 50px);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(17,63,38,0.04);
  text-align: center;
}

.testimonial-quote-icon {
  font-size: 4rem;
  line-height: 1;
  color: rgba(30,94,58,0.1);
  margin-bottom: -20px;
  font-family: serif;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.7;
}

.testimonial-user {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--accent-gold);
}

.testimonial-meta h4 { font-size: 1rem; font-weight: 700; }
.testimonial-meta p { font-size: 0.85rem; color: var(--text-muted); }

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.slider-btn {
  background-color: var(--bg-white);
  border: 1px solid rgba(17,63,38,0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.slider-btn:hover { background-color: var(--primary); color: var(--text-light); border-color: var(--primary); }
.slider-dots { display: flex; gap: 8px; align-items: center; }

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(17,63,38,0.2);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary);
  width: 20px;
  border-radius: 4px;
}

/* FAQ System Layout */
.faq-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(17,63,38,0.04);
  overflow: hidden;
}

.faq-header {
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-header h3 { font-size: 1.1rem; font-weight: 700; }

.faq-icon-wrapper {
  width: 30px;
  height: 30px;
  background-color: var(--primary-accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  padding: 0 24px 22px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-icon-wrapper {
  background-color: var(--primary);
  color: var(--text-light);
  transform: rotate(180deg);
}

/* Contact Grid Section Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.contact-info-panel { display: flex; flex-direction: column; gap: 24px; }
.contact-info-panel h3 { font-size: 1.4rem; }
.contact-details-list { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; gap: 16px; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primary-accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-detail-text h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 2px; }
.contact-detail-text p { color: var(--text-muted); font-size: 0.92rem; }

.online-indicator {
  color: #10b981;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.online-indicator span {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  display: inline-block;
}

.map-container-card {
  height: 240px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(17,63,38,0.06);
}

.map-placeholder-bg {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #f7fafc, #edf2f7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.map-placeholder-bg h4 { font-size: 1.1rem; margin: 6px 0 2px 0; }
.map-placeholder-bg p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; max-width: 280px; }
.map-pin-pulse { font-size: 2.2rem; color: #ef4444; animation: mapBounce 2s infinite ease-in-out; }

@keyframes mapBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.contact-form-panel {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 35px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(17,63,38,0.04);
}

.contact-form-panel h3 { font-size: 1.4rem; margin-bottom: 20px; }
.form-group { margin-bottom: 18px; position: relative; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--primary-dark); }

.form-input {
  width: 100%;
  background-color: var(--bg-cream);
  border: 1px solid rgba(17,63,38,0.1);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary-light);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(45,139,87,0.1);
}

.form-error {
  color: #ef4444;
  font-size: 0.78rem;
  margin-top: 4px;
  display: none;
}

.btn-submit-form { width: 100%; margin-top: 8px; }

/* Production Footer Layout Engine */
footer {
  background-color: var(--primary-dark);
  color: rgba(255,255,255,0.78);
  border-top: 4px solid var(--accent-gold);
}

.footer-container {
  padding-top: 60px;
  padding-bottom: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo { display: flex; flex-direction: column; gap: 14px; }
.footer-logo .logo { font-size: 1.6rem; color: var(--text-light); }
.footer-logo p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-links h4 { color: var(--text-light); font-size: 1.1rem; margin-bottom: 20px; font-weight: 700; letter-spacing: 0.5px; }
.footer-links-list { display: flex; flex-direction: column; gap: 12px; font-size: 0.9rem; }
.footer-links-list a { color: rgba(255,255,255,0.65); width: max-content; }
.footer-links-list a:hover { color: var(--accent-gold); transform: translateX(3px); }
.guarantee-text { font-size: 0.9rem; color: var(--accent-gold); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* Floating WhatsApp Interface */
.whatsapp-widget-container { position: fixed; bottom: 24px; right: 24px; z-index: 999; }

.whatsapp-float-btn {
  background-color: #25d366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  color: var(--text-light);
  font-size: 2rem;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float-btn:hover { transform: scale(1.08); background-color: #128c7e; }
.whatsapp-glow-pulse { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,0.6); animation: widgetPulse 2s infinite cubic-bezier(0.66, 0, 0, 1); pointer-events: none; }

@keyframes widgetPulse { 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* Lightbox Modal Module */
.lightbox-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(11,63,38,0.97); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--transition); padding: 20px; }
.lightbox-modal.open { opacity: 1; pointer-events: auto; }
.lightbox-content { max-width: 90%; max-height: 85vh; transform: scale(0.95); transition: var(--transition); text-align: center; }
.lightbox-modal.open .lightbox-content { transform: scale(1); }
.lightbox-img { max-width: 100%; max-height: 70vh; border-radius: 8px; border: 4px solid var(--bg-white); object-fit: contain; box-shadow: var(--shadow-lg); }
.lightbox-caption { color: var(--text-light); margin-top: 14px; font-weight: 600; font-family: var(--font-header); font-size: 1.1rem; }
.lightbox-close { position: absolute; top: 24px; right: 24px; color: var(--text-light); font-size: 2.8rem; background: transparent; transition: var(--transition); line-height: 1; }
.lightbox-close:hover { color: var(--accent-gold); transform: scale(1.1); }

/* Global System Notification Modals */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(17,63,38,0.4); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 2001; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--transition); padding: 20px; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box { background-color: var(--bg-white); border-radius: var(--border-radius-md); padding: 40px 30px; max-width: 440px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); transform: translateY(20px); transition: var(--transition); }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-success-icon { width: 64px; height: 64px; background-color: #d1fae5; color: #10b981; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 2rem; }
.modal-box h3 { font-size: 1.4rem; margin-bottom: 10px; }
.modal-box p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.modal-box .btn { width: 100%; }

/* ==========================================================================
   PRODUCTION MEDIA BREAKPOINT OVERHAUL MATRIX
========================================================================== */

/* Tablet & Intermediate Small Laptop Optimization Map */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .why-card.feature-wide { grid-column: auto; flex-direction: column; text-align: center; }
  .why-card.feature-wide .why-card-icon { margin: 0 auto; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Structural Mobile Breakpoint Shift (Drops complex structures safely down to stacked blocks) */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-top: 45px; padding-bottom: 45px; }
  .promo-marquee-banner { margin-top: 75px; }
  
  /* Menu Toggle Display & Layout */
  .menu-toggle { display: flex; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 290px;
    height: 100vh;
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 30px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1005;
  }
  
  .nav-menu.open { left: 0; }
  
  /* Navigation Hamburger States */
  .menu-toggle.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
  
  .btn-header-cta { 
    display: none; }
  
  /* Safety Linear Resets */
  .hero-grid,
  .products-grid,
  .why-grid,
  .gallery-grid,
  .contact-grid,
  .process-timeline,
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  
  .hero { text-align: center; padding-top: 40px; padding-bottom: 50px; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-ctas { justify-content: center; }
  .offer-card-floating { max-width: 380px; margin: 30px auto 0 auto; }
  
  /* Stats Architecture Overhaul */
  .layout-stats-container { margin-top: -25px; }
  .stats-bar { grid-template-columns: 1fr !important; gap: 0 !important; padding: 16px; }
  .stat-item { padding: 16px 8px; border-right: none !important; }
  .stat-item:not(:last-child) { border-bottom: 1px solid rgba(17,63,38,0.08); }
  
  /* Calculator Subsystem Adaptive Layer */
  .order-calc-container { padding: 20px max(3%, 15px); }
  .calculator-section { padding: 24px 16px !important; border-radius: var(--border-radius-md) !important; }
  .calculator-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .calc-intro h2, .calc-intro p, .calc-summary-panel h3 { text-align: center; }
  .calc-product-row { padding: 12px max(2%, 10px) !important; }
  .calc-prod-info { gap: 10px !important; }
  .calc-prod-img { width: 46px !important; height: 46px !important; }
  .calc-prod-meta h4 { font-size: 0.95rem; white-space: normal; word-break: break-word; }
  .calc-prod-meta p { font-size: 0.8rem !important; }
  .qty-selector { height: 36px; }
  .qty-btn { width: 34px !important; }
  .qty-input { width: 38px !important; font-size: 0.92rem !important; }
  .calc-summary-panel { padding: 24px 16px !important; }
  .summary-row { font-size: 0.92rem !important; }
  .summary-row.total-row { font-size: 1.25rem !important; }
  .summary-row.total-row .total-amount { font-size: 1.6rem !important; }
  
  .contact-form-panel { padding: 24px 20px; }
  .footer-logo { align-items: center; text-align: center; }
}

/* Extreme Compact Narrow Device Layer (iPhone SE, Galaxy Fold Outer Screen Safeguard) */
@media (max-width: 350px) {
  html { font-size: 14px; }
  .logo { font-size: 1.3rem; gap: 6px; }
  .logo-img { width: 44px; height: 44px; }
  .calc-product-row { padding: 10px 6px !important; gap: 4px !important; }
  .calc-prod-img { display: none !important; } /* Strips image completely to generate maximum interface room */
  .qty-input { width: 32px !important; }
  .qty-btn { width: 30px !important; }
  .summary-row { font-size: 0.86rem !important; }
  .summary-row .qty-val { padding-right: 4px; }
  .whatsapp-float-btn { width: 48px; height: 48px; font-size: 1.7rem; bottom: 16px; right: 16px; }
}