/* ============================================================
   JAY AMBE FOILS — Corporate Website Stylesheet
   Premium Dark Theme with Gold & Blue Accents
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Backgrounds */
  --bg-primary: #0a0e27;
  --bg-secondary: #101845;
  --bg-tertiary: #0d1a3a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --bg-glass: rgba(16, 24, 69, 0.6);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(79, 172, 254, 0.3);
  --border-gold: rgba(201, 168, 76, 0.3);

  /* Accent Colors */
  --accent-blue: #4facfe;
  --accent-cyan: #00f2fe;
  --accent-gold: #c9a84c;
  --accent-gold-light: #e6c872;
  --accent-red: #f5576c;

  /* Text */
  --text-primary: #e0e6f0;
  --text-secondary: #a0aec0;
  --text-muted: #8892b0;
  --text-dim: #64748b;
  --text-white: #ffffff;

  /* Gradients */
  --gradient-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-gold: linear-gradient(135deg, #c9a84c 0%, #e6c872 100%);
  --gradient-red: linear-gradient(135deg, #f5576c 0%, #ff6b6b 100%);
  --gradient-bg-1: linear-gradient(135deg, #0a0e27 0%, #101845 40%, #0d1a3a 100%);
  --gradient-bg-2: linear-gradient(180deg, #060a1e 0%, #0f1640 100%);
  --gradient-bg-3: linear-gradient(135deg, #0d1a3a 0%, #142050 50%, #0a1235 100%);
  --gradient-text: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #a8edea 100%);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Sizing */
  --nav-height: 80px;
  --section-padding-y: 120px;
  --section-padding-x: 80px;
  --max-width: 1280px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --radius-circle: 50%;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow-blue: 0 0 30px rgba(79, 172, 254, 0.2);
  --shadow-glow-gold: 0 0 30px rgba(201, 168, 76, 0.2);
  --shadow-hover: 0 20px 60px rgba(79, 172, 254, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-normal: 0.3s var(--ease-out);
  --transition-slow: 0.5s var(--ease-out);
  --transition-slower: 0.8s var(--ease-out);
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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


/* ── UTILITY CLASSES ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.text-gradient-blue {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--accent-blue);
}

.text-gold {
  color: var(--accent-gold);
}


/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
}

h3 {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 6px;
  text-transform: uppercase;
}

h4 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-gold);
  margin-bottom: 12px;
  display: inline-block;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p {
  max-width: 680px;
  margin: 0 auto;
  margin-top: 16px;
}

.divider {
  width: 80px;
  height: 3px;
  margin: 16px 0 24px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.divider-center {
  margin: 16px auto 24px;
}


/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: background var(--transition-normal),
              box-shadow var(--transition-normal),
              backdrop-filter var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1001;
}

.nav-logo {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-circle);
  object-fit: cover;
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-glow-gold);
  transition: transform var(--transition-normal);
}

.nav-logo:hover {
  transform: scale(1.08);
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.nav-brand-text span {
  color: var(--accent-gold);
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: color var(--transition-fast),
              background var(--transition-fast);
  position: relative;
}

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

.nav-links a.active {
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.1);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  z-index: 1001;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-normal),
              opacity var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 39, 0.5) 0%,
    rgba(10, 14, 39, 0.3) 40%,
    rgba(10, 14, 39, 0.7) 80%,
    rgba(10, 14, 39, 1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 30px;
}

.hero-logo {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-circle);
  object-fit: cover;
  margin: 0 auto 30px;
  border: 3px solid rgba(201, 168, 76, 0.5);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.25),
              0 0 80px rgba(201, 168, 76, 0.1);
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(201, 168, 76, 0.25), 0 0 80px rgba(201, 168, 76, 0.1); }
  50% { box-shadow: 0 0 50px rgba(201, 168, 76, 0.35), 0 0 100px rgba(201, 168, 76, 0.15); }
}

.hero-subtitle {
  margin-bottom: 10px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-badge {
  padding: 10px 24px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.06);
  transition: all var(--transition-normal);
}

.hero-badge:hover {
  background: rgba(201, 168, 76, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-gold);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.4);
}

.hero-cta svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-normal);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-dim);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

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

@keyframes scrollWheel {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 20px; }
}


/* ── SECTIONS ── */
.section {
  padding: var(--section-padding-y) 0;
  position: relative;
  overflow: hidden;
}

.section-bg-gradient-1 {
  background: var(--gradient-bg-1);
}

.section-bg-gradient-2 {
  background: var(--gradient-bg-2);
}

.section-bg-gradient-3 {
  background: var(--gradient-bg-3);
}

/* Subtle top/bottom section separators */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.section:first-of-type::before {
  display: none;
}


/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 30px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  pointer-events: none;
}


/* ── GLASS CARDS ── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-normal),
              border-color var(--transition-normal),
              box-shadow var(--transition-normal),
              background var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
  background: var(--bg-card-hover);
}

.glass-card h4 {
  margin-bottom: 10px;
}

.glass-card.gold-border:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow-gold);
}

.glass-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.glass-card .card-title {
  color: var(--accent-blue);
  margin-bottom: 12px;
}


/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.products-grid.products-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal),
              border-color var(--transition-normal);
}

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

.product-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: brightness(0.9);
}

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

.product-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

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

.product-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
}


/* ── SPECIALTY LIST ── */
.specialty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 80px;
}

.specialty-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.specialty-image:hover img {
  transform: scale(1.03);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 14px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: color var(--transition-fast);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: '✦';
  color: var(--accent-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 5px;
}

.feature-list li:hover {
  color: var(--text-primary);
}

.feature-list li strong {
  color: var(--text-white);
}


/* ── FOOD SECTION ── */
.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.food-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.food-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.food-image:hover img {
  transform: scale(1.03);
}


/* ── CAPACITY / STATS ── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  padding: 50px 40px;
  background: var(--bg-card);
  border: 1px solid rgba(79, 172, 254, 0.12);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  width: 380px;
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal);
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-blue);
}

.stat-box.gold::before {
  background: var(--gradient-gold);
}

.stat-box.red::before {
  background: var(--gradient-red);
}

.stat-number {
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-box.gold .stat-number {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-box.red .stat-number {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-unit {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
  margin-top: 16px;
}

.stat-sub {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 8px;
}


/* ── INFRASTRUCTURE ── */
.plants-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.plant-badge {
  display: inline-block;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

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

.machine-card {
  text-align: center;
}

.machine-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal);
}

.machine-img:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-hover);
}

.machine-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 14px;
}


/* ── QUALITY / CERTIFICATIONS ── */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cert-card {
  text-align: center;
  padding: 40px 30px;
}

.cert-card .card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  font-size: 2rem;
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal);
}

