/* =========================================
   FOOD PALACE — Brand Color Theme
   Deep Blue + White + Gold
   ========================================= */

/* ── DESIGN TOKENS ── */
/* 
   If you have the Creato Display web font files, place them in a folder named "fonts" 
   in the root of your project, and they will load automatically.
*/
@font-face {
  font-family: 'Creato Display';
  src: url('fonts/CreatoDisplay-Light.woff2') format('woff2'),
       url('fonts/CreatoDisplay-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Creato Display';
  src: url('fonts/CreatoDisplay-Regular.woff2') format('woff2'),
       url('fonts/CreatoDisplay-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Creato Display';
  src: url('fonts/CreatoDisplay-Medium.woff2') format('woff2'),
       url('fonts/CreatoDisplay-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Creato Display';
  src: url('fonts/CreatoDisplay-Bold.woff2') format('woff2'),
       url('fonts/CreatoDisplay-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ── Brand Palette ── */
  --blue-900:   #062870;   /* darkest blue (footer, deep bg) */
  --blue-800:   #0B3C8C;   /* PRIMARY — headers, buttons, nav */
  --blue-700:   #0E4AA8;
  --blue-600:   #1558C9;
  --blue-400:   #1DA1F2;   /* SECONDARY — links, highlights, badges */
  --blue-100:   #E8F1FC;   /* very light blue tint */
  --blue-50:    #F0F6FF;   /* page section alt bg hint */

  --gold:       #D4AF37;   /* ACCENT — CTA buttons, icons, decorators */
  --gold-light: #E8CC6A;
  --gold-dark:  #A8881C;

  --white:      #FFFFFF;
  --grey-50:    #F5F7FA;   /* section alternate background */
  --grey-100:   #EEF0F3;
  --grey-200:   #DDE1E9;
  --grey-300:   #C4CAD7;
  --grey-400:   #9BA3B6;
  --grey-500:   #6B7590;
  --grey-700:   #374060;
  --grey-900:   #111827;

  /* ── Typography ── */
  --serif: 'Creato Display', 'Plus Jakarta Sans', 'Jost', -apple-system, sans-serif;
  --sans:  'Plus Jakarta Sans', 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ── Spacing / Layout ── */
  --nav-h:  100px;   /* 38px announce + 62px main */
  --max-w:  1200px;
  --px:     24px;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 10px rgba(11,60,140,0.08);
  --shadow-md: 0 8px 32px rgba(11,60,140,0.12);
  --shadow-lg: 0 20px 60px rgba(11,60,140,0.16);
  --shadow-gold: 0 8px 28px rgba(212,175,55,0.30);

  /* ── Transitions ── */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --tx: all 0.3s var(--ease);
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--grey-700);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display:block; max-width:100%; height:auto; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:var(--sans); }
input, textarea, select { font-family:var(--sans); }

/* ── CONTAINER ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ── SECTION ── */
.section { padding: 100px 0; }

/* ═══════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-800), var(--blue-400));
  border-radius: 1px;
}
.eyebrow.light { color: var(--gold-light); }
.eyebrow.light::before { background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.sec-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 300;
  color: var(--blue-800);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.sec-title em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--gold-dark); }

.gold-line {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 28px;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

.sec-header { text-align: center; margin-bottom: 56px; }
.sec-header .sec-title { margin-bottom: 12px; }
.sec-header .eyebrow { display: block; }
.sec-header .eyebrow::before { display: none; }
.sec-header .gold-line { margin: 0 auto; }

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
/* Primary — Blue → Gold on hover */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 26px;
  min-height: 44px;
  background: var(--blue-800);
  color: var(--white);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: var(--tx);
  box-shadow: var(--shadow-md);
  -webkit-tap-highlight-color: transparent;
  isolation: isolate; /* Stacking context ensures text and icons stay visible above gradient */
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
  border-radius: inherit;
  z-index: -1; /* Pushes background behind text nodes */
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); color: var(--grey-900); }
.btn-primary:hover::after { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary.full { width: 100%; justify-content: center; }

/* Ghost — blue outline */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  min-height: 44px;
  background: transparent;
  color: var(--blue-800);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--blue-800);
  border-radius: 4px;
  transition: var(--tx);
}
.btn-ghost:hover {
  background: var(--blue-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ghost light — for dark sections */
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 26px;
  min-height: 44px;
  background: transparent;
  color: var(--white);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: 4px;
  transition: var(--tx);
}
.btn-ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════ */
#wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--tx);
  animation: waPulse 2.5s ease-in-out infinite;
}
#wa-float svg { width: 28px; height: 28px; }
#wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.65); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.28); }
  50%      { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════
   NAVBAR — Top Header Logo & Scroll Hide
   Also includes Bottom Navigation Bar
═══════════════════════════════════════ */

/* Top Navbar Container */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease, filter 0.7s ease, -webkit-filter 0.7s ease;
  filter: blur(0px);
  -webkit-filter: blur(0px);
}
/* Scroll Down: premium misty dissolve (slowly disappear like blur) */
#navbar.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  filter: blur(16px);
  -webkit-filter: blur(16px);
  pointer-events: none;
}

