/* ============================================
   Bojo Agro Oil Company — Premium B2B Theme
   ============================================ */

:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --charcoal-light: #1e1e1e;
  --charcoal-mid: #2a2a2a;
  --green-deep: #0d2818;
  --green: #1a3d2e;
  --green-accent: #2d6a4f;
  --green-light: #40916c;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #9a7b1a;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-300: #a3a3a3;
  --gray-500: #737373;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --header-h: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 4px 24px rgba(201, 162, 39, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --container: min(1200px, 92vw);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-100);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

ul { list-style: none; }

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  text-align: center;
}

.preloader__logo {
  max-width: 220px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.preloader__bar {
  width: 120px;
  height: 3px;
  background: var(--charcoal-mid);
  border-radius: 3px;
  margin-inline: auto;
  overflow: hidden;
}

.preloader__bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 3px;
  animation: preloadBar 1.2s ease-in-out infinite;
}

@keyframes preloadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201, 162, 39, 0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform var(--transition);
}

.header__logo:hover img {
  transform: scale(1.02);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--gray-100);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link--cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.25rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black) !important;
  font-weight: 600;
}

.nav__link--cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black) !important;
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--black);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.btn--sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  margin-top: 1rem;
}

.btn--whatsapp:hover {
  background: #20bd5a;
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(13, 40, 24, 0.75) 50%, rgba(10, 10, 10, 0.88) 100%),
    radial-gradient(ellipse at 70% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 6rem;
}

.hero__tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50px;
  background: rgba(201, 162, 39, 0.06);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-300);
  max-width: 640px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
}

.stat-card {
  padding: 1.25rem 1rem;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.4);
}

.stat-card__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
}

.stat-card__suffix {
  font-size: 0.75rem;
  color: var(--gray-300);
  display: block;
}

.stat-card__label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-300);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(201, 162, 39, 0.4);
  border-radius: 20px;
  z-index: 1;
}

.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-desc {
  color: var(--gray-300);
  font-size: 1.05rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about__lead {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about__content p {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: var(--gray-100);
  font-weight: 500;
}

.about__features i {
  color: var(--gold);
  width: 20px;
}

.about__images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__img:hover img {
  transform: scale(1.05);
}

.about__img--main {
  grid-row: span 2;
}

.about__img--secondary {
  align-self: end;
}

.counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.counter-card {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(145deg, var(--charcoal-light), var(--green-deep));
  border: 1px solid rgba(45, 106, 79, 0.3);
  border-radius: var(--radius);
}

.counter-card__num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
}

.counter-card__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
}

.counter-card__text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mission-card {
  padding: 2rem;
  background: var(--charcoal-light);
  border: 1px solid var(--charcoal-mid);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.mission-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.25);
  box-shadow: var(--shadow-gold);
}

.mission-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-deep), var(--green));
  border-radius: 12px;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--gold);
}

.mission-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.mission-card p {
  color: var(--gray-300);
  font-size: 0.95rem;
}

/* Products */
.products {
  background: linear-gradient(180deg, var(--black) 0%, var(--green-deep) 30%, var(--black) 100%) !important;
}

.products__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: var(--charcoal-light);
  border: 1px solid var(--charcoal-mid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow);
}

.product-card:nth-child(even) {
  direction: rtl;
}

.product-card:nth-child(even) > * {
  direction: ltr;
}

.product-card__media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.06);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.product-card__body {
  padding: 2.5rem;
}

.product-card__body h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.product-card__body > p {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.product-card__specs h4,
.product-card__apps h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.product-card__specs ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--charcoal-mid);
  font-size: 0.9rem;
}

.product-card__specs ul li span {
  color: var(--gray-300);
}

.product-card__specs ul li strong {
  color: var(--white);
}

.product-card__apps {
  margin: 1.25rem 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags span {
  padding: 0.35rem 0.75rem;
  background: rgba(45, 106, 79, 0.2);
  border: 1px solid rgba(45, 106, 79, 0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gray-100);
}

.product-card__export {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--green-light);
  font-size: 0.9rem;
  margin: 1.25rem 0;
}

