:root {
  --primary-dark: #1a1a2e;
  --primary-burgundy: #8b1538;
  --accent-gold: #d4af37;
  --accent-orange: #ff6b35;
  --accent-saffron: #ff9933;
  --text-light: #f5f5dc;
  --text-white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(212, 175, 55, 0.2);
}

body {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
  color: var(--text-light);
  line-height: 1.5;
  font-family: "Inter", serif;
  font-size: 16px;
  font-weight: 400;
  padding-right: 0 !important;
  overflow-y: scroll !important;
  overflow-x: hidden;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

ul {
  padding-left: 0px;
  list-style-type: none;
  margin-bottom: 0px;
}

li {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bricolage Grotesque", serif;
  font-weight: 400;
  color: #000;
}

h1.home,
h2.home,
h3.home,
h4.home,
h5.home,
h6.home {
  font-family: "Bricolage Grotesque", serif;
  color: #000;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: #CF8128;
  font-weight: 800;
}

h1.home span,
h2.home span,
h3.home span,
h4.home span,
h5.home span,
h6.home span {
  font-family: "Bricolage Grotesque", serif;
  color: #CF8128;
}

a {
  list-style-type: none;
  color: #777777;
  text-decoration: none;
}

.fs8 {
  font-size: 8px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px !important;
}

.fs13 {
  font-size: 13px !important;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.fs16 {
  font-size: 16px;
}

.fs18 {
  font-size: 18px;
}

.fs20 {
  font-size: 20px;
}

.fs22 {
  font-size: 22px;
}

.fs23 {
  font-size: 23px;
}

.fs25 {
  font-size: 25px;
}

.fs30 {
  font-size: 30px;
}

.fs32 {
  font-size: 32px;
}

.fs35 {
  font-size: 35px;
}

.fs40 {
  font-size: 40px !important;
}

.fs50 {
  font-size: 50px !important;
}

.fs60 {
  font-size: 60px;
}

.fs70 {
  font-size: 70px;
}

.fs80 {
  font-size: 80px;
}

.fs90 {
  font-size: 90px;
}

.fw-light {
  font-weight: 300;
}

.fw-regular {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.color-white {
  color: #fff !important;
}

.color-black {
  color: #000 !important;
}

.color-red {
  color: #CF8128 !important;
}

.color-grey {
  color: #515151 !important;
}

.color-lgrey {
  color: #9B9B9B !important;
}

.color-brown {
  color: #CF8128
}

.color-pink {
  color: #F8D9D2 !important;
}

.bg-white {
  background: #fff;
}

.bg-black {
  background: #1e1e1e;
}

.bg-red {
  background: #CF8128;
}

.bg-green {
  background: #A9C46C;
}

/* ************************** Main Header Css **************************** */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  padding: 0.6rem 5%;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0;
  animation: fadeInScale 0.8s ease forwards;
}

.logo img {
  height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar.scrolled .logo img {
  height: 50px;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}

.nav-menu li {
  opacity: 0;
  animation: slideInDown 0.6s ease forwards;
}

.nav-menu li:nth-child(1) {
  animation-delay: 0.1s;
}

.nav-menu li:nth-child(2) {
  animation-delay: 0.2s;
}

.nav-menu li:nth-child(3) {
  animation-delay: 0.3s;
}

.nav-menu li:nth-child(4) {
  animation-delay: 0.4s;
}

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-orange), var(--primary-red));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
  color: var(--accent-orange);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-book {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-saffron));
  color: var(--primary-dark);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(228, 126, 34, 0.6);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 100px 2rem 2rem;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.mobile-menu a:hover {
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
  padding-left: 10px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo img {
    height: 50px;
  }
  .btn-book{
    padding: 10px;
  }
}

/* ************************** Main Header Css End **************************** */

/* ************************** Hero Section CSS **************************** */
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 4rem;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(139, 21, 56, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  opacity: 0.8;
  z-index: 0;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
  opacity: 0;
  animation: slideInLeft 1s ease forwards 0.3s;
}

