/**
 * Homepage Modern Styles - Figma Design Implementation
 * Bites & Brews Restaurant
 */

/* =============================================
   GLOBAL STYLES
   ============================================= */

* {
  scroll-behavior: smooth;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Wrapper */
.hero-background-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-base-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #14532d, #15803d, #065f46);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite;
}

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

.hero-gradient-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 83, 45, 0.95) 0%,
    rgba(21, 128, 61, 0.8) 50%,
    transparent 100%
  );
}

.hero-gradient-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

/* Animated Particles */
.hero-particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(134, 239, 172, 0.3);
  border-radius: 50%;
  animation: floatParticle 15s linear infinite;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

/* Hero Container */
.hero-container {
  position: relative;
  z-index: 10;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Left Content */
.hero-left-content {
  color: white;
}

.hero-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 9999px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-premium-badge i {
  color: #86efac;
}

.hero-premium-badge span {
  font-size: 14px;
  color: #dcfce7;
}

.hero-main-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  color: #1e3a2e;
}

.hero-accent-text {
  color: #86efac;
  display: inline-block;
  background: linear-gradient(135deg, #86efac, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 540px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-feature-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.hero-feature-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.hero-feature-box i {
  font-size: 24px;
  color: #86efac;
  margin-bottom: 8px;
}

.hero-feature-box p {
  font-size: 14px;
  color: white;
  margin: 0;
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.4);
  color: white;
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: white;
  font-weight: 600;
  border: 2px solid white;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: white;
}

/* Right Content */
.hero-right-content {
  position: relative;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.hero-featured-image {
  position: relative;
  z-index: 10;
  animation: floatUpDown 5s ease-in-out infinite;
}

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

.hero-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 4px solid rgba(255, 255, 255, 0.2);
}

.hero-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Floating Cards */
.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.hero-card-1 {
  left: -48px;
  top: 80px;
  width: 190px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatRotate 4s ease-in-out infinite;
}

@keyframes floatRotate {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(15px) rotate(3deg);
  }
}

.floating-card-icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card-icon-wrapper i {
  color: white;
  font-size: 24px;
}

.floating-card-content {
  flex: 1;
}

.floating-card-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.floating-card-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.floating-card-stars i {
  color: #f59e0b;
  font-size: 14px;
}

.floating-card-subtext {
  font-size: 10px;
  color: #6b7280;
  margin: 0;
}

.hero-card-2 {
  right: -48px;
  bottom: 128px;
  width: 190px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  animation: floatRotate 5s ease-in-out infinite 1s;
}

.card-emoji {
  font-size: 24px;
  margin-bottom: 8px;
}

.card-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-description {
  font-size: 12px;
  opacity: 0.9;
  margin: 0;
}

/* Decorative Circles */
.hero-decorative-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.circle-1 {
  top: -80px;
  right: -80px;
  width: 256px;
  height: 256px;
  background: rgba(34, 197, 94, 0.2);
  animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
  bottom: -80px;
  left: -80px;
  width: 256px;
  height: 256px;
  background: rgba(34, 197, 94, 0.2);
  animation: pulse 5s ease-in-out infinite 1s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  animation: bounceUpDown 2s ease-in-out infinite;
  display: none;
}

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

.hero-scroll-indicator p {
  font-size: 12px;
  margin-bottom: 4px;
  text-transform: capitalize;
  font-weight: 500;
}

.hero-scroll-indicator i {
  font-size: 14px;
}

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

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

/* =============================================
   FEATURED DISHES SECTION
   ============================================= */

.featured-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff, #f0fdf4, #ffffff);
  position: relative;
  overflow: hidden;
}

.section-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.decoration-left {
  top: 80px;
  left: 40px;
  width: 128px;
  height: 128px;
  background: rgba(34, 197, 94, 0.2);
}

