/* ============================================================
   YANILA — Agricultural Products & Animal Feeds
   Modern, vibrant design system
   ============================================================ */

/* --- Design Tokens --- */
:root {
  /* Primary — fresh, modern greens */
  --green-950: #052e16;
  --green-900: #0a3d1f;
  --green-800: #15803d;
  --green-700: #16a34a;
  --green-600: #22c55e;
  --green-500: #4ade80;
  --green-400: #86efac;
  --green-100: #dcfce7;
  --green-50:  #f0fdf4;

  /* Accent — warm golden (spice/turmeric) */
  --gold-700: #b45309;
  --gold-600: #d97706;
  --gold-500: #f59e0b;
  --gold-400: #fbbf24;
  --gold-100: #fef3c7;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Semantic */
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-400);
  --nav-bg: var(--green-900);
  --accent: var(--green-700);
  --accent-hover: var(--green-600);
  --cta-warm: var(--gold-600);
  --cta-warm-hover: var(--gold-500);

  /* Typography */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --nav-height: 72px;
  --section-py: clamp(64px, 10vw, 112px);
  --container-max: 1200px;
  --container-px: clamp(20px, 4vw, 40px);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}


/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green-600);
  border-radius: 0;
}

.section-heading {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}


/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  max-width: min(var(--container-max), 100%);
  min-width: 0;
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
  box-sizing: border-box;
}

section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
  overflow-x: clip;
  max-width: 100%;
}

/* Prevent grid/flex children from forcing horizontal overflow */
.about-text,
.about-image,
.contact-form,
.contact-info,
.footer-brand,
.footer-col,
.hero-content,
.product-card,
.service-card,
.value-item {
  min-width: 0;
  max-width: 100%;
}

h1, h2, h3, p {
  overflow-wrap: break-word;
}


/* --- Image Placeholder --- */
.img-placeholder {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--gray-100) 100%);
  border: 2px dashed var(--green-200, #bbf7d0);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 24px 16px;
}

.img-placeholder svg {
  width: 36px;
  height: 36px;
  max-width: 100%;
  flex-shrink: 0;
  opacity: 0.4;
  stroke: var(--green-500);
}

.img-placeholder span {
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.img-placeholder--card {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--gray-200);
}

.img-placeholder--about {
  aspect-ratio: 4 / 3;
  min-height: 360px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.about-image {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.img-placeholder--service {
  width: 72px;
  height: 72px;
  border-radius: 0;
  border: 2px solid var(--green-100);
  background: var(--green-50);
}

.img-placeholder--service svg {
  stroke: var(--green-700);
  opacity: 0.7;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: clip;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--nav-bg);
  transition: background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.navbar.scrolled {
  background: var(--green-900);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
  max-width: 100%;
}

.nav-right {
  flex-shrink: 0;
  min-width: 0;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: 0;
  transition: color var(--duration), background var(--duration);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 4px;
}

.lang-toggle button {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 10px;
  border-radius: 0;
  transition: all var(--duration);
}

.lang-toggle button.active-lang {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.lang-toggle button:hover {
  color: var(--white);
}

/* Mobile menu button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 0;
  transition: all var(--duration) var(--ease);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  background: var(--green-900);
  z-index: 999;
  padding: 32px var(--container-px);
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--duration);
}

.mobile-menu a:hover {
  color: var(--white);
}

.mobile-lang {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.mobile-lang button {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  transition: all var(--duration);
}

.mobile-lang button.active-lang {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
  padding-bottom: 0;
  background: #102015;
}

.hero-media {
  position: absolute;
  top: var(--nav-height);
  right: 0;
  bottom: 0;
  left: 50%;
  height: auto;
  z-index: 0;
  border-left: 10px solid #d6a642;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(5, 20, 12, 0.18);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  padding-left: 0;
  padding-right: 0;
}

.hero-content {
  width: min(100%, 600px);
  max-width: 100%;
  min-width: 0;
  text-align: left;
  padding: clamp(44px, 7vw, 88px) clamp(24px, 5vw, 72px);
  margin-left: max(0px, calc((100% - var(--container-max)) / 2));
  overflow-wrap: break-word;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f1d58d;
  background: transparent;
  border: 1px solid rgba(214, 166, 66, 0.45);
  border-radius: 0;
  padding: 9px 14px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  border-radius: 0;
  background: #d6a642;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 5.1rem);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--white);
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #f1d58d;
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
  margin-bottom: 34px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 560px;
  border-top: 1px solid rgba(214, 166, 66, 0.45);
  border-bottom: 1px solid rgba(214, 166, 66, 0.45);
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 10px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
  border-right: 1px solid rgba(214, 166, 66, 0.45);
}

.hero-proof li:last-child {
  border-right: 0;
}

.hero-proof li::before {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #d6a642;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 0;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

.btn-outline {
  border: 2px solid var(--green-200, #bbf7d0);
  color: var(--green-900);
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--green-700);
  background: var(--green-50);
  transform: translateY(-2px);
}

.btn-warm {
  background: var(--cta-warm);
  color: var(--white);
}

.btn-warm:hover {
  background: var(--cta-warm-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.35);
}

.btn-ghost {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}


/* --- Section Divider --- */
.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d6a642;
  z-index: 3;
}

.section-divider--top {
  top: 0;
  bottom: auto;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  min-width: 0;
}

.about-text .eyebrow {
  color: var(--gold-600);
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  min-width: 0;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-700);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}


/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  background: #f5f6f4;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.product-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.product-tab {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 24px;
  border-radius: 0;
  border: 2px solid var(--border);
  color: var(--text-secondary);
  background: var(--white);
  transition: all var(--duration) var(--ease);
}

