:root {
    --primary: #E59835; 
    --primary-hover: #c98227;
    --secondary: #1a1e18; 
    --whatsapp: #25D366; 
    --location-pin: #E63946; 
    --bg-light: #F4F6F8;
    --text-dark: #212529;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; scroll-behavior: smooth; }
body { background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; padding-bottom: 110px; }

/* --- Hero Section --- */
.hero {
    background: linear-gradient(to bottom, rgba(26, 30, 24, 0.7), rgba(26, 30, 24, 0.95)), 
                url('https://images.unsplash.com/photo-1533777857889-4be7c70b33f7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    min-height: 90vh;
    display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: var(--white); padding: 20px;
}

.hero-main-img { width: 130px; height: 130px; border-radius: 50%; object-fit: cover; border: 4px solid var(--primary); margin-bottom: 20px; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 800; margin-bottom: 10px; line-height: 1.1; text-transform: uppercase; }
.hero h1 span { color: var(--primary); }
.hero p.desc { font-size: 1.15rem; margin-bottom: 20px; color: #d1d5db; max-width: 650px; }
.hero p.hours { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin-bottom: 30px; background: rgba(255,255,255,0.1); padding: 5px 15px; border-radius: 20px; border: 1px solid rgba(229, 152, 53, 0.3); }

/* Buttons */
.btn { background-color: var(--primary); color: var(--white); padding: 15px 25px; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 1.1rem; display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer; transition: 0.3s; }
.btn:hover { background-color: var(--primary-hover); transform: translateY(-3px); }
.btn-whatsapp { background-color: var(--whatsapp); }
.btn-location { background-color: var(--location-pin); animation: pulse-red 2s infinite; }
@keyframes pulse-red { 0% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(230, 57, 70, 0); } 100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); } }

