/* ===== Variables ===== */
:root {
  --background: #faf7f2;
  --foreground: #2c2c2c;
  --forest: #1b4332;
  --forest-light: #2d6a4f;
  --gold: #c9a227;
  --gold-light: #d4af37;
  --beige: #f5f0e8;
  --beige-dark: #e8dfd0;
  --charcoal: #2c2c2c;
  --white: #ffffff;
  --shadow-sm: 0 4px 6px -1px rgba(27, 67, 50, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(27, 67, 50, 0.1);
  --shadow-lg: 0 20px 40px -10px rgba(27, 67, 50, 0.15);
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --transition: 0.3s ease;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Typography ===== */
.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.section-label span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.section-label::before,
.section-label::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  margin-top: 1rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(44, 44, 44, 0.7);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.8);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(27, 67, 50, 0.25);
}

.btn-primary:hover {
  background: var(--forest-light);
  transform: scale(1.03);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: scale(1.03);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.03);
}

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

.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
  transform: scale(1.03);
}

.btn-full {
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.5s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(27, 67, 50, 0.2);
  transition: transform var(--transition);
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.logo-img-wrap {
  padding: 0;
  overflow: hidden;
  background: var(--white);
}

.company-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  transition: color var(--transition);
}

.header.scrolled .logo-text {
  color: var(--forest);
}

.logo-sub {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  transition: color var(--transition);
}

.header.scrolled .nav-desktop a {
  color: rgba(44, 44, 44, 0.8);
}

.nav-desktop a:hover {
  color: var(--gold);
}

.header-cta {
  display: none;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  transition: color var(--transition);
}

.header.scrolled .menu-toggle {
  color: var(--forest);
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-mobile {
  display: none;
  background: var(--forest);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.nav-mobile.open {
  display: block;
  max-height: 500px;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  margin: 0.25rem 1rem;
  transition: all var(--transition);
}

.nav-mobile a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.nav-mobile .btn {
  margin: 0.5rem 1rem 1rem;
  width: calc(100% - 2rem);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  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(
    to right,
    rgba(27, 67, 50, 0.9),
    rgba(27, 67, 50, 0.75),
    rgba(27, 67, 50, 0.5)
  );
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 67, 50, 0.6),
    transparent,
    rgba(27, 67, 50, 0.3)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 5rem;
  width: 100%;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  background: rgba(201, 162, 39, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badges span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.hero-badges svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: color var(--transition);
}

.scroll-indicator:hover {
  color: var(--gold);
}

.scroll-mouse {
  width: 1.25rem;
  height: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  padding: 0.25rem;
  display: flex;
  justify-content: center;
}

.scroll-dot {
  width: 0.25rem;
  height: 0.5rem;
  background: var(--gold);
  border-radius: 9999px;
  animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}

.section-beige {
  background: var(--beige);
}

.section-white {
  background: var(--white);
}

.section-forest {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.established-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--forest);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
}

.established-badge .year {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
}

.established-badge .label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.about-text p {
  font-size: 1.125rem;
  color: rgba(44, 44, 44, 0.8);
  margin-bottom: 1rem;
}

.info-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}

.info-card {
  background: var(--white);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 223, 208, 0.4);
}

.info-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 67, 50, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}

.info-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--forest);
}

.info-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.info-card-value {
  margin-top: 0.25rem;
  font-weight: 500;
  color: var(--forest);
}

/* ===== Products ===== */
.products-grid {
  display: grid;
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.product-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.6), transparent);
}

.product-image h3 {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.product-body {
  padding: 1.5rem;
}

.product-body p {
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 1rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.8);
  margin-bottom: 0.5rem;
}

.feature-check {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(27, 67, 50, 0.1);
  color: var(--forest);
  font-size: 0.625rem;
  flex-shrink: 0;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 223, 208, 0.3);
  transition: all var(--transition);
}

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

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(27, 67, 50, 0.2);
  transition: transform var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--white);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.7);
}

/* ===== Quality ===== */
.quality-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.quality-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.quality-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quality-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quality-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.2);
  flex-shrink: 0;
}

.quality-item-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
}

.quality-item span {
  font-weight: 500;
  color: var(--white);
}

.quality-image {
  position: relative;
  height: 20rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.quality-image-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.quality-image-caption h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.quality-image-caption p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

.quality-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.6), transparent);
}

