/* =====================================================
   ADVANCED LANDING PAGE ANIMATIONS
   ===================================================== */

/* Root Variables untuk Landing Page */
:root {
  --primary: #FF6B6B;
  --primary-dark: #E63946;
  --secondary: #4ECDC4;
  --secondary-dark: #45B7AA;
  --success: #06D6D0;
  --warning: #FFD700;
  --danger: #FF6B6B;
  --dark: #2F3E46;
  --gray-light: #F5F5F5;
  --gray-medium: #999;
  --white: #FFFFFF;
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* ===== NAVBAR ENHANCED ===== */
.navbar-landing {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: slideDown 0.6s ease-out;
  height: 70px;
  display: flex;
  align-items: center;
}

.navbar-landing .nav-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.navbar-landing .nav-menu {
  display: flex !important;
  list-style: none;
  gap: 30px;
  flex: 1;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar-landing .nav-menu li {
  margin: 0;
  list-style: none;
}

.navbar-landing .nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo-animate {
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.navbar-landing .nav-link {
  position: relative;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.navbar-landing .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar-landing .nav-link:hover {
  color: var(--primary);
}

.navbar-landing .nav-link:hover::after {
  width: 100%;
}

.btn-nav {
  animation: slideInRight 0.8s ease-out;
  background: linear-gradient(135deg, var(--primary), #E63946);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
}

.btn-nav:active {
  transform: scale(0.95);
}

/* ===== HERO SECTION ADVANCED ===== */
.hero-section-advanced {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 50%, #EFF6FF 100%);
  overflow: hidden;
  margin-top: 70px;
}

/* Animated Blobs Background */
.hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.animated-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.7;
  filter: blur(40px);
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  top: -50px;
  right: -100px;
  animation: blobFloat 15s ease-in-out infinite;
}

.blob-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--secondary), var(--success));
  bottom: -100px;
  left: 50px;
  animation: blobFloat 18s ease-in-out infinite;
  animation-delay: -5s;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--success));
  bottom: 100px;
  right: 10%;
  animation: blobFloat 20s ease-in-out infinite;
  animation-delay: -10s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-30px, 50px) scale(1.1); }
  50% { transform: translate(30px, -30px) scale(0.9); }
  75% { transform: translate(-20px, -50px) scale(1.05); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  animation: slideInLeft 0.8s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.word-animate {
  display: inline-block;
  animation: slideUp 0.8s ease-out;
  margin-right: 0.3em;
}

.word-animate:nth-child(2) {
  animation-delay: 0.2s;
  color: var(--primary);
}

.word-animate:nth-child(3) {
  animation-delay: 0.4s;
}

.highlight-animate {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideUp 0.8s ease-out 0.6s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--gray-medium);
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.8s both;
}

.line-animate {
  display: inline-block;
  position: relative;
}

.line-animate::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  animation: slideInRight 0.8s ease-out 1s both;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 1.2s both;
}

.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.btn-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-hero.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 107, 107, 0.4);
}

.btn-hero.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-hero.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.btn-glow {
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.5); }
  50% { box-shadow: 0 0 40px rgba(255, 107, 107, 0.8); }
}

