.product-showcase {
  position: relative;
  background: #ffb74d;
  border-radius: 0 0 50px 50px;
  padding: 80px 0;
  overflow: hidden;
}

.showcase-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.showcase-content {
  flex: 1;
  max-width: 450px;
  color: #222;
  padding: 20px;
  z-index: 2;
}

.showcase-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff8f00;
  margin-bottom: 10px;
}

.showcase-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.product-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
}

.btn-showcase {
  background: #ff8f00;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(255, 143, 0, 0.3);
}

.btn-showcase:hover {
  transform: translateY(-3px);
  background: #ff9800;
}

/* --- IMAGE AREA --- */
.showcase-image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.main-dish {
  width: 350px;
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  z-index: 2;
}

.side-dishes {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-dishes img {
  width: 80px;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  animation: float 4s ease-in-out infinite;
}

.leaf {
  position: absolute;
  width: 50px;
  animation: floatRotate 6s ease-in-out infinite;
  opacity: 0.8;
}

.leaf-1 { top: 10%; left: 15%; }
.leaf-2 { top: 60%; left: 45%; }
.leaf-3 { top: 20%; right: 10%; }

.lemon {
  position: absolute;
  width: 90px;
  opacity: 0.9;
  animation: spin 12s linear infinite;
}

.lemon-1 { bottom: 10px; left: 80px; }
.lemon-2 { bottom: 30px; left: 160px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes floatRotate {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(15deg) translateY(-10px); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
  .showcase-inner { flex-direction: column; text-align: center; }
  .showcase-image { margin-top: 40px; }
  .side-dishes { flex-direction: row; top: auto; right: auto; bottom: -60px; transform: none; }
}

/*============== Contact Form Start ===============================*/

.contact-section {
  position: relative;
  padding: 100px 0;
  background: #fff;
  overflow: hidden;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* ---------- LEFT SIDE ---------- */
.contact-info {
  flex: 1;
  position: relative;
  max-width: 45%;
}

.image-wrapper {
  position: relative;
}

.food-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

.image-shape {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 110%;
  height: 110%;
  background: #ffb74d;
  border-radius: 60% 40% 50% 60%;
  transform: rotate(-5deg);
  z-index: 1;
  opacity: 0.3;
}

.info-text {
  margin-top: 20px;
  color: #333;
}

.info-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.info-text h2 span {
  color: #f8a726;
}

.info-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

/* ---------- RIGHT SIDE ---------- */
.contact-form {
  flex: 1;
  background: #fff8f0;
  padding: 40px 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  max-width: 50%;
}

.contact-form h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  border-left: 4px solid #ff9800;
  padding-left: 10px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff9800;
  outline: none;
  box-shadow: 0 0 5px rgba(255,152,0,0.2);
}

.btn-submit {
  display: inline-block;
  background: #ff9800;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255,152,0,0.3);
}

.btn-submit:hover {
  background: #f57c00;
  transform: translateY(-2px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .contact-inner {
    flex-direction: column;
  }

  .contact-info, .contact-form {
    max-width: 100%;
  }

  .contact-form {
    margin-top: 40px;
  }
}

/*============== Contact Form End ===============================*/
/*================ Products Section Start =======================*/

.hero-grid-section {
  padding: 70px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  align-items: stretch;
}

/* HERO SECTION */
.hero-main {
  background: #f6f9fc;
  border-radius: 20px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}

.hero-main:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.hero-content {
  max-width: 55%;
}

.hero-content h4 {
  color: #f7b500;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.hero-content p {
  color: #555;
  margin-bottom: 25px;
}

.hero-content .btn {
  border-radius: 40px;
  padding: 12px 30px;
  font-weight: 500;
  background: #111;
  color: #fff;
  transition: all 0.3s ease;
}

.hero-content .btn:hover {
  background: #f7b500;
  color: #111;
  transform: scale(1.05);
}

.hero-image img {
  width: 280px;
  border-radius: 10px;
  transition: 0.5s ease;
}

.hero-main:hover .hero-image img {
  transform: scale(1.05);
}

/* PROMO GRID */
.promo-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-box {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.promo-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.promo-text small {
  color: #777;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.promo-text h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.promo-text a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.promo-text a:hover {
  color: #f7b500;
}

/* Promo Images */
.promo-image img {
  width: 85px;
  border-radius: 10px;
  transition: 0.4s ease;
}

.promo-box:hover .promo-image img {
  transform: scale(1.1);
}

/* Background Color Themes */
.green-box {
  background: #eaf6ec;
}

.peach-box {
  background: #fff3ed;
}

.blue-box {
  background: #e8f3fb;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-main {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image img {
    margin-top: 25px;
    width: 200px;
  }
  .promo-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .promo-box {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .promo-box {
    flex: 1 1 100%;
  }
  .hero-content h2 {
    font-size: 1.8rem;
  }
}


/*================ Products Section End =======================*/