.decoration-right {
  bottom: 80px;
  right: 40px;
  width: 160px;
  height: 160px;
  background: rgba(34, 197, 94, 0.15);
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 9999px;
  margin-bottom: 16px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.section-badge.badge-orange {
  background: #ffedd5;
  border-color: #fed7aa;
}

.section-badge.badge-orange i {
  color: #ea580c;
}

.section-badge.badge-green i {
  color: #16a34a;
}

.section-badge.badge-amber i {
  color: #d97706;
}

.section-badge i {
  color: #16a34a;
}

.section-badge span {
  font-size: 14px;
  color: #166534;
  font-weight: 600;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto;
}

/* Category Filter */
.category-filter-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.category-filter-btn {
  padding: 12px 24px;
  border-radius: 9999px;
  border: 2px solid #e5e7eb;
  background: white;
  color: #374151;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-filter-btn:hover {
  background: #f0fdf4;
  border-color: #bbf7d0;
  transform: translateY(-2px);
}

.category-filter-btn.active {
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
  border-color: #22c55e;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

/* Dishes Grid */
.dishes-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.dish-card-modern {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #f3f4f6;
}

.dish-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: #e5e7eb;
}

.dish-image-container {
  position: relative;
  height: 256px;
  overflow: hidden;
}

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

.dish-card-modern:hover .dish-img {
  transform: scale(1.1);
}

.dish-trending-badge {
  position: absolute;
  top: 12px;
  left: 0;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 8px 16px;
  border-radius: 0 24px 24px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  animation: slideInLeft 0.5s ease-out;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.dish-like-button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dish-like-button:hover {
  transform: scale(1.1);
  background: white;
}

.dish-like-button.liked i {
  color: #ef4444;
}

.dish-rating-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dish-rating-badge i {
  color: #f59e0b;
  font-size: 14px;
}

.dish-rating-badge span {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
}

.dish-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dish-name {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.dish-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.dish-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dish-price-info {
  display: flex;
  flex-direction: column;
}

.dish-price {
  font-size: 24px;
  font-weight: 700;
  color: #16a34a;
}

.dish-reviews {
  font-size: 12px;
  color: #9ca3af;
}

.dish-add-cart-btn {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.dish-add-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3);
}

.no-dishes-message {
  grid-column: 1/-1;
  text-align: center;
  padding: 64px;
  color: #9ca3af;
}

.no-dishes-message i {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

/* View All Button */
.section-cta-center {
  text-align: center;
}

.view-all-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: white;
  color: #16a34a;
  font-weight: 600;
  border: 2px solid #16a34a;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-menu-btn:hover {
  background: #16a34a;
  color: white;
  transform: translateY(-2px);
}

/* =============================================
   OFFERS SECTION
   ============================================= */

.offers-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff, #f0fdf4);
  position: relative;
  overflow: hidden;
}

.offers-bg-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.decoration-1 {
  top: 80px;
  right: 80px;
  width: 384px;
  height: 384px;
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.2),
    rgba(239, 68, 68, 0.2)
  );
  animation: pulse 8s ease-in-out infinite;
}

.decoration-2 {
  bottom: 80px;
  left: 80px;
  width: 384px;
  height: 384px;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(147, 51, 234, 0.2)
  );
  animation: pulse 10s ease-in-out infinite 2s;
}

/* Offers Grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.offer-card {
  position: relative;
  padding: 40px 32px;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.offer-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.offer-orange {
  background: linear-gradient(to bottom right, #ffedd5, #fed7aa);
}

.offer-blue {
  background: linear-gradient(to bottom right, #dbeafe, #bfdbfe);
}

.offer-green {
  background: linear-gradient(to bottom right, #dcfce7, #bbf7d0);
}

.offer-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.offer-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
  transition: transform 0.6s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.offer-card:hover .offer-icon-wrapper {
  transform: rotate(360deg) scale(1.05);
}

.offer-orange .offer-icon-wrapper {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.offer-blue .offer-icon-wrapper {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}

.offer-green .offer-icon-wrapper {
  background: linear-gradient(135deg, #4ade80, #22c55e);
}

.offer-icon-wrapper i {
  font-size: 40px;
  color: white;
}

.offer-title {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
  font-family: "Playfair Display", serif;
}

.offer-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}

.offer-description {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 24px;
}

.offer-code-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
}

.offer-orange .offer-code-badge {
  background: linear-gradient(to right, #fb923c, #f97316);
}

.offer-blue .offer-code-badge {
  background: linear-gradient(to right, #60a5fa, #3b82f6);
}

.offer-green .offer-code-badge {
  background: linear-gradient(to right, #4ade80, #22c55e);
}

.offer-claim-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.offer-orange .offer-claim-btn {
  background: linear-gradient(to right, #fb923c, #f97316);
}

.offer-blue .offer-claim-btn {
  background: linear-gradient(to right, #60a5fa, #3b82f6);
}

.offer-green .offer-claim-btn {
  background: linear-gradient(to right, #4ade80, #22c55e);
}

.offer-claim-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.offer-progress-bar {
  height: 4px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5), transparent);
  border-radius: 2px;
  margin-top: 24px;
  animation: progressAnimate 3s ease-in-out infinite;
}

@keyframes progressAnimate {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* Newsletter Banner */
.newsletter-cta-banner {
  position: relative;
  background: linear-gradient(to right, #1f2937, #111827, #1f2937);
  border-radius: 24px;
  padding: 48px;
  color: white;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.newsletter-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-decoration.circle-1 {
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  transform: translate(50%, -50%);
}

.newsletter-decoration.circle-2 {
  bottom: 0;
  left: 0;
  width: 256px;
  height: 256px;
  transform: translate(-50%, 50%);
}

.newsletter-content {
  position: relative;
  z-index: 10;
}

.newsletter-badge {
  display: inline-block;
  padding: 6px 12px;
  background: #ea580c;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.newsletter-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.newsletter-description {
  font-size: 16px;
  color: #d1d5db;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #22c55e;
}

.newsletter-submit-btn {
  padding: 12px 32px;
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.3);
}

.newsletter-image {
  position: relative;
  z-index: 10;
  animation: floatUpDown 5s ease-in-out infinite;
}

.newsletter-img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* =============================================
   WHY CHOOSE US SECTION
   ============================================= */

.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff, #f9fafb, #ffffff);
  position: relative;
  overflow: hidden;
}

