 /* Basic Reset */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Roboto', sans-serif;
     background-color: #fff;
 }

 .header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: #0b241a;
     padding: 10px 20px;
     z-index: 1000;
     flex-wrap: wrap;
     position: sticky;
     top: 0;
 }

 .logo-group {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .logo {
     height: 70px;
 }

 .logo-food{
     height: 50px;
 }

 .nav {
     display: flex;
     align-items: center;
 }

 .nav-links {
     list-style: none;
     display: flex;
     gap: 20px;
 }

 .nav-links li a {
     color: #d4a648;
     text-decoration: none;
     font-weight: bold;
 }

 .book-btn {
     background: #00703c;
     color: #fff;
     padding: 10px 15px;
     border-radius: 8px;
     font-weight: bold;
 }

 .hamburger {
     display: none;
     font-size: 24px;
     color: #d4a648;
     cursor: pointer;
 }

 /* Responsive for <=768px */
 @media (max-width: 768px) {
     .nav-links {
         display: none;
         flex-direction: column;
         background: #0b241a;
         position: absolute;
         top: 90px;
         right: 1px;
         width: 100%;
         padding: 15px;
         border-radius: 10px;
         text-align: center;
     }

     .hamburger {
         display: block;
     }

     .nav.open .nav-links {
         display: flex;
     }

     .logo-group {
         flex-direction: row;
     }
 }


 /* Hero Section */
 .hero {
     position: relative;
     width: 100%;
     height: 90vh;
     overflow: hidden;
 }

 .hero-slider {
     width: 100%;
     height: 100%;
     position: relative;
 }

 .slide {
     position: absolute;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 1s ease-in-out;
 }

 .slide.active {
     opacity: 1;
     z-index: 1;
 }

 .slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .hero-text {
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     color: #fff;
     font-size: 28px;
     font-weight: bold;
     text-align: center;
     text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
     padding: 0 20px;
      width: 100%;
 }
 
  /* --- Price Badge --- */
 .price-badge {
     display: inline-flex;
     flex-direction: column;
     gap: 2px;
     background: #f4a100;
     /* warm orange */
     color: #fff;
     border-radius: 12px;
     padding: 10px 14px;
     font-weight: 700;
     line-height: 1.1;
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
     position: absolute;
     right: 250px;
     /* sits within the hero-text area */
     bottom: 24px;
     z-index: 2;
 }

 /* speech-bubble tail */
 .price-badge::after {
     content: "";
     position: absolute;
     bottom: -10px;
     right: 18px;
     width: 0;
     height: 0;
     border-left: 10px solid transparent;
     border-right: 10px solid transparent;
     border-top: 10px solid #f4a100;
     filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.15));
 }

 .price-badge .price-line-1 {
     font-size: 12px;
     font-weight: 600;
     opacity: 0.95;
 }

 .price-badge .price-line-2 {
     font-size: 22px;
     letter-spacing: 0.3px;
     display: flex;
     align-items: baseline;
     gap: 4px;
 }

 .price-badge .price-line-2 strong {
     font-size: 26px;
     font-weight: 800;
 }

 .price-badge .price-line-3 {
     font-size: 12px;
     font-weight: 600;
     opacity: 0.95;
 }

 /* --- Responsive tweaks --- */
 @media (max-width: 992px) {
     .price-badge {
         right: 16px;
         bottom: 16px;
         padding: 9px 12px;
     }

     .price-badge .price-line-2 {
         font-size: 20px;
     }

     .price-badge .price-line-2 strong {
         font-size: 24px;
     }
 }

 @media (max-width: 768px) {
     .price-badge {
         position: static;
         /* stacks nicely under your hero text */
         margin: 14px auto 0;
         padding: 10px 14px;
     }

     .price-badge::after {
         display: none;
     }

     .hero-text {
         padding: 0 16px;
     }

     /* keeps it centered with breathing room */
 }

 @media (max-width: 420px) {

     .price-badge .price-line-1,
     .price-badge .price-line-3 {
         font-size: 11px;
     }

     .price-badge .price-line-2 {
         font-size: 18px;
     }

     .price-badge .price-line-2 strong {
         font-size: 22px;
     }
 }




 
.intro {
    background-color: #fff;
    padding: 40px;
    text-align: center;
}

.intro h2 {
    font-size: 30px;
    color: #2c3e50;
}

