* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #0a0a0a;
  color: #fff;
  overflow-x: hidden;
  position: relative;
}

/* Indian Pattern Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(255, 140, 0, 0.1) 0%,
      transparent 25%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 165, 0, 0.08) 0%,
      transparent 25%
    ),
    linear-gradient(135deg, #0a0a0a 0%, #1a0f0a 100%);
  z-index: -2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(to bottom, #1a0f0a, #0a0a0a);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff8c00, #ffa500);
  border-radius: 6px;
  border: 2px solid #1a0f0a;
}

/* Typography */
.hindi-text {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

/* Loading Screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a0f0a 0%, #0a0a0a 100%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.loader-logo {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #ff8c00, #ffa500);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 50px rgba(255, 140, 0, 0.5);
}

.loader-logo::before {
  content: "🍛";
  font-size: 50px;
  animation: rotate 2s linear infinite;
}

.loader-text {
  margin-top: 30px;
  font-size: 28px;
  font-weight: bold;
  background: linear-gradient(45deg, #ff8c00, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Playfair Display", serif;
}

.loader-subtext {
  margin-top: 10px;
  font-size: 16px;
  color: rgba(255, 165, 0, 0.8);
  font-style: italic;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  background: rgba(26, 15, 10, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 140, 0, 0.2);
}

nav.scrolled {
  padding: 15px 50px;
  background: rgba(26, 15, 10, 0.98);
  box-shadow: 0 8px 40px rgba(255, 140, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(45deg, #ff8c00, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Playfair Display", serif;
}

.logo-icon {
  width: 60px;
  height: 60px;
  padding: 5px;
  background: linear-gradient(45deg, #ff8c00, #ffa500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  color: #fff;
  box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover {
  color: #ff8c00;
  transform: translateY(-2px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(45deg, #ff8c00, #ffa500);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="indianPattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,140,0,0.3)"/><path d="M20,20 Q50,10 80,20 Q70,50 80,80 Q50,70 20,80 Q30,50 20,20" fill="rgba(255,165,0,0.2)"/></pattern></defs><rect width="1200" height="800" fill="url(%23indianPattern)"/></svg>')
      center/cover;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(255, 140, 0, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 165, 0, 0.1) 0%,
      transparent 50%
    );
}

.floating-spices {
  position: absolute;
  font-size: 40px;
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.spice1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.spice2 {
  top: 25%;
  right: 15%;
  animation-delay: 2s;
}

.spice3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

.spice4 {
  top: 60%;
  right: 25%;
  animation-delay: 6s;
}

.spice5 {
  bottom: 15%;
  right: 10%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(90deg);
  }

  50% {
    transform: translateY(-15px) rotate(180deg);
  }

  75% {
    transform: translateY(-25px) rotate(270deg);
  }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff8c00, #ffa500, #fff, #ff8c00);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
  animation: gradientShift 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: #ffa500;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  background: linear-gradient(45deg, #ff8c00, #ffa500);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 140, 0, 0.5);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ff8c00;
  backdrop-filter: blur(10px);
}

.cta-secondary:hover {
  background: rgba(255, 140, 0, 0.2);
}

/* Food Gallery Section */
.food-gallery {
  padding: 120px 50px;
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  position: relative;
}

.food-gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="foodPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,140,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23foodPattern)"/></svg>');
  opacity: 0.3;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 60px auto 0;
  position: relative;
  z-index: 2;
}

.food-item {
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  border: 2px solid rgba(255, 140, 0, 0.3);
  border-radius: 25px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.food-item::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 140, 0, 0.1) 0%,
    transparent 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.food-item:hover::before {
  transform: scale(1);
}

.food-item:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: #ff8c00;
  box-shadow: 0 25px 60px rgba(255, 140, 0, 0.3);
}

.food-emoji {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 5px 15px rgba(255, 140, 0, 0.3));
}

.food-item h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #fff;
  font-family: "Playfair Display", serif;
}

.food-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

