body {
    margin:0;
    font-family: Arial, sans-serif;
    color:#333;
}
:root {
    /* Colors */
    --color-dark-green: #0B4038;
    --color-green-accent: #17846F;
    --color-cta-red: #E55D45;
    --color-cta-orange: #F79550;
    --color-light-peach: #FDE8DD;
}
@font-face {
  font-family: 'Galyon Bold';
  src: url('fonts/Galyon-Bold.woff2') format('woff2'),
       url('fonts/Galyon-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Clear Sans Medium';
  src: url('fonts/ClearSans-Medium.woff2') format('woff2'),
       url('fonts/ClearSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Set CSS variables */
:root {
    --font-heading: 'Galyon Bold', serif;
    --font-body: 'Clear Sans Medium', sans-serif;
}
h1, h2, h3, .about-title, .hero-title {
    font-family: var(--font-heading);
}
body, p, li {
    font-family: var(--font-body);
}
/* Floating WhatsApp Button with text */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  text-decoration: none;
  font-weight: bold;
  font-family: "Segoe UI", Arial, sans-serif;
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
  
  /* Add pulse animation */
  animation: pulse 2.5s infinite;
}

/* WhatsApp Icon inside button */
.whatsapp-float img {
  width: 24px;
  height: 24px;
}

/* Text style */
.whatsapp-text {
  font-size: 14px;
  white-space: nowrap;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Responsive: hide text on small screens */
@media (max-width: 480px) {
  .whatsapp-text {
    display: none;
  }
  .whatsapp-float {
    padding: 10px;
    border-radius: 50%;
  }
}
/*========topbar*/
.topbar{
  background: #0B4038;
  color:#ffffff;
  font-size:14px;
  padding:6px 0;
}

.topbar-container{
  width:90%;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.topbar-left span{
  margin-right:25px;
  display:inline-flex;
  align-items:center;
}

.topbar-left img{
  width:14px;
  margin-right:8px;
  filter: brightness(0) invert(1); 
}

.topbar-right a{
  margin-left:15px;
}

.topbar-right img{
  width:16px;
  filter: brightness(0) invert(1);
}
/* Tablet */
@media (max-width:992px){

  .topbar-container{
    width:95%;
  }

  .topbar-left span{
    margin-right:15px;
  }

}

/* Mobile */
@media (max-width:768px){

  .topbar-container{
    flex-direction:column;
    gap:18px;
    text-align:center;
  }

  .topbar-left span{
    margin-right:10px;
    font-size:13px;
  }

  .topbar-right{
    margin-top:3px;
  }

}

/* Small Mobile */
@media (max-width:480px){

  .topbar{
    font-size:12px;
  }

  .topbar-left{
    display:flex;
    flex-direction:column;
    gap:3px;
  }

  .topbar-right a{
    margin:0 6px;
  }

}
/* ================= NAVBAR ================= */
.navbar {
  background: #ffffff; 
  color: #0B4038; 
  display: flex;
  justify-content: space-between;
  padding: 30px 30px;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo container */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;              
  font-size: 14px;       
  font-weight: 700;
  color: #0B4038;
  line-height: 1;    
  margin-left: 20px;

}

/* Logo image */
.logo-img {
  height: 50px;           
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Optional hover effect for logo image */
.logo-img:hover {
  transform: scale(1.05);
}

/* Desktop nav links */
.navbar nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar nav a {
  color: #0B4038; 
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  transition: 0.2s ease;
}

.navbar nav a:hover {
  color: #F79550;  
}

.navbar nav a {
  color: #0B4038;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px; 
  transition: all 0.3s ease;
}

.navbar nav a.active {
  background: #F79550; 
  color:#ffffff;      
  border-radius: 12px;  
    padding: 15px 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1); 
}

/* Search bar */
.nav-search {
  display: flex;
  align-items: center;
  background: var(--light); 
  border-radius: 20px;
  padding: 4px 12px;
  box-shadow: inset 0 0 0 1px #d6eadf; 
  transition: 0.25s ease;
}

.nav-search:focus-within {
  box-shadow: 0 0 0 3px rgba(47, 107, 63, 0.2); 
}

.nav-search input {
  border: none;
  outline: none;
  padding: 6px 8px;
  font-size: 14px;
  width: 160px;
  background: transparent;
  color: #0B4038; 
}

.search-btn {
  background: #17846F; 
  border: none;
  padding: 7px 16px;
  color: #ffffff; 
  font-size: 13px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s ease;
}

.search-btn:hover {
  background: #0B4038; 
}
/* Hide hamburger by default (desktop) */
.hamburger {
  display: none;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* Remove default button styling */
.hamburger:focus {
  outline: none;
}



/* =============================== */
/* MOBILE RESPONSIVE ONLY           */
/* =============================== */
@media (max-width: 768px) {
  /* Top row: logo + hamburger */
  .navbar {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 20px;
  }

  .logo {
    margin: 0;
  }

  .navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    margin-top: -30px;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #0B4038;
    border-radius: 2px;
    transition: 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hide nav links initially */
  #navMenu a {
    display: none;
  }

  /* Mobile nav container */
  #navMenu {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
  }

  /* Show nav links when hamburger clicked */
  #navMenu.show a {
    display: block;
  }

  /* Search bar full width */
  .nav-search {
    width: 100%;
    margin: 10px 0;
    justify-content: space-between;
  }

  .nav-search input {
    width: 70%;
  }

  /* Order button full width */
  .order-btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 0;
  }
}

/* Smaller phones */
@media (max-width: 480px) {
  .logo-img {
    height: 40px;
  }

  .nav-search input {
    font-size: 13px;
  }

  .search-btn {
    padding: 5px 10px;
    font-size: 12px;
  }

  .order-btn {
    font-size: 14px;
    padding: 8px 0;
  }
}

/* 1024px devices */
@media (min-width: 1000px) and (max-width: 1050px) {
  .logo { font-size: 16px; }
  .navbar nav a { font-size: 10px; }
  .order-btn { font-size: 14px; }
  .nav-search input { font-size: 13px; }
  .search-btn { font-size: 12px; }
}

/* 912px devices */
@media (min-width: 890px) and (max-width: 930px) {
  .logo { font-size: 16px; }
  .navbar nav a { font-size: 14px; }
  .order-btn { font-size: 14px; }
  .nav-search input { font-size: 13px; }
  .search-btn { font-size: 12px; }
}

/* 853px devices */
@media (min-width: 840px) and (max-width: 870px) {
  .logo { font-size: 15px; }
  .navbar nav a { font-size: 13.5px; }
  .order-btn { font-size: 13.5px; }
  .nav-search input { font-size: 12.5px; }
  .search-btn { font-size: 12px; }
}

/* 820px devices */
@media (min-width: 800px) and (max-width: 830px) {
  .logo { font-size: 15px; }
  .navbar nav a { font-size: 13px; }
  .order-btn { font-size: 13px; }
  .nav-search input { font-size: 12.5px; }
  .search-btn { font-size: 12px; }
}

/*===========================================Home Page=============================================*/

/*============================== HERO SECTION=============== */
.hero {
  position: relative;
  background: url("img/hero.webp") center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

/* SLIDER */
.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slideAnimation 18s infinite;
  opacity: 0;
}

.slide:nth-child(1){
  opacity:1;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }
/* SLIDE ANIMATION */
@keyframes slideAnimation {
  0% { opacity: 0; }
  8% { opacity: 1; }
  33% { opacity: 1; }
  41% { opacity: 0; }
  100% { opacity: 0; }
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(11, 64, 56, 0.65);
  z-index: 2;
}

/* CONTENT */
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.hero-text {
  max-width: 650px;
}

/* TEXT STYLES */
.hero-title {
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.hero-details {
  margin-top: 15px;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons .btn {
  display: inline-block;
  margin: 8px 10px 8px 0;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #E55D45;
  color: white;
}

.btn-primary:hover {
  background: #F79550;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: #0B4038;
}

/* MOBILE */
@media (max-width:768px) {

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

}
/* PREMIUM CONTENT BOX */
.hero-premium-box{
  background: rgba(255, 255, 255, 0.041);
  backdrop-filter: blur(-5px);
  padding: 50px;
  border-radius: 24px;
  max-width: 950px;
  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
  0 10px 40px rgba(0,0,0,0.35),
  inset 0 0 0 1px rgba(255,255,255,0.05);

  animation: heroFadeUp 1.2s ease;
}

/* BADGE */
.hero-badge{
  display:inline-block;
  background: rgba(255,255,255,0.15);
  padding:6px 14px;
  border-radius:20px;
  font-size:14px;
  margin-bottom:5px;
}

/* TITLE */
.hero-title{
  font-size:3.4rem;
  font-weight:700;
  margin-bottom:18px;

 background: linear-gradient(
    90deg,
    #ffffff,
    #E55D45,
    #F79550,
    #FDE8DD,
    #ffffff,
    #F79550,
    #E55D45,
    #ffffff
  );

  background-size: 300% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  animation: shineMove 10s linear infinite;

  letter-spacing: 0.5px;
}

/* Smooth continuous shine */
@keyframes shineMove{
  0%{
    background-position: 0% center;
  }
  100%{
    background-position: 300% center;
  }
}

/* DESCRIPTION */
.hero-description{
  font-size:1.2rem;
  margin-bottom:12px;
}

.hero-description-secondary{
  font-size:1.05rem;
  opacity:0.9;
  margin-bottom:25px;
}

/* INFO SECTION */
.hero-info{
  margin-bottom:30px;
}

.hero-location{
  margin-bottom:12px;
}

.hero-delivery{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.delivery-label{
  font-size:14px;
  opacity:0.9;
}

/* DELIVERY LOGOS */
.delivery-logo{
  height:26px;
  background:white;
  padding:4px 10px;
  border-radius:8px;
  box-shadow:0 3px 10px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.delivery-logo:hover{
  transform:scale(1.08);
}

/* CORPORATE */
.hero-corporate{
  opacity:0.9;
}

/* BUTTONS */
.btn{
  padding:14px 32px;
  border-radius:50px;
  font-weight:600;
  text-decoration:none;
  transition:all 0.3s ease;
}

.btn-primary{
  background: linear-gradient(135deg,#E55D45,#F79550);
  color:white;
  box-shadow:0 6px 20px rgba(229,93,69,0.5);
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary{
  border:1px solid white;
  color:white;
}

.btn-secondary:hover{
  background:white;
  color:#0B4038;
}

.btn-glass{
  background: rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.3);
  color:white;
}

.btn-glass:hover{
  background:white;
  color:#0B4038;
}

/* ANIMATION */
@keyframes heroFadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}
/* Tablets */
@media (max-width: 1024px) {
  .hero-inner {
    padding: 15px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-description {
    font-size: 1.1rem;
  }
  .hero-premium-box {
    padding: 40px;
    max-width: 750px;
  }
  .btn {
    padding: 12px 28px;
  }
}

/* Tablets (medium devices) */
@media (max-width: 1024px) {
  .btn {
    padding: 12px 28px;
    font-size: 15px;
    border-radius: 45px; 
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .btn {
    padding: 10px 22px;  
    font-size: 14px;     
    width: 160px;       
    display: block;
    margin: 12px auto;    
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .btn {
    padding: 8px 18px;
    font-size: 13px;
    width: 140px;         
  }
}
/* Small tablets / large phones */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-description-secondary {
    font-size: 0.95rem;
  }
  .hero-premium-box {
    padding: 30px;
    max-width: 90%;
  }
  .hero-inner {
    padding: 15px;
  }
  .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .hero-description {
    font-size: 0.9rem;
  }
  .hero-description-secondary {
    font-size: 0.85rem;
  }
  .hero-premium-box {
    padding: 20px;
    max-width: 95%;
  }
  .hero-inner {
    padding: 10px;
  }
 /* Mobile phones */
@media (max-width: 480px) {
  .hero-buttons {
    text-align: center;
  }

  .hero-buttons .btn {
    display: block;
    width: 200px;     /* smaller width */
    margin: 10px auto; /* centers button */
  }
}
  .hero-delivery {
    flex-direction: column;
    gap: 8px;
  }
  .delivery-logo {
    height: 22px;
    padding: 3px 8px;
  }
}
/* Tablets */
@media (max-width:1024px){
  .hero-buttons{
    justify-content:center;
  }

  .hero-buttons .btn{
    width:220px;
  }
}

/* Large phones */
@media (max-width:768px){
  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .hero-buttons .btn{
    width:210px;
  }
}
/* Extra small phones (very small screens) */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.4rem;
  }
  .hero-description {
    font-size: 0.85rem;
  }
  .hero-description-secondary {
    font-size: 0.8rem;
  }
  .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  .hero-premium-box {
    padding: 15px;
  }
}

/*=========================== About Section ========================== */
.about-section {
  background-color: #ffffff;
  color: #0B4038;
  padding: 30px 20px;   
}

.about-container {
  max-width: 100%;
   margin: 0 auto; 
  margin: 0 auto;
}

/* Two Columns */
.about-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.about-image {
  flex: 1;
  height: 200px; 
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.image-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.1);
}

/* Right Side: Content */
.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Header */
.about-header {
  text-align: left;
}

.about-header {
               
  padding: 5px;                              
  border-radius: 24px;                                                
}

.about-title {
  font-size: 2.8rem;
  margin-bottom: 1px;
  text-align: center;
  font-weight: bold;

  background: linear-gradient(90deg, #E55D45, #E55D45,#E55D45);
  background-size: 300% 100%;

  background-clip: text;           
  -webkit-background-clip: text;    
  
  color: transparent;               
  -webkit-text-fill-color: transparent;

  animation: shineText 3s linear infinite;
}

@keyframes shineText {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.about-subtitle {
  font-size: 1.3rem;
  color: #17846F;
  font-weight: 500;
  text-align: center;
}

/* Intro & Description */
.about-intro, .about-desc-text {
  font-size: 1.1rem;
  line-height: 1.2;
  color: #0B4038;
  margin-top: -20px;
}

/* Ingredient Section */
.ingredient-section {
  margin-top: 5px;

}

.about-desc-text{
  font-weight: bold;
}
/* List styling */
.ingredient-list {
  list-style-type: disc; 
  padding-left: 20px;
  margin-top: 15px;

  column-count: 2;       
  column-gap: 40px;       
}

.ingredient-list li {
  font-size: 1.1rem;
  color: #0B4038;
  line-height: 1.2;
  margin-bottom: 4px;
  position: relative;
}

/* Optional: custom bullet */
.ingredient-list li::marker {
  color: #E55D45; 
  font-weight: bold;
}

/* Responsive: 1 column on small screens */
@media (max-width: 576px) {
  .ingredient-list {
    column-count: 1;
  }
}
/* Audience Grid */
.audience-title {
  font-size: 1.1rem;
  color: #0B4038;
  margin: 10px 0 10px;
  font-weight: bold;

}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.audience-card {
  padding: 15px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}
.audience-icon {
  width: 60px;
  height: 60px;
  padding: 12px;
  border-radius: 50%;
  background: #ffffff;
  margin-bottom: 15px;
}
.audience-card p {
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}

/* Responsive */
@media(max-width: 992px){
  .about-columns {
    flex-direction: column;
  }
  .about-image {
    min-height: 400px;
  }
}
/* Tablets / Medium Screens */
@media (max-width: 1024px) {
  .about-section {
    padding: 50px 20px;
  }
  .about-title {
    font-size: 2.4rem;
  }
  .about-subtitle {
    font-size: 1.2rem;
  }
  .about-intro,
  .about-desc-text {
    font-size: 1rem;
  }
  .about-image {
    height: 350px;
  }
  .ingredient-list {
    column-gap: 30px;
  }
  .audience-title {
    font-size: 1rem;
  }
  .audience-card p {
    font-size: 14px;
  }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 15px;
  }
  .about-title {
    font-size: 2rem;
  }
  .about-subtitle {
    font-size: 1.1rem;
  }
  .about-intro,
  .about-desc-text {
    font-size: 0.95rem;
  }
  .about-image {
    height: 300px;
  }
  .ingredient-list {
    column-gap: 20px;
    padding-left: 15px;
  }
  .audience-card {
    padding: 15px;
  }
  .audience-icon {
    width: 50px;
    height: 50px;
    padding: 10px;
  }
  .audience-card p {
    font-size: 13px;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .about-section {
    padding: 30px 10px;
  }
  .about-title {
    font-size: 1.6rem;
  }
  .about-subtitle {
    font-size: 1rem;
  }
  .about-intro,
  .about-desc-text {
    font-size: 0.9rem;
  }
  .about-columns {
    gap: 20px;
  }
  .about-image {
    height: 250px;
  }
  .ingredient-list {
    column-gap: 15px;
    padding-left: 10px;
  }
  .ingredient-list li {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  .audience-card {
    padding: 12px;
  }
  .audience-icon {
    width: 45px;
    height: 45px;
    padding: 8px;
  }
  .audience-card p {
    font-size: 12px;
  }
}

/* Extra Small Phones (Very Small Screens) */
@media (max-width: 360px) {
  .about-section {
    padding: 25px 8px;
  }
  .about-title {
    font-size: 1.4rem;
  }
  .about-subtitle {
    font-size: 0.95rem;
  }
  .about-intro,
  .about-desc-text {
    font-size: 0.85rem;
  }
  .about-image {
    height: 220px;
  }
  .ingredient-list li {
    font-size: 0.9rem;
  }
  .audience-card {
    padding: 10px;
  }
  .audience-icon {
    width: 40px;
    height: 40px;
    padding: 6px;
  }
  .audience-card p {
    font-size: 11px;
  }
}
.read-more-btn {
  display: block;        
  width: fit-content; 
  margin-left: auto;   
  margin-top: 15px;

  padding: 15px 30px;
  background: #F79550;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  margin-right: 50px;
}

.read-more-btn:hover {
  background: #E55D45;
}
/*===============why choose us SECTION=========== */
.why-choose{
  background:  linear-gradient(180deg, #0B4038, #17846F);
  padding: 15px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle premium overlay */
.why-choose::before{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(255,255,255,0.04);
  border-radius:50%;
  top:-100px;
  left:-100px;
}

.why-choose::after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:rgba(255,255,255,0.04);
  border-radius:50%;
  bottom:-100px;
  right:-100px;
}

.container{
  max-width:1100px;
  margin:auto;
  position:relative;
  z-index:2;
}

.why-title{
  font-size:34px;
  font-weight:700;
  margin-bottom:1px;
  letter-spacing:0.5px;

  background: linear-gradient(90deg, #ffffff, #E55D45, #F79550, #ffffff);
  background-size: 300% 100%;

  background-clip: text;           
  -webkit-background-clip: text;    
  
  color: transparent;              
  -webkit-text-fill-color: transparent;

  animation: shineText 3s linear infinite;
}

@keyframes shineText {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Subtitle */
.why-subtitle{
  font-size:17px;
  color:#DFF5F0;
  margin-top: -40px;
}
.why-title {
  display: block;
  width: 100%;
  text-align: center;
}

.why-subtitle {
  text-align: center;
}
.swiper {
  width: 100%;
}

.swiper-slide {
  height: auto;
}
/* Premium Glass Cards */
.why-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  padding: 30px 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
}

/* Hover effect */
.why-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* Icon circle */
.why-card img {
  width: 40px;
  height: 40px;
  padding: 14px;
  border-radius: 50%;
  background: #ffffff;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}

.why-card:hover img {
  transform: scale(1.15) rotate(10deg);
}

/* Card text */
.why-card p{
  font-size:14px;
  color:#ffffff;
  margin:0;
  font-weight:500;
}

/* Bottom description */
.why-description{
  font-size:16px;
  color:#ffffff;
  max-width:700px;
  margin:auto;
  line-height:1.5;
  letter-spacing:0.3px;
}
/* Tablets / Medium Screens */
@media (max-width: 1024px) {
  .why-choose {
    padding: 30px 20px;
  }
  .why-title {
    font-size: 28px;
  }
  .why-subtitle {
    font-size: 15px;
    margin-top: -30px;
  }
  .why-card {
    padding: 25px 8px;
  }
  .why-card img {
    width: 36px;
    height: 36px;
    padding: 12px;
  }
  .why-card p {
    font-size: 13px;
  }
  .why-description {
    font-size: 15px;
    max-width: 600px;
  }
  .why-choose::before, .why-choose::after {
    width: 300px;
    height: 300px;
  }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
  .why-choose {
    padding: 25px 15px;
  }
  .why-title {
    font-size: 24px;
  }
  .why-subtitle {
    font-size: 14px;
    margin-top: -20px;
  }
  .why-card {
    padding: 20px 8px;
  }
  .why-card img {
    width: 32px;
    height: 32px;
    padding: 10px;
  }
  .why-card p {
    font-size: 12px;
  }
  .why-description {
    font-size: 14px;
    max-width: 90%;
  }
  .why-choose::before, .why-choose::after {
    width: 250px;
    height: 250px;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .why-choose {
    padding: 20px 10px;
  }
  .why-title {
    font-size: 20px;
  }
  .why-subtitle {
    font-size: 13px;
    margin-top: -15px;
  }
  .why-card {
    padding: 18px 6px;
    margin-bottom: 15px;
  }
  .why-card img {
    width: 28px;
    height: 28px;
    padding: 8px;
  }
  .why-card p {
    font-size: 11px;
  }
  .why-description {
    font-size: 13px;
    max-width: 95%;
  }
  .why-choose::before, .why-choose::after {
    width: 200px;
    height: 200px;
  }
}

/* Extra Small Phones (Very Small Screens) */
@media (max-width: 360px) {
  .why-choose {
    padding: 15px 8px;
  }
  .why-title {
    font-size: 18px;
  }
  .why-subtitle {
    font-size: 12px;
    margin-top: -10px;
  }
  .why-card {
    padding: 15px 5px;
  }
  .why-card img {
    width: 24px;
    height: 24px;
    padding: 6px;
  }
  .why-card p {
    font-size: 10px;
  }
  .why-description {
    font-size: 12px;
    max-width: 100%;
  }
  .why-choose::before, .why-choose::after {
    width: 150px;
    height: 150px;
  }
}

/* Optional: Swiper adjustments */
@media (max-width: 768px) {
  .swiper-slide {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .swiper-slide {
    width: 90%;
  }
}

/*===========Menu=============*/
.menu-section {
  padding: 20px 15px;       
  background: #f9f9f9;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.menu-container {
  display: flex;
  gap: 20px;               
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.menu-title {
  font-size: 28px;         
  font-weight: bold;
  color: #F79550;
  margin-bottom: 3px;      
  letter-spacing: 1px;
}

.menu-subtitile {
  font-size: 14px;       
  color: #17846F;
  margin-bottom: 10px;    
  font-weight: 400;
}

.menu-title,
.menu-subtitile {
  margin-left: 15px;       
}

/* ===== Slider / Cards ===== */
.menu-slider {
  flex: 3;
  position: relative;
}

.menu-card {
  width: 100%;
  background: #f0f5f5;
  border-radius: 12px;
  padding: 5px 20px;    
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.5s ease-in-out;
  color: #0B4038;
  overflow: hidden;
}

.menu-card h2 {
  margin-bottom: 10px;   
  font-size: 18px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;               
  width: 98%;
  box-sizing: border-box;
}

.menu-item {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.menu-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;     
  object-fit: cover;
  background: #ffffff;
  display: block;
  border-radius: 12px 12px 0 0;
}


/* DARK OVERLAY FIX */
.menu-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  border-radius: 12px 12px 0 0; 
}
/* ===== View Menu Button ===== */
.btn-view-menu {
  display: inline-block;
  padding: 8px 20px;       
  background: linear-gradient(90deg, #E55D45, #F79550);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s ease, transform 0.3s ease;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  margin-top: -15px;        
  position: absolute;
  right: 0;
}

.btn-view-menu:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: linear-gradient(90deg, #F79550, #E55D45);
}

/* ===== FLIP FIX (in-place) ===== */
.menu-item {
  perspective: 1000px; 
  position: relative;  
}

.menu-flip {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.menu-title-overlay {
   position: absolute;
    bottom: 8px; 
    left: 8px;
    right: 8px; 
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: center; 
    background: rgba(0,0,0,0.5);
    padding: 5px 8px;
    border-radius: 20px; }

/* Flip on hover */
.menu-item:hover .menu-flip {
  transform: rotateY(180deg);
}

/* FRONT & BACK - full coverage */
.menu-front,
.menu-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  backface-visibility: hidden;
}

/* BACK */
.menu-back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(11, 64, 56, 0.95);
  color: #fff;
  padding: 10px;
  text-align: center;
}

/* NAME & PRICE on BACK */
.menu-back h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.menu-back .price {
  font-size: 13px;
  font-weight: 700;
  color: #F79550;
  background: rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 20px;
}

/* Keep hover lift if needed */
.menu-item:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

/* Mobile tap support */
@media (hover: none) {
  .menu-item:active .menu-flip {
    transform: rotateY(180deg);
  }
}

/* Sidebar container */
.menu-sidebar {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 20px;
  height: fit-content;
  color: #0B4038;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(238,243,241,0.8);
  backdrop-filter: blur(8px);
}
/* Sidebar title */
.menu-sidebar h3 {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #EEF3F1;
  padding-bottom: 10px;
  color: #0B4038;
}

/* Section cards */
.sidebar-section {
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #F8FBFA;
  transition: all 0.25s ease;
  border: 1px solid #EEF3F1;
}

/* Hover effect */
.sidebar-section:hover {
  background: #17846F;
  transform: translateY(-2px);
}
.sidebar-section:hover h4{
  color: #ffffff;
  font-weight: bolder;
}
.sidebar-section:hover p ,
.sidebar-section:hover .phone,
.sidebar-section:hover ul li{
  color: #ffffff;
}

/* Section headings */
.sidebar-section h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  color: #E55D45;
}

/* Heading icons */
.sidebar-section h4 img {
  height: 18px;
  width: 18px;
  margin-right: 8px;
  object-fit: contain;
  border-radius: 4px;
  background: #ffffff;
  padding: 2px;
}

/* Paragraph text */
.sidebar-section p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 6px 0;
  color: #0B4038;
}

/* Phone section */
.sidebar-section .phone {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #17846F;
  margin-top: 4px;
}

/* Phone icons */
.sidebar-section .phone img {
  height: 16px;
  width: 16px;
  margin-right: 6px;
  object-fit: contain;
  border-radius: 4px;
  background: #ffffff;
  padding: 2px;
}

/* Logo image */
.sidebar-section .logo-large {
  display: block;
  width: 25%;
  max-width: 25%;
  height: auto;
  margin: 8px auto 12px auto;
  border-radius: 10px;
  background: #ffffff;
  padding: 4px;
  object-fit: contain;
}

/* General image safety */
.sidebar-section img {
  display: inline-block;
  vertical-align: middle;
}

/* Sidebar button */
.sidebar-btn {
  display: inline-block;
  padding: 10px 18px;
  margin-top: 12px;
  background-color:#E55D45;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Button hover */
.sidebar-btn:hover {
  background-color: #F79550;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.btn-view-menu {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #E55D45, #F79550);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s ease, transform 0.3s ease;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  
  position: relative;
  margin: 20px auto 0 auto;
  right: auto;
  width: auto; /* default width based on content */
}


/* Tablet devices */
@media (max-width: 1024px) {
  .btn-view-menu {
    font-size: 15px;
    padding: 10px 28px;
    max-width: 200px;  /* Optional: restrict max width */
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .btn-view-menu {
    font-size: 14px;
    padding: 10px 20px;
    text-align: center;
    position: relative;
    width: 100%;
    margin: 10px 0 0 0;
    right: unset;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .btn-view-menu {
    font-size: 13px;
    padding: 8px 16px;
    width: 130px;      /* Even smaller width */
  }
}
/* Large desktops / small desktops */
@media (max-width: 1200px) {
  .menu-items-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Medium screens / tablets */
@media (max-width: 992px) {
  .menu-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  .menu-items-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
  }
  .menu-sidebar {
    max-width: 100%;
    width: 100%;
    position: relative;
    top: auto;
    margin-top: 20px;
  }
}

/* Small tablets / large phones */
@media (max-width: 768px) {
  .menu-container {
    flex-direction: column; /* stack sidebar below menu */
  }
  .menu-items-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 12px;
  }
  .menu-sidebar {
    width: 100%;
    position: relative;
    top: auto;
    margin-top: 20px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .menu-items-grid {
    grid-template-columns: 1fr; 
    gap: 10px;
  }
  .menu-sidebar {
    width: 100%;
    position: relative;
    top: auto;
    margin-top: 20px;
  }
}

.menu-item,
.menu-sidebar {
  box-sizing: border-box;
}

/* Make sure menu cards scale nicely */
.menu-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Buttons scale */
.btn-view-menu {
  width: 100%;
  max-width: 200px;
  margin: 10px auto 0 auto;
}
/*========== Blog  ==========*/
.health-sec-section {
  position: relative;
  background:  linear-gradient(180deg, #0B4038, #17846F);
  padding: 30px 20px; 
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

/* Container above overlay */
.health-sec-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
}


/* Premium floating circles (optional) */
.health-sec-section::after {
  content: "";
  position: absolute;
  width: 250px;   
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
  z-index: 0;
}

/* Cards, sliders, buttons above overlay */
.health-sec-slider,
.health-sec-grid,
.health-sec-card,
.health-sec-button {
  position: relative;
  z-index: 2;
}
.health-sec-card {
  position: relative;
}

.health-sec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.05)
  );
  opacity: 0;
  transition: 0.4s;
}

.health-sec-card:hover::before {
  opacity: 1;
}

/* Section title */
.health-sec-title {
  font-size: 34px;
  margin-bottom: 5px;
  font-weight: 700;
  margin-top: -10px; 

  background: linear-gradient(
    90deg,
    #E55D45,
    #F79550,
    #ffffff,
    #F79550,
    #E55D45,
    #ffffff
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shineMove 8s linear infinite;
  letter-spacing: 0.5px;
}

/* Smooth shine */
@keyframes shineMove {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* Subtitle and text */
.health-sec-subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.health-sec-text {
  font-size: 16px;
  margin-bottom: 15px; 
  color: #ffffff;
}

/* Blog Cards Grid */
.health-sec-grid {
  display: flex; 
  gap: 12px; 
  transition: transform 0.5s ease;
  margin-bottom: 15px; 
}

.health-sec-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  min-width: calc(50% - 6px);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}

/* Hover effect */
.health-sec-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}
/* Card image */
.health-sec-card img {
  width: 100%;
  height: 160px; 
  object-fit: cover;
}

/* Card title */
.health-sec-card-title {
  padding: 10px 12px; 
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #0B4038;
}

/* Slider container */
.health-sec-slider {
  overflow: hidden;
  width: 100%;
}

.health-sec-button {
  background: linear-gradient(135deg, #F79550, #E55D45);
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.health-sec-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Arrows */
.health-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.health-arrow:hover {
  background: rgba(255,255,255,0.4);
}

.health-arrow.prev { left: 5px; }
.health-arrow.next { right: 5px; }

/* Dots */
.health-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 6px;
}

.health-dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.health-dot.active {
  background: #F79550;
  transform: scale(1.3);
}

/* Make slider container relative for arrows */
.health-sec-slider {
  position: relative;
}

/* Tablets and smaller devices */
@media (max-width: 1024px) {
  .health-sec-title {
    font-size: 30px;
  }
  .health-sec-subtitle {
    font-size: 16px;
  }
  .health-sec-text {
    font-size: 15px;
  }
  .health-sec-card img {
    height: 140px;
  }
  .health-sec-card-title {
    font-size: 15px;
  }
  .health-sec-button {
    font-size: 15px;
    padding: 11px 22px;
  }
}

/* Small Tablets / Large Phones */
@media (max-width: 768px) {
  .health-sec-title {
    font-size: 26px;
  }
  .health-sec-subtitle {
    font-size: 15px;
  }
  .health-sec-text {
    font-size: 14px;
  }
  .health-sec-card img {
    height: 120px;
  }
  .health-sec-card-title {
    font-size: 14px;
  }
  .health-sec-button {
    font-size: 14px;
    padding: 10px 20px;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .health-sec-title {
    font-size: 22px;
  }
  .health-sec-subtitle {
    font-size: 14px;
  }
  .health-sec-text {
    font-size: 13px;
  }
  .health-sec-card img {
    height: 110px;
  }
  .health-sec-card-title {
    font-size: 13px;
  }
  .health-sec-button {
    font-size: 13px;
    padding: 9px 18px;
  }
}

/* Extra Small Phones */
@media (max-width: 360px) {
  .health-sec-title {
    font-size: 20px;
  }
  .health-sec-subtitle {
    font-size: 13px;
  }
  .health-sec-text {
    font-size: 12px;
  }
  .health-sec-card img {
    height: 100px;
  }
  .health-sec-card-title {
    font-size: 12px;
  }
  .health-sec-button {
    font-size: 12px;
    padding: 8px 16px;
  }
}

/*==============CTA Home==========*/
.salad-factory-section {
  background: linear-gradient(135deg, #f4f7f6, #ffffff);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* subtle glow background */
.salad-factory-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(23,132,111,0.08), transparent 70%);
  top: -150px;
  left: -150px;
}

/* ================= CONTAINER ================= */
.container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

/* ================= TEXT COLUMN CARD ================= */
.text-column {
  flex: 1 1 420px;
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border: 1px solid #eef3f1;
  transition: 0.3s ease;
}

.text-column:hover {
  transform: translateY(-3px);
}

/* ================= TITLE ================= */
.text-column h2 {
  font-size: 34px;
  margin-bottom: 18px;
  font-weight: 700;
  color:#F79550
}

/* ================= TEXT ================= */
.text-column p {
  font-size: 15px;
  color: #17846F;
  margin: 10px 0;
  line-height: 1.6;
}

/* ================= SERVICES LIST ================= */
.services-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px;
}

.services-list li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #0B4038;
  padding-left: 20px;
  position: relative;
}

.services-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #E55D45;
  font-weight: bold;
}

/* ================= CONTACT CIRCLES ================= */
.contact-circle-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 20px 0;
}

/* Circle cards */
.contact-circle-card {
  background: linear-gradient(145deg, #ffffff, #f2f6f5);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #eef3f1;
  transition: all 0.3s ease;
}

.contact-circle-card:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* Circle titles */
.contact-circle-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #F79550;
}

/* Circle text */
.contact-circle-card p {
  font-size: 12px;
  line-height: 1.4;
  color: #0B4038;
}

/* ================= IMAGE / MAP COLUMN ================= */
.image-column {
  flex: 1 1 420px;
  text-align: center;
}

.image-column iframe {
  width: 100%;
  height: 550px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #eef3f1;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 1024px) {
  .text-column h2 {
    font-size: 30px;
  }

  .contact-circle-card {
    width: 120px;
    height: 120px;
    padding: 14px;
  }

  .image-column iframe {
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-column {
    width: 100%;
  }

  .contact-circle-wrapper {
    justify-content: center;
  }

  .image-column iframe {
    height: 350px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .text-column h2 {
    font-size: 24px;
  }

  .contact-circle-card {
    width: 110px;
    height: 110px;
    padding: 12px;
  }

  .image-column iframe {
    height: 280px;
  }
}

/*====================footer=============*/
.site-footer {
    background: var(--color-dark-green);
    color: var(--color-light-peach);
    padding: 40px 20px 20px 20px;
    font-family: var(--font-body);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-cta-orange);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--color-light-peach);
    text-decoration: none;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: var(--color-cta-orange);
}

.footer-section p {
    margin: 5px 0;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: var(--color-light-peach);
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
}

/* Tablet & small desktops */
@media (max-width: 1024px) {
  .footer-container {
    gap: 25px;
  }

  .footer-section h3 {
    font-size: 16px;
  }

  .footer-section ul li a,
  .footer-section p {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* Tablets / large phones */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .footer-section h3 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer-section ul li a,
  .footer-section p {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .site-footer {
    padding: 30px 15px 15px 15px;
  }

  .footer-section h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-section ul li a,
  .footer-section p {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
  }
}

/* Extra small phones */
@media (max-width: 360px) {
  .site-footer {
    padding: 25px 10px 10px 10px;
  }

  .footer-section h3 {
    font-size: 13px;
  }

  .footer-section ul li a,
  .footer-section p {
    font-size: 11px;
  }

  .footer-bottom {
    font-size: 10px;
  }
}

/*=====================================================Order Page======================================*/
.order-hero {
  position: relative;
  min-height: 65vh;       
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0px 20px;    
  color: #ffffff;
  overflow: hidden;
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* Dark Overlay */
.order-hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);   
  z-index: -1;
}

/* Content Wrapper */
.order-hero-content {
  max-width: 750px;
  padding: 20px 15px;     
  animation: fadeUp 1.2s ease forwards;
}

/* Main Title */
.order-hero h1 {
  font-size: 42px;          
  font-weight: 700;
  margin-bottom: 25px;
}

/* Subtitle */
.order-hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #e6f4ec;
}

/* Paragraph */
.order-hero p {
  font-size: 15px;
  line-height: 1.6;
  color: #e6f4ec;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .order-hero {
    min-height: 55vh;
  }
  .order-hero h1 {
    font-size: 32px;
  }
  .order-hero-subtitle {
    font-size: 18px;
  }
  .order-hero p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .order-hero {
    min-height: 50vh;
    padding: 15px 10px;
  }
  .order-hero h1 {
    font-size: 26px;
  }
  .order-hero-subtitle {
    font-size: 16px;
  }
  .order-hero p {
    font-size: 13px;
  }
}

/* ===== MAIN CONTAINER ===== */
.delivery-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8fbf8, #ffffff);
  font-family: "Segoe UI", Arial, sans-serif;
}
/* ===== LAYOUT ===== */
.top-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px;
}

/* ===== CARD BASE ===== */
.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 10px;
  overflow: hidden;
  position: relative;
    text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);

  /* Animation initial state */
  opacity: 0;
  transform: translateY(60px) scale(0.95);

  /* Animation */
  animation: fadeUp 0.8s ease forwards;
}

/* ===== STAGGER EFFECT ===== */
.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }
.card:nth-child(3) { animation-delay: 0.6s; }

/* ===== KEYFRAME ===== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== IMAGE ===== */
.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 8px;
  transition: transform 0.5s ease;
}

/* ===== HOVER EFFECT ===== */
.card {
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 30px 70px rgba(0,0,0,0.15),
    0 0 0 1px rgba(23,132,111,0.15),
    0 0 25px rgba(23,132,111,0.15);
}

/* IMAGE ZOOM */
.card:hover img {
  transform: scale(1.1);
}

/* ===== OVERLAY EFFECT ===== */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.05);
  opacity: 0;
  transition: 0.4s;
}