.product-card__export i {
  color: var(--gold);
}

/* Why Us */
.why-us {
  background: var(--charcoal) !important;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.5rem;
  background: var(--charcoal-light);
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 39, 0.25);
  background: linear-gradient(180deg, var(--charcoal-light) 0%, var(--green-deep) 100%);
  box-shadow: var(--shadow-gold);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  border-radius: 50%;
  transition: transform var(--transition);
}

.feature-card:hover .feature-card__icon {
  transform: scale(1.1);
  background: rgba(201, 162, 39, 0.2);
}

.feature-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--gray-300);
}

/* Packaging */
.packaging__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.packaging-block {
  padding: 2.5rem;
  background: var(--charcoal-light);
  border: 1px solid var(--charcoal-mid);
  border-radius: var(--radius-lg);
}

.packaging-block--custom {
  border-color: rgba(201, 162, 39, 0.2);
  background: linear-gradient(145deg, var(--charcoal-light), rgba(13, 40, 24, 0.5));
}

.packaging-block__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.packaging-block__header i {
  font-size: 1.5rem;
  color: var(--gold);
}

.packaging-block__header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--white);
}

.pack-infographic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pack-item {
  padding: 1.25rem;
  background: var(--charcoal);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--charcoal-mid);
  transition: transform var(--transition), border-color var(--transition);
}

.pack-item:hover {
  transform: scale(1.03);
  border-color: var(--green-accent);
}

.pack-item__weight {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
}

.pack-item__type {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-300);
  margin-top: 0.25rem;
}

.pack-item--gold i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pack-infographic--custom .pack-item {
  border-color: rgba(201, 162, 39, 0.15);
}

/* Markets */
.markets__wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.world-map {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 162, 39, 0.15);
}

.pulse-dot {
  fill: rgba(201, 162, 39, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.pulse-dot--green {
  fill: rgba(45, 106, 79, 0.4);
}

@keyframes pulse {
  0%, 100% { r: 12; opacity: 0.6; }
  50% { r: 18; opacity: 0.2; }
}

.shipping-line {
  animation: dashMove 20s linear infinite;
}

.shipping-line--delay { animation-delay: -5s; }
.shipping-line--delay2 { animation-delay: -10s; }
.shipping-line--delay3 { animation-delay: -15s; }

@keyframes dashMove {
  to { stroke-dashoffset: -100; }
}

.markets__map {
  position: relative;
}

.shipping-icon {
  position: absolute;
  color: var(--gold);
  font-size: 1.25rem;
  animation: shipFloat 4s ease-in-out infinite;
}

.shipping-icon--1 {
  top: 45%;
  left: 35%;
}

@keyframes shipFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -8px); }
}

.market-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  background: var(--charcoal-light);
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.market-card:hover,
.market-card--active {
  border-color: rgba(201, 162, 39, 0.3);
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.08), transparent);
}

.market-card__flag {
  font-size: 2rem;
  line-height: 1;
}

.market-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.market-card p {
  font-size: 0.875rem;
  color: var(--gray-300);
}

/* Gallery — row 1: 2 images, row 2: 3 images */
.gallery__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 1100px;
  margin-inline: auto;
}

.gallery__row {
  display: grid;
  gap: 1.25rem;
}

.gallery__row--2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery__row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--gold);
  font-size: 1.5rem;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--green-deep) 50%, var(--black) 100%) !important;
}

/* FAQ */
.faq {
  background: var(--black) !important;
}

.faq__list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: var(--charcoal-light);
  border: 1px solid var(--charcoal-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq__item.is-open {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-gold);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--gold);
}

.faq__icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer > p {
  overflow: hidden;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.75;
  transition: padding 0.35s ease;
}

.faq__item.is-open .faq__answer > p {
  padding: 0 1.5rem 1.25rem;
}

.faq__answer strong {
  color: var(--gold-light);
}

