@import url("css/bottom-nav-styles.css");
@import url("css/burger-boom-styles.css");
@import url("css/epic-story-styles.css");
@import url("css/mega-sales-delivery-styles.css");
@import url("css/modern-styles.css");
@import url("css/moving-burger-styles.css");
@import url("css/product-cards-layout.css");
@import url("css/secrets-section-styles.css");
@import url("css/section-unified-styles.css");
@import url("css/success-profit-styles.css");
@import url("css/typography-improvements.css");
@import url("css/unified-sections-styles.css");
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0908;
  color: #f5f3f0;
  overflow-x: hidden;
}

/* Color Palette */
:root {
  --primary-dark: #0a0908;
  --primary-brown: #22181c;
  --meat-red: #8b0000;
  --meat-brown: #4a2c2a;
  --gold-accent: #d4af37;
  --fire-orange: #ff6b35;
  --smoke-gray: #4a4a4a;
  --cream: #f5f3f0;
  --grill-black: #1a1a1a;
}

/* Fixed Contact Button */
.fixed-contact {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1000;
}

.contact-btn {
  background: linear-gradient(135deg, var(--meat-red), var(--fire-orange));
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(139, 0, 0, 0.5);
}

.btn-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--gold-accent), var(--fire-orange));
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-btn:hover .btn-glow {
  opacity: 1;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 9, 8, 0.9);
  backdrop-filter: none;
  z-index: 999;
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--gold-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-btn {
  color: var(--cream);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(74, 44, 42, 0.3);
  border: 1px solid transparent;
}

.nav-btn:hover {
  color: var(--gold-accent);
  border-color: var(--gold-accent);
  background: rgba(212, 175, 55, 0.1);
}

/* Section Base */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 50px;
  position: relative;
  background-attachment: fixed;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-brown) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(139, 0, 0, 0.3) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.hero-text {
  flex: 1;
  z-index: 2;
}

.main-title {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: titleReveal 1s ease forwards;
}

.title-line:nth-child(2) {
  animation-delay: 0.2s;
}

.title-line:nth-child(3) {
  animation-delay: 0.4s;
}

.highlight {
  color: var(--gold-accent);
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-subtitle {
  font-size: 24px;
  color: var(--cream);
  opacity: 0.8;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.8s;
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 0.8;
    transform: translateY(0);
  }
}

/* Raw Materials Visual */
.raw-materials-visual {
  flex: 1;
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.meat-piece {
  position: absolute;
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, var(--meat-red), var(--meat-brown));
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: floatMeat 3s ease-in-out infinite;
}

.piece-1 {
  top: 100px;
  left: 50px;
  animation-delay: 0s;
}

.piece-2 {
  top: 200px;
  right: 80px;
  animation-delay: 1s;
}

.piece-3 {
  bottom: 150px;
  left: 100px;
  animation-delay: 2s;
}

.meat-texture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.1) 2px,
    rgba(255, 255, 255, 0.1) 4px
  );
  border-radius: 20px;
}

.meat-shine {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 15px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  filter: none;
}

@keyframes floatMeat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-accent);
  border-radius: 50%;
  animation: particle 4s linear infinite;
  box-shadow: 20px 30px 0 var(--fire-orange), -20px 50px 0 var(--gold-accent),
    40px 70px 0 var(--meat-red), -30px 20px 0 var(--fire-orange);
}

@keyframes particle {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: var(--gold-accent);
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold-accent);
  border-bottom: 2px solid var(--gold-accent);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Production Section */
.production-section {
  background: linear-gradient(
    135deg,
    var(--primary-brown) 0%,
    var(--grill-black) 100%
  );
  position: relative;
}

.production-visual {
  flex: 1;
  position: relative;
  height: 400px;
}

.production-line {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(to right, #333, #555, #333);
  border-radius: 10px;
  overflow: hidden;
}

.conveyor-belt {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 20px;
  background: repeating-linear-gradient(
    to right,
    #666 0px,
    #666 20px,
    #777 20px,
    #777 40px
  );
  transform: translateY(-50%);
  animation: conveyorMove 3s linear infinite;
}

@keyframes conveyorMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 0;
  }
}

.machinery {
  position: absolute;
  top: 20px;
  right: 50px;
  width: 100px;
  height: 80px;
}

.machine-part {
  position: absolute;
  background: #555;
  border-radius: 5px;
}

.part-1 {
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  animation: machinePulse 2s ease-in-out infinite;
}

.part-2 {
  width: 30px;
  height: 60px;
  top: 20px;
  right: 0;
  animation: machinePulse 2s ease-in-out infinite 0.5s;
}

.part-3 {
  width: 50px;
  height: 20px;
  bottom: 0;
  left: 25px;
  animation: machinePulse 2s ease-in-out infinite 1s;
}

@keyframes machinePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  }
}