.card:hover::after {
  opacity: 1;
}

/* ===== TEXT STYLING ===== */
.card h3 {
  font-size: 14px;
  color: #0B4038;
  margin-bottom: 10px;
  position: relative;
}

/* Underline animation */
.card h3::after {
  content: "";
  width: 0;
  height: 3px;
  background: #17846F;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.4s;
}

.card:hover h3::after {
  width: 50px;
}

/* TEXT */
.card p {
  font-size: 12px;
  color: #444;
  margin-bottom: 10px;
}


.card ul {
  text-align: left;
  padding-left: 18px;
  margin: 10px 0;
}

.card li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #17846F;
}

.note {
  font-size: 13px;
  color: #777;
}

.card ul li {
  margin-bottom: 6px;
  font-size: 12px;
}

/* LIST COLOR */
.card ul li::marker {
  color: #17846F;
}

/* SPECIAL TEXT */
.phone {
  font-weight: 600;
  color: #17846F;
}

.address {
  font-size: 13px;
  color: #777;
}

.note {
  font-size: 12px;
  color: #999;
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .top-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .top-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== ORDER SECTION ===== */
.order-section {
  margin-bottom: 80px;
}

.order-section h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 35px;
  color: #0B4038;
  position: relative;
}

/* underline accent */
.order-section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #17846F;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== BOX ===== */
.order-box {
  display: flex;
  gap: 40px;
  align-items: center;

  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);

  padding: 35px;
  border-radius: 25px;

  box-shadow: 
    0 25px 60px rgba(0,0,0,0.08),
    0 0 0 1px rgba(0,0,0,0.04);

  transition: 0.4s ease;
}