.product-tab:hover {
  border-color: var(--green-600);
  color: var(--green-700);
}

.product-tab.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  min-width: 0;
}

.product-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: none;
  transition: border-color var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(10, 61, 31, 0.45);
}

.product-card[data-category] {
  transition: border-color var(--duration) var(--ease),
              opacity 0.4s var(--ease);
}

.product-card.hidden {
  display: none;
}

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;
  margin-bottom: 10px;
  width: fit-content;
}

.badge-agricultural {
  background: var(--green-100);
  color: var(--green-700);
}

.badge-spices {
  background: var(--gold-100);
  color: var(--gold-700);
}

.badge-feed {
  background: var(--gray-100);
  color: var(--gray-600);
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.product-card .product-local-name {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}

.product-card .product-inquiry {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-700);
  transition: color var(--duration);
}

.product-card .product-inquiry:hover {
  color: var(--green-600);
}

.product-card .product-inquiry svg {
  width: 16px;
  height: 16px;
}

.product-signature {
  position: relative;
}

.product-signature::before {
  content: '★ Signature';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold-500);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 0;
  z-index: 2;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  min-width: 0;
}

.service-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 0;
  border: 1px solid var(--green-900);
  transition: all var(--duration) var(--ease);
}

.service-card:hover {
  border-color: var(--green-900);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  margin: 0 auto 24px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-700);
}

.services .section-subtitle {
  color: var(--gray-700);
}


/* ============================================================
   WHY US / VALUES
   ============================================================ */
.values {
  background: var(--green-950);
  color: var(--white);
  position: relative;
  border-top: 1px solid rgba(214, 166, 66, 0.35);
  border-bottom: 1px solid rgba(214, 166, 66, 0.35);
}

.values .section-header {
  position: relative;
  z-index: 2;
}

.values .eyebrow {
  color: #e6c26a;
}

.values .eyebrow::before {
  background: #d6a642;
}

.values h2 {
  color: var(--white);
}

.values .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  position: relative;
  z-index: 2;
  min-width: 0;
}

.value-item {
  text-align: left;
  padding: 30px 26px 32px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 2px solid #d6a642;
  transition: background var(--duration), border-color var(--duration), transform var(--duration) var(--ease);
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  border-top-color: #e8c66a;
  transform: translateY(-3px);
}

.value-icon {
  display: block;
  margin-bottom: 20px;
  color: #e8c66a;
}

.value-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  display: block;
}

.value-item h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 0.88rem;
  color: #e7edf1;
  line-height: 1.75;
}


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--gray-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  min-width: 0;
}