.hero-badge {
  display: inline-block;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  color: var(--accent-gold);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-white), var(--accent-gold), var(--accent-saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(245, 245, 220, 0.8);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-saffron));
  color: var(--primary-dark);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  padding: 1rem 2.5rem;
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: slideInRight 1s ease forwards 0.5s;
}

.main-dish {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.main-dish-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3),
    0 0 80px rgba(255, 105, 53, 0.2);
  animation: float 6s ease-in-out infinite;
  object-fit: cover;
  aspect-ratio: 1;
}

/* Floating Spices */
.floating-spice {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: floatSpice 4s ease-in-out infinite;
  opacity: 0.95;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  border: 3px solid rgba(212, 175, 55, 0.3);
}

.spice1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.spice2 {
  top: 40%;
  left: -15%;
  animation-delay: 1s;
}

.spice3 {
  top: 70%;
  left: -5%;
  animation-delay: 2s;
}

.spice4 {
  top: 15%;
  right: -10%;
  animation-delay: 0.5s;
}

.spice5 {
  top: 50%;
  right: -12%;
  animation-delay: 1.5s;
}

.spice6 {
  top: 80%;
  right: -8%;
  animation-delay: 2.5s;
}

/* Accent Dishes */
.accent-dish {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  animation: float 5s ease-in-out infinite;
  border: 4px solid rgba(212, 175, 55, 0.4);
  overflow: hidden;
  object-fit: cover;
}

.dish-biryani {
  width: 200px;
  height: 200px;
  top: -5%;
  right: -10%;
  animation-delay: 0.5s;
}

.dish-soup {
  width: 160px;
  height: 160px;
  bottom: 10%;
  right: -5%;
  animation-delay: 1s;
}

/* Animations */
@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }

  from {
    opacity: 0;
    transform: scale(0.9);
  }
}