.order-box:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 35px 80px rgba(0,0,0,0.12);
}

/* ===== LEFT ===== */
.order-steps {
  flex: 1;
}

/* ===== RIGHT IMAGE ===== */
.order-image {
  flex: 1;
  overflow: hidden;
  border-radius: 18px;
}

.order-image img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.order-box:hover .order-image img {
  transform: scale(1.08);
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  background: #f3f5f4;
  padding: 6px;
  border-radius: 30px;
}

/* TAB BUTTON */
.tab {
  flex: 1;
  padding: 10px 15px;
  border: none;
  background: transparent;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
}

/* ACTIVE TAB */
.tab.active {
  background: linear-gradient(135deg, #17846F, #0B4038);
  color: #fff;
  box-shadow: 0 5px 15px rgba(23,132,111,0.3);
}

/* HOVER */
.tab:hover {
  color: #0B4038;
}

/* ===== TAB CONTENT ===== */
.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

/* SMOOTH FADE */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content ol {
  padding-left: 18px;
  margin-bottom: 15px;
}

.tab-content li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #17846F;
  position: relative;
}

/* number highlight */
.tab-content li::marker {
  color: #E15B47;
  font-weight: bold;
}

/* NOTE */
.note {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

/* ===== BUTTON ===== */
.order-btn-2 {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 26px;

  background: linear-gradient(135deg, #E15B47, #F79550);
  color: #fff;

  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;

  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(225,91,71,0.3);
}

/* BUTTON HOVER */
.order-btn-2:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(225,91,71,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .order-box {
    flex-direction: column;
    padding: 25px;
  }

  .tabs {
    flex-direction: column;
  }

  .tab {
    width: 100%;
  }

  .order-image {
    width: 100%;
  }
}
/* ===== DELIVERY AREAS ===== */
.delivery-areas {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px 25px;

  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px);

  border-radius: 25px;

  box-shadow: 
    0 25px 60px rgba(0,0,0,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.4);

  position: relative;
  overflow: hidden;
}

/* subtle glow background */
.delivery-areas::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(23,132,111,0.15), transparent 60%);
  top: -50%;
  left: -50%;
  opacity: 0;
  transition: 0.6s;
}