/* --- Scrolling Reviews Marquee --- */
.reviews-container { background: var(--secondary); padding: 25px 0; overflow: hidden; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); border-top: 1px solid rgba(255,255,255,0.1); }
.reviews-track { display: flex; width: max-content; animation: scroll-left 45s linear infinite; gap: 20px; padding-left: 20px; }
.review-card { background: var(--white); padding: 15px; border-radius: 10px; width: 320px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.review-header { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: #eee; display: flex; align-items: center; justify-content: center; font-weight: bold; color: var(--primary); }
.review-stars { color: #FBBC05; font-size: 0.9rem; }
.review-text { font-size: 0.85rem; color: #444; font-style: italic; line-height: 1.5; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Sections & Layout --- */
.section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

/* --- HIGH VISIBILITY DIETARY SEO SECTION --- */
.dietary-seo-section { max-width: 850px; margin: 0 auto 50px auto; text-align: center; }
.dietary-highlights { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 15px; }

.diet-hl-item { background: var(--white); padding: 16px 28px; border-radius: 50px; display: flex; align-items: center; gap: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 2px solid; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.diet-hl-item:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }
.diet-hl-item h3 { font-size: 1.15rem; font-weight: 800; margin: 0; line-height: 1; }
.diet-hl-gf { color: var(--primary); border-color: rgba(229, 152, 53, 0.4); }
.diet-hl-gf i { font-size: 1.4rem; }
.diet-hl-veg { color: #1e8e3e; border-color: rgba(30, 142, 62, 0.3); }
.diet-hl-veg i { font-size: 1.4rem; }
.dietary-seo-text { color: var(--text-muted); font-size: 1rem; margin-top: 25px; line-height: 1.6; }
.dietary-seo-text strong { color: var(--secondary); font-weight: 700; }

/* --- MOBILE SLIDER ENGINE --- */
.menu-category { margin-bottom: 50px; }
.menu-category-title { font-size: 2rem; color: var(--secondary); border-left: 5px solid var(--primary); padding-left: 15px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.slider-container { display: flex; gap: 20px; overflow-x: auto; padding: 10px 5px 25px 5px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.slider-container::-webkit-scrollbar { display: none; }

.card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.06); flex: 0 0 280px; scroll-snap-align: start; display: flex; flex-direction: column; }
.card-img {width: 100%;height: 370px;object-fit: cover;}
.card-content { padding: 15px; display: flex; flex-direction: column; justify-content: space-between; flex-grow: 1; }
.card-content h4 { color: var(--secondary); font-size: 1.15rem; margin-bottom: 5px; }
.card-content p { color: #666; font-size: 0.9rem; }

@media (min-width: 1024px) { .slider-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); overflow-x: visible; } .card { flex: unset; } }

.badges-wrapper { display: flex; gap: 6px; margin-bottom: 8px; flex-wrap: wrap; }
.diet-badge { font-size: 0.65rem; padding: 3px 8px; border-radius: 6px; font-weight: 700; text-transform: uppercase; }
.badge-v { background: #e6f4ea; color: #1e8e3e; } 
.badge-spicy { background: #fce8e6; color: #d93025; } 
.badge-gf { background: #fef7e0; color: #b06000; }

/* --- Reservation Form --- */
.reservation-box { background: var(--white); padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); max-width: 700px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid input, .form-grid select { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Outfit', sans-serif; font-size: 1rem; }
.form-grid input:focus, .form-grid select:focus { outline: none; border-color: var(--primary); }
.full-width { grid-column: 1 / -1; }

/* --- Sports Section Banner --- */
.sports-banner { background: linear-gradient(rgba(26, 30, 24, 0.85), rgba(26, 30, 24, 0.85)), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover; color: var(--white); border-radius: 20px; padding: 40px 20px; margin-top: 40px; }

/* --- FAQ Slider Specific Styling --- */
.faq-card { background: var(--white); padding: 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-left: 4px solid var(--primary); }
.faq-card h4 { color: var(--secondary); font-size: 1.15rem; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.3; }
.faq-card h4 i { color: var(--primary); margin-top: 4px; font-size: 1rem; }
.faq-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* --- Hotel Map Section --- */
.hotel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; margin-top: 20px; }
.hotel-btn { background: var(--white); color: var(--secondary); padding: 15px; border-radius: 10px; text-decoration: none; font-weight: 600; display: flex; align-items: center; justify-content: space-between; box-shadow: 0 4px 10px rgba(0,0,0,0.05); font-size: 0.95rem; border: 1px solid #eee; }
.hotel-btn i { color: var(--primary); }
.hotel-btn:hover { border-color: var(--primary); transform: translateX(5px); }
.delivery-section { background: linear-gradient(rgba(26, 30, 24, 0.9), rgba(26, 30, 24, 0.9)), url('https://images.unsplash.com/photo-1526069631228-723c945bea6b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover; color: var(--white); text-align: center; border-radius: 20px; padding: 50px 20px; margin-top: 40px; }

/* --- FIXED 5-ICON GRID NAVIGATION (Perfectly Centered) --- */
.floating-menu { 
    position: fixed; 
    bottom: 15px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(10px); 
    display: grid; 
    grid-template-columns: 1fr 1fr auto 1fr 1fr; 
    gap: 5px; 
    padding: 8px 12px; 
    border-radius: 50px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.25); 
    z-index: 1000; 
    width: 95%; 
    max-width: 450px; 
    align-items: center; 
    justify-items: center;
}

.float-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: #666; font-size: 0.65rem; font-weight: 700; width: 100%; text-align: center; }
.float-item i { font-size: 1.2rem; margin-bottom: 3px; color: var(--secondary); }

/* Highlighted Book Button */
.float-item.reserve { color: var(--primary); background: rgba(229, 152, 53, 0.1); padding: 5px 0; border-radius: 10px; }
.float-item.reserve i { color: var(--primary); }

/* Raised Center Map Pin */
.float-item.center-location { background-color: var(--location-pin); color: var(--white) !important; padding: 12px 0; border-radius: 50%; width: 65px; height: 65px; display: flex; justify-content: center; align-items: center; transform: translateY(-20px); box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4); border: 3px solid var(--white); }
.float-item.center-location i { color: var(--white) !important; font-size: 1.4rem; margin-bottom: 0; }

.float-item.whatsapp i { color: var(--whatsapp); }

/* --- Detailed Multi-Language SEO Footprint --- */
.seo-footprint-box { margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; }
.seo-lang-title { color: #aaa; font-size: 0.85rem; text-transform: uppercase; margin: 25px 0 10px 0; letter-spacing: 1px; }
.seo-tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 10px; }
.seo-tag-link { color: #bbb; text-decoration: none; font-size: 0.75rem; background: rgba(255, 255, 255, 0.05); padding: 5px 12px; border-radius: 4px; transition: all 0.2s ease; display: inline-block; }
.seo-tag-link:hover { color: var(--primary); background: rgba(255, 255, 255, 0.1); }
.seo-paragraph-text { color: #888; font-size: 0.8rem; line-height: 1.6; max-width: 900px; margin: 30px auto 0 auto; text-align: justify; }
/* Container styling */
#contactForm {
  max-width: 650px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

#contactForm * {
  box-sizing: border-box;
}

/* Row & Grid Layout */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.col-md-6 {
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 240px;
}

.col-md-12 {
  flex: 1 1 100%;
}

/* Input, Select & Textarea styling */
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: #2d3748;
  background-color: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease-in-out;
}

.form-control::placeholder {
  color: #94a3b8;
}

.form-control:focus {
  background-color: #ffffff;
  border-color: #c99a4e; /* Warm accent/gold tone common for dining */
  box-shadow: 0 0 0 3px rgba(201, 154, 78, 0.15);
}

/* Specific Field Adjustments */
select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2394a3b8%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.65rem auto;
  padding-right: 2.5rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

input[readonly] {
  cursor: pointer;
}

/* Submit Button */
.tf-button.style3 {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  margin-top: 0.5rem;
  background-color: #1a202c;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.tf-button.style3:hover {
  background-color: #c99a4e;
}

.tf-button.style3:active {
  transform: scale(0.99);
}

/* Responsive adjustment for small screens */
@media (max-width: 576px) {
  #contactForm {
    padding: 1.5rem;
  }
  
  .col-md-6 {
    flex: 1 1 100%;
  }
}