.workers {
  position: absolute;
  bottom: -30px;
  left: 20%;
  display: flex;
  gap: 30px;
}

.worker {
  width: 20px;
  height: 40px;
  background: white;
  border-radius: 5px 5px 0 0;
  position: relative;
  animation: workerMove 4s ease-in-out infinite;
}

.worker::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 5px;
  width: 10px;
  height: 10px;
  background: #fdbcb4;
  border-radius: 50%;
}

.worker-2 {
  animation-delay: 2s;
}

@keyframes workerMove {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
}

/* Steam Effects */
.steam-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.steam {
  position: absolute;
  width: 20px;
  height: 60px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
  border-radius: 50%;
  animation: steamRise 3s ease-in-out infinite;
}

.steam-1 {
  top: 50px;
  left: 30%;
  animation-delay: 0s;
}

.steam-2 {
  top: 40px;
  left: 50%;
  animation-delay: 1s;
}

.steam-3 {
  top: 60px;
  left: 70%;
  animation-delay: 2s;
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-30px) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translateY(-60px) scale(0.8);
  }
}

.production-text {
  flex: 1;
  text-align: center;
}

.production-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold-accent);
}

.production-text p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.8;
}

/* CTA Buttons */
.cta-btn {
  background: linear-gradient(135deg, var(--meat-red), var(--fire-orange));
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(139, 0, 0, 0.4);
}

.btn-spark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.cta-btn:hover .btn-spark {
  opacity: 1;
  animation: spark 0.6s ease;
}

@keyframes spark {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
}

/* Perfect Patty Section */
.patty-section {
  background: radial-gradient(
    circle at center,
    var(--grill-black) 0%,
    var(--primary-dark) 100%
  );
  position: relative;
}

.patty-visual {
  flex: 1;
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grill-surface {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #2a2a2a 0%, #1a1a1a 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
}

.grill-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 18px,
    rgba(255, 107, 53, 0.3) 18px,
    rgba(255, 107, 53, 0.3) 20px
  );
  border-radius: 50%;
}

.grill-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(255, 107, 53, 0.3);
  animation: grillGlow 3s ease-in-out infinite;
}

@keyframes grillGlow {
  0%,
  100% {
    box-shadow: 0 0 100px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 0 150px rgba(255, 107, 53, 0.6);
  }
}

.perfect-patty {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  z-index: 2;
  animation: pattyFloat 4s ease-in-out infinite;
}

.patty-base {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, #8b4513 0%, #654321 50%, #4a2c2a 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.patty-grill-marks {
  position: absolute;
  top: 20%;
  left: 20%;
  right: 20%;
  bottom: 20%;
  background: repeating-linear-gradient(
    45deg,
    transparent 0px,
    transparent 8px,
    rgba(0, 0, 0, 0.6) 8px,
    rgba(0, 0, 0, 0.6) 12px
  );
  border-radius: 50%;
}

.patty-juice {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(139, 69, 19, 0.8);
  animation: juiceGlow 2s ease-in-out infinite;
}

@keyframes juiceGlow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(139, 69, 19, 0.8);
  }
  50% {
    box-shadow: 0 0 40px rgba(139, 69, 19, 1);
  }
}

.patty-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.2) 0%,
    transparent 70%
  );
}

@keyframes pattyFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

/* Grill Effects */
.grill-effects {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.smoke-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 80px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: smokeRise 4s ease-in-out infinite;
}

@keyframes smokeRise {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(0) scale(1);
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(-100px) scale(1.5);
  }
}

.juice-drop {
  position: absolute;
  width: 6px;
  height: 8px;
  background: var(--meat-red);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: dropFall 3s ease-in-out infinite;
}

.drop-1 {
  top: 200px;
  left: 120px;
  animation-delay: 0s;
}

.drop-2 {
  top: 220px;
  left: 160px;
  animation-delay: 1s;
}

.drop-3 {
  top: 210px;
  left: 200px;
  animation-delay: 2s;
}

@keyframes dropFall {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(50px);
  }
}

.grill-sparks {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spark {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--fire-orange);
  border-radius: 50%;
  animation: sparkFly 2s ease-out infinite;
}

.spark-1 {
  animation-delay: 0s;
  animation-direction: normal;
}

.spark-2 {
  animation-delay: 0.7s;
  animation-direction: reverse;
}

.spark-3 {
  animation-delay: 1.4s;
  animation-direction: alternate;
}

@keyframes sparkFly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(60px, -40px) scale(1.5);
  }
  100% {
    opacity: 0;
    transform: translate(120px, -80px) scale(0);
  }
}

.patty-text {
  flex: 1;
  text-align: center;
}

.patty-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold-accent);
}

.patty-text p {
  font-size: 20px;
  opacity: 0.8;
}