.delivery-areas:hover::before {
  opacity: 1;
}

/* ===== TITLE ===== */
.delivery-areas h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0B4038;
  position: relative;
}

/* underline */
.delivery-areas h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #17846F;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ===== TAGS WRAPPER ===== */
.tags {
  margin: 25px 0;
}

/* ===== TAG PILLS ===== */
.tags span {
  display: inline-block;
  padding: 10px 18px;
  margin: 6px;

  background: linear-gradient(135deg, #17846F, #0B4038);
  color: #fff;

  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;

  transition: all 0.35s ease;
  cursor: default;

  box-shadow: 0 8px 20px rgba(23,132,111,0.25);
}

/* hover floating effect */
.tags span:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 
    0 15px 35px rgba(23,132,111,0.35),
    0 0 15px rgba(23,132,111,0.2);
}

/* ===== DESCRIPTION TEXT ===== */
.delivery-areas p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ===== ENTRY ANIMATION ===== */
.delivery-areas {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUpSection 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeUpSection {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {

  .delivery-areas {
    padding: 30px 15px;
  }

  .tags span {
    font-size: 12px;
    padding: 8px 14px;
  }
}
/* ===== ACCORDION WRAPPER ===== */
.accordion {
  max-width: 850px;
  margin: auto;
  margin-bottom: 60px;
  padding: 10px;
}

/* ===== ITEM ===== */
.acc-item {
  margin-bottom: 14px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.4s ease;

  /* animation */
  opacity: 0;
  transform: translateY(20px);
  animation: accFade 0.6s ease forwards;
}

/* stagger effect */
.acc-item:nth-child(1) { animation-delay: 0.2s; }
.acc-item:nth-child(2) { animation-delay: 0.35s; }
.acc-item:nth-child(3) { animation-delay: 0.5s; }

@keyframes accFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== BUTTON ===== */
.acc-btn {
  width: 100%;
  padding: 18px 20px;
  background: linear-gradient(135deg, #E55D45, #F79550);
  color: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: all 0.3s ease;
}

/* icon arrow */
.acc-btn::after {
  content: "▾";
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* rotate when active */
.acc-item.active .acc-btn::after {
  transform: rotate(180deg);
}

/* hover effect */
.acc-btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* ===== CONTENT ===== */
.acc-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #ffffff;
  transition: all 0.4s ease;
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* open state */
.acc-item.active .acc-content {
  max-height: 500px;
  padding: 18px 20px;
}

/* ===== TEXT ===== */
.acc-content ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.acc-content li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #444;
  position: relative;
}

/* custom bullet */
.acc-content li::marker {
  color: #17846F;
}

/* paragraph */
.acc-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ===== ACTIVE STATE ACCENT ===== */
.acc-item.active {
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-left: 4px solid #E55D45;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .acc-btn {
    font-size: 14px;
    padding: 15px;
  }

  .acc-content {
    padding: 0 15px;
  }

  .acc-item.active .acc-content {
    padding: 15px;
  }
}
/* ===== CONTACT ===== */
.delivery-contact {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, #0B4038, #17846F);
  border-radius: 25px;
  color: #fff;
}

.delivery-contact h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.delivery-contact p {
  margin-bottom: 20px;
}

.contact-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-box div {
  background: #fff;
  color: #0B4038;
  padding: 15px 20px;
  border-radius: 20px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-box div:hover {
  transform: translateY(-5px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  .order-box {
    flex-direction: column;
  }

  .card {
    text-align: center;
  }

  .contact-box {
    flex-direction: column;
  }

}
/*===============================================Menu Page=============================================*/
.menu-hero {
  position: relative;
   background: url("img/menu-hero01.webp") center/cover no-repeat;
  width: 100%;
  height: 65vh;
  overflow: hidden;
}

/* Slider Images */
.menu-hero-slider img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  animation:heroSlider 15s infinite;
}
.menu-hero-slider img {
  transition: opacity 1s ease-in-out;
}
/* Delay for each image */
.menu-hero-slider img:nth-child(1){animation-delay:0s;}
.menu-hero-slider img:nth-child(2){animation-delay:5s;}
.menu-hero-slider img:nth-child(3){animation-delay:10s;}

@keyframes heroSlider{
  0%{opacity:0;}
  10%{opacity:1;}
  30%{opacity:1;}
  40%{opacity:0;}
  100%{opacity:0;}
}

/* Overlay */
.menu-hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
  z-index:2;
}

/* Content */
.menu-hero-content{
  position:relative;
  z-index:3;
  text-align:center;
  color:#fff;
  top:50%;
  transform:translateY(-50%);
}
.menu-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.menu-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.menu-hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #E15B47;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.menu-hero-btn:hover {
  background: #c94b38;
}
/* ===== Large Tablets / Small Desktops ===== */
@media (max-width: 1024px) {
  .menu-hero {
    height: 55vh;
  }

  .menu-hero-content h1 {
    font-size: 2.5rem;
  }

  .menu-hero-content p {
    font-size: 1.1rem;
  }

  .menu-hero-btn {
    padding: 10px 25px;
    font-size: 15px;
  }
}

/* ===== Tablets ===== */
@media (max-width: 768px) {
  .menu-hero {
    height: 50vh;
  }

  .menu-hero-content h1 {
    font-size: 2rem;
  }

  .menu-hero-content p {
    font-size: 1rem;
  }

  .menu-hero-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* ===== Large Phones ===== */
@media (max-width: 480px) {
  .menu-hero {
    height: 45vh;
  }

  .menu-hero-content h1 {
    font-size: 1.7rem;
  }

  .menu-hero-content p {
    font-size: 0.95rem;
  }

  .menu-hero-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* ===== Small Phones / Extra Small Devices ===== */
@media (max-width: 360px) {
  .menu-hero {
    height: 40vh;
  }

  .menu-hero-content h1 {
    font-size: 1.5rem;
  }

  .menu-hero-content p {
    font-size: 0.9rem;
  }

  .menu-hero-btn {
    padding: 7px 18px;
    font-size: 12px;
  }
}
/* ==========================================
   CATEGORY TITLES & SUB-TITLES
========================================== */
.sf-category-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0B4038;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  margin-left: 70px;
  margin-top: 50px;
}

.sf-category-title::after {
  content: "";
  width: 60%;
  height: 4px;
  background: #ff7a00;
  position: absolute;
  left: 0;
  bottom: -6px;
  border-radius: 5px;
}

.sf-sub-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 30px auto 10px;
  color: #0B4038;
  width: 90%;
}

/* ==========================================
   MENU GRID & CARDS
========================================== */
.sf-menu-grid {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  margin-top: 15px;
}

.sf-menu-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}