/* Main Nav Bar (Logo Row) */
.nav-main {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11, 60, 140, 0.08);
  border-radius: 0;
  /* Premium, smooth layered shadow casting downwards */
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.03),
    0 12px 24px -4px rgba(0, 0, 0, 0.08),
    0 24px 48px -8px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  width: 100%;
}
.nav-main:hover {
  box-shadow: 
    0 6px 8px -1px rgba(0, 0, 0, 0.04),
    0 16px 32px -4px rgba(0, 0, 0, 0.1),
    0 32px 64px -8px rgba(0, 0, 0, 0.08);
}

/* When scrolled, increase drop shadow */
#navbar.scrolled .nav-main {
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 16px 28px -4px rgba(0, 0, 0, 0.1),
    0 28px 56px -8px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.nav-main-inner.logo-only {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 82px; /* Perfect pill height */
  padding: 0 40px;
  transition: height 0.4s ease;
}
#navbar.scrolled .nav-main-inner.logo-only {
  height: 68px; /* Compresses on scroll for dynamic reaction */
}

/* Center Logo */
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 6px 20px;
  transition: opacity 0.25s ease;
}
.logo-img {
  height: 66px; /* Enlarged logo icon */
  width: auto;
  transition: height 0.4s ease;
}
#navbar.scrolled .logo-img {
  height: 52px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.1;
}
.logo-only .nav-logo {
  border-left: none;
  border-right: none;
}
.nav-logo:hover { opacity: 0.8; }

/* Text color is always dark blue since the capsule is white */
.logo-fp {
  font-family: var(--sans);
  font-size: 1.85rem;
  font-weight: 800; /* Bolder font weight */
  color: var(--blue-800);
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  transition: color 0.4s ease, font-size 0.4s ease;
}
#navbar.scrolled .logo-fp {
  font-size: 1.5rem;
}

.logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 3px;
  white-space: nowrap;
  transition: color 0.4s ease, font-size 0.4s ease;
}
#navbar.scrolled .logo-sub {
  font-size: 0.6rem;
}

/* ═══════════════════════════════════════
   BOTTOM NAVIGATION BAR — Premium Glassmorphic Pill
═══════════════════════════════════════ */
.bottom-nav {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(40px); /* Start shifted down */
  opacity: 0; /* Start hidden */
  pointer-events: none; /* Disable clicks while hidden */
  z-index: 9999;
  width: max-content;
  max-width: 92%;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(255, 255, 255, 0.86); /* White glassmorphic background */
  border: 1px solid rgba(11, 60, 140, 0.08); /* Soft blue-grey border */
  border-radius: 100px;
  box-shadow: 0 16px 40px rgba(11, 60, 140, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 6px 8px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.bottom-nav.bottom-nav-visible {
  transform: translateX(-50%) translateY(0); /* Slide up to normal position */
  opacity: 1; /* Fade in */
  pointer-events: auto; /* Enable clicks */
}
.bottom-nav-inner {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 2px;
}
/* Sliding active bubble */
.bottom-nav-bubble {
  position: absolute;
  height: 100%;
  background: rgba(11, 60, 140, 0.06); /* Soft blue glass bubble tint */
  border: 1px solid rgba(11, 60, 140, 0.1);
  border-radius: 100px;
  top: 0;
  left: 0;
  width: 0;
  opacity: 0;
  transition: left 0.38s cubic-bezier(0.25, 1, 0.5, 1), width 0.38s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}
.bottom-nav-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 12px;
  color: rgba(11, 60, 140, 0.65); /* Dark blue secondary text */
  text-align: center;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease, transform 0.2s ease;
}
.bottom-nav-item::after {
  display: none !important; /* Hide old underline highlight */
}
.bottom-nav-item:hover {
  color: var(--blue-800);
}
.bottom-nav-item:active {
  transform: scale(0.95);
}
.bottom-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.bottom-nav-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  transition: stroke 0.3s ease;
}
.bottom-nav-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Active item overrides */
.bottom-nav-item.active-link {
  color: var(--blue-800);
}
.bottom-nav-item.active-link .bottom-nav-icon {
  transform: translateY(-1px);
}
/* Get a Quote spec style */
.bottom-nav-quote {
  color: var(--gold-dark);
}
.bottom-nav-quote:hover {
  color: var(--gold);
}
.bottom-nav-quote.active-link {
  color: var(--gold-dark);
}