/* Services Section */
.section {
  padding: 120px 50px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(45deg, #ff8c00, #ffa500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: rgba(255, 165, 0, 0.8);
  margin-bottom: 60px;
  font-style: italic;
  font-family: "Playfair Display", serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.service-card {
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.1) 0%,
    rgba(255, 165, 0, 0.05) 100%
  );
  border: 2px solid rgba(255, 140, 0, 0.2);
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 140, 0, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-15px);
  border-color: #ff8c00;
  box-shadow: 0 25px 60px rgba(255, 140, 0, 0.3);
}

.service-icon {
  font-size: 4rem;
  color: #ff8c00;
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 15px rgba(255, 140, 0, 0.3));
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Playfair Display", serif;
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 80px;
}

.about-text {
  font-size: 1.3rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.9);
}

.about-text p {
  margin-bottom: 25px;
}

.about-text .highlight {
  color: #ffa500;
  font-weight: 600;
  font-family: "Playfair Display", serif;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 500px;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(45deg, #ff8c00, #ffa500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: #fff;
  box-shadow: 0 20px 50px rgba(255, 140, 0, 0.3);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: scale(1.05);
}

.about-image:first-child {
  grid-row: 1 / 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ff8c00;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

/* Specialties Section */
.specialties {
  background: linear-gradient(135deg, #1a0f0a 0%, #0a0a0a 100%);
  position: relative;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 80px;
}

.specialty-item {
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  border: 2px solid rgba(255, 140, 0, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.specialty-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 140, 0, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.specialty-item:hover::before {
  transform: translateX(100%);
}

.specialty-item:hover {
  transform: translateY(-10px);
  border-color: #ff8c00;
  box-shadow: 0 20px 40px rgba(255, 140, 0, 0.2);
}

.specialty-emoji {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.specialty-item h4 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.specialty-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.9) 100%
  );
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 80px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: rgba(255, 140, 0, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(255, 140, 0, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-item:hover {
  background: rgba(255, 140, 0, 0.15);
  transform: translateX(15px);
  border-color: #ff8c00;
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.2);
}

.contact-icon {
  font-size: 2rem;
  color: #ff8c00;
  width: 60px;
  height: 60px;
  background: rgba(255, 140, 0, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item div h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.3rem;
  font-family: "Playfair Display", serif;
}

.contact-item div p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.5;
}

.contact-form {
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.08) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  border: 2px solid rgba(255, 140, 0, 0.3);
  border-radius: 25px;
  padding: 50px;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="formPattern" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="rgba(255,140,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23formPattern)"/></svg>');
  opacity: 0.3;
}

.form-title {
  font-size: 2rem;
  color: #ff8c00;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Playfair Display", serif;
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 140, 0, 0.3);
  border-radius: 15px;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 25px rgba(255, 140, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn {
  background: linear-gradient(45deg, #ff8c00, #ffa500);
  color: #fff;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0f0a 100%);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(255, 140, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  border: 2px solid rgba(255, 140, 0, 0.2);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: #ff8c00;
  box-shadow: 0 20px 50px rgba(255, 140, 0, 0.2);
}

.testimonial-stars {
  color: #ffa500;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  color: #ff8c00;
  font-weight: 600;
  font-size: 1.2rem;
  font-family: "Playfair Display", serif;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a0f0a 0%, #000 100%);
  padding: 80px 50px 40px;
  border-top: 2px solid rgba(255, 140, 0, 0.3);
  position: relative;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-about h3 {
  font-size: 2rem;
  color: #ff8c00;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff8c00;
  padding-left: 10px;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff8c00, #ffa500);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  transform: translateY(-5px) rotate(10deg);
  box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 140, 0, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #ff8c00;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 15, 10, 0.98);
  backdrop-filter: blur(20px);
  z-index: 9998;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: "Playfair Display", serif;
}

.mobile-menu a:hover {
  color: #ff8c00;
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .section {
    padding: 80px 20px;
  }

  .section h2 {
    font-size: 2.5rem;
  }

  .about-content,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    height: 300px;
  }

  .services-grid,
  .specialties-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .floating-spices {
    display: none;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 15px 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 60px 15px;
  }

  .service-card,
  .contact-form {
    padding: 30px 20px;
  }
}