.sf-menu-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: #f5f5f5;
  border-radius: 20px 20px 0 0;
}

.sf-card-body {
  padding: 16px 18px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sf-card-body h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #0B4038;
}

.sf-card-body p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
}

/* Price Options */
.sf-price-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.sf-price-options span {
  background: #F79550;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Ingredients Button */
.sf-ingredients-btn {
  background: #E8F5F1;
  border: 1px solid #0B4038;
  color: #0B4038;
  font-size: 12px;
  cursor: pointer;
  padding: 4px 10px;
  margin: 6px 0 4px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.sf-ingredients-btn:hover {
  background: #0B4038;
  color: #fff;
}

.sf-ingredients {
  font-size: 12px;
  line-height: 1.5;
  color: #444;
  margin-top: 6px;
  padding: 6px 8px;
  background: #F7FAF9;
  border-left: 3px solid #0B4038;
  border-radius: 6px;
  display: none;
}
.sf-ingredients-btn {
  position: relative;
  overflow: hidden;
}

.sf-ingredients-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: 0.4s;
}

.sf-ingredients-btn:hover::after {
  transform: translateX(0);
}

/* Tags */
.sf-tag.spicy { background: #e63946; }
.sf-tag.kids { background: #2a9d8f; }
.sf-tag.new { background: #ff7a00; }


/*   RESPONSIVE BREAKPOINTS*/

@media (max-width: 1200px) {
  .sf-menu-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .sf-menu-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (max-width: 600px) {
  .sf-menu-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sf-card-body h3 { font-size: 12px; }
  .sf-card-body p { font-size: 11px; }
  .sf-price-options span { font-size: 10px; padding: 3px 6px; }
}

@media (max-width: 400px) {
  .sf-menu-grid { grid-template-columns: 1fr; }
}

.menu-cta {
  background: var(--green-soft);
  text-align: center;
  padding: 70px 20px;
}

.menu-cta h2 {
  color: var(--green-dark);
  margin-bottom: 12px;
}

.menu-cta p {
  margin-bottom: 22px;
  color: #555;
}

.cta-btn {
  background: #e15b47;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
  background: #e66f00;
}

@media (max-width: 1400px) {
  .sf-menu-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1200px) {
  .sf-menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .sf-menu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .sf-menu-card img {
    height: 130px;
  }
}

@media (max-width: 480px) {
  .sf-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sf-menu-card img {
    height: 120px;
  }
}

@media (max-width: 360px) {
  .sf-menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-slider-container {
  width: 90%;
  margin: 60px auto; 
  overflow: hidden;
  position: relative;
}

.menu-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.menu-slide-card {
  flex: 0 0 250px; 
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transform: scale(0.8);
  transition: transform 0.5s, box-shadow 0.5s;
}

.menu-slide-card.active {
  transform: scale(1);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.menu-slide-card img {
  width: 100%;
  display: block;
}

.menu-slide-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
}

.menu-slide-card span {
  display: block;
  color: #ff7a00;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  min-height: 100vh;       
  background-color: #f4faf6; 
  padding: 20px;
}

.menu-slider-container {
  width: 90%;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px; 
}

.menu-slider-container {
  width: 90%;
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center; 
}

.menu-slider-track {
  display: flex;
  gap: 20px;
  /* slow horizontal floating */
  animation: floatSideways 8s ease-in-out infinite alternate;
}

@keyframes floatSideways {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px); 
  }
  100% {
    transform: translateX(-20px); 
  }
}

.menu-slide-card {
  flex: 0 0 250px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.5s, box-shadow 0.5s;
}

.menu-slide-card img {
  width: 100%;
  display: block;
}

.menu-slide-card h3 {
  margin: 10px 0 5px;
  font-size: 1.2rem;
}

.menu-slide-card span {
  display: block;
  color: #ff7a00;
  font-weight: bold;
  margin-bottom: 10px;
}
.menu-slider-title {
  text-align: center;   
  margin-top: 50px;     
  font-size: 2.5rem;    
  color: #0B4038;       
}

.menu-slider-title::after {
  content: "";
  display: block;
  width: 0;            
  height: 4px;
  background-color: #ff7a00; 
  margin: 10px auto 0 auto;
  border-radius: 2px;
  animation: underlineGrow 1s forwards;
  animation-delay: 1s;
}

/* Slide & Fade animation from bottom */
@keyframes slideFadeInAfter {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes underlineGrow {
  0% { width: 0; }
  100% { width: 30%; } 
}

/* ==========================
   RESPONSIVE BREAKPOINTS
   ========================== */

/* Large tablets / laptops */
@media (max-width: 1100px) {
  .menu-slide-card {
    flex: 0 0 220px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .menu-slide-card {
    flex: 0 0 200px;
  }

  .menu-slider-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-slider-container {
    overflow: visible;
  }

  .menu-slider-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    animation: none;
  }

  .menu-slide-card {
    flex: unset;
    width: 100%;
  }

  .menu-slide-card h3 {
    font-size: 0.95rem;
  }

  .menu-slide-card span {
    font-size: 0.8rem;
  }
}

/* Small phones */
@media (max-width: 420px) {
  .menu-slider-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* IMAGE MODAL POPUP */
.image-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.image-modal .modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
}

.image-modal #caption {
  margin: 15px auto;
  text-align: center;
  color: #fff;
  font-size: 1rem;
}

.image-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.image-modal .close-modal:hover {
  color: #ff7a00;
}
/*========================================Corporate-Catering Page======================================*/
.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 30px;
  margin-top: 1px;
  font-weight: 600;

   background: linear-gradient(
    90deg,
    #E55D45,
    #F79550,
    #F79550,
    #E55D45
  );

  background-size: 300% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  animation: shineMove 20s linear infinite;

  letter-spacing: 0.5px;
}

/* Smooth continuous shine */
@keyframes shineMove{
  0%{
    background-position: 0% center;
  }
  100%{
    background-position: 300% center;
  }
}

/* SECTION */
.luxury-services {
  padding: 40px 20px 80px;
  background: linear-gradient(180deg, #0B4038, #17846F);
  color: #fff;
  text-align: center;
  margin-top: 1px;
}

/* GRID */
.services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

/* CARD */
.service-card {
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* IMAGE */
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  inset: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, #062b25, transparent);
}

/* TITLE */
.card-overlay h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

/* TEXT */
.card-overlay p {
  font-size: 14px;
  color: #ddd;
}

/* HIDDEN CONTENT */
.card-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.4s;
}

/* FEATURES */
.image-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.image-features span {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 20px;
}

/* TAGS */
.service-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  overflow-x: auto;
}

.service-tags span {
  background: rgba(255,255,255,0.08);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 11px;
}

/* NOTE */
.note {
  font-size: 11px;
  color: #aaa;
  margin-top: 10px;
}

/* HOVER */
.service-card:hover img {
  transform: scale(1.1);
}

.service-card:hover .card-hidden {
  max-height: 200px;
  opacity: 1;
}

/* Tablet devices (max-width: 1024px) */
@media (max-width: 1024px) {
  .services-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  .service-card {
    height: 380px;
  }

  .card-overlay h3 {
    font-size: 20px;
  }

  .card-overlay p {
    font-size: 13px;
  }

  .image-features span,
  .service-tags span {
    font-size: 10px;
    padding: 3px 8px;
  }

  .note {
    font-size: 10px;
  }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
  .luxury-services {
    padding: 30px 15px 60px;
  }

  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-card {
    height: auto; 
  }

  .card-image img {
    height: 220px;
  }

  .card-overlay {
    position: relative;
    padding: 20px;
    background: #062b25; 
  }

  .card-overlay h3 {
    font-size: 20px;
  }

  .card-overlay p {
    font-size: 13px;
  }

  .card-hidden {
    max-height: none;
    opacity: 1; /* always visible for mobile */
    margin-top: 10px;
  }

  .image-features {
    gap: 5px;
    margin-top: 10px;
  }

  .image-features span,
  .service-tags span {
    font-size: 10px;
    padding: 3px 8px;
  }

  .note {
    font-size: 10px;
  }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
  .luxury-services {
    padding: 25px 10px 50px;
  }

  .card-image img {
    height: 180px;
  }

  .card-overlay h3 {
    font-size: 18px;
  }

  .card-overlay p {
    font-size: 12px;
  }

  .image-features span,
  .service-tags span {
    font-size: 9px;
    padding: 2px 6px;
  }

  .note {
    font-size: 9px;
  }
}

/* Container */
.co-corporate-service-section {
    padding: 50px 20px;
    background: #f9f9f9;
    text-align: center;
}

/* Section Title */
.co-corporate-section-title {
    font-size: 34px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #F79550;
}

/* Cards Wrapper */
.co-service-cards-wrapper {
    display: flex;
    /* wrap to next line if needed */
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card */
.co-service-card {
    position: relative;
    width: 250px;        
    height: 400px;       
    border-radius: 12px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.co-service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
/* Card Image */
.co-service-img {
    width: 100%;
    height: 150px;    
    object-fit: cover;    
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: block;
}

/* Card Title Overlay */
.co-card-title {
    padding: 6px 10px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border-radius: 0 0 12px 12px;
}

/* Hover content always visible */
.co-card-hover-content {
    position: relative;
    width: 100%;
    height: 50%;     
    background-color: #17846F;
    color: #ffffff;
    padding: 8px 10px;
    text-align: left;
    box-sizing: border-box;
    overflow-y: auto;
    font-size: 11px;
}

/* Hover content styling */
.co-card-hover-content h4 {
    font-size: 12px;
    margin-bottom: 4px;
}
.co-card-hover-content p, .co-card-hover-content ul {
    font-size: 11px;
    margin-bottom: 4px;
}
.co-card-hover-content ul {
    padding-left: 15px;
    list-style: disc;
}
.co-note {
    font-size: 10px;
    color: #ffffff;
}

/* Scrollbar for hover content */
.co-card-hover-content::-webkit-scrollbar {
    width: 5px;
}
.co-card-hover-content::-webkit-scrollbar-thumb {
    background-color: rgba(255,255,255,0.3);
    border-radius: 3px;
}
/* Icon list */
.co-icon-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.co-icon-list div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 8px;
}

.co-icon-list img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  margin-bottom: 3px;
}
/* ========== Responsive for Tablets (≤1024px) ========== */
@media (max-width: 1024px) {
    .co-service-cards-wrapper {
        flex-wrap: wrap;
        gap: 18px;
    }

    .co-service-card {
        width: 220px;
        height: 380px;
    }

    .co-service-img {
        height: 140px;
    }

    .co-card-hover-content {
        font-size: 10px;
        padding: 6px 8px;
    }

    .co-card-hover-content h4 {
        font-size: 11px;
    }

    .co-card-hover-content p, 
    .co-card-hover-content ul {
        font-size: 10px;
    }

    .co-icon-list img {
        width: 28px;
        height: 28px;
    }
}

/* ========== Responsive for Small Tablets & Large Mobiles (≤768px) ========== */
@media (max-width: 768px) {
    .co-service-cards-wrapper {
        gap: 15px;
    }

    .co-service-card {
        width: 180px;
        height: 360px;
    }

    .co-service-img {
        height: 130px;
    }

    .co-card-hover-content {
        font-size: 9px;
        padding: 5px 6px;
    }

    .co-card-hover-content h4 {
        font-size: 10px;
    }

    .co-card-hover-content p, 
    .co-card-hover-content ul {
        font-size: 9px;
    }

    .co-icon-list img {
        width: 25px;
        height: 25px;
    }
}

/* ========== Responsive for Mobile Phones (≤480px) ========== */
@media (max-width: 480px) {
    .co-service-cards-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .co-service-card {
        width: 90%;
        max-width: 250px;
        height: auto;
        flex-direction: column;
    }

    .co-service-img {
        height: 150px;
    }

    .co-card-hover-content {
        font-size: 9px;
        height: auto;
        padding: 6px 8px;
    }

    .co-card-hover-content h4 {
        font-size: 11px;
    }

    .co-card-hover-content p, 
    .co-card-hover-content ul {
        font-size: 9px;
    }

    .co-icon-list img {
        width: 25px;
        height: 25px;
    }

    .co-corporate-section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* Section Wrapper */
.inquiry-section {
  padding: 2px 20px;
  background: #ffffff;
  color: #0B4038;
}

/* Flex Container */
.inquiry-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

/* Intro Text */
.inquiry-intro h2 {
  color: #F79550;
  font-size: 26px;
  margin-bottom: 5px;
}

.inquiry-intro h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.inquiry-intro p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

.inquiry-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap; 
  margin-bottom: 20px;
}

/* Slightly compressed image for balance */
.inquiry-image img {
  width: 500px;    
  margin-top: 70px;      
  max-width: 100%;
  height: 500px;         
  border-radius: 12px;
  object-fit: cover;     
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: 0.3s;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .inquiry-image img {
    width: 100%;
    height: 180px;      
  }
}
/* Form + Contact styling */
.inquiry-form-contact {
  flex: 1;
  min-width: 300px; 
}

/* Optional: adjust form width */
.inquiry-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .inquiry-container {
    flex-direction: column;
    align-items: center;
  }

  .inquiry-image img {
    width: 100%;
  }
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 4px 12px;   
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;        
  line-height: 1.3;       
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 30px;    
}

.inquiry-form button {
  width: 100%;
  padding: 10px;          
  background: #E55D45;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;        
  transition: 0.3s;
}

.inquiry-form button:hover {
  background: #F79550;
}

.inquiry-contact-cards {
  display: flex;
  gap: 20px;
  justify-content: flex-start;  
  flex-wrap: nowrap;           
  margin-top: 30px;
  overflow-x: auto;              
  padding-bottom: 10px;   
  margin-bottom: 20px;    
   justify-content: center;    
}

/* Hide scrollbar on Webkit browsers (optional) */
.inquiry-contact-cards::-webkit-scrollbar {
  height: 6px;
}

.inquiry-contact-cards::-webkit-scrollbar-thumb {
  background: rgba(5, 27, 22, 0.2);
  border-radius: 3px;
}

.contact-card {
  background: #F79550;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  width: 300px;      
  flex: 0 0 300px;    
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.contact-card .contact-icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.contact-card h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.contact-card p {
  font-size: 14px;
  color: #ffffff;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .inquiry-contact-cards {
    flex-direction: column;
    gap: 20px;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .inquiry-form button {
    font-size: 14px;
  }

  .inquiry-intro h2 {
    font-size: 22px;
  }

  .inquiry-intro h3 {
    font-size: 18px;
  }

  .inquiry-contact h3 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .inquiry-section {
    padding: 30px 10px;
  }

  .inquiry-intro h2 {
    font-size: 18px;
  }

  .inquiry-intro h3 {
    font-size: 16px;
  }

  .inquiry-contact h3 {
    font-size: 16px;
  }
}
/*===========================================Terms&Conditions Page=====================================*/
.terms-section {
  margin-top: -40px;
  background-color: #fdfdfd;
  color: #0B4038;
  padding: 60px 20px;
}

.terms-container {
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.7;
}

.terms-container h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;

   background: linear-gradient(
    90deg,
    #E55D45,
    #F79550,
    #F79550,
    #E55D45
  );

  background-size: 300% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  animation: shineMove 20s linear infinite;

  letter-spacing: 0.5px;
}

/* Smooth continuous shine */
@keyframes shineMove{
  0%{
    background-position: 0% center;
  }
  100%{
    background-position: 300% center;
  }
}

.terms-container h2 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #17846F;
}