@keyframes slideInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }

  from {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }

  from {
    opacity: 0;
    transform: translateX(-60px);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }

  from {
    opacity: 0;
    transform: translateX(60px);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes floatSpice {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 6rem 5% 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .main-dish {
    max-width: 400px;
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .floating-spice {
    width: 60px;
    height: 60px;
  }

  .dish-biryani {
    width: 140px;
    height: 140px;
  }

  .dish-soup {
    width: 120px;
    height: 120px;
  }
}

/* ************************** Hero Section CSS End **************************** */

/* ************************** Thali Section CSS **************************** */
.thali-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #fff7ed, #ffffff, #fff7ed);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fed7aa;
  color: #ea580c;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: 48px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0px;
}

.section-title .highlight {
  color: #f97316;
}

.section-description {
  font-size: 20px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

/* Thali Display */
.thali-display {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.thali-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thali-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.thali-image {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.thali-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-size: 24px;
  font-weight: bold;
  color: #f97316;
}

.popular-float {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #ef4444;
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.thali-content {
  padding: 32px;
}

.thali-title {
  font-size: 28px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 8px;
}

.fastpreis {
  font-size: 14px;
  color: #f97316;
  font-weight: 600;
  margin-bottom: 16px;
}

.thali-desc {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
}

.veg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  width: fit-content;
}

.veg-badge.veg {
  background: #dcfce7;
  color: #15803d;
}

.veg-badge.non-veg {
  background: #fee2e2;
  color: #991b1b;
}

.included-section {
  margin-bottom: 24px;
}

.included-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.included-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bullet {
  width: 8px;
  height: 8px;
  background: #f97316;
  border-radius: 50%;
  flex-shrink: 0;
}

.included-item span {
  color: #000
}

/* Day Selector */
.day-selector-section {
  margin-bottom: 24px;
}

.day-selector-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.day-buttons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.day-btn {
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.day-btn:not(.active) {
  background: #f3f4f6;
  color: #374151;
}

.day-btn:not(.active):hover {
  background: #fed7aa;
}

.day-btn.active {
  background: #f97316;
  color: white;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.4);
}

/* Daily Menu */
.daily-menu {
  background: linear-gradient(to right, #fff7ed, #fef3c7);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}

.daily-menu-title {
  font-size: 16px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 12px;
}

.menu-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.menu-number {
  width: 28px;
  height: 28px;
  background: #f97316;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 14px;
}

.menu-dish {
  color: #1f2937;
  font-weight: 500;
  font-size: 14px;
}

/* CTA Button */
.cta-button {
  width: 100%;
  padding: 14px 32px;
  background: #f97316;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.cta-button:hover {
  background: #ea580c;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.5);
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.feature-card {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: #fed7aa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: #f97316;
}

.feature-title {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 8px;
}

.feature-desc {
  color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
  .thali-display {
    grid-template-columns: 1fr;
  }

  .thali-image {
    height: 250px;
  }

  .thali-content {
    padding: 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .day-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-items {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }
}

.thali-hidden {
  display: none;
}

/* ************************** Thali Section CSS End **************************** */

/* ************************** Warum Wir Section CSS **************************** */
.warum-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

/* Animated Background Orbs */
.warum-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: warumPulse 4s ease-in-out infinite;
}

.warum-orb-1 {
  width: 400px;
  height: 400px;
  background: #f97316;
  top: 0;
  left: 0;
  opacity: 0.15;
}

.warum-orb-2 {
  width: 400px;
  height: 400px;
  background: #dc2626;
  bottom: 0;
  right: 0;
  opacity: 0.15;
  animation-delay: 1s;
}

.warum-orb-3 {
  width: 400px;
  height: 400px;
  background: #eab308;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  animation-delay: 2s;
}

@keyframes warumPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.warum-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Header Section */
.warum-header {
  text-align: center;
  margin-bottom: 80px;
}

.warum-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
}

.warum-divider {
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #fb923c, #f87171);
  margin: 0 auto 30px;
}

.warum-subtitle {
  font-size: 1.3rem;
  color: #fed7aa;
  max-width: 700px;
  margin: 0 auto;
}

/* Features Grid */
.warum-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.warum-feature-card {
  background: white;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.warum-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.warum-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: 25px;
}

.warum-feature-card:hover::before {
  opacity: 0.05;
}

.warum-feature-orange::before {
  background: linear-gradient(135deg, #f97316, #dc2626);
}

.warum-feature-green::before {
  background: linear-gradient(135deg, #10b981, #059669);
}

.warum-feature-yellow::before {
  background: linear-gradient(135deg, #eab308, #f97316);
}

.warum-feature-purple::before {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.warum-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s;
}

.warum-feature-card:hover .warum-icon-box {
  transform: rotate(6deg) scale(1.1);
}

.warum-icon-orange {
  background: linear-gradient(135deg, #f97316, #dc2626);
}

.warum-icon-green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.warum-icon-yellow {
  background: linear-gradient(135deg, #eab308, #f97316);
}

.warum-icon-purple {
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

.warum-icon-box svg {
  width: 48px;
  height: 48px;
  color: white;
}

.warum-feature-title {
  font-size: 1.6rem;
  color: #1f2937;
  margin-bottom: 15px;
  font-weight: bold;
}

.warum-feature-text {
  color: #4b5563;
  line-height: 1.7;
  font-size: 1rem;
}

/* Stats Section */
.warum-stats {
  background: linear-gradient(to right, #f97316, #dc2626);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.warum-stats::before,
.warum-stats::after {
  content: '';
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.05;
}

.warum-stats::before {
  width: 250px;
  height: 250px;
  top: -125px;
  right: -125px;
}

.warum-stats::after {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

.warum-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.warum-stat-item {
  text-align: center;
}

.warum-stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.warum-stat-label {
  color: #fed7aa;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Decorative Spices */
.warum-spices {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 30px;
  opacity: 0.5;
}

.warum-spice {
  border-radius: 50%;
  animation: warumPulse 3s ease-in-out infinite;
}

.warum-spice-1 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f87171, #fb923c);
}

.warum-spice-2 {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #fbbf24, #fb923c);
  animation-delay: 0.5s;
}

.warum-spice-3 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #34d399, #10b981);
  animation-delay: 1s;
}

.warum-spice-4 {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #c084fc, #f472b6);
  animation-delay: 1.5s;
}

@media (max-width: 768px) {
  .warum-title {
    font-size: 2.5rem;
  }

  .warum-features-grid {
    grid-template-columns: 1fr;
  }

  .warum-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .warum-stat-number {
    font-size: 2.5rem;
  }
}

/* ************************** Warum Wir Section CSS End **************************** */

/* ************************** Special Menu & Biryani Section CSS **************************** */
.special-menu-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 50%, #fef2f2 100%);
  overflow: hidden;
}

/* Decorative Elements */
.decorative-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: pulse 4s ease-in-out infinite;
}

.blob-1 {
  top: 0;
  right: 0;
  background: #fb923c;
}

.blob-2 {
  bottom: 0;
  left: 0;
  background: #dc2626;
  animation-delay: 1s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.special-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.badge-icon {
  width: 20px;
  height: 20px;
  color: #ea580c;
}

.badge-text {
  color: #ea580c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
}

.section-title {
  font-size: 56px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 20px;
}

.title-highlight {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 20px;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.menu-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.menu-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-image-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
  z-index: 1;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.menu-card:hover .card-image {
  transform: scale(1.15);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  z-index: 2;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.card-badge-icon {
  width: 20px;
  height: 20px;
}

.card-badge-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-title {
  font-size: 28px;
  font-weight: bold;
  color: white;
  margin-bottom: 8px;
}

.card-description {
  font-size: 14px;
  opacity: 0.9;
}

/* Card Variations */
.card-orange .card-overlay {
  background: linear-gradient(to top, rgba(234, 88, 12, 0.9) 0%, rgba(234, 88, 12, 0.5) 50%, transparent 100%);
}

.card-orange .card-badge-icon,
.card-orange .card-badge-text {
  color: #fed7aa;
}

.card-orange .card-description {
  color: #fed7aa;
}

.card-red .card-overlay {
  background: linear-gradient(to top, rgba(153, 27, 27, 0.9) 0%, rgba(220, 38, 38, 0.5) 50%, transparent 100%);
}

.card-red .card-badge-icon,
.card-red .card-badge-text {
  color: #fecaca;
}

.card-red .card-description {
  color: #fecaca;
}

.card-amber .card-overlay {
  background: linear-gradient(to top, rgba(120, 53, 15, 0.9) 0%, rgba(217, 119, 6, 0.5) 50%, transparent 100%);
}

.card-amber .card-badge-icon,
.card-amber .card-badge-text {
  color: #fde68a;
}

.card-amber .card-description {
  color: #fde68a;
}

.card-pink .card-overlay {
  background: linear-gradient(to top, rgba(131, 24, 67, 0.9) 0%, rgba(219, 39, 119, 0.5) 50%, transparent 100%);
}

.card-pink .card-badge-icon,
.card-pink .card-badge-text {
  color: #fbcfe8;
}

.card-pink .card-description {
  color: #fbcfe8;
}

/* Biryani Feature */
.biryani-feature {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.biryani-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.biryani-image-wrapper {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.biryani-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biryani-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.biryani-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.biryani-badge-icon {
  width: 24px;
  height: 24px;
  color: #fde047;
}

.biryani-badge-text {
  color: #fde047;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.biryani-title {
  font-size: 48px;
  font-weight: bold;
  color: white;
  margin-bottom: 24px;
}

.biryani-description {
  font-size: 18px;
  color: #fed7aa;
  line-height: 1.8;
  margin-bottom: 24px;
}

.biryani-subtitle {
  color: #fecaca;
  line-height: 1.8;
  margin-bottom: 32px;
}

.biryani-button {
  align-self: flex-start;
  padding: 16px 32px;
  background: white;
  color: #ea580c;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.biryani-button:hover {
  background: #fff7ed;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }

  .section-description {
    font-size: 16px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .biryani-grid {
    grid-template-columns: 1fr;
  }

  .biryani-image-wrapper {
    min-height: 300px;
  }

  .biryani-content {
    padding: 40px 30px;
  }

  .biryani-title {
    font-size: 36px;
  }
}

/* SVG Icons */
.icon {
  display: inline-block;
  vertical-align: middle;
}

/* ************************** Special Menu & Biryani Section CSS End **************************** */

/* ************************** Menu Tabs Section CSS **************************** */
.tabs-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.tabs-menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: white;
  color: #4a4a4a;
}

.tabs-menu-btn:hover {
  background: #fff;
  color: #f97316;
  transform: translateY(-2px);
}

.tabs-menu-btn-active {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  color: white;
  transform: scale(1.05);
}

.menu-items-grid {
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.menu-items-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.menu-items-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.menu-items-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
}

.menu-items-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-items-card:hover .menu-items-card-image img {
  transform: scale(1.1);
}

.menu-items-card-rating-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.menu-items-card-star {
  color: #f59e0b;
  font-size: 0.9rem;
}

.menu-items-card-rating-number {
  font-weight: 700;
  color: #4a4a4a;
  font-size: 0.9rem;
}

.menu-items-card-content {
  padding: 20px;
}

.menu-items-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.menu-items-card-desc {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 20px;
  min-height: 40px;
  line-height: 1.4;
}

.menu-items-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-items-card-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f97316;
}

.menu-items-card-add-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.menu-items-card-add-btn:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(16, 185, 129, 0.4);
}

.menu-special-note {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #fed7aa;
}

.menu-special-note-title {
  font-size: 1.8rem;
  color: #2d1810;
  margin-bottom: 15px;
}

.menu-special-note-text {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .tabs-menu {
    gap: 10px;
  }

  .tabs-menu-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* ************************** Menu Tabs Section CSS End **************************** */

/* ************************** Juice Section CSS **************************** */
.juice-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
  padding: 80px 20px 20px 20px;
  position: relative;
  overflow: hidden;
}

.juice-bg-decoration {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: juicePulse 4s ease-in-out infinite;
}

.juice-bg-decoration-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  top: 10%;
  left: 5%;
}

.juice-bg-decoration-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #f7931e, #ff6b35);
  bottom: 10%;
  right: 5%;
  animation-delay: 1s;
}

.juice-bg-decoration-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #ff6b35, #c1440e);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
}

@keyframes juicePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.25;
  }
}

.juice-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.juice-header {
  text-align: center;
  margin-bottom: 60px;
}

.juice-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  margin-bottom: 24px;
}

.juice-badge-text {
  color: #ff6b35;
  font-weight: 600;
  font-size: 14px;
}

.juice-main-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
}

.light-highlight {
  background: linear-gradient(135deg, var(--text-white), var(--accent-gold), var(--accent-saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.juice-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.juice-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.juice-feature-item {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 14px;
}

.juice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.juice-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.5s ease;
}

.juice-card:hover {
  transform: scale(1.05) translateY(-8px);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.juice-card-image-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(61, 40, 23, 0.8), rgba(92, 58, 31, 0.8));
}

.juice-number-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  z-index: 10;
  transition: all 0.5s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.juice-card:hover .juice-number-badge {
  transform: scale(1.1) rotate(12deg);
}

.juice-badge-1 {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.juice-badge-2 {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.juice-badge-3 {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.juice-badge-4 {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.juice-badge-5 {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.juice-badge-6 {
  background: linear-gradient(135deg, #fbbf24, #f97316);
}

.juice-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.juice-card:hover .juice-card-image {
  transform: scale(1.1);
}

.juice-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(61, 40, 23, 0.95), transparent);
}

.juice-card-content {
  padding: 24px;
  position: relative;
  z-index: 10;
}

.juice-card-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background-clip: text !important;
}

.juice-title-1 {
  background: linear-gradient(135deg, #ff6b35, #fbbf24);
}

.juice-title-2 {
  background: linear-gradient(135deg, #ff6b35, #fbbf24);
}

.juice-title-3 {
  background: linear-gradient(135deg, #ff6b35, #fbbf24);
}

.juice-title-4 {
  background: linear-gradient(135deg, #ff6b35, #fbbf24);
}

.juice-title-5 {
  background: linear-gradient(135deg, #ff6b35, #fbbf24);
}

.juice-title-6 {
  background: linear-gradient(135deg, #ff6b35, #fbbf24);
}

.juice-card-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.juice-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.juice-price {
  font-size: 2rem;
  font-weight: 800;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.juice-order-btn {
  padding: 12px 24px;
  background: #fff;
  color: #232a43;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.juice-order-btn:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
}

.juice-cta-section {
  text-align: center;
}

.juice-cta-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  padding: 48px 64px;
  border-radius: 24px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.juice-cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.juice-cta-highlight {
  color: #ff6b35;
  font-weight: 800;
}

.juice-cta-btn {
  padding: 16px 48px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.juice-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

@media (max-width: 768px) {
  .juice-main-title {
    font-size: 2.5rem;
  }

  .juice-subtitle {
    font-size: 1rem;
  }

  .juice-grid {
    grid-template-columns: 1fr;
  }

  .juice-cta-box {
    padding: 32px 24px;
  }
}

/* ************************** Juice Section CSS End **************************** */

/* ************************** CTA Section CSS **************************** */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
  padding: 80px 20px;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  color: white;
}

.cta-tagline {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.95;
}

.cta-heading {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
  color: #fff;
}

.cta-subheading {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.95;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.cta-button {
  padding: 18px 45px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-primary {
  background: white;
  color: #ff6b35;
}

.cta-button-primary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button-secondary {
  background: transparent;
  color: white;
  border: 3px solid white;
}

.cta-button-secondary:hover {
  background: white;
  color: #ff6b35;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.info-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.info-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

.info-box-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.info-box-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.info-box-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.decorative-element {
  position: absolute;
  opacity: 0.1;
  pointer-events: none;
}

.spice-1 {
  top: 10%;
  left: 5%;
  font-size: 80px;
  transform: rotate(-15deg);
}

.spice-2 {
  bottom: 15%;
  right: 8%;
  font-size: 100px;
  transform: rotate(25deg);
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 36px;
  }

  .cta-subheading {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
  }

  .cta-info-boxes {
    grid-template-columns: 1fr;
  }
}

/* ************************** CTA Section CSS End **************************** */

/* ************************** Contact Section CSS **************************** */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(to right, #ea580c, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.contact-subtitle {
  color: #374151;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-top: 4px solid #f97316;
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-card {
  border-top-color: #dc2626;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, #ea580c, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background: linear-gradient(to bottom right, #fed7aa, #fdba74);
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.icon-svg {
  width: 24px;
  height: 24px;
  stroke: #ea580c;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-content h4 {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.contact-item-content p,
.contact-item-content a {
  color: #4b5563;
}

.contact-item-content a {
  text-decoration: none;
  color: #ea580c;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item-content a:hover {
  color: #dc2626;
}

.hours-list {
  margin-top: 0.5rem;
}

.hours-list p {
  margin: 0.25rem 0;
}

.hours-day {
  font-weight: 500;
  color: #1f2937;
  margin-top: 0.5rem;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group label {
  display: block;
  color: #374151;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #fed7aa;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

textarea.form-control {
  resize: none;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(to right, #f97316, #ea580c, #dc2626);
  color: white;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
  background: linear-gradient(to right, #ea580c, #dc2626, #b91c1c);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

/* ************************** Contact Section CSS End **************************** */

/* ************************** Footer Section CSS **************************** */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f1419 100%);
  color: white;
  padding: 3rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: bold;
  background: linear-gradient(to right, #fcd34d, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #fed7aa;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom right, #c2410c, #991b1b);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(to bottom right, #ea580c, #dc2626);
  transform: scale(1.1);
}

.social-icon {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fcd34d;
  border-bottom: 1px solid #c2410c;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  color: #fed7aa;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.footer-section ul li:hover {
  color: #fcd34d;
  padding-left: 0.5rem;
}

.footer-section a {
  color: #fed7aa;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fcd34d;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: #fed7aa;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item:hover svg {
  stroke: #fcd34d;
}

.footer-bottom {
  border-top: 1px solid #c2410c;
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #fed7aa;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #fed7aa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fcd34d;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(to bottom right, #f97316, #dc2626);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: linear-gradient(to bottom right, #ea580c, #b91c1c);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}

/* ************************** Footer Section CSS End **************************** */