/* Assembly Section */
.assembly-section {
  background: linear-gradient(
    135deg,
    var(--primary-brown) 0%,
    var(--smoke-gray) 100%
  );
  position: relative;
}

.burger-assembly {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 80px;
}

.assembly-stage {
  flex: 1;
  position: relative;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ingredient {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  animation: ingredientDrop 6s ease-in-out infinite;
}

.bottom-bun {
  width: 180px;
  height: 40px;
  background: linear-gradient(135deg, #deb887 0%, #cd853f 100%);
  border-radius: 0 0 90px 90px;
  bottom: 100px;
  animation-delay: 0s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.patty-in-burger {
  width: 160px;
  height: 30px;
  background: radial-gradient(ellipse, #8b4513 0%, #4a2c2a 100%);
  border-radius: 50%;
  bottom: 140px;
  animation-delay: 1s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.cheese-slice {
  width: 170px;
  height: 8px;
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  border-radius: 20px;
  bottom: 170px;
  animation-delay: 2s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.lettuce {
  width: 150px;
  height: 15px;
  background: linear-gradient(135deg, #90ee90 0%, #228b22 100%);
  border-radius: 50%;
  bottom: 178px;
  animation-delay: 3s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.lettuce::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 20px;
  width: 30px;
  height: 20px;
  background: inherit;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.lettuce::after {
  content: '';
  position: absolute;
  top: -2px;
  right: 25px;
  width: 25px;
  height: 18px;
  background: inherit;
  border-radius: 50%;
  transform: rotate(20deg);
}

.tomato {
  width: 140px;
  height: 12px;
  background: linear-gradient(135deg, #ff6347 0%, #dc143c 100%);
  border-radius: 50%;
  bottom: 193px;
  animation-delay: 4s;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.top-bun {
  width: 180px;
  height: 50px;
  background: linear-gradient(135deg, #deb887 0%, #cd853f 100%);
  border-radius: 90px 90px 0 0;
  bottom: 205px;
  animation-delay: 5s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.top-bun::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #8b4513;
  border-radius: 50%;
  box-shadow: -20px 5px 0 #8b4513, 20px 5px 0 #8b4513, -10px -5px 0 #8b4513,
    10px -5px 0 #8b4513;
}

@keyframes ingredientDrop {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-100px) scale(0.8);
  }
  20% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.assembly-text {
  flex: 1;
  text-align: center;
}

.assembly-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold-accent);
}

.assembly-text p {
  font-size: 20px;
  opacity: 0.8;
}

/* Packaging Section */
.packaging-section {
  background: linear-gradient(
    135deg,
    var(--smoke-gray) 0%,
    var(--primary-dark) 100%
  );
  position: relative;
}

.packaging-visual {
  flex: 1;
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delivery-box {
  position: relative;
  width: 200px;
  height: 150px;
  animation: boxFloat 3s ease-in-out infinite;
}

.box-top,
.box-bottom {
  position: absolute;
  width: 200px;
  height: 75px;
  background: linear-gradient(135deg, #8b4513 0%, #654321 100%);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.box-top {
  top: 0;
  transform-origin: bottom;
  animation: boxOpen 4s ease-in-out infinite;
}

.box-bottom {
  bottom: 0;
}

@keyframes boxOpen {
  0%,
  70% {
    transform: rotateX(0deg);
  }
  85% {
    transform: rotateX(-120deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

.company-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--gold-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  color: var(--primary-dark);
  z-index: 2;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.box-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 15px;
  background: linear-gradient(
    45deg,
    rgba(212, 175, 55, 0.3),
    rgba(255, 107, 53, 0.2)
  );
  z-index: -1;
  animation: boxGlow 2s ease-in-out infinite alternate;
}

@keyframes boxGlow {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes boxFloat {
  0%,
  100% {
    transform: translateY(0) rotateY(0deg);
  }
  50% {
    transform: translateY(-20px) rotateY(180deg);
  }
}

.packaging-text {
  flex: 1;
  text-align: center;
}

.packaging-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold-accent);
}

.packaging-text p {
  font-size: 20px;
  opacity: 0.8;
}

/* Delivery Section */
.delivery-section {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-brown) 100%
  );
  position: relative;
}

.delivery-map {
  flex: 1;
  position: relative;
  height: 500px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(74, 44, 42, 0.3) 0%,
    transparent 70%
  );
  border-radius: 20px;
}

.delivery-route {
  position: absolute;
  animation: routeAppear 6s ease-in-out infinite;
}

.route-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(to right, var(--gold-accent), var(--fire-orange));
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.route-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.route-1 .route-line {
  width: 300px;
  transform: rotate(15deg);
}

.route-2 {
  top: 50%;
  right: 20%;
  animation-delay: 2s;
}

.route-2 .route-line {
  width: 250px;
  transform: rotate(-30deg);
}

.route-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.route-3 .route-line {
  width: 280px;
  transform: rotate(45deg);
}

@keyframes routeAppear {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.delivery-truck {
  position: absolute;
  width: 30px;
  height: 20px;
  background: var(--fire-orange);
  border-radius: 5px;
  animation: truckMove 6s linear infinite;
}

.delivery-truck::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 10px;
  height: 20px;
  background: var(--gold-accent);
  border-radius: 5px 0 0 5px;
}

.truck-1 {
  animation-delay: 0s;
  left: 0;
  top: -10px;
}

.truck-2 {
  animation-delay: 2s;
  right: 0;
  top: -10px;
}

.truck-3 {
  animation-delay: 4s;
  left: 0;
  top: -10px;
}

@keyframes truckMove {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(250px);
    opacity: 0;
  }
}

.distribution-centers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.center {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--meat-red);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
  animation: centerPulse 3s ease-in-out infinite;
}

.center-1 {
  top: 15%;
  left: 60%;
}

.center-2 {
  top: 60%;
  right: 10%;
  animation-delay: 1s;
}

.center-3 {
  bottom: 25%;
  left: 30%;
  animation-delay: 2s;
}

@keyframes centerPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(139, 0, 0, 0.6);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(139, 0, 0, 1);
  }
}

.delivery-text {
  flex: 1;
  text-align: center;
}

.delivery-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gold-accent);
}

.delivery-text p {
  font-size: 20px;
  opacity: 0.8;
}

/* Partners Section */
.partners-section {
  background: linear-gradient(
    135deg,
    var(--primary-brown) 0%,
    var(--grill-black) 100%
  );
  padding: 100px 50px;
}

.partners-section .section-content {
  flex-direction: column;
  text-align: center;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
  width: 100%;
}

.partner-card {
  background: rgba(74, 44, 42, 0.3);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.partner-card:hover::before {
  left: 100%;
}

.partner-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.partner-logo {
  font-size: 48px;
  margin-bottom: 20px;
}

.partner-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--gold-accent);
}

.partner-card p {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.6;
}

.cta-section {
  margin-bottom: 60px;
}

.cta-section h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--gold-accent);
}