/* Tablet Responsive Rules */
@media (min-width: 768px) {
  .bottom-nav-item {
    flex-direction: row;
    gap: 6px;
    padding: 8px 14px;
  }
  .bottom-nav-label {
    font-size: 10px;
    font-weight: 600;
  }
}

/* Desktop Responsive Rules */
@media (min-width: 960px) {
  .bottom-nav {
    padding: 8px 10px;
  }
  .bottom-nav-item {
    gap: 8px;
    padding: 10px 18px;
  }
  .bottom-nav-label {
    font-size: 11px;
    font-weight: 600;
  }
}

/* Mobile Responsive Rules */
@media (max-width: 767px) {
  .bottom-nav {
    bottom: 16px;
    padding: 4px 6px;
    width: 92%;
    max-width: 380px;
  }
  .bottom-nav-label {
    display: none; /* Hide labels to look like reference photo on mobile */
  }
  .bottom-nav-item {
    padding: 12px 10px;
    flex: 1; /* Distribute evenly on mobile */
  }
  .bottom-nav-icon svg {
    width: 21px;
    height: 21px;
  }
  #wa-float {
    bottom: 84px !important; /* Move WhatsApp float above bottom-nav on mobile */
  }
}





/* ═══════════════════════════════════════
   HERO — full screen, image + blue overlay
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* Blue-toned overlay matching brand */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(6,40,112,0.82) 0%,
    rgba(11,60,140,0.72) 40%,
    rgba(6,20,60,0.86) 100%
  );
}

/* Hero Video BG */
.yt-slot {
  position: absolute; inset: 0;
  z-index: 1; overflow: hidden;
  pointer-events: none;
}
.yt-slot video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%,-50%);
  object-fit: cover;
  opacity: 0.45;
  transition: opacity 0.8s ease;
}
@media (max-width: 767px) { .yt-slot { display: block; } }

.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: calc(var(--nav-h) + 32px) var(--px) 100px;
  max-width: 860px;
  width: 100%;
  transform: translateY(16vh);
}

.hero-minimal-title {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  animation: fadeUp 0.8s 0.1s ease both;
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 3px solid var(--blue-800);
  border-bottom: 1px solid var(--grey-100);
  padding: 22px 0;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hstat { text-align: center; padding: 0 40px; flex: 0 0 auto; }
.hstat-n {
  display: inline;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--blue-800);
  line-height: 1;
}
.hstat-plus { color: var(--gold); font-size: 1.375rem; font-family: var(--serif); font-weight: 600; }
.hstat-l { display: block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-400); margin-top: 6px; }
.hstat-div { width: 1px; height: 42px; background: var(--grey-200); flex-shrink: 0; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); transition: color 0.3s ease;
}
.hero-scroll:hover { color: var(--gold-light); }
.scroll-line {
  display: block; width: 1.5px; height: 48px;
  background: currentColor;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.45); opacity: 0.35; }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ═══════════════════════════════════════
   ABOUT — white bg
═══════════════════════════════════════ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.about-imgs { position: relative; }
.about-img-main {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width:100%; height:380px; object-fit:cover; transition: transform 0.7s ease; }
.about-imgs:hover .about-img-main img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -28px; right: -16px;
  width: 42%;
  border: 4px solid var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: none;
  background: var(--white);
  animation: floatImg 5s ease-in-out infinite;
}
.about-img-accent img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-img-accent:hover img {
  transform: scale(1.05);
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.about-exp-badge {
  position: absolute;
  top: 20px; left: -10px;
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-600) 100%);
  color: var(--white);
  padding: 16px 22px;
  text-align: center;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.aeb-num { display: block; font-family: var(--serif); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.aeb-text { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.45; margin-top: 5px; display: block; color: var(--gold-light); }

.about-text .sec-title { text-align: left; }
.about-desc { color: var(--grey-500); line-height: 1.82; margin-bottom: 12px; font-size: 0.9375rem; }
.about-desc strong { color: var(--blue-800); font-weight: 600; }



/* ═══════════════════════════════════════
   SERVICES — light grey bg
═══════════════════════════════════════ */
.services-section { background: var(--grey-50); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-100);
  transition: var(--tx);
  position: relative;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--blue-100); }