.terms-container ul {
  margin-left: 20px;
  list-style-type: disc;
}

.terms-container a {
  color: #E15B47;
  text-decoration: none;
}

.terms-container a:hover {
  text-decoration: underline;
}
/* ===== Mobile Responsive ===== */
@media (max-width: 1200px) {
  .terms-section {
    padding: 50px 15px; /* Slightly smaller padding */
  }

  .terms-container {
    max-width: 95%;
  }

  .terms-container h1 {
    font-size: 32px; /* Slightly smaller heading */
  }

  .terms-container h2 {
    font-size: 18px;
  }

  .terms-container ul {
    margin-left: 18px;
  }

  .terms-container p,
  .terms-container li {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .terms-section {
    padding: 40px 12px;
  }

  .terms-container h1 {
    font-size: 28px;
  }

  .terms-container h2 {
    font-size: 17px;
  }

  .terms-container p,
  .terms-container li {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .terms-section {
    padding: 30px 10px;
  }

  .terms-container h1 {
    font-size: 24px;
  }

  .terms-container h2 {
    font-size: 16px;
  }

  .terms-container p,
  .terms-container li {
    font-size: 13px;
  }

  .terms-container ul {
    margin-left: 15px;
  }
}

@media (max-width: 480px) {
  .terms-section {
    padding: 25px 8px;
  }

  .terms-container h1 {
    font-size: 20px;
  }

  .terms-container h2 {
    font-size: 15px;
  }

  .terms-container p,
  .terms-container li {
    font-size: 12px;
  }

  .terms-container ul {
    margin-left: 12px;
  }
}
/*==============================================Refund & Return Page===================================*/
.refund-section {
  background-color: #fdfdfd;
  color: #0B4038;
  padding: 60px 20px;
  margin-top: -40px;

}

.refund-container {
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.7;
}

.refund-container h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
    background: linear-gradient(
    90deg,
    #E55D45,
    #F79550,
    #F79550,
    #E55D45
  );

  background-size: 300% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  animation: shineMove 20s linear infinite;

  letter-spacing: 0.5px;
}

/* Smooth continuous shine */
@keyframes shineMove{
  0%{
    background-position: 0% center;
  }
  100%{
    background-position: 300% center;
  }
}

.refund-container h2 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color:#17846F;
}