/* Hero Image */
.hero-image {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sushi-illustration {
  position: relative;
  width: 300px;
  height: 300px;
}

.sushi-item {
  position: absolute;
  font-size: 4rem;
  animation: float 4s ease-in-out infinite;
}

.sushi-1 {
  top: 0;
  left: 20px;
  animation-delay: 0s;
}

.sushi-2 {
  top: 60px;
  right: 30px;
  animation-delay: 0.5s;
}

.sushi-3 {
  bottom: 40px;
  left: 50px;
  animation-delay: 1s;
}

.sushi-4 {
  bottom: 20px;
  right: 40px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  animation: fadeInUp 1s ease-out 2s both;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 13px;
  padding: 6px 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.scroll-arrow {
  width: 3px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollArrow {
  0% { transform: translateY(0); opacity: 1; }
  50% { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: 80px 2rem;
  background: linear-gradient(180deg, #F9F9F9 0%, white 50%);
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  text-align: center;
  color: var(--dark);
  margin-bottom: 1rem;
  animation: slideUp 0.8s ease-out;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--gray-medium);
  margin-bottom: 3rem;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.fade-up {
  animation: slideUp 0.8s ease-out;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
  transition: left 0.5s ease;
  z-index: 0;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card-1 { animation-delay: 0.1s; }
.feature-card-2 { animation-delay: 0.2s; }
.feature-card-3 { animation-delay: 0.3s; }
.feature-card-4 { animation-delay: 0.4s; }
.feature-card-5 { animation-delay: 0.5s; }
.feature-card-6 { animation-delay: 0.6s; }

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: bounce 2s ease-in-out infinite;
  display: inline-block;
}

.feature-card-1 .feature-icon { animation-delay: 0s; }
.feature-card-2 .feature-icon { animation-delay: 0.1s; }
.feature-card-3 .feature-icon { animation-delay: 0.2s; }
.feature-card-4 .feature-icon { animation-delay: 0.3s; }
.feature-card-5 .feature-icon { animation-delay: 0.4s; }
.feature-card-6 .feature-icon { animation-delay: 0.5s; }

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--gray-medium);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 60px 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: bounce 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.stat-label {
  color: var(--gray-medium);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding: 80px 2rem;
  background: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }

.product-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.15);
}

.product-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

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

.product-hover:hover .product-image {
  transform: scale(1.1) rotate(2deg);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-hover:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.product-description {
  font-size: 0.9rem;
  color: var(--gray-medium);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-light);
}

.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

.product-rating {
  color: var(--warning);
  font-weight: 600;
}

.view-all-container {
  text-align: center;
  animation: fadeIn 1s ease-out;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 80px 2rem;
  background: linear-gradient(180deg, #F9F9F9 0%, white 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.testimonial-1 { animation-delay: 0.1s; }
.testimonial-2 { animation-delay: 0.2s; }
.testimonial-3 { animation-delay: 0.3s; }

.testimonial-card::before {
  content: '"';
  position: absolute;
  font-size: 4rem;
  color: rgba(255, 107, 107, 0.1);
  top: -20px;
  right: 10px;
  font-weight: 900;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 107, 107, 0.15);
}

.testimonial-stars {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--gray-medium);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.author-avatar {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-weight: 700;
  color: var(--dark);
}

.author-location {
  font-size: 0.9rem;
  color: var(--gray-medium);
}

/* ===== CTA SECTION ADVANCED ===== */
.cta-section-advanced {
  position: relative;
  padding: 100px 2rem;
  background: linear-gradient(135deg, #2F3E46 0%, #1a252f 100%);
  overflow: hidden;
  z-index: 1;
}

.cta-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

.cta-animated-shape {
  position: absolute;
  opacity: 0.1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: blobFloat 15s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--secondary), var(--success));
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  animation: blobFloat 20s ease-in-out infinite;
  animation-delay: -10s;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto;
  animation: slideUp 0.8s ease-out;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  animation: slideUp 0.8s ease-out;
}

.cta-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.btn-cta {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.btn-cta.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 107, 107, 0.4);
}

.btn-cta.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-cta.btn-secondary:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 2rem;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: linear-gradient(135deg, #F9F9F9 0%, #EFF6FF 100%);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: slideUp 0.8s ease-out forwards;
  opacity: 0;
}

.contact-fade-1 { animation-delay: 0.1s; }
.contact-fade-2 { animation-delay: 0.2s; }
.contact-fade-3 { animation-delay: 0.3s; }
.contact-fade-4 { animation-delay: 0.4s; }

.contact-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--gray-medium);
}

.newsletter-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 2.5rem;
  border-radius: 15px;
  color: white;
  animation: slideInRight 0.8s ease-out;
}

.newsletter-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.newsletter-box p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-form input {
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  background: white;
  color: var(--primary);
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer-animated {
  background: linear-gradient(135deg, #2F3E46 0%, #1a252f 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section p {
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  text-decoration: none;
  color: white;
}

.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* ===== ANIMATIONS KEYFRAMES ===== */

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .navbar-landing {
    height: 60px;
  }

  .navbar-landing .nav-container {
    height: 60px;
    padding: 0 15px;
    gap: 10px;
  }

  .navbar-landing .nav-menu {
    gap: 15px;
    flex: 0;
  }

  .navbar-landing .nav-link {
    font-size: 0.85rem;
  }

  .btn-nav {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .hero-section-advanced {
    margin-top: 60px;
  }

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

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-image {
    height: 300px;
  }

  .sushi-illustration {
    width: 250px;
    height: 250px;
  }

  .sushi-item {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero {
    width: 100%;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

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

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

  .cta-buttons {
    flex-direction: column;
  }

  .btn-cta {
    width: 100%;
  }

  .animated-blob {
    width: 200px;
    height: 200px;
  }

  .blob-1, .blob-2, .blob-3 {
    opacity: 0.5;
    filter: blur(30px);
  }
}

@media (max-width: 480px) {
  .navbar-landing {
    height: 55px;
  }

  .navbar-landing .nav-container {
    height: 55px;
    padding: 0 10px;
    gap: 8px;
  }

  .navbar-landing .nav-logo {
    font-size: 1.1rem;
  }

  .navbar-landing .nav-menu {
    display: none !important;
    gap: 8px;
  }

  .btn-nav {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .features-grid,
  .products-grid,
  .testimonials-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-title {
    font-size: 1.8rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .btn-hero,
  .btn-cta {
    width: 100%;
  }
}