/* ===== Export Markets ===== */
.export-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.map-card {
  position: relative;
  aspect-ratio: 4/3;
  max-width: 32rem;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--beige), var(--beige-dark));
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.map-globe {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-globe svg {
  width: 12rem;
  height: 12rem;
  color: rgba(27, 67, 50, 0.1);
}

.map-pin {
  position: absolute;
  left: 45%;
  top: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.3);
  animation: pulse 2s infinite;
}

.map-pin-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--white);
}

.map-pin-label {
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: var(--forest);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.map-dots span {
  position: absolute;
  border-radius: 50%;
  background: rgba(27, 67, 50, 0.35);
}

.map-dots span:nth-child(1) { right: 15%; top: 45%; width: 0.75rem; height: 0.75rem; }
.map-dots span:nth-child(2) { left: 25%; bottom: 35%; width: 0.5rem; height: 0.5rem; }
.map-dots span:nth-child(3) { right: 30%; bottom: 25%; width: 0.625rem; height: 0.625rem; }

.map-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: space-between;
}

.map-info-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.map-info-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
}

.industries-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.industries-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--beige);
  border-radius: 0.75rem;
  border: 1px solid rgba(232, 223, 208, 0.5);
}

.industry-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 67, 50, 0.1);
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.industry-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--forest);
}

.export-text {
  margin-top: 2rem;
  color: rgba(44, 44, 44, 0.7);
}

/* ===== Packaging ===== */
.packaging-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.packaging-image {
  height: 20rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.packaging-text {
  font-size: 1.125rem;
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 2rem;
}

.packaging-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.packaging-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.packaging-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(27, 67, 50, 0.1);
  flex-shrink: 0;
}

.packaging-item-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--forest);
}

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.85);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
}

.cta-subtitle {
  margin: 1rem auto 0;
  max-width: 42rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.cta-card {
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 0.75rem;
}

.cta-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold);
}

.cta-card-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.cta-card-value {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.cta-button {
  margin-top: 2.5rem;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info-card {
  background: var(--forest);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-detail svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.contact-detail-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.contact-detail-value {
  font-weight: 500;
}

.contact-detail-value a:hover {
  color: var(--gold);
}

.contact-form-card {
  background: var(--beige);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 223, 208, 0.4);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.contact-form-card > p {
  font-size: 0.875rem;
  color: rgba(44, 44, 44, 0.7);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(232, 223, 208, 0.6);
  border-radius: 0.75rem;
  background: var(--white);
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(27, 67, 50, 0.1);
  border-radius: var(--radius-lg);
}

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

.form-success-icon {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(27, 67, 50, 0.2);
  border-radius: 50%;
}

.form-success-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--forest);
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
}

.form-success p {
  margin-top: 0.5rem;
  color: rgba(44, 44, 44, 0.7);
}

/* ===== Footer ===== */
.footer {
  background: #1a0f0a;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2.5rem;
  min-height: 64px;
}

.footer-copyright {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-copyright a:hover {
  color: var(--gold);
}

.footer-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 42px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .footer-bar {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .footer-copyright {
    font-size: 0.75rem;
  }

  .footer-logo {
    height: 36px;
  }
}

/* ===== Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in {
  animation: fadeIn 0.7s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-delay-1 { animation: fadeIn 0.7s ease 0.1s forwards; opacity: 0; }
.fade-in-delay-2 { animation: fadeIn 0.7s ease 0.2s forwards; opacity: 0; }
.fade-in-delay-3 { animation: fadeIn 0.7s ease 0.3s forwards; opacity: 0; }
.fade-in-delay-4 { animation: fadeIn 0.7s ease 0.4s forwards; opacity: 0; }
.fade-in-delay-5 { animation: fadeIn 0.7s ease 0.5s forwards; opacity: 0; }

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .established-badge {
    display: block;
  }

  .packaging-image {
    height: 28rem;
  }

  .quality-image {
    height: 24rem;
  }
}

@media (min-width: 768px) {
  .products-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 7rem 0;
  }

  .about-image img {
    height: 500px;
  }

  .cta-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .header-cta {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

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

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

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .contact-grid {
    grid-template-columns: 2fr 3fr;
  }
}