.refund-container ul {
  margin-left: 20px;
  list-style-type: disc;
}

.refund-container a {
  color: #E15B47;
  text-decoration: none;
}

.refund-container a:hover {
  text-decoration: underline;
}
/* Base styles (already defined) */
.refund-section {
  background-color: #fdfdfd;
  color: #0B4038;
  padding: 60px 20px;
  margin-top: -40px;
}

.refund-container {
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.7;
}

.refund-container h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    #E55D45,
    #F79550,
    #F79550,
    #E55D45
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shineMove 20s linear infinite;
  letter-spacing: 0.5px;
}

@keyframes shineMove {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.refund-container h2 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #17846F;
}

.refund-container ul {
  margin-left: 20px;
  list-style-type: disc;
}

.refund-container a {
  color: #E15B47;
  text-decoration: none;
}

.refund-container a:hover {
  text-decoration: underline;
}

/* Mobile & Tablet Responsive Adjustments */
@media (max-width: 1024px) {
  .refund-section {
    padding: 50px 15px;
    margin-top: -20px;
  }

  .refund-container h1 {
    font-size: 28px;
  }

  .refund-container h2 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .refund-section {
    padding: 40px 15px;
    margin-top: -10px;
  }

  .refund-container h1 {
    font-size: 24px;
  }

  .refund-container h2 {
    font-size: 16px;
  }

  .refund-container ul {
    margin-left: 15px;
  }
}