.faq__cta {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1rem;
  color: var(--gray-300);
}

.faq__cta a {
  color: var(--gold);
  font-weight: 600;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 2.5rem;
  background: var(--charcoal-light);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-lg);
  text-align: center;
}

.testimonial-card__stars {
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-card footer strong {
  display: block;
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-card footer span {
  font-size: 0.875rem;
  color: var(--gray-300);
}

.testimonial-slider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  background: transparent;
  color: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--charcoal-mid);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  padding: 2.5rem;
  background: var(--charcoal-light);
  border: 1px solid var(--charcoal-mid);
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-100);
  margin-bottom: 0.4rem;
}

.form-group label span {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--charcoal);
  border: 1px solid var(--charcoal-mid);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23c9a227' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 1rem;
}

.contact-info__card {
  padding: 2rem;
  background: linear-gradient(145deg, var(--green-deep), var(--charcoal-light));
  border: 1px solid rgba(45, 106, 79, 0.3);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.contact-info__card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-info__list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info__list i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  width: 20px;
}

.contact-info__list strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.contact-info__list p {
  font-size: 0.9rem;
  color: var(--gray-300);
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--charcoal-mid);
}

.contact-map iframe {
  display: block;
}

/* Footer */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  padding: 4rem 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--charcoal-mid);
}

.footer__brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-bottom: 1.25rem;
  max-width: 260px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal-light);
  border: 1px solid var(--charcoal-mid);
  border-radius: 50%;
  color: var(--gray-300);
  transition: all var(--transition);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links ul li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  color: var(--gray-300);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact p {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-bottom.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  margin-top: 0.5rem;
  border-top: 1px solid var(--charcoal-mid);
}

.footer-copyright-text p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

.footer-copyright-text a {
  color: var(--gray-300);
  transition: color var(--transition);
}

.footer-copyright-text a:hover {
  color: var(--gold);
}

.footer-copyright-logo {
  flex-shrink: 0;
}

.footer-copyright-logo img {
  width: 120px;
  height: auto;
  display: block;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer-copyright-logo a:hover img {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox:not(.active) {
  pointer-events: none;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__close:hover {
  background: var(--gold);
  color: var(--black);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

/* Scroll top */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 5.5rem;
  z-index: 900;
  width: 44px;
  height: 44px;
  background: var(--charcoal-light);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold);
  color: var(--black);
}

/* Form success */
.form-success {
  padding: 1rem;
  background: rgba(45, 106, 79, 0.2);
  border: 1px solid var(--green-accent);
  border-radius: 8px;
  color: var(--green-light);
  text-align: center;
  margin-top: 1rem;
}

/* Responsive — Tablet */
@media (max-width: 1024px) {
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid,
  .contact__grid,
  .markets__wrapper {
    grid-template-columns: 1fr;
  }

  .about__images {
    order: -1;
  }

  .counters,
  .mission-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card,
  .product-card:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .packaging__grid {
    grid-template-columns: 1fr;
  }

  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive — Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  .nav.open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__link {
    padding: 1rem;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--charcoal-mid);
  }

  .nav__link--cta {
    margin: 1rem 0 0;
    text-align: center;
  }

  .header__logo img {
    height: 44px;
  }

  .hero__content {
    padding: 2rem 0 5rem;
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem 0.75rem;
  }

  .stat-card__value {
    font-size: 1.35rem;
  }

  .section {
    padding: 4rem 0;
  }

  .counters,
  .mission-cards {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pack-infographic {
    grid-template-columns: 1fr;
  }

  .gallery__row--2,
  .gallery__row--3 {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand img {
    margin-inline: auto;
  }

  .footer__brand p {
    margin-inline: auto;
  }

  .footer__social {
    justify-content: center;
  }

  .footer-bottom.footer-copyright {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .footer-copyright-logo img {
    margin-inline: auto;
  }

  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .scroll-top {
    right: 4.75rem;
    bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: opacity 0.3s ease; transform: none; }
  .reveal.visible { transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