.intro p {
    font-size: 18px;
    color: #555;
    max-width: 100%;
    margin: auto;
    line-height: 1.5;
}





 .ingredients-section {
     padding: 60px 20px;
     background-color: #094231;
     text-align: center;
 }

 .ingredients-section h2 {
     font-size: 34px;
     color: #fff;
     margin-bottom: 40px;
 }

 .ingredients-section p {
     max-width: 900px;
     margin: 0 auto 40px auto;
     font-size: 17px;
     line-height: 1.8;
     color: #e0f0e6;
     /* Light color for contrast on dark green background */
     font-weight: 300;
     text-align: center;
     font-family: 'Roboto', sans-serif;
 }

 .grid-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 30px;
     max-width: 1500px;
     margin: 0 auto;
 }

 .ingredient-card {
     background-color: #fff;
     border-radius: 16px;
     padding: 20px;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .ingredient-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
 }

 .ingredient-card img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     /* border-radius: 12px; */
     margin-bottom: 16px;
 }

 .ingredient-card h3 {
     font-size: 20px;
     color: #b5381e;
     margin-bottom: 10px;
 }

 .ingredient-card p {
     font-size: 16px;
     color: #444;
     line-height: 1.5;
 }

 /* Small screen tweaks */
 @media (max-width: 480px) {
     .ingredients-section h2 {
         font-size: 26px;
     }

     .ingredient-card img {
         height: 150px;
     }

     .ingredient-card h3 {
         font-size: 18px;
     }

     .ingredient-card p {
         font-size: 15px;
     }
 }



 .highlights-section {
     background-color: #fff8f2;
     padding: 60px 20px;
     font-family: 'Segoe UI', sans-serif;
     text-align: center;
 }

 .highlights-section h2 {
     font-size: 32px;
     color: #a03824;
     margin-bottom: 40px;
 }

 .highlights-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 24px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .highlight-card {
     background-color: #fff;
     border-radius: 12px;
     padding: 24px;
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
     transition: transform 0.3s ease;
 }

 .highlight-card:hover {
     transform: translateY(-5px);
 }

 .highlight-card i {
     font-size: 36px;
     color: #b03e21;
     margin-bottom: 14px;
 }

 .highlight-card h3 {
     font-size: 18px;
     margin-bottom: 10px;
     color: #333;
 }

 .highlight-card p {
     font-size: 15px;
     color: #555;
     line-height: 1.6;
     text-align: justify;
 }

 /* Responsive */
 @media (max-width: 480px) {
     .highlights-section h2 {
         font-size: 24px;
     }

     .highlight-card i {
         font-size: 30px;
     }

     .highlight-card h3 {
         font-size: 16px;
     }
 }



 /* Faq section  */
 .faq-section {
     /* background-color: #f9f9f9; */
     padding: 60px 20px;
     max-width: 1000px;
     margin: 0 auto;
     font-family: 'Roboto', sans-serif;
 }

 .faq-section h2 {
     text-align: center;
     font-size: 34px;
     margin-bottom: 40px;
     color: #094231;
 }

 .faq-item {
     border-bottom: 1px solid #ddd;
     margin-bottom: 20px;
 }

 .faq-question {
     background: none;
     border: none;
     width: 100%;
     text-align: left;
     padding: 16px;
     font-size: 18px;
     font-weight: 600;
     color: #b5381e;
     cursor: pointer;
     position: relative;
 }

 .faq-question::after {
     content: "+";
     position: absolute;
     right: 20px;
     font-size: 20px;
     color: #555;
     transition: transform 0.3s ease;
 }

 .faq-question.active::after {
     content: "-";
 }

 .faq-answer {
     padding: 0 16px 16px;
     font-size: 16px;
     color: #444;
     line-height: 1.6;
     display: none;
 }


 /* Modal Overlay */
 .modal-overlay {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.6);
     justify-content: center;
     align-items: center;
     transition: opacity 0.3s ease;
 }

 /* Modal Content Box */
 .modal-content {
     background-color: #fff;
     padding: 30px;
     border-radius: 12px;
     max-width: 500px;
     width: 90%;
     position: relative;
     animation: slideIn 0.4s ease;
 }

 @keyframes slideIn {
     from {
         transform: translateY(-50px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }





 /* Modal Overlay */
 .head-modal-overlay {
     display: none;
     position: fixed;
     z-index: 1000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.6);
     justify-content: center;
     align-items: center;
     transition: opacity 0.3s ease;
 }

 /* Modal Content Box */
 .headecontactModal {
     background-color: #fff;
     padding: 30px;
     border-radius: 12px;
     max-width: 500px;
     width: 90%;
     position: relative;
     animation: slideIn 0.4s ease;
 }

 @keyframes slideIn {
     from {
         transform: translateY(-50px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 /* Close Button */
 .head-close-modal {
     position: absolute;
     top: 15px;
     right: 20px;
     font-size: 26px;
     color: #888;
     cursor: pointer;
 }





 .open-modal-btn {
     background-color: #094231;
     color: #fff;
     border: none;
     padding: 14px 24px;
     border-radius: 8px;
     font-size: 18px;
     cursor: pointer;
     margin: 20px 0;
     transition: background 0.3s ease;
 }

 .open-modal-btn:hover {
     background-color: #06301f;
 }






 /* Close Button */
 .close-modal {
     position: absolute;
     top: 15px;
     right: 20px;
     font-size: 26px;
     color: #888;
     cursor: pointer;
 }

 /* CTA Form Styling */
 .cta-form {
     display: flex;
     flex-direction: column;
     gap: 15px;
     margin-top: 10px;
 }

 .cta-form input,
 .cta-form textarea {
     padding: 10px 12px;
     border-radius: 8px;
     border: 1px solid #ccc;
     font-size: 16px;
 }

 .cta-form button {
     background-color: #b5381e;
     color: white;
     padding: 12px;
     border: none;
     border-radius: 8px;
     cursor: pointer;
     font-weight: bold;
     font-size: 16px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .cta-form button:hover {
     background-color: #942c15;
 }

 /* CTA Section */
 .cta-banner {
     text-align: center;
     background-color: #fef7f2;
     padding: 60px 20px;
 }

 .open-modal-btn {
     background-color: #094231;
     color: #fff;
     border: none;
     padding: 14px 24px;
     border-radius: 8px;
     font-size: 18px;
     cursor: pointer;
     margin: 20px 0;
     transition: background 0.3s ease;
 }

 .open-modal-btn:hover {
     background-color: #06301f;
 }
 
 
 
 
 
 

 /* Footer Container */
.footer-container {
     background-color: #003b2f;
     color: #fff;
     padding: 50px 20px 30px;
     font-family: 'Roboto', sans-serif;
 }

 .footer-wrapper {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     gap: 40px;
 }

 .footer-section {
     flex: 1 1 220px;
     min-width: 220px;
 }

 .footer-section h3 {
     font-size: 18px;
     margin-bottom: 15px;
     color: #ffd700;
 }

 .footer-section p,
 .footer-section a {
     font-size: 15px;
     color: #ccc;
     text-decoration: none;
     line-height: 1.8;
     display: block;
 }

 .footer-section p i {
     margin-right: 8px;
     vertical-align: middle;
     font-size: 16px;
     color: #fff;
 }

 .footer-section p a {
     display: inline-block;
     vertical-align: middle;
     color: #ccc;
     text-decoration: none;
     transition: color 0.3s;
 }

 .footer-section p a:hover,
 .footer-section a:hover {
     color: #fff;
 }

 .footer-social {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 10px;
 }

 .footer-social h3 {
     margin-bottom: 5px;
 }

 .footer-social .social-icons {
     display: flex;
     flex-direction: row;
     gap: 20px;
     align-items: center;
 }

 .footer-social .social-icons a {
     font-size: 24px;
     color: #ccc;
     transition: color 0.3s;
 }

 .footer-social .social-icons a:hover {
     color: #ffd700;
 }

 /* Footer bottom bar */
 .footer-bottom {
     text-align: center;
     padding-top: 20px;
     margin-top: 30px;
     border-top: 1px solid #444;
     font-size: 14px;
     color: #bbb;
 }

 /* Responsive: Tablet and Below */
 @media (max-width: 992px) {
     .footer-wrapper {
         gap: 30px;
         justify-content: center;
     }

     .footer-section {
         flex: 1 1 45%;
         text-align: center;
     }

     .footer-social {
         align-items: center;
     }

     .footer-social .social-icons {
         justify-content: center;
     }
 }

 /* Responsive: Mobile */
 @media (max-width: 600px) {
     .footer-wrapper {
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .footer-section {
         flex: 1 1 100%;
         margin-bottom: 30px;
     }

     .footer-social {
         align-items: center;
     }

     .footer-social .social-icons {
         justify-content: center;
     }

     .footer-social .social-icons a {
         margin: 0 10px;
     }
 }




.floating-icons {
  position: fixed;
  right: 15px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  padding: 0;
  margin: 0;
}

.floating-icons a {
  background-color: #0b241a;
  color: white;
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
  color: #fff;
  background-color: #25D366; /* WhatsApp green */
}

.floating-icons a:nth-child(2):hover {
  background-color: #ea4335; /* Gmail red */
}

.floating-icons a:nth-child(3):hover {
  background-color: #e4405f; /* Instagram pink */
}