/* Blue accent bar on top */
.svc-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-800), var(--blue-400));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-img { position: relative; height: 220px; overflow: hidden; }
.svc-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.65s ease; }
.svc-card:hover .svc-img img { transform: scale(1.07); }
.svc-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,60,140,0.55) 0%, transparent 60%);
}
.svc-body { padding: 24px 22px 28px; }
.svc-num {
  display: block;
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--blue-100);
  line-height: 1;
  margin-bottom: 6px;
}
.svc-body h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--blue-800);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.svc-card:hover h3 { color: var(--gold-dark); }
.svc-body p { font-size: 0.825rem; color: var(--grey-500); line-height: 1.75; margin-bottom: 18px; }
.svc-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-400);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.svc-card:hover .svc-link { gap: 10px; color: var(--gold-dark); }

/* ═══════════════════════════════════════
   MARQUEE STRIP — blue brand band
═══════════════════════════════════════ */
.marquee-strip {
  overflow: hidden;
  background: linear-gradient(90deg, var(--blue-800) 0%, var(--blue-700) 50%, var(--blue-800) 100%);
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex; align-items: center;
  animation: marqueeRoll 24s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 0 24px;
  white-space: nowrap;
}
.mdot { color: var(--gold) !important; padding: 0 8px !important; }
@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════
   MENU — white bg
═══════════════════════════════════════ */
.menu-section { background: var(--white); }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--grey-200);
  border-radius: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--grey-50);
}
.mtab {
  padding: 14px 28px;
  min-height: 52px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  border-right: 1px solid var(--grey-200);
  white-space: nowrap;
  transition: var(--tx);
  flex: 1;
}
.mtab:last-child { border-right: none; }
.mtab:hover { color: var(--blue-800); background: var(--blue-50); }
.mtab.active { background: var(--blue-800); color: var(--white); box-shadow: inset 0 -3px 0 var(--gold); }

.mpanel { display: none; }
.mpanel.active { display: block; animation: panelIn 0.45s var(--ease); }
@keyframes panelIn {
  from { opacity:0; transform:translateY(16px); }
  to   { opacity:1; transform:translateY(0); }
}
.mpanel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.mpanel-img { overflow: hidden; border-radius: 8px; box-shadow: var(--shadow-lg); }
.mpanel-img img { width:100%; height:300px; object-fit:cover; transition: transform 0.7s ease; }
.mpanel-img:hover img { transform: scale(1.04); }

.menu-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-800);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.mpanel-info h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 500;
  color: var(--blue-800);
  margin-bottom: 14px;
  line-height: 1.2;
}
.mpanel-info > p { color: var(--grey-500); font-size: 0.875rem; line-height: 1.78; margin-bottom: 28px; }

.menu-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.mcat h4 {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-100);
}
.mcat li {
  font-size: 12px; color: var(--grey-500);
  padding: 4px 0;
  display: flex; align-items: center; gap: 7px;
  transition: transform 0.3s var(--ease);
  margin-left: 6px;
}
.gallery-cta a:hover .btn-arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════
   FOOD VISUAL GRID — light grey bg
═══════════════════════════════════════ */
.food-visual-section { background: var(--grey-50); }
.food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
}
.fg-item {
  position: relative; overflow: hidden;
  border-radius: 6px;
}
.fg-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.65s ease; }
.fg-item:hover img { transform: scale(1.07); }
.fg-tall { grid-row: span 2; }
.fg-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,60,140,0.82) 0%, transparent 100%);
  color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 22px 16px 14px;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.fg-item:hover .fg-label { transform: translateY(0); }