@media (max-width: 480px) {
  .refund-section {
    padding: 30px 10px;
    margin-top: 0;
  }

  .refund-container h1 {
    font-size: 20px;
  }

  .refund-container h2 {
    font-size: 14px;
  }

  .refund-container ul {
    margin-left: 10px;
  }
}
/*============Privacy Policy Page===========================*/
.privacy-section {
  background-color: #fdfdfd;
  color: #0B4038;
  padding: 60px 20px;
}

.privacy-container {
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.7;
}

.privacy-container h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;

    background: linear-gradient(
    90deg,
    #E55D45,
    #F79550,
    #F79550,
    #E55D45
  );

  background-size: 300% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  animation: shineMove 20s linear infinite;

  letter-spacing: 0.5px;
}

/* Smooth continuous shine */
@keyframes shineMove{
  0%{
    background-position: 0% center;
  }
  100%{
    background-position: 300% center;
  }
}

.privacy-container h2 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #17846F;
}

.privacy-container h3 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 8px;
}

.privacy-container ul {
  margin-left: 20px;
  list-style-type: disc;
}

.privacy-container a {
  color: #E15B47;
  text-decoration: none;
}

.privacy-container a:hover {
  text-decoration: underline;
}

/* Base styles */
.privacy-section {
  background-color: #fdfdfd;
  color: #0B4038;
  padding: 60px 20px;
}

.privacy-container {
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.7;
}

.privacy-container h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
  background: linear-gradient(
    90deg,
    #E55D45,
    #F79550,
    #F79550,
    #E55D45
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: shineMove 20s linear infinite;
  letter-spacing: 0.5px;
}

@keyframes shineMove {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

.privacy-container h2 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #17846F;
}

.privacy-container h3 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 8px;
}

.privacy-container ul {
  margin-left: 20px;
  list-style-type: disc;
}

.privacy-container a {
  color: #E15B47;
  text-decoration: none;
}

.privacy-container a:hover {
  text-decoration: underline;
}

/* Responsive for tablets */
@media (max-width: 1024px) {
  .privacy-section {
    padding: 50px 15px;
  }

  .privacy-container h1 {
    font-size: 28px;
  }

  .privacy-container h2 {
    font-size: 18px;
  }

  .privacy-container h3 {
    font-size: 16px;
  }
}

/* Responsive for small tablets / large phones */
@media (max-width: 768px) {
  .privacy-section {
    padding: 40px 15px;
  }

  .privacy-container h1 {
    font-size: 24px;
  }

  .privacy-container h2 {
    font-size: 16px;
  }

  .privacy-container h3 {
    font-size: 15px;
  }

  .privacy-container ul {
    margin-left: 15px;
  }
}

/* Responsive for mobile phones */
@media (max-width: 480px) {
  .privacy-section {
    padding: 30px 10px;
  }

  .privacy-container h1 {
    font-size: 20px;
  }

  .privacy-container h2 {
    font-size: 14px;
  }

  .privacy-container h3 {
    font-size: 13px;
  }

  .privacy-container ul {
    margin-left: 10px;
  }
}

/*======================================Contact Page==================================================*/
.contact-hero {
  position: relative;
  width: 100%;
  height: 420px;
  background: url("../img/contact-hero.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #17846F; 
}

/* Dark Overlay */
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.600);
}

/* Content */
.contact-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 20px;
}

.contact-hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
}
/* ================= Mobile First ================= */

/* Tablets / Medium Screens (≤1024px) */
@media (max-width: 1024px) {
  .contact-hero {
    height: 360px;
  }

  .contact-hero-title {
    font-size: 36px;
  }

  .contact-hero-subtitle {
    font-size: 16px;
  }
}

/* Small Tablets / Large Phones (≤768px) */
@media (max-width: 768px) {
  .contact-hero {
    height: 320px;
  }

  .contact-hero-title {
    font-size: 30px;
  }

  .contact-hero-subtitle {
    font-size: 15px;
  }
}

/* Mobile / Portrait Phones (≤480px) */
@media (max-width: 480px) {
  .contact-hero {
    height: 280px;
  }

  .contact-hero-title {
    font-size: 24px;
  }

  .contact-hero-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }
}
.contact-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 80px 20px;
  background: #f0faf5;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.contact-info h1 {
  font-size: 42px;
  color: #2f6b3f;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 17px;
  color: #555;
  margin-bottom: 30px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  background: rgba(255,255,255,0.85);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateX(8px);
}

.info-card i {
  font-size: 28px;
  color: #2f6b3f;
}

.info-card a {
  color: #2f6b3f;
  font-weight: 600;
  text-decoration: none;
}

/* Right Form Card with Glass Effect */
.contact-form-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #2f6b3f;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #2f6b3f;
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: #1f5f3b;
}

/* Floating social icons */
.floating-social {
  position: fixed;
  top: 50%;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transform: translateY(-50%);
  z-index: 3;
}

.floating-social a {
  background: #e15b47;
  color: white;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  transition: 0.3s ease;
}

.floating-social a:hover {
  background: #e15b47;
  transform: scale(1.2);
}

/* Animated Background Circles */
.bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
  animation: float 10s ease-in-out infinite alternate;
}

.circle1 {
  width: 300px;
  height: 300px;
  background: #2f6b3f;
  top: -50px;
  left: -80px;
}

.circle2 {
  width: 400px;
  height: 400px;
  background: #ff7a00;
  bottom: -100px;
  right: -100px;
  animation-duration: 12s;
}

@keyframes float {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(20px) translateX(10px); }
  100% { transform: translateY(0) translateX(0); }
}

/* ================= Mobile First ================= */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr; /* stack sections */
    gap: 40px;
    padding: 0 20px;
  }

  .contact-info h1 {
    font-size: 36px;
  }

  .contact-info p {
    font-size: 16px;
  }

  .info-cards {
    gap: 15px;
  }

  .info-card i {
    font-size: 24px;
  }

  .contact-form-card {
    padding: 25px;
  }

  .contact-form h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .contact-page {
    padding: 60px 15px;
  }

  .floating-social {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
  }

  .floating-social a {
    margin: 0 8px;
  }

  .contact-form-card {
    border-radius: 16px;
    padding: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-form button {
    font-size: 15px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .contact-info h1 {
    font-size: 28px;
  }

  .contact-info p {
    font-size: 14px;
  }

  .info-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
  }

  .info-card i {
    margin-bottom: 8px;
  }

  .contact-form h2 {
    font-size: 20px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px;
  }

  .contact-form button {
    padding: 10px;
  }
}

.newsletter {
  max-width: 90%;
  margin: 40px auto;
  background: linear-gradient(135deg, #E55D45, #F79550);
  padding: 70px 30px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  margin-top: -40px;
}


.newsletter-content {
  max-width: 900px;
  width: 90%;
  text-align: center;
  color: #fff;
}

.newsletter-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.newsletter-content p {
  opacity: 0.9;
  margin-bottom: 28px;
}

/* FORM */
.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.floating-input {
  position: relative;
  flex: 1;
  min-width: 240px;
}

.floating-input input {
  width: 100%;
  padding: 14px 12px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  background: transparent;
  color: #fff;
}

.floating-input input::placeholder {
  color: transparent;
}

.floating-input label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  pointer-events: none;
 
  padding: 0 6px;
  transition: 0.25s ease;
}

/* Floating effect */
.floating-input input:focus + label,
.floating-input input:valid + label {
  top: -17px;
  font-size: 12px;
  color: #fff;
}

/* Focus border */
.floating-input input:focus {
  border-color: #fff;
}

.newsletter-form button {
  padding: 14px 24px;
  background: #fff;
  color: #E15B47;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
}

.newsletter-form button:hover {
  background: #ffe7df;
}

/* ================= MOBILE (≤480px) ================= */
@media (max-width: 480px) {
  .newsletter {
    max-width: 96%;
    padding: 45px 18px;
    border-radius: 14px;
  }

  .newsletter-content {
    width: 100%;
  }

  .newsletter-content h2 {
    font-size: 20px;
  }

  .newsletter-content p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 14px;
  }

  .floating-input {
    min-width: 100%;
  }

  .newsletter-form button {
    width: 100%;
    padding: 13px;
    font-size: 14px;
  }
}

/* ================= SMALL TABLETS (481px – 768px) ================= */
@media (max-width: 768px) {
  .newsletter {
    max-width: 94%;
    padding: 55px 24px;
  }

  .newsletter-content h2 {
    font-size: 22px;
  }

  .newsletter-content p {
    font-size: 14px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* ================= TABLETS / SMALL LAPTOPS (769px – 1024px) ================= */
@media (max-width: 1024px) {
  .newsletter {
    max-width: 92%;
    padding: 60px 28px;
  }

  .newsletter-content h2 {
    font-size: 24px;
  }
}

/* ================= LARGE SCREENS (≥1200px) ================= */
@media (min-width: 1200px) {
  .newsletter-content h2 {
    font-size: 30px;
  }
}

  /* Section */
.visit-salad-section{
  padding:90px 20px;
  background:#f9fafb;
}

/* Container */
.visit-salad-container{
  max-width:800px;
  margin:auto;
  text-align:center;
}

/* Title */
.visit-salad-title{
  font-size:34px;
  font-weight:700;
  margin-bottom:45px;
  color:#0B4038;
  position:relative;
  display:inline-block;
}

/* underline accent */
.visit-salad-title::after{
  content:"";
  width:70px;
  height:4px;
  background:#E15B47;
  display:block;
  margin:14px auto 0;
  border-radius:3px;
}

/* Map card */
.visit-salad-map-card{
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,0.12);
  transition:0.4s ease;
}

/* Map */
.visit-salad-map-card iframe{
  width:100%;
  height:280px;
  border:0;
  display:block;
}

/* Responsive */
@media (max-width:768px){

.visit-salad-title{
  font-size:26px;
}

.visit-salad-map-card iframe{
  height:420px;
}

}


