/* ============================================
   JOMAR — PRO MINIMAL DESIGN SYSTEM
   Playfair Display + DM Sans
   ============================================ */


/* ============================================
   TOKENS
   ============================================ */
:root {
  --green-900: #1a3310;
  --green-700: #2d5a1b;
  --green-500: #4a7c2c;
  --green-100: #e8f0e2;
  --black: #111110;
  --ink: #2a2a28;
  --stone: #6b6b66;
  --dust: #f0ede8;
  --cream: #f8f6f2;
  --white: #fafaf8;

  --font-display: 'Montserrat', 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-soft: 0 2px 12px rgba(17, 17, 16, .07);
  --shadow-mid: 0 8px 32px rgba(17, 17, 16, .12);
  --shadow-deep: 0 20px 60px rgba(17, 17, 16, .18);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET + BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
}

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .65);
  cursor: pointer;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.lang-trigger:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.lang-trigger img,
.lang-trigger svg {
  border-radius: 2px;
  display: block;
}

.lang-chevron {
  font-size: 9px;
  opacity: .5;
  transition: transform var(--transition);
}

.lang-dropdown:hover .lang-chevron {
  transform: rotate(180deg);
}

.lang-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #1c1c1a;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  min-width: 160px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .22s cubic-bezier(.4, 0, .2, 1);
  z-index: 1000;
}

.lang-dropdown:hover .lang-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  transition: all var(--transition);
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}

.lang-option:hover {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
}

.lang-option.lang-active {
  color: var(--white);
  background: rgba(74, 124, 44, .15);
  border-left: 2px solid var(--green-500);
  padding-left: 10px;
}

.lang-option img,
.lang-option svg {
  border-radius: 2px;
  flex-shrink: 0;
}

/* Lang dropdown en navbar (fondo claro) */
.navbar .lang-trigger {
  color: var(--ink);
}

.navbar .lang-trigger:hover {
  background: var(--green-100);
  color: var(--green-700);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: var(--white);
  border-bottom: 1px solid rgba(17, 17, 16, .08);
  position: sticky;
  top: 0;
  z-index: 900;
}

.navbar .container {
  max-width: 100%;
  padding: 0 40px;
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(17, 17, 16, .1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 40px;
}

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

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-start;
}

.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: .01em;
  white-space: nowrap;
}

.nav-links>li>a:hover {
  color: var(--green-700);
  background: var(--green-100);
}

.nav-links>li>a .chevron {
  font-size: 10px;
  opacity: .5;
  transition: transform var(--transition);
}

.nav-links>li.dropdown:hover>a .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-links .dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid rgba(17, 17, 16, .1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-mid);
  min-width: 200px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .22s cubic-bezier(.4, 0, .2, 1);
}

.dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--stone);
  border-radius: var(--radius-sm);
}

.dropdown-panel a:hover {
  background: var(--dust);
  color: var(--green-700);
}

/* Nav CTAs */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(17, 17, 16, .18);
  background: transparent;
  transition: all var(--transition);
}

.btn-ghost:hover {
  border-color: var(--green-700);
  color: var(--green-700);
}

.btn-primary {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  background: var(--green-700);
  border: 1.5px solid var(--green-700);
  transition: all var(--transition);
  letter-spacing: .01em;
}

.btn-primary:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 90, 27, .3);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* ============================================
   HERO — INDEX
   ============================================ */
.hero-home {
  background: var(--black);
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(45, 90, 27, .35) 0%, transparent 70%);
  pointer-events: none;
}

.hero-left {
  padding: 100px 64px 100px 80px;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--green-500);
}

.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero-left h1 em {
  font-style: italic;
  color: var(--green-500);
}

.hero-left p {
  font-size: 17px;
  color: rgba(250, 250, 248, .6);
  max-width: 440px;
  margin-bottom: 44px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-actions .btn-primary {
  font-size: 15px;
  padding: 12px 28px;
}

.hero-link {
  font-size: 14px;
  color: rgba(250, 250, 248, .55);
  border-bottom: 1px solid rgba(250, 250, 248, .25);
  padding-bottom: 1px;
  transition: all var(--transition);
}

.hero-link:hover {
  color: var(--white);
  border-color: var(--white);
}

/* Hero stats strip */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(250, 250, 248, .4);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Hero mosaic */
.hero-right {
  position: relative;
  height: 100%;
  min-height: 600px;
  min-width: 0;
}

.hero-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 55% 45%;
  grid-template-columns: 55% 45%;
  gap: 3px;
  padding: 0;
}

.mosaic-cell {
  overflow: hidden;
  position: relative;
}

.mosaic-cell.large {
  grid-row: 1 / 3;
}