.cert-card:hover .card-icon {
  transform: scale(1.08);
  box-shadow: var(--shadow-glow-gold);
}

.cert-card p {
  font-size: 0.88rem;
}


/* ── EXPORTS SECTION ── */
.exports-section {
  position: relative;
}

.exports-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.exports-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(0.6);
}

.exports-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.88) 0%,
    rgba(16, 24, 69, 0.78) 50%,
    rgba(10, 14, 39, 0.88) 100%
  );
}

.exports-section .container {
  position: relative;
  z-index: 1;
}

.exports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}




/* ── CONTACT SECTION ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-details {
  padding-right: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal);
}

.contact-item:hover .contact-icon {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-gold);
}

.contact-info-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-form-wrapper h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              background var(--transition-fast);
  outline: none;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

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

.form-group .error-msg {
  display: none;
  font-size: 0.75rem;
  color: var(--accent-red);
  margin-top: 6px;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--accent-red);
}

.form-group.error .error-msg {
  display: block;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gradient-gold);
  color: var(--bg-primary);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  transition: transform var(--transition-normal),
              box-shadow var(--transition-normal);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

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

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

.form-success .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(201, 168, 76, 0.1);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.form-success h4 {
  color: var(--accent-gold);
  margin-bottom: 8px;
}


/* ── FOOTER ── */
.footer {
  background: #060818;
  padding: 40px 0;
  text-align: center;
  position: relative;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-circle);
  border: 1px solid var(--border-gold);
}

.footer-brand span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  font-size: 1rem;
}

.footer p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

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

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


/* ── SCROLL-TRIGGERED ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays for groups */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }


/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal),
              transform var(--transition-normal),
              background var(--transition-normal);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: rgba(201, 168, 76, 0.3);
  transform: translateY(-3px);
}


/* ── RESPONSIVE ── */

/* Tablet & Below */
@media (max-width: 1200px) {
  :root {
    --section-padding-x: 40px;
    --section-padding-y: 80px;
  }

  .about-grid {
    gap: 40px;
  }

  .specialty-grid,
  .food-grid {
    gap: 40px;
  }

  .contact-grid {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 39, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    z-index: 1000;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 30px;
  }

  .hamburger {
    display: flex;
  }

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

  .about-image {
    max-height: 400px;
  }

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

  .specialty-image {
    order: -1;
    max-height: 350px;
  }

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

  .food-image {
    max-height: 400px;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding-x: 24px;
    --section-padding-y: 70px;
    --nav-height: 70px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

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

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

  .quality-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

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


  .stats-row {
    gap: 24px;
  }

  .stat-box {
    width: 100%;
    max-width: 380px;
  }

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

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

  .hero-badges {
    gap: 10px;
  }

  .hero-badge {
    padding: 8px 18px;
    font-size: 0.72rem;
  }

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

@media (max-width: 480px) {
  :root {
    --section-padding-x: 18px;
    --section-padding-y: 60px;
  }

  .hero-logo {
    width: 85px;
    height: 85px;
  }

  .hero-cta {
    padding: 14px 32px;
    font-size: 0.9rem;
  }

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

  .nav-brand-text {
    font-size: 1.05rem;
  }

  .contact-form-wrapper {
    padding: 28px 22px;
  }

  .glass-card {
    padding: 24px;
  }
}