.why-choose-bg-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.why-choose-bg-decoration.decoration-1 {
  top: 0;
  left: 25%;
  width: 384px;
  height: 384px;
  background: rgba(34, 197, 94, 0.15);
}

.why-choose-bg-decoration.decoration-2 {
  bottom: 0;
  right: 25%;
  width: 384px;
  height: 384px;
  background: rgba(59, 130, 246, 0.15);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.stat-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.stat-number.stat-green {
  color: #16a34a;
}
.stat-number.stat-amber {
  color: #d97706;
}
.stat-number.stat-blue {
  color: #2563eb;
}
.stat-number.stat-purple {
  color: #9333ea;
}

.stat-label {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.6s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon-wrapper {
  transform: rotate(360deg) scale(1.1);
}

.icon-green {
  background: linear-gradient(135deg, #4ade80, #22c55e);
}
.icon-amber {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}
.icon-blue {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
}
.icon-red {
  background: linear-gradient(135deg, #f87171, #ef4444);
}
.icon-purple {
  background: linear-gradient(135deg, #a78bfa, #9333ea);
}
.icon-indigo {
  background: linear-gradient(135deg, #818cf8, #6366f1);
}

.feature-icon-wrapper i {
  font-size: 32px;
  color: white;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: #16a34a;
}

.feature-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-progress-wrapper {
  height: 4px;
  background: #f3f4f6;
  border-radius: 2px;
  overflow: hidden;
}

.feature-progress-bar {
  height: 100%;
  background: linear-gradient(to right, #22c55e, #16a34a);
  border-radius: 2px;
  transition: width 1s ease-in-out;
}

/* CTA Banner */
.why-choose-cta-banner {
  position: relative;
  background: linear-gradient(to right, #22c55e, #16a34a);
  border-radius: 24px;
  padding: 48px;
  color: white;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.3);
}

.cta-banner-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.cta-banner-decoration.circle-1 {
  top: 0;
  right: 0;
  width: 256px;
  height: 256px;
  transform: translate(50%, -50%);
}

.cta-banner-decoration.circle-2 {
  bottom: 0;
  left: 0;
  width: 256px;
  height: 256px;
  transform: translate(-50%, 50%);
}

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

.cta-banner-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner-description {
  font-size: 16px;
  color: #dcfce7;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-info-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.cta-info-card:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.cta-info-icon {
  font-size: 32px;
}

.cta-info-text {
  text-align: left;
}

.cta-info-text p:first-child {
  font-size: 14px;
  color: #dcfce7;
  margin-bottom: 4px;
}

.cta-info-text p:last-child {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff, #fef3c7, #ffffff);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.testimonials-bg-decoration.decoration-1 {
  top: 80px;
  left: 40px;
  width: 384px;
  height: 384px;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.15),
    rgba(59, 130, 246, 0.15)
  );
  animation: pulse 8s ease-in-out infinite;
}

.testimonials-bg-decoration.decoration-2 {
  bottom: 80px;
  right: 40px;
  width: 384px;
  height: 384px;
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.15),
    rgba(239, 68, 68, 0.15)
  );
  animation: pulse 10s ease-in-out infinite 2s;
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
  max-width: 1024px;
  margin: 0 auto 64px;
}

.testimonials-carousel {
  position: relative;
  height: 400px;
}

.testimonial-card {
  position: absolute;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  height: 100%;
}

.testimonial-left {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonial-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-decoration.circle-1 {
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  transform: translate(50%, -50%);
}

.testimonial-decoration.circle-2 {
  bottom: 0;
  left: 0;
  width: 128px;
  height: 128px;
  transform: translate(-50%, 50%);
}

.testimonial-avatar-wrapper {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
}

.testimonial-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 14px;
  color: #dcfce7;
  margin-bottom: 16px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 16px;
}

.testimonial-dish-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 12px;
}

.testimonial-right {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 64px;
  color: #f0fdf4;
}

.testimonial-text {
  font-size: 18px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 10;
}

.testimonial-rating-stars {
  display: flex;
  gap: 4px;
}

.testimonial-rating-stars i {
  color: #fbbf24;
  font-size: 24px;
}

/* Navigation */
.testimonials-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #16a34a;
  background: white;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background: #f0fdf4;
  transform: scale(1.1);
}

.testimonials-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  width: 32px;
  height: 12px;
  border-radius: 6px;
  background: #16a34a;
}

/* Stats Grid */
.testimonials-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 896px;
  margin: 0 auto;
}

.testimonial-stat-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #16a34a;
  display: block;
  margin-bottom: 8px;
}

.testimonial-stat-number span {
  font-size: 24px;
}

.testimonial-stat-label {
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-right-content {
    display: none;
  }

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

  .testimonial-left {
    padding: 24px;
  }

  .newsletter-cta-banner {
    grid-template-columns: 1fr;
  }

  .newsletter-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-main-heading {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
  }

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

  .hero-feature-box {
    padding: 12px;
  }

  .dishes-grid-modern {
    grid-template-columns: 1fr;
  }

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

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

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

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .hero-cta-buttons {
    flex-direction: column;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cta-info-cards {
    flex-direction: column;
  }

  .testimonials-carousel {
    height: auto;
    min-height: 500px;
  }
}