.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.mosaic-cell:hover img {
  transform: scale(1.04);
}

.mosaic-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(17, 17, 16, .8), transparent);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition);
}

.mosaic-cell:hover .mosaic-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Mosaic SVG placeholders */
.mosaic-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, .25);
}

.mosaic-placeholder svg {
  width: 40px;
  height: 40px;
}

.mosaic-placeholder span {
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ============================================
   CATEGORIES GRID
   ============================================ */
.categories-section {
  padding: 100px 0;
  background: var(--cream);
}

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

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--green-700);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -.02em;
  line-height: 1.2;
}

.categories-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 240px;
  gap: 12px;
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: default;
  background: var(--black);
}

.cat-card.featured {
  grid-row: 1 / 3;
}

img.cat-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  filter: brightness(.45);
}

.cat-card:hover .cat-card-bg {
  transform: scale(1.04);
  filter: brightness(.55);
}

.cat-card-pattern {
  position: absolute;
  inset: 0;
  opacity: .06;
  background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
  background-size: 24px 24px;
}

.cat-card-content {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: auto;
  backdrop-filter: blur(4px);
  transition: all var(--transition);
}

.cat-card:hover .cat-icon {
  background: var(--green-700);
  border-color: var(--green-700);
}

.cat-icon svg {
  width: 20px;
  height: 20px;
}

.cat-number {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.2;
}

.cat-card.featured h3 {
  font-size: 2rem;
}

.cat-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5;
  margin-bottom: 16px;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  transition: all var(--transition);
}

.cat-card:hover .cat-link {
  color: var(--white);
  gap: 12px;
}

/* ============================================
   WHY JOMAR — DARK SECTION
   ============================================ */
.why-section {
  background: var(--black);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 90, 27, .6), transparent);
}

.why-section .section-header {
  max-width: 560px;
}

.why-section .section-eyebrow {
  color: var(--green-500);
}

.why-section .section-eyebrow::before {
  background: var(--green-500);
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.why-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--green-700);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, .05);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(45, 90, 27, .2);
  border: 1px solid rgba(45, 90, 27, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-500);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}

.why-icon i {
  font-size: 20px;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.why-card p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .4);
  line-height: 1.6;
}

/* ============================================
   STRIP CTA
   ============================================ */
.strip-cta {
  background: var(--green-700);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.strip-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-900) 0%, transparent 60%);
}

.strip-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.strip-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.strip-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, .65);
  font-weight: 300;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-900);
  background: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: .01em;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-white svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   BRANDS MARQUEE
   ============================================ */
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brands-section {
  padding: 88px 0 80px;
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid rgba(17, 17, 16, .06);
  border-bottom: 1px solid rgba(17, 17, 16, .06);
}

.brands-section .section-header {
  margin-bottom: 52px;
}

.brands-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brands-scroll 36s linear infinite;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brand-item {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(17, 17, 16, .07);
}

.brand-item img {
  max-height: 68px;
  max-width: 148px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.brand-item:hover img {
  transform: scale(1.06);
}

.brand-item--lg img {
  max-height: 90px;
  max-width: 170px;
}

/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.form-section {
  padding: 100px 0;
  background: var(--white);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.form-intro .section-eyebrow {
  margin-bottom: 14px;
}

.form-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.form-intro p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-chips {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--dust);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.contact-chip:hover {
  background: var(--green-100);
}

.chip-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.chip-text strong {
  display: block;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2px;
}

.chip-text span {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.chip-text a {
  color: var(--ink);
}

.chip-text a:hover {
  color: var(--green-700);
}

/* Form styles */
.client-form {
  background: var(--cream);
  border: 1px solid rgba(17, 17, 16, .07);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-row.triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--stone);
}

.required {
  color: var(--green-700);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  background: var(--white);
  border: 1.5px solid rgba(17, 17, 16, .12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
  transition: all var(--transition);
  outline: none;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(107, 107, 102, .5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(45, 90, 27, .1);
}

.form-section-alt {
  background: var(--cream);
}

.form-group input.error,
.form-group select.error {
  border-color: #c0392b;
}

.error-message {
  font-size: 11.5px;
  color: #c0392b;
  display: none;
}

.error-message.show {
  display: block;
}

.form-divider {
  height: 1px;
  background: rgba(17, 17, 16, .07);
  margin: 24px 0;
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.checkbox-group input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--green-700);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 13.5px;
  color: var(--stone);
  cursor: pointer;
  line-height: 1.5;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.checkbox-group label a {
  color: var(--green-700);
  text-decoration: underline;
}

.privacy-note {
  font-size: 12px;
  color: var(--stone);
  line-height: 1.6;
  padding: 14px;
  background: rgba(17, 17, 16, .03);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  border-left: 3px solid var(--green-100);
}

.btn-submit-full {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--green-700);
  border: none;
  border-radius: var(--radius-sm);
  letter-spacing: .02em;
  transition: all var(--transition);
}

.btn-submit-full:hover {
  background: var(--green-900);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 90, 27, .3);
}

.success-message {
  background: #eafaf1;
  border: 1.5px solid #a9dfbf;
  color: #186a3b;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  display: none;
  margin-bottom: 20px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 90, 27, .5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-logo-wrap img {
  height: 48px;
  margin-bottom: 18px;
}

.footer-logo-wrap p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 20px;
}

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

.footer-col a,
.footer-col span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .5);
  transition: color var(--transition);
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 14px;
  line-height: 1.5;
}