.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn.primary {
  background: linear-gradient(135deg, var(--meat-red), var(--fire-orange));
}

.cta-btn.secondary {
  background: linear-gradient(135deg, var(--smoke-gray), var(--meat-brown));
  border: 2px solid var(--gold-accent);
}

.testimonials {
  max-width: 600px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(74, 44, 42, 0.2);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--gold-accent);
}

.testimonial p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial span {
  color: var(--gold-accent);
  font-weight: 600;
}

/* Modals */
.video-modal,
.contact-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  background: var(--primary-brown);
  border-radius: 20px;
  padding: 40px;
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  color: var(--gold-accent);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--fire-orange);
}

.video-modal video {
  width: 100%;
  max-width: 800px;
  border-radius: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 400px;
}

.contact-form h3 {
  font-size: 28px;
  color: var(--gold-accent);
  margin-bottom: 20px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  background: rgba(74, 44, 42, 0.3);
  color: var(--cream);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-accent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--meat-red), var(--fire-orange));
  border: none;
  padding: 15px;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(139, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section {
    padding: 60px 15px;
  }

  .section-content {
    flex-direction: column;
    gap: 40px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .nav-menu {
    gap: 15px;
  }

  .nav-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .main-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .production-text h2,
  .patty-text h2,
  .assembly-text h2,
  .packaging-text h2,
  .delivery-text h2 {
    font-size: 32px;
  }

  .production-text p,
  .patty-text p,
  .assembly-text p,
  .packaging-text p,
  .delivery-text p {
    font-size: 16px;
  }

  .cta-btn {
    padding: 15px 25px;
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .partners-section {
    padding: 60px 15px;
  }

  .partners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partner-card {
    padding: 30px 15px;
  }

  .fixed-contact {
    right: 15px;
  }

  .contact-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .contact-form {
    min-width: 280px;
    padding: 20px 15px;
  }

  .modal-content {
    padding: 20px 15px;
    margin: 15px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 10px;
  }

  .nav-container {
    padding: 0 10px;
  }

  .partners-section {
    padding: 40px 10px;
  }

  .partner-card {
    padding: 20px 10px;
  }

  .fixed-contact {
    right: 10px;
  }

  .contact-form {
    min-width: 260px;
    padding: 15px 10px;
  }

  .modal-content {
    padding: 15px 10px;
    margin: 10px;
  }
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
  .section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
  }

  .section.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Print Styles */
@media print {
  .fixed-contact,
  .video-modal,
  .contact-modal,
  .scroll-indicator {
    display: none !important;
  }

  .section {
    page-break-inside: avoid;
    min-height: auto;
    padding: 20px;
  }

  body {
    background: white;
    color: black;
  }
}