/* ═══════════════════════════════════════
   PARALLAX CTA — deep blue brand strip
═══════════════════════════════════════ */
.parallax-cta {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pcta-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.pcta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    150deg,
    rgba(6,40,112,0.88) 0%,
    rgba(11,60,140,0.78) 50%,
    rgba(6,40,112,0.90) 100%
  );
}
.pcta-content {
  position: relative; z-index: 1;
  text-align: center; padding: 0 24px;
}
.pcta-content h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}
.pcta-content h2 em { font-style: italic; color: var(--gold-light); }

/* ═══════════════════════════════════════
   GALLERY — white bg
═══════════════════════════════════════ */
.gallery-section {
  background: var(--white);
  overflow: hidden;
  padding-bottom: 80px;
}
.sec-subtitle {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--grey-500);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.6;
}

/* 3D Container */
.curved-gallery-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible; /* Prevent clipping of 3D transformed cards and labels */
  padding: 60px 0 130px; /* Generous bottom padding to allow labels to float beautifully */
  cursor: grab;
  perspective: 1200px;
  transform-style: preserve-3d;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -ms-overflow-style: none;  /* Hide scrollbar IE/Edge */
}
.curved-gallery-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}
.curved-gallery-container:active {
  cursor: grabbing;
}

/* Flex Track */
.curved-gallery-track {
  display: flex;
  gap: 24px;
  padding: 0 calc(50% - 110px); /* Center cards by default when scrolling */
  transform-style: preserve-3d;
  will-change: transform;
}

/* 3D Item Card & Info Wrapper */
.cg-item {
  flex-shrink: 0;
  width: 220px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: filter 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* The Card itself */
.cg-card {
  width: 100%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  transform-style: preserve-3d;
  background: var(--grey-100);
}
.cg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.cg-card:hover img {
  transform: scale(1.06);
}

/* Hover Overlay */
.cg-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 40, 112, 0.75) 0%, rgba(6, 40, 112, 0.1) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
}
.cg-card:hover .cg-hover-overlay {
  opacity: 1;
}
.cg-hover-text {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 20px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  transform: translateY(10px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cg-card:hover .cg-hover-text {
  transform: translateY(0);
}

/* Label Info underneath */
.cg-info {
  margin-top: 24px;
  text-align: center;
  transform-style: preserve-3d;
  pointer-events: none;
}
.cg-num {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.cg-title {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-800);
  letter-spacing: -0.01em;
}



/* ═══════════════════════════════════════
   REVIEWS — light grey bg
═══════════════════════════════════════ */
.reviews-section { background: var(--grey-50); }
.reviews-slider { overflow: hidden; margin-bottom: 28px; }
.reviews-track { display: flex; gap: 20px; transition: transform 0.52s var(--ease); }
.rev-card {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--tx);
  position: relative;
}
.rev-card::before {
  content: '"';
  position: absolute; top: 16px; right: 24px;
  font-family: var(--serif); font-size: 5rem;
  color: var(--blue-100); line-height: 1;
  font-weight: 700; pointer-events: none;
}
.rev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-100); }
.rev-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 16px; }
blockquote { font-size: 0.875rem; color: var(--grey-500); line-height: 1.82; font-style: italic; margin-bottom: 22px; font-weight: 300; white-space: normal; display: block; }
.rev-author { display: flex; align-items: center; gap: 14px; }
.rev-av {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-400));
  color: var(--white);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.rev-author strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--blue-800); margin-bottom: 2px; }
.rev-author span { font-size: 0.7rem; color: var(--grey-400); }

.rev-controls { display: flex; align-items: center; justify-content: center; gap: 16px; }
.rev-btn {
  width: 46px; height: 46px;
  border: 1.5px solid var(--grey-200);
  background: var(--white);
  color: var(--grey-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  border-radius: 50%;
  transition: var(--tx);
  box-shadow: var(--shadow-sm);
}
.rev-btn:hover { border-color: var(--blue-800); color: var(--blue-800); background: var(--blue-50); transform: scale(1.06); }
.rev-dots { display: flex; gap: 8px; align-items: center; }
.rdot {
  width: 8px; height: 8px;
  background: var(--grey-300);
  border-radius: 50%;
  cursor: pointer; border: none; padding: 0;
  transition: var(--tx);
}
.rdot.active { background: var(--blue-800); width: 24px; border-radius: 4px; }

/* ═══════════════════════════════════════
   FINAL CTA — blue brand block
═══════════════════════════════════════ */
.final-cta {
  position: relative;
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}
.fcta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, var(--blue-900) 0%, var(--blue-800) 55%, var(--blue-700) 100%);
}
.fcta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 50% 50%, rgba(212,175,55,0.08) 0%, transparent 70%);
}
.fcta-content { position: relative; z-index: 1; }
.fcta-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  font-weight: 400; color: var(--white);
  margin-bottom: 12px; line-height: 1.2;
}
.fcta-content h2 em { font-style: italic; color: var(--gold-light); }
.fcta-lead { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.fcta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.fcta-btns .btn-ghost { border-color: rgba(255,255,255,0.45); color: var(--white); }
.fcta-btns .btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); background: transparent; }

