/* ==========================================================================
   Chef Kobby's Cuisine - Unified Design System & Master Stylesheet
   ========================================================================== */

:root {
  /* Color Palette */
  --primary: #F77F00;
  --primary-hover: #e56f00;
  --accent-red: #bd0510;
  --accent-red-hover: #9e040d;
  --text-main: #1D3557;
  --text-dark: #2c2c2c;
  --text-muted: #555555;
  --text-light: #ffffff;
  
  /* Backgrounds */
  --bg-main: #ffffff;
  --bg-light: #fffaf4;
  --bg-card: #ffffff;
  --bg-dark-nav: #010710;
  --bg-header: #18191a;
  --bg-footer: #010913;
  --bg-footer-bottom: #222222;
  
  /* Transitions & Shadows */
  --transition: all 0.3s ease;
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.18);
  --radius: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 20, 20, 0.85);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top: 5px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   Navigation Bar (Standardized Across All Pages)
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg-dark-nav);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.logo-main {
  font-family: 'Savate', serif, sans-serif;
  color: var(--text-light);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-family: 'Lobster', cursive, sans-serif;
  color: var(--primary);
  font-size: 18px;
  margin-top: -4px;
  margin-left: 18px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary);
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

.nav-social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-social-icons a {
  color: #a0a0a0;
  font-size: 18px;
  transition: var(--transition);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.nav-social-icons a:hover {
  color: var(--text-light);
  background: var(--primary);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--text-light);
  background: none;
  border: none;
  padding: 5px;
}

/* ==========================================================================
   Hero Slider & Hero Section (Home Page)
   ========================================================================== */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 64px;
  overflow: hidden;
  background: #000;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide img,
.slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65);
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  user-select: none;
  transition: var(--transition);
}

.arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.arrow-left { left: 25px; }
.arrow-right { right: 25px; }

.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-light);
  z-index: 15;
  width: 90%;
  max-width: 800px;
  padding: 30px;
}

.overlay-content h1 {
  font-size: 3.8em;
  margin-bottom: 15px;
  font-weight: 800;
  color: #fffaf4;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
}

.overlay-content p {
  font-size: 1.5em;
  margin-bottom: 30px;
  font-weight: 300;
  color: #f2e8de;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.6);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 14px 32px;
  font-size: 18px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(247, 127, 0, 0.4);
  transition: var(--transition);
}

.cta-button:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(247, 127, 0, 0.6);
}

/* ==========================================================================
   Home Section: About the Chef
   ========================================================================== */
.about-chef {
  background-color: var(--bg-light);
  padding: 100px 20px;
  position: relative;
}

.about-container {
  max-width: 950px;
  margin: 0 auto;
  background-color: var(--bg-card);
  padding: 50px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border-top: 6px solid var(--primary);
}