.footer-contact-list i {
  font-size: 14px;
  color: var(--green-500);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, .5);
}

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

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, .25);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, .55);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, .2);
}

/* ============================================
   LOCATION
   ============================================ */
.location-section {
  padding: 88px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.location-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -.02em;
  margin-bottom: 32px;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.detail-icon-box {
  width: 40px;
  height: 40px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.detail-body strong {
  display: block;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 3px;
}

.detail-body p,
.detail-body a {
  font-size: 14.5px;
  color: var(--ink);
}

.detail-body a:hover {
  color: var(--green-700);
}

.location-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
}

/* ============================================
   MS FORMS IFRAME
   ============================================ */
.ms-form-wrapper {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.ms-form-wrapper iframe {
  display: block;
  width: 100%;
  border: 0;
  max-width: 100%;
  max-height: 100vh;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-home {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 80px 40px;
  }

  .hero-right {
    min-height: 400px;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .cat-card.featured {
    grid-row: auto;
    grid-column: 1 / -1;
    height: 280px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    height: 64px;
  }

  .nav-mobile-open .nav-links {
    display: flex;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 2px;
    box-shadow: var(--shadow-deep);
    z-index: 800;
  }

  .nav-mobile-open .nav-links>li>a {
    font-size: 15px;
    padding: 12px 16px;
  }

  .nav-mobile-open .dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
    border: none;
    border-radius: 0;
    background: var(--cream);
    margin-top: 4px;
  }

  .hero-home {
    padding: 0;
  }

  .hero-left {
    padding: 60px 20px;
  }

  .hero-right {
    min-height: 260px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .cat-card.featured h3 {
    font-size: 1.5rem;
  }

  .cat-card {
    height: 220px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-row.triple {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .client-form {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 2.2rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
@keyframes wa-slide-up {
  from { opacity: 0; transform: translateY(16px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, .45); }
  50%       { box-shadow: 0 4px 20px rgba(37, 211, 102, .45), 0 0 0 10px rgba(37, 211, 102, 0); }
}

.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 2.5s ease-in-out 1.5s 3;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .6);
  animation: none;
}

.wa-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  flex-shrink: 0;
}

.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.wa-popup {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 998;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  animation: wa-slide-up .22s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.wa-popup[hidden] { display: none; }

.wa-popup-header {
  background: #25d366;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-popup-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-popup-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.wa-popup-header-text {
  flex: 1;
  min-width: 0;
}

.wa-popup-header-text strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-popup-status {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .8);
}

.wa-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .8);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  border-radius: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}

.wa-close:hover { color: #fff; }

.wa-popup-body {
  padding: 16px;
  background: #e5ddd5;
}

.wa-bubble-msg {
  background: var(--white);
  border-radius: 0 12px 12px 12px;
  padding: 12px 14px;
  max-width: 88%;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
}

.wa-bubble-msg::before {
  content: '';
  position: absolute;
  top: 0;
  left: -7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent var(--white) transparent transparent;
}

.wa-bubble-msg p {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.wa-bubble-msg span {
  font-size: 12px;
  color: var(--stone);
}

.wa-offhours {
  margin-top: 10px;
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 12.5px;
  color: #7b5800;
  line-height: 1.5;
}

.wa-offhours[hidden] { display: none; }

.wa-popup-footer {
  padding: 12px 16px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}

#wa-msg-input {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink);
  resize: none;
  transition: border-color var(--transition);
  line-height: 1.5;
  box-sizing: border-box;
}

#wa-msg-input:focus {
  outline: none;
  border-color: #25d366;
}

.wa-send-btn {
  width: 100%;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
}

.wa-send-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

.wa-send-btn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .wa-popup {
    width: calc(100vw - 32px);
    right: 16px;
  }
  .wa-fab {
    bottom: 16px;
    right: 16px;
  }
}