/* ═══════════════════════════════════════
   CONTACT / REQUEST QUOTE Compact Redesign (Cute split card)
   ═══════════════════════════════════════ */
.contact-section {
  background: radial-gradient(circle at 85% 15%, rgba(212, 175, 55, 0.04) 0%, transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(11, 60, 140, 0.05) 0%, transparent 55%),
              var(--grey-50);
  padding: 60px 0; /* Compressed vertical spacing */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Compact Split Card Wrapper */
.quote-card-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 8px 24px -8px rgba(11, 60, 140, 0.04),
    0 24px 48px -12px rgba(11, 60, 140, 0.12),
    0 0 0 1px rgba(11, 60, 140, 0.03);
  width: 100%;
  max-width: 860px; /* Noticeably smaller max-width (from 1060px) */
  margin: 0 auto;
  background: var(--white);
}

@media (min-width: 768px) {
  .quote-card-wrapper {
    grid-template-columns: 1fr 1.15fr;
  }
}

/* Left Panel - Dark Gradient & CSS Graphics */
.quote-left-panel {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 50%, var(--blue-700) 100%);
  padding: 36px 30px; /* Reduced padding (from 48px 40px) */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  color: var(--white);
  overflow: hidden;
  min-height: 440px; /* Reduced minimum height (from 520px) */
}

.quote-left-panel::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.qpanel-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 1.25rem; /* Smaller logo font (from 1.45rem) */
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.qpanel-logo-img {
  height: 32px; /* Smaller logo image (from 42px) */
  width: auto;
  filter: brightness(0) invert(1);
}

/* Center Animated CSS Illustration (Compact sizes) */
.qpanel-visual {
  position: relative;
  height: 160px; /* Reduced height (from 240px) */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin: 16px 0; /* Reduced margin (from 32px) */
}

.qpanel-visual-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.5;
}

/* Floating animation keyframes */
@keyframes qFloatUp {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes qFloatDown {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(8px) rotate(-1deg); }
}

.qvisual-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px; /* Reduced padding (from 16px) */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  width: 170px; /* Compacter width (from 220px) */
  animation: qFloatUp 6s ease-in-out infinite;
  left: 5%;
  top: 10%;
}

.qv-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.qv-icon {
  font-size: 1rem; /* Smaller icon (from 1.25rem) */
}

.qv-card-title {
  font-size: 0.65rem; /* Smaller text (from 0.72rem) */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
}

.qv-chart-container {
  height: 30px; /* Reduced chart height (from 40px) */
  width: 100%;
  margin-bottom: 6px;
}

.qv-chart-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.qv-card-lbl {
  font-size: 0.68rem; /* Smaller label font (from 0.75rem) */
  color: var(--gold-light);
  font-weight: 600;
}

/* Floating Badge 2 */
.qvisual-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 6px 12px; /* Reduced padding (from 8px 16px) */
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem; /* Smaller font (from 0.8rem) */
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  animation: qFloatDown 5s ease-in-out infinite;
  right: 8%;
  top: 20%;
  color: var(--white);
}

/* Floating Tag 3 */
.qvisual-tag.tag-sadya {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  animation: qFloatUp 7s ease-in-out infinite;
  left: 10%;
  bottom: 8%;
  color: var(--white);
}

/* Floating Tag 4 */
.qvisual-tag.tag-biryani {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  animation: qFloatDown 6s ease-in-out infinite;
  right: 12%;
  bottom: 5%;
  color: var(--white);
}

.qpanel-text {
  position: relative;
  z-index: 2;
  text-align: left;
}

.qpanel-text h3 {
  font-family: var(--sans);
  font-size: 1.45rem; /* Smaller text size (from 1.8rem) */
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px; /* Reduced spacing (from 12px) */
  line-height: 1.25;
}