.contact-form {
  background: var(--white);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 0;
  background: var(--gray-50);
  color: var(--text-primary);
  transition: all var(--duration);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-submit {
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 56px;
  height: 56px;
  stroke: var(--green-500);
  margin: 0 auto 16px;
}

.form-success h3 {
  color: var(--green-700);
  margin-bottom: 8px;
}

/* Contact info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info h3 {
  margin-bottom: 8px;
}

.contact-info > p {
  font-size: 1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 0;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--duration);
}

.contact-method:hover {
  border-color: var(--green-300, #86efac);
  box-shadow: var(--shadow-md);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon--whatsapp {
  background: #25D366;
}

.contact-method-icon--email {
  background: var(--green-600);
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.contact-method h4 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-method p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-audience {
  padding: 24px;
  border-radius: 0;
  background: var(--green-50);
  border: 1px solid var(--green-100);
}

.contact-audience h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  margin-bottom: 12px;
}

.contact-audience ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-audience li {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 0;
  background: var(--white);
  border: 1px solid var(--green-100);
  color: var(--text-secondary);
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
}

.footer-brand img {
  height: 52px;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 0;
  transition: color var(--duration);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration);
  padding: 0;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}


/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--duration) var(--ease);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}


/* ============================================================
   PRODUCT MODAL
   ============================================================ */
.product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration) var(--ease),
              visibility var(--duration) var(--ease);
}

.product-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.product-modal {
  background: var(--white);
  border-radius: 0;
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9) translateY(20px);
  transition: transform var(--duration) var(--ease);
  position: relative;
}

.product-modal-overlay.open .product-modal {
  transform: scale(1) translateY(0);
}

.product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 0;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--duration), transform var(--duration);
}

.product-modal-close:hover {
  background: var(--gray-100);
  transform: scale(1.1);
}

.product-modal-close svg {
  width: 18px;
  height: 18px;
  color: var(--gray-600);
}

.product-modal-img {
  width: 100%;
  height: 200px;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-img svg {
  width: 64px;
  height: 64px;
  color: var(--green-300);
}

.product-modal-body {
  padding: 28px;
}

.product-modal-body h3 {
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.product-modal-body .product-local-name {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
}

.product-modal-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 0.95rem;
  text-decoration: none;
}

.product-modal-btn svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .product-modal-overlay {
    padding: 16px;
    align-items: flex-end;
  }

  .product-modal {
    border-radius: 0;
    max-height: 85vh;
    overflow-y: auto;
  }

  .product-modal-img {
    height: 140px;
  }

  .product-modal-body {
    padding: 24px 20px;
  }
}


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

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

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-right .lang-toggle {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  :root {
    --nav-height: 64px;
  }

  .hero {
    min-height: 100svh;
    padding-top: var(--nav-height);
    padding-bottom: 0;
  }

  .hero-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    height: clamp(280px, 42svh, 430px);
    border-left: 0;
    border-top: 8px solid #d6a642;
    order: 2;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-scrim {
    background: rgba(5, 20, 12, 0.12);
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    order: 1;
  }

  .hero-content {
    width: 100%;
    padding: clamp(36px, 9vw, 56px) var(--container-px) 44px;
    margin-left: 0;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10vw, 3.6rem);
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-proof {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-proof li {
    min-height: 46px;
    border-right: 0;
    border-bottom: 1px solid rgba(214, 166, 66, 0.45);
  }

  .hero-proof li:last-child {
    border-bottom: 0;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .about-image {
    order: -1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .img-placeholder--about {
    min-height: 240px;
  }

  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .about-stat-number {
    font-size: 1.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .product-card-body {
    padding: 16px;
  }

  .product-card h3 {
    font-size: 1rem;
  }

  .product-card p {
    font-size: 0.82rem;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .contact-form {
    padding: 24px;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .value-item {
    padding: 24px 16px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    text-align: center;
  }

  .values-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .product-tabs {
    gap: 6px;
  }

  .product-tab {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .nav-logo img {
    height: 40px;
  }

  .section-header {
    margin-bottom: 32px;
  }

  h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
}

/* Touch-friendly hover states */
@media (hover: none) {
  .product-card:hover,
  .service-card:hover,
  .value-item:hover {
    transform: none;
  }
}