.about-container h2 {
  font-size: 36px;
  color: var(--accent-red);
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.about-container h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: var(--primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

.about-container .intro {
  font-size: 19px;
  margin-bottom: 30px;
  line-height: 1.8;
  color: var(--text-dark);
  text-align: center;
  font-weight: 500;
}

.about-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 16px;
}

.about-list li {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  padding: 14px 18px;
  background: #fcf8f3;
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   Home Section: Services Grid
   ========================================================================== */
.services {
  padding: 80px 20px;
  background-color: #ffffff;
  text-align: center;
}

.services h2 {
  font-size: 2.8em;
  color: #1f2b6d;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.services h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background-color: var(--primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1250px;
  margin: 0 auto;
}

.card {
  background-color: var(--bg-card);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 22px;
  transition: var(--transition);
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0eae1;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.5em;
  color: #1f2b6d;
  margin-bottom: 12px;
}

.card p {
  font-size: 1em;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

/* ==========================================================================
   Home Section: Why Choose Chef Kobby & Benefits
   ========================================================================== */
.verified-section {
  background-color: var(--bg-light);
  padding: 80px 20px;
}

.verified-section .container {
  max-width: 1150px;
  margin: 0 auto;
}

.verified-section h2 {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 40px;
  color: #1f2b6d;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.verified-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--primary);
  margin: 10px auto 0;
  border-radius: 2px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.cards .card h3 {
  color: var(--accent-red);
}

.benefits-container {
  max-width: 1150px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.benefit-header {
  background-color: #8c1616;
  color: var(--text-light);
  padding: 16px 30px;
  border-radius: 12px 12px 0 0;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 30px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: var(--shadow-sm);
}

.benefit-card {
  background-color: #fdfaf7;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 22px;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.benefit-title {
  font-weight: bold;
  font-size: 1.15em;
  margin-bottom: 10px;
  color: #ec9c34;
}

/* ==========================================================================
   Home Section: Horizontal Food Carousel & Working Hours
   ========================================================================== */
.slid-container {
  overflow-x: auto;
  padding: 60px 20px;
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #eee;
}

.slid-track {
  display: flex;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.slid-item {
  min-width: 300px;
  flex: 0 0 300px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.slid-item:hover {
  transform: scale(1.03);
}

.slid-item img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.info-grid {
  max-width: 1150px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.working-hours {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 30px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.working-hours h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #1f2b6d;
  display: flex;
  align-items: center;
  gap: 10px;
}

.working-hours h3 i {
  color: var(--primary);
}

.working-hours ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.working-hours li {
  font-size: 16px;
  padding: 12px 16px;
  background-color: #f8f9fa;
  border-left: 4px solid #25D366;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.working-hours li:hover {
  border-left-color: var(--primary);
  background-color: #fef8f0;
  transform: translateX(4px);
}

/* ==========================================================================
   Gallery Page Styles
   ========================================================================== */
.gallery-banner {
  background: rgba(15, 15, 20, 0.8) url('static/images/IMG-20250627-WA0054.jpg') center/cover;
  background-blend-mode: darken;
  padding: 120px 20px 70px;
  text-align: center;
  color: #fff;
  margin-top: 64px;
}

.gallery-banner h1 {
  font-size: 3.5em;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.gallery-banner p {
  font-size: 1.3em;
  max-width: 600px;
  margin: 0 auto;
  color: #f4eae0;
}

.explore-section {
  text-align: center;
  padding: 50px 20px 30px;
  background-color: var(--bg-light);
}

.explore-section h2 {
  font-size: 2.5em;
  color: #1f2b6d;
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.explore-section h2::after {
  content: '';
  display: block;
  height: 4px;
  width: 60px;
  background-color: var(--primary);
  margin: 10px auto 0;
  border-radius: 2px;
}

.explore-section p {
  font-size: 1.15em;
  color: var(--text-muted);
}

.gallery-section {
  padding: 30px 20px 70px;
  max-width: 1300px;
  margin: 0 auto;
  background-color: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #000;
  position: relative;
  aspect-ratio: 4 / 3;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.08);
}

.comfort-food-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff4eb;
}

.comfort-food-section h2 {
  font-size: 3em;
  font-weight: 800;
  color: #1f2b6d;
  margin-bottom: 15px;
}

.comfort-food-section p {
  font-size: 1.3em;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.order-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background-color: #25D366;
  color: white;
  font-size: 1.2em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.order-now-btn:hover {
  background-color: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-heading {
  text-align: center;
  padding: 120px 20px 60px;
  background-color: #fdf4eb;
  margin-top: 64px;
}

.contact-heading h1 {
  font-size: 3em;
  font-weight: bold;
  color: #2c2c2c;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.contact-heading h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-red);
  border-radius: 2px;
}

.contact-section {
  display: flex;
  padding: 60px 20px;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left .contact-logo {
  width: 80px;
  height: auto;
  margin-bottom: 25px;
}

.contact-info .info-block {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-info i {
  font-size: 24px;
  color: var(--primary);
  width: 40px;
  height: 40px;
  background: #fff3e6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info h3 {
  margin: 0 0 5px;
  font-size: 18px;
  color: #1f2b6d;
}

.contact-info p {
  margin: 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-social {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.contact-social h4 {
  margin-bottom: 16px;
  color: #1f2b6d;
  font-size: 18px;
}

.contact-social-icons {
  display: flex;
  gap: 14px;
}

.contact-social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5ece6;
  color: #a76c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: var(--transition);
}

.contact-social-icons a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.contact-right {
  flex: 1;
  min-width: 320px;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid #f0e6dd;
}

.contact-right h2 {
  margin-bottom: 25px;
  color: #1f2b6d;
  font-size: 26px;
}

.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-right input,
.contact-right textarea {
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: #fcfcfc;
}

.contact-right input:focus,
.contact-right textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(247, 127, 0, 0.15);
}

.contact-right textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-right button {
  background-color: #8c1616;
  color: white;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.contact-right button:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(247, 127, 0, 0.3);
}

.map-container {
  max-width: 1200px;
  margin: 20px auto 70px;
  padding: 25px;
  background-color: #f8fbff;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.map-container h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
  color: #1f2b6d;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ==========================================================================
   Modals (Gallery Browse Popup on Home)
   ========================================================================== */
.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 20px;
}

.popup-modal-content {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalScaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalScaleIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-modal-content h2 {
  color: var(--accent-red);
  margin-bottom: 14px;
  font-size: 24px;
}

.popup-modal-content img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.popup-modal-content p {
  color: var(--text-muted);
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.5;
}

.order-link {
  display: inline-block;
  background-color: var(--accent-red);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: var(--transition);
}

.order-link:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 26px;
  color: #777;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
  background: none;
  border: none;
}

.close-btn:hover {
  color: var(--accent-red);
  transform: scale(1.15);
}

/* ==========================================================================
   Floating WhatsApp Button & Popup Box
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6);
  }
  50% {
    box-shadow: 0 0 25px rgba(37, 211, 102, 1);
  }
}

.whatsapp-float img {
  width: 36px;
  height: 36px;
}

#whatsappPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 20px;
}

#popupOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

#popupBox {
  position: relative;
  background-color: #f2faf6;
  border-radius: 14px;
  width: 100%;
  max-width: 340px;
  padding: 0;
  box-shadow: var(--shadow-lg);
  font-family: inherit;
  z-index: 10;
  overflow: hidden;
  animation: modalScaleIn 0.25s ease-out;
}

#popupBox h3 {
  background-color: #25D366;
  color: white;
  margin: 0;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#popupBox ul {
  list-style: none;
  padding: 16px;
  margin: 0;
}

#popupBox ul li.question-option {
  padding: 12px 14px;
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 8px;
  background: white;
  border: 1px solid #dcf2e4;
  font-size: 14px;
  color: #2c2c2c;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

#popupBox ul li.question-option::before {
  content: '💬';
  font-size: 16px;
}

#popupBox ul li.question-option:hover {
  background-color: #e5f5ea;
  border-color: #25D366;
  transform: translateX(4px);
}

.custom-question-container {
  padding: 0 16px 16px;
}

.custom-question {
  display: flex;
  gap: 8px;
}

.custom-question input {
  flex: 1;
  padding: 10px 12px;
  font-size: 14px;
  border: 1.5px solid #ccc;
  border-radius: 8px;
  transition: var(--transition);
}

.custom-question input:focus {
  outline: none;
  border-color: #25D366;
}

.custom-question button {
  background-color: #25d366;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-question button:hover {
  background-color: #1ea951;
}

#popupBox .cancel-btn {
  width: 100%;
  padding: 12px 0;
  background-color: #e0e0e0;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  color: #555;
  transition: var(--transition);
}

#popupBox .cancel-btn:hover {
  background-color: #d0d0d0;
  color: #222;
}

/* ==========================================================================
   Scroll To Top Button
   ========================================================================== */
#scrollToTop {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

#scrollToTop:hover {
  transform: translateY(-4px);
  background-color: var(--primary-hover);
}

/* ==========================================================================
   Footer (Standardized Across All Pages)
   ========================================================================== */
.site-footer {
  background-color: var(--bg-footer);
  color: #ffffff;
  padding: 60px 20px 30px;
  font-family: 'Segoe UI', Arial, sans-serif;
  border-top: 4px solid var(--primary);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1250px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.footer-column h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--primary);
  position: relative;
  padding-bottom: 8px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  color: #bbbbbb;
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
}

.footer-column ul li a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-column .social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.footer-column .social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
}

.footer-column .social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #aaaaaa;
  padding-top: 25px;
  font-size: 14px;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
  .overlay-content h1 { font-size: 2.8em; }
  .overlay-content p { font-size: 1.3em; }
  .about-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Navigation */
  .menu-toggle { display: block; }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark-nav);
    padding: 20px 30px;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  }
  
  .nav-links.active { display: flex; }
  
  .nav-social-icons {
    display: flex;
    justify-content: flex-start;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  /* Hero & Slider */
  .hero-wrapper { height: 85vh; }
  .arrow { width: 40px; height: 40px; font-size: 16px; }
  .arrow-left { left: 12px; }
  .arrow-right { right: 12px; }
  
  .overlay-content h1 { font-size: 2.2em; }
  .overlay-content p { font-size: 1.1em; margin-bottom: 20px; }
  
  /* Sections */
  .about-chef { padding: 60px 15px; }
  .about-container { padding: 30px 20px; }
  .about-container h2 { font-size: 28px; }
  
  .services { padding: 60px 15px; }
  .services h2 { font-size: 2.2em; }
  .service-cards { grid-template-columns: 1fr; }
  
  .contact-section { flex-direction: column; gap: 30px; padding: 40px 15px; }
  .contact-right { padding: 25px 20px; }
  
  .gallery-banner h1 { font-size: 2.5em; }
  .gallery-banner { padding: 100px 15px 50px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  
  .working-hours { padding: 20px 15px; }
  .working-hours ul { grid-template-columns: 1fr; }
  
  /* Buttons placement */
  #scrollToTop { bottom: 82px; left: 20px; width: 44px; height: 44px; }
  .whatsapp-float { bottom: 82px; right: 20px; width: 56px; height: 56px; }
  body { padding-bottom: 72px; }
}

/* Mobile Bottom Navigation Bar (App-Like PWA Bottom Bar) */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background-color: #010710;
    border-top: 2px solid var(--primary);
    z-index: 99999;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
  }

  .mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 600;
    gap: 4px;
    flex: 1;
    height: 100%;
    transition: var(--transition);
  }

  .mobile-bottom-item i {
    font-size: 20px;
    color: var(--primary);
  }

  .mobile-bottom-item:hover,
  .mobile-bottom-item.active {
    color: var(--primary);
    background: rgba(247, 127, 0, 0.12);
  }
}

@media (max-width: 480px) {
  .logo-main { font-size: 20px; }
  .logo-sub { font-size: 15px; margin-left: 12px; }
  
  .overlay-content h1 { font-size: 1.8em; }
  .overlay-content p { font-size: 0.95em; }
  .cta-button { padding: 12px 24px; font-size: 16px; }
  
  .about-container { padding: 24px 16px; }
  .about-list li { font-size: 14.5px; padding: 12px 14px; }
  
  .slid-item { min-width: 240px; flex: 0 0 240px; }
  .slid-item img { height: 300px; }
  
  .contact-heading h1 { font-size: 2.2em; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}