.qpanel-text p {
  font-size: 0.8rem; /* Smaller text size (from 0.88rem) */
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin-bottom: 18px; /* Reduced spacing (from 24px) */
}

.qpanel-dots {
  display: flex;
  gap: 5px;
}

.qdot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.qdot.active {
  width: 14px;
  border-radius: 30px;
  background: var(--gold);
}

/* Right Panel - Glassy container with white form card inside */
.quote-right-panel {
  background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(245,247,250,0.5) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 30px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .quote-right-panel {
    padding: 36px 28px; /* Reduced padding (from 60px 48px) */
  }
}

.quote-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 20px; /* Reduced padding (from 32px 24px) */
  box-shadow: 
    0 8px 24px rgba(11, 60, 140, 0.02),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  width: 100%;
  max-width: 400px; /* Compact width (from 440px) */
}

@media (min-width: 480px) {
  .quote-form-card {
    padding: 32px 28px; /* Reduced padding (from 40px 36px) */
  }
}

.qform-header {
  text-align: center;
  margin-bottom: 20px; /* Reduced spacing (from 28px) */
}

.qform-header h2 {
  font-family: var(--sans);
  font-size: 1.3rem; /* Compact heading size (from 1.55rem) */
  font-weight: 800;
  color: var(--blue-800);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.qform-header p {
  font-size: 0.78rem; /* Smaller text size (from 0.82rem) */
  color: var(--grey-500);
  line-height: 1.45;
}

/* Glassmorphic Form Fields & Styling */
.qfield-group {
  display: flex;
  flex-direction: column;
  gap: 4px; /* Reduced gap (from 6px) */
  margin-bottom: 12px; /* Reduced spacing (from 16px) */
  text-align: left;
}

.qfield-group label {
  font-family: var(--sans);
  font-size: 0.68rem; /* Compact label size (from 0.72rem) */
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue-800);
}

.qfield-group input,
.qfield-group select,
.qfield-group textarea {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  color: var(--grey-900);
  font-size: 12.5px; /* Compact inputs font-size (from 13.5px) */
  font-weight: 400;
  padding: 9px 12px; /* Compact padding (from 12px 14px) */
  outline: none;
  border-radius: 6px;
  transition: var(--tx);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.qfield-group select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23374060' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 5 3 3 3-3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 9px;
  padding-right: 30px;
}

.qfield-group input:focus,
.qfield-group select:focus,
.qfield-group textarea:focus {
  border-color: var(--blue-400);
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(29, 161, 242, 0.06);
}

.qfield-group input::placeholder, 
.qfield-group textarea::placeholder {
  color: var(--grey-400);
}

.qfield-group textarea {
  resize: vertical;
  min-height: 60px; /* Reduced height (from 84px) */
}

.qfield-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 480px) {
  .qfield-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px; /* Reduced gap (from 16px) */
  }
}

.qsubmit-btn {
  background: var(--blue-800);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem; /* Compact size (from 0.85rem) */
  font-weight: 700;
  padding: 11px; /* Compact padding (from 13px) */
  border-radius: 6px;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: var(--tx);
  box-shadow: 0 4px 10px rgba(11, 60, 140, 0.1);
  margin-top: 6px;
  text-align: center;
}

.qsubmit-btn:hover {
  background: var(--blue-700);
  transform: translateY(-1.5px);
  box-shadow: 0 6px 16px rgba(11, 60, 140, 0.15);
}

.qform-helper {
  margin-top: 12px; /* Compact spacing (from 18px) */
  font-size: 0.75rem; /* Smaller font-size (from 0.8rem) */
  color: var(--grey-500);
  text-align: center;
}

.qform-helper a {
  color: var(--blue-800);
  font-weight: 700;
  transition: var(--tx);
}

.qform-helper a:hover {
  color: var(--blue-400);
}

.qform-footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 18px; /* Reduced spacing (from 24px) */
  border-top: 1px solid var(--grey-100);
  padding-top: 12px; /* Reduced padding (from 16px) */
}

.qform-footer-links a {
  font-size: 0.7rem;
  color: var(--grey-400);
  transition: var(--tx);
}

.qform-footer-links a:hover {
  color: var(--blue-400);
}

/* ═══════════════════════════════════════
   FOOTER — deep blue
═══════════════════════════════════════ */
#footer { background: var(--blue-900); }
.footer-top { padding: 64px 0 48px; border-top: 3px solid var(--gold); }
.ft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.ft-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.ft-logo .logo-img {
  height: 72px;
  width: auto;
}
.ft-logo .logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.1;
}
.ft-logo .logo-fp {
  font-family: var(--sans);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  display: block;
}
.ft-logo .logo-sub {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 3px;
  display: block;
}
.ft-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.78; margin-bottom: 20px; }
.ft-social { display: flex; gap: 10px; }
.ftslink {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  border-radius: 6px; transition: var(--tx);
}
.ftslink:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.ft-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ft-col ul { display: flex; flex-direction: column; gap: 10px; }
.ft-col li a { font-size: 0.8rem; color: rgba(255,255,255,0.55); transition: var(--tx); }
.ft-col li a:hover { color: var(--gold-light); padding-left: 4px; }
.ft-ci { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; line-height: 1.65; }
.ft-ci a { color: rgba(255,255,255,0.55); transition: var(--tx); }
.ft-ci a:hover { color: var(--gold-light); }
.ft-wa-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 22px; margin-top: 14px; border-radius: 4px;
  transition: var(--tx);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.ft-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.footer-bottom p { font-size: 0.68rem; color: rgba(255,255,255,0.35); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal="up"]    { transform: translateY(36px); }
[data-reveal="left"]  { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   TABLET  (≥ 640px)
═══════════════════════════════════════ */
@media (min-width: 640px) {
  :root { --px: 32px; }

  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { min-width: 220px; }

  .hstat { padding: 0 48px; }

  .about-img-main img { height: 480px; }
  .about-img-accent { display: block; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .menu-cats { grid-template-columns: repeat(2, 1fr); }
  .mpanel-img img { height: 380px; }

  .food-grid { grid-template-rows: 280px 280px; gap: 10px; }

  .curved-gallery-track { padding: 0 calc(50% - 120px); gap: 16px; }
  .cg-item { width: 240px; }
  .cg-card { height: 340px; }

  .rev-card {
    width: calc(50% - 10px);
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }



  .ft-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════
   DESKTOP (≥ 960px)
═══════════════════════════════════════ */
@media (min-width: 960px) {
  :root { --px: 40px; --nav-h: 100px; }

  .na-right { display: block; }         /* show side text on desktop */

  .nav-links-left, .nav-links-right { display: flex; }
  .nav-burger { display: flex; }         /* hamburger always visible for extra menu */
  .nav-drawer { display: none !important; }

  .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .about-img-main img { height: 560px; }
  .about-exp-badge { left: -24px; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }

  .mpanel-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .mpanel-img img { height: 460px; }

  .food-grid { grid-template-rows: 320px 320px; }

  /* 3D gallery default styles used on desktop */

  .rev-card {
    width: calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
  }



  .ft-grid { grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 56px; }
}

/* ═══════════════════════════════════════
   MOBILE ONLY (≤ 639px)
═══════════════════════════════════════ */
@media (max-width: 639px) {
  :root { --px: 18px; --nav-h: 64px; }

  .nav-links-left, .nav-links-right { display: none; }
  .nav-burger { display: flex; }

  .hero-stats { flex-wrap: wrap; padding: 14px 0; }
  .hstat { padding: 10px 18px; }
  .hstat-div { display: none; }

  .section { padding: 64px 0; }

  .food-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .fg-tall { grid-row: span 1; height: 220px; }
  .fg-item { height: 200px; }

  .menu-tabs { justify-content: flex-start; }
  .mtab { flex: 0 0 auto; }

  .curved-gallery-track { padding: 0 calc(50% - 100px); gap: 12px; }
  .cg-item { width: 200px; }
  .cg-card { height: 280px; }

  .pcta-bg { background-attachment: scroll; }
  .hero-scroll { display: none; }

  #wa-float { bottom: 16px; right: 16px; width: 52px; height: 52px; }

  /* Compact Responsive Client Voices on Mobile */
  .rev-card {
    padding: 20px 16px;
  }
  .rev-card::before {
    font-size: 3rem;
    top: 8px;
    right: 16px;
  }
  blockquote {
    font-size: 0.78rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .rev-stars {
    margin-bottom: 10px;
    font-size: 0.8rem;
  }
  .rev-av {
    width: 38px;
    height: 38px;
    font-size: 11px;
  }
  .rev-author strong {
    font-size: 0.78rem;
  }
  .rev-author span {
    font-size: 0.65rem;
  }
  .rev-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}
