/* ============================================================
   Galaxy Food Catering — Custom Styles (own.css)
   Global overrides & components used across all pages.
   ============================================================ */

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  --gfc-red: #ff3b30;
  --gfc-gold: #c8a97e;
  --gfc-gold-light: #e0c9a6;
  --gfc-gold-dark: #a78752;
  --gfc-dark: #1a1a2e;
  --gfc-darker: #12121f;
  --gfc-darkest: #0a0a14;
  --gfc-text: #b8b8cc;
  --gfc-text-muted: #8888a0;
  --gfc-white: #ffffff;
  --gfc-border: rgba(200, 169, 126, .15);
  --gfc-radius: 8px;
  --gfc-transition: .3s ease;
  --gfc-font: 'Poppins', sans-serif;
  --gfc-font-script: 'Great Vibes', cursive;
}

@media (min-width: 992px) {
  .ftco-navbar-light .navbar-collapse {
    justify-content: flex-end !important;
  }

  .ftco-navbar-light .navbar-nav {
    margin-left: auto !important;
    margin-right: 0 !important;
  }
}

body {
  font-family: var(--gfc-font);
  background-color: #ffffff !important;
  /* Restored clean white background as requested */
  color: #2b2b36;
}

/* Keep slider backgrounds dark while body is white */
.home-slider {
  background-color: var(--gfc-darkest) !important;
}

/* Force owl-carousel structures to be transparent so body background shows through */
.owl-carousel,
.owl-stage-outer,
.owl-stage {
  background: transparent !important;
}


/* ============================================================
   TOP BAR
   ============================================================ */
.gfc-topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--gfc-darkest);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--gfc-border);
}

.gfc-topbar a {
  color: var(--gfc-text-muted);
  transition: color var(--gfc-transition);
}

.gfc-topbar a:hover {
  color: var(--gfc-gold);
}

.gfc-topbar .topbar-social a {
  font-size: 14px;
  padding: 2px;
}


/* ============================================================
   NAVBAR BRAND
   ============================================================ */
.navbar-brand {
  font-family: var(--gfc-font);
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: .5px;
}

.navbar-brand .brand-accent {
  color: var(--gfc-gold);
}


/* ============================================================
   BOOK NOW BUTTON (in navbar)
   ============================================================ */
.gfc-btn-book {
  display: inline-block;
  background: var(--gfc-gold);
  color: var(--gfc-dark) !important;
  padding: 6px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--gfc-transition);
}

.gfc-btn-book:hover {
  background: var(--gfc-gold-dark);
  color: var(--gfc-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200, 169, 126, .35);
}


/* ============================================================
   FOOTER
   ============================================================ */
.gfc-footer {
  font-family: var(--gfc-font);
  color: var(--gfc-text);
}

/* -- Footer Main -- */
.gfc-footer-main {
  background: var(--gfc-dark);
  padding: 70px 0 50px;
}

/* -- Footer Brand -- */
.gfc-footer-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gfc-white);
  margin-bottom: 16px;
}

.gfc-footer-brand span {
  color: var(--gfc-gold);
}

.gfc-footer-widget p {
  color: var(--gfc-text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* -- Footer Headings -- */
.gfc-footer-widget h4 {
  color: var(--gfc-white);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.gfc-footer-widget h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--gfc-gold);
  border-radius: 2px;
}

/* -- Footer Social Icons -- */
.gfc-footer-social {
  display: flex;
  gap: 12px;
}

.gfc-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .06);
  color: var(--gfc-text);
  border-radius: 50%;
  font-size: 15px;
  transition: all var(--gfc-transition);
}

.gfc-footer-social a:hover {
  background: var(--gfc-gold);
  color: var(--gfc-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(200, 169, 126, .35);
}

/* -- Footer Links -- */
.gfc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gfc-footer-links li {
  margin-bottom: 10px;
}

.gfc-footer-links a {
  color: var(--gfc-text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--gfc-transition);
  position: relative;
  padding-left: 0;
}

.gfc-footer-links a::before {
  content: '\F285';
  /* bi-chevron-right */
  font-family: 'bootstrap-icons';
  font-size: 10px;
  margin-right: 8px;
  color: var(--gfc-gold);
  opacity: 0;
  transition: all var(--gfc-transition);
}

.gfc-footer-links a:hover {
  color: var(--gfc-gold);
  padding-left: 4px;
}

.gfc-footer-links a:hover::before {
  opacity: 1;
}

/* -- Footer Hours -- */
.gfc-footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gfc-footer-hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 14px;
}

.gfc-footer-hours li span:first-child {
  color: var(--gfc-text-muted);
}

.gfc-footer-hours li span:last-child {
  color: var(--gfc-gold-light);
  font-weight: 500;
}

/* -- Footer CTA Button -- */
.gfc-btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--gfc-gold);
  color: var(--gfc-gold);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all var(--gfc-transition);
}

.gfc-btn-footer:hover {
  background: var(--gfc-gold);
  color: var(--gfc-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 169, 126, .3);
}

/* -- Footer Contact -- */
.gfc-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gfc-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--gfc-text-muted);
}

.gfc-footer-contact li i {
  color: var(--gfc-gold);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.gfc-footer-contact a {
  color: var(--gfc-text-muted);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: color var(--gfc-transition);
}

.gfc-footer-contact a:hover {
  color: var(--gfc-gold);
}

/* -- Footer Bottom / Copyright -- */
.gfc-footer-bottom {
  background: var(--gfc-darker);
  padding: 20px 0;
  border-top: 1px solid var(--gfc-border);
}

.gfc-footer-bottom p {
  color: var(--gfc-text-muted);
  font-size: 13px;
}

.gfc-footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .gfc-footer-legal {
    justify-content: center;
    margin-top: 8px;
  }
}

.gfc-footer-legal li a {
  color: var(--gfc-text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--gfc-transition);
}

.gfc-footer-legal li a:hover {
  color: var(--gfc-gold);
}


/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
#scroll-up-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--gfc-gold);
  color: var(--gfc-dark);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: all var(--gfc-transition);
  box-shadow: 0 4px 15px rgba(200, 169, 126, .35);
  display: none;
  align-items: center;
  justify-content: center;
}

#scroll-up-btn:hover {
  background: var(--gfc-gold-dark);
  color: var(--gfc-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(200, 169, 126, .45);
}

#scroll-up-btn a {
  color: inherit;
  text-decoration: none;
}


/* ============================================================
   UTILITY
   ============================================================ */
.img-combined {
  background-size: cover;
  background-position: center;
  height: 100%;
}


/* ============================================================
   HERO / CAROUSEL SLIDER (left-aligned, premium style)
   ============================================================ */
.home-slider .slider-item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  /* Fixed background as requested by user */
}

/* Custom Overlay matching reference image (dark-to-gold-tint gradient) */
.home-slider .slider-item .overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(200, 169, 126, 0.15) 100%) !important;
  opacity: 1 !important;
}

/* Hero Badge */
.gfc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gfc-white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.gfc-hero-badge i {
  color: var(--gfc-gold);
  font-size: 14px;
}

/* Hero Title */
.gfc-hero-title {
  font-size: 3.8rem !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: var(--gfc-white) !important;
  text-transform: none !important;
  letter-spacing: -1px;
  margin-bottom: 20px !important;
  text-align: left !important;
}

/* Accent highlight color from screenshot (vibrant orange/red) */
.gfc-hero-title .text-accent {
  color: #ff3b30 !important;
  /* Vibrant Red/Orange from the screenshot */
}

/* Hero Subtitle */
.gfc-hero-subtitle {
  font-size: 1.25rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 650px;
  line-height: 1.6 !important;
  margin-bottom: 35px !important;
  text-align: left !important;
}

/* Adjust layout behavior for mobile to ensure left alignment stays */
@media (max-width: 767.98px) {
  .owl-carousel.home-slider .slider-item .slider-text {
    text-align: left !important;
  }

  .gfc-hero-title {
    font-size: 2.2rem !important;
  }

  .gfc-hero-subtitle {
    font-size: 1.05rem !important;
  }
}

/* Position desktop navbar precisely below topbar when not scrolled */
@media (min-width: 992px) {
  .ftco-navbar-light:not(.scrolled) {
    top: 37px !important;
    padding: 20px 0 !important;
  }
}

/* ============================================================
   STICKY SCROLL NAVBAR OVERRIDES (desktop fixed at top)
   ============================================================ */
.ftco-navbar-light.scrolled {
  position: fixed !important;
  top: 0 !important;
  margin-top: 0 !important;
  background: var(--gfc-darker) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
  border-bottom: 1px solid var(--gfc-border) !important;
  padding: 12px 0 !important;
}

/* Ensure text is white and gold on scrolled dark navbar */
.ftco-navbar-light.scrolled .navbar-brand,
.ftco-navbar-light.scrolled .navbar-brand:hover {
  color: var(--gfc-white) !important;
}

.ftco-navbar-light.scrolled .navbar-nav>.nav-item>.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.ftco-navbar-light.scrolled .navbar-nav>.nav-item>.nav-link:hover,
.ftco-navbar-light.scrolled .navbar-nav>.nav-item.active>.nav-link {
  color: var(--gfc-gold) !important;
}

/* ============================================================
   MOBILE LEFT DRAWER MENU (offcanvas menu)
   ============================================================ */
@media (max-width: 991.98px) {

  /* Elevate navbar z-index on mobile so it sits above backdrop */
  .ftco-navbar-light {
    z-index: 2000 !important;
  }

  /* Set body transition when drawer opens */
  body {
    transition: transform 0.3s ease;
  }

  /* Style the collapsible navbar container as a left-side drawer */
  .navbar-collapse {
    position: fixed !important;
    top: 0;
    left: -280px;
    /* Hidden off-canvas */
    width: 280px;
    height: 100vh;
    background: var(--gfc-darkest) !important;
    border-right: 1px solid var(--gfc-border);
    z-index: 1050;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 24px !important;
    display: block !important;
    /* Force display layout */
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.6);
    overflow-y: auto;
  }

  .navbar-collapse.show {
    left: 0 !important;
    /* Slide in to view */
  }

  /* Nav menu list structure inside drawer */
  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
    margin-bottom: 12px;
  }

  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 15px !important;
    font-weight: 500;
    padding: 10px 0 !important;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color var(--gfc-transition);
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-item.active .nav-link {
    color: var(--gfc-gold) !important;
    border-bottom-color: var(--gfc-gold);
  }

  /* Style book now cta button inside mobile drawer */
  .navbar-nav .nav-item.cta {
    margin-top: 20px;
    width: 100%;
  }

  .navbar-nav .nav-item.cta .gfc-btn-book {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
}

/* Drawer Backdrop Overlay */
.gfc-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gfc-drawer-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* ============================================================
   OUR SERVICES SECTION (Event Catering & Worker Meals)
   ============================================================ */
.gfc-services-section {
  background-color: #ffffff;
  padding: 90px 0;
}

.gfc-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.5px;
  margin-bottom: 45px;
  text-transform: uppercase;
}

.gfc-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gfc-gold);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Service Card styling matching user reference style */
.gfc-service-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.gfc-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--gfc-gold);
}

/* Card Illustration Area */
.gfc-service-illustration {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
}

.gfc-service-illustration img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gfc-service-card:hover .gfc-service-illustration img {
  transform: scale(1.05);
}

/* Card Typography */
.gfc-service-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.gfc-service-card p {
  font-size: 0.95rem;
  color: #77778a;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   MOBILE DRAWER USER DROPDOWN LAYOUT OVERRIDES
   ============================================================ */
@media (max-width: 991.98px) {

  /* Force vertical styling inside drawer collapsible dropdown */
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: none !important;
    box-shadow: none !important;
    margin-left: 15px !important;
    margin-top: 5px !important;
    padding-left: 10px !important;
    width: calc(100% - 15px) !important;
    display: none;
  }

  /* Show dropdown when toggled */
  .navbar-nav .dropdown-menu.show {
    display: block !important;
  }

  .navbar-nav .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 8px 0 !important;
    font-size: 14px;
    border-bottom: none !important;
  }

  .navbar-nav .dropdown-item:hover {
    color: var(--gfc-gold) !important;
    background: transparent !important;
  }

  .navbar-nav .dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin: 8px 0 !important;
  }

  /* Add caret chevron rotation styling */
  .navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
    border: none;
    content: '\F282';
    /* bi-chevron-down */
    font-family: 'bootstrap-icons';
    font-size: 12px;
  }
}

/* ============================================================
   USER PROFILE DROPDOWN MENU CUSTOM STYLING (matching screenshot)
   ============================================================ */

/* Pink Circle Avatar */
.gfc-user-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffeef0 !important;
  /* Soft light pink background */
  border: 1px solid #ffcad1 !important;
  /* Soft pink-red border */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff4d4d;
  /* Red profile icon */
  font-size: 16px;
  margin-right: 10px;
}

/* User Name Text */
.gfc-user-name {
  color: #afa9a9;
  font-size: 14px;
  font-weight: 600;
}

/* Custom Chevron Indicator */
.gfc-user-dropdown-toggle::after {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  content: '\F282' !important;
  /* bi-chevron-down */
  font-family: 'bootstrap-icons' !important;
  border: none !important;
  font-size: 10px;
  font-weight: 900;
  color: #555;
}

.gfc-user-dropdown-toggle[aria-expanded="true"]::after {
  content: '\F286' !important;
  /* bi-chevron-up */
}

/* Card menu positioning & design */
.gfc-user-dropdown-menu {
  background-color: #ffffff !important;
  border: 1px solid #eaeaea !important;
  border-radius: 12px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  padding: 8px 0 !important;
  min-width: 220px !important;
  margin-top: 15px !important;
}

.gfc-user-dropdown-menu .dropdown-item {
  padding: 11px 20px !important;
  font-size: 14px !important;
  font-weight: 500;
  color: #333333 !important;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-bottom: none !important;
}

.gfc-user-dropdown-menu .dropdown-item i {
  font-size: 15px;
  color: #666680;
  display: inline-flex;
}

.gfc-user-dropdown-menu .dropdown-item:hover {
  background-color: #f8f9fa !important;
  color: var(--gfc-gold) !important;
}

.gfc-user-dropdown-menu .dropdown-item:hover i {
  color: var(--gfc-gold);
}

/* Logout Item Red Text & Red Hover Effect */
.gfc-user-dropdown-menu .dropdown-item.text-danger {
  color: #ff4d4d !important;
}

.gfc-user-dropdown-menu .dropdown-item.text-danger i {
  color: #ff4d4d;
}

.gfc-user-dropdown-menu .dropdown-item.text-danger:hover {
  background-color: #fff5f5 !important;
  color: #ff3333 !important;
}

.gfc-user-dropdown-menu .dropdown-divider {
  border-top: 1px solid #eaeaea !important;
  margin: 6px 0 !important;
}

/* User profile dropdown item responsive container alignment */
.gfc-user-dropdown-item {
  display: inline-flex;
  align-items: center;
}

/* Pseudo-element hover bridge to prevent mouseout triggers over the margin-top gap */
.gfc-user-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

@media (min-width: 992px) {

  /* Force dropdown alignment to align perfectly with the right edge of user text */
  .gfc-user-dropdown-menu {
    right: 0 !important;
    left: auto !important;
  }
}

/* Mobile responsive drawer user dropdown alignment overrides */
@media (max-width: 991.98px) {
  .gfc-user-dropdown-item {
    display: block !important;
    width: 100% !important;
  }

  .navbar-nav .gfc-user-dropdown-menu {
    position: static !important;
    float: none !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: none !important;
    box-shadow: none !important;
    margin-left: 15px !important;
    margin-top: 5px !important;
    padding-left: 10px !important;
    width: calc(100% - 15px) !important;
    display: none;
  }

  .navbar-nav .gfc-user-dropdown-menu.show {
    display: block !important;
  }

  .navbar-nav .gfc-user-dropdown-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 10px 0 !important;
    background: transparent !important;
  }

  .navbar-nav .gfc-user-dropdown-menu .dropdown-item i {
    color: rgba(255, 255, 255, 0.6);
  }

  .navbar-nav .gfc-user-dropdown-menu .dropdown-item:hover {
    color: var(--gfc-gold) !important;
  }

  .navbar-nav .gfc-user-dropdown-menu .dropdown-item.text-danger {
    color: #ff4d4d !important;
  }
}

/* ============================================================
   WEEKLY MENU PRODUCT CARDS SECTION (matching reference images)
   ============================================================ */
.gfc-menu-section {
  background-color: #fcfcfd;
  padding: 80px 0;
  border-top: 1px solid #f0f0f5;
  border-bottom: 1px solid #f0f0f5;
}

/* Weekly Menu Section Headers & Custom Filter Dashboard */
.gfc-filter-panel {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 24px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.gfc-filter-label {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.gfc-filter-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Hide native checkbox inputs */
.gfc-filter-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Custom styled checkboxes for filters */
.gfc-filter-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-right: 18px;
  margin-bottom: 8px;
  user-select: none;
}

/* Custom Checkbox Box */
.gfc-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #b0b0c0;
  border-radius: 4px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: relative;
}

/* Checkmark sign using Bootstrap Icon Font */
.gfc-checkbox-custom::after {
  content: "\F270";
  /* bi-check */
  font-family: "bootstrap-icons" !important;
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  display: none;
}

/* Checkbox Text */
.gfc-checkbox-text {
  font-size: 14px;
  font-weight: 700;
  color: #444455;
  transition: color 0.2s ease;
}

/* Hover effects */
.gfc-filter-checkbox-label:hover .gfc-checkbox-custom {
  border-color: #ff3b30;
}

.gfc-filter-checkbox-label:hover .gfc-checkbox-text {
  color: #ff3b30;
}

/* Checked state for day checkbox (Red checkbox, dark red text) */
.gfc-day-checkbox:checked~.gfc-checkbox-custom {
  background-color: #ff3b30;
  border-color: #ff3b30;
  box-shadow: 0 3px 8px rgba(255, 59, 48, 0.25);
}

.gfc-day-checkbox:checked~.gfc-checkbox-custom::after {
  display: block;
}

.gfc-day-checkbox:checked~.gfc-checkbox-text {
  color: #ff3b30;
}

/* Checked state for meal checkbox (Gold checkbox, gold text) */
.gfc-meal-checkbox:checked~.gfc-checkbox-custom {
  background-color: var(--gfc-gold);
  border-color: var(--gfc-gold);
  box-shadow: 0 3px 8px rgba(212, 175, 55, 0.25);
}

.gfc-meal-checkbox:checked~.gfc-checkbox-custom::after {
  display: block;
}

.gfc-meal-checkbox:checked~.gfc-checkbox-text {
  color: var(--gfc-gold);
}

/* Card Styling */
.gfc-menu-card {
  background: #ffffff;
  border: 2px solid #eaeaea;
  /* Thicker, nicer border */
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gfc-menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: none;
}

.gfc-menu-card:hover {
  transform: translateY(-8px) scale(1.015);
  /* Sleek lift and scale */
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.12), 0 8px 20px rgba(0, 0, 0, 0.04);
  /* Amber glow */
  border-color: var(--gfc-gold);
  /* Gold border requested */
}

.gfc-menu-card:hover::before {
  left: 150%;
  transition: left 1s ease-in-out;
}

/* Card Layout Grid Info */
.gfc-menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.gfc-menu-day-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.gfc-menu-day-subtitle {
  font-size: 0.85rem;
  color: #3e3e42;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Badge overlay like "Trusted supplier" from screenshot */
.gfc-menu-badge-trusted {
  background-color: #fff9e6;
  border: 1px solid #ffe699;
  color: #b38600;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Star rating styles from reference */
.gfc-menu-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.gfc-menu-rating .stars-list {
  color: #ffc107;
  /* Gold color */
  font-size: 14px;
}

.gfc-menu-rating .reviews-count {
  color: #8888a0;
  font-weight: 400;
}

/* Menu description paragraph */
.gfc-menu-desc {
  font-size: 0.88rem;
  color: #666680;
  line-height: 1.5;
  margin-bottom: 18px;
}

/* Tags cloud */
.gfc-menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.gfc-menu-tag {
  background-color: #fff2f2;
  /* Soft red/pink background like Malay/Chinese support in screenshot */
  color: #ff4d4d;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid #ffe5e5;
}

.gfc-menu-tag:nth-child(2n) {
  background-color: #eef2ff;
  color: #4f46e5;
  border-color: #e0e7ff;
}

.gfc-menu-tag:nth-child(3n) {
  background-color: #ecfdf5;
  color: #059669;
  border-color: #d1fae5;
}

/* Dynamic Spacer to push buttons to the bottom of the card */
.gfc-menu-spacer {
  flex-grow: 1;
}

/* Actions styling from screenshot */
.gfc-menu-actions {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

/* View Details: Red button from screenshot */
.gfc-btn-view-details {
  flex-grow: 1;
  background-color: #ff3b30 !important;
  /* Vibrant red */
  color: #ffffff !important;
  font-size: 12px;
  /* Sleeker size */
  font-weight: 700;
  text-align: center;
  padding: 8px 12px;
  /* Shorter padding */
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-decoration: none;
  cursor: pointer;
}

.gfc-btn-view-details:hover {
  background-color: #e52d27 !important;
}

.gfc-btn-view-details:active {
  transform: scale(0.98);
}

/* WhatsApp: Green button from screenshot */
.gfc-btn-whatsapp {
  background-color: #25d366 !important;
  /* WhatsApp Green */
  color: #ffffff !important;
  font-size: 12px;
  /* Sleeker size */
  font-weight: 700;
  text-align: center;
  padding: 8px 12px;
  /* Shorter padding */
  border-radius: 6px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background-color 0.2s ease, transform 0.1s ease;
  text-decoration: none;
  cursor: pointer;
}

.gfc-btn-whatsapp:hover {
  background-color: #20ba5a !important;
}

.gfc-btn-whatsapp:active {
  transform: scale(0.98);
}

/* Heart Favorite Button */
.gfc-btn-fav {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  /* Darker gray border */
  background: #ffffff;
  color: #333333;
  /* Dark gray color requested */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.gfc-btn-fav:hover {
  border-color: #ff9999;
  color: #ff4d4d;
  background: #fff5f5;
}

.gfc-btn-fav.active {
  background: #ffeef0;
  border-color: #ffcad1;
  color: #ff4d4d;
}

/* ============================================================
   MODALS & POPUPS STYLING (Auth prompt & details view)
   ============================================================ */

/* Modal Base Styling */
.gfc-modal {
  display: none;
  /* Controlled by JS */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  /* Above mobile elements */
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.gfc-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.gfc-modal-dialog {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease both;
}

.gfc-modal-dialog.large {
  max-width: 600px;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(15px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.gfc-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: none;
  background: #f1f1f5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #666680;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gfc-modal-close:hover {
  background: #ffe5e5;
  color: #ff4d4d;
}

.gfc-modal-body {
  padding: 30px;
}

/* Auth required modal inner styling */
.gfc-auth-prompt-content {
  text-align: center;
}

.gfc-auth-prompt-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ffeef0;
  border: 1px solid #ffcad1;
  color: #ff4d4d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.gfc-auth-prompt-content h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.gfc-auth-prompt-content p {
  font-size: 0.92rem;
  color: #666680;
  line-height: 1.6;
  margin-bottom: 25px;
}

.gfc-auth-prompt-buttons {
  display: flex;
  gap: 12px;
}

.gfc-auth-prompt-buttons .btn {
  flex-grow: 1;
  padding: 11px 0;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
}

/* Details modal inner styling */
.gfc-details-header {
  border-bottom: 1px solid #f0f0f5;
  padding-bottom: 18px;
  margin-bottom: 20px;
}

.gfc-details-header h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.gfc-details-menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 25px;
}

.gfc-details-menu-item {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 15px;
  border-left: 4px solid var(--gfc-gold);
}

.gfc-details-menu-item.lunch {
  border-left-color: #ff3b30;
}

.gfc-details-menu-item.dinner {
  border-left-color: #4f46e5;
}

.gfc-details-menu-type {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #8888a0;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.gfc-details-menu-content {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
}

/* ============================================================
   AUTHENTICATION PAGES CUSTOM STYLING (Login & Register)
   ============================================================ */

.gfc-auth-section {
  background: url('../images/worker_meal_bg.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 180px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

/* Dark overlay for readability */
.gfc-auth-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.75);
  /* Dark overlay matching brand */
  z-index: 0;
  border-radius: 0;
  animation: none;
}

.gfc-auth-section::after {
  display: none;
}

.gfc-auth-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 50px 40px;
}

.gfc-auth-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.gfc-auth-header p {
  font-size: 0.88rem;
  color: #8888a0;
  margin-bottom: 25px;
}

.gfc-form-label {
  font-size: 13px;
  font-weight: 700;
  color: #333344;
  margin-bottom: 6px;
}

.gfc-form-control {
  border-radius: 8px !important;
  border: 1.5px solid #dcdcdc !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  color: #333333 !important;
  background-color: #ffffff !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.gfc-form-control:focus {
  border-color: var(--gfc-gold) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
  outline: none;
}

/* Custom styles for phone input prepended elements */
.gfc-input-group-phone {
  border-radius: 8px !important;
  overflow: hidden;
}

.gfc-phone-prefix {
  background-color: #f5f5f7 !important;
  border: 1.5px solid #dcdcdc !important;
  border-right: none !important;
  border-radius: 8px 0 0 8px !important;
  font-size: 14px !important;
  color: #333344 !important;
  display: flex;
  align-items: center;
  padding: 0 12px !important;
}

.gfc-input-group-phone .gfc-form-control {
  border-radius: 0 8px 8px 0 !important;
}

.gfc-forgot-password-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gfc-gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.gfc-forgot-password-link:hover {
  color: #cc9900;
  text-decoration: underline;
}

.gfc-btn-submit {
  background-color: var(--gfc-gold) !important;
  border-color: var(--gfc-gold) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 11px !important;
  border-radius: 8px !important;
  transition: background-color 0.2s ease, transform 0.1s ease !important;
}

.gfc-btn-submit:hover {
  background-color: #cc9900 !important;
  border-color: #cc9900 !important;
}

.gfc-btn-submit:active {
  transform: scale(0.98);
}

.gfc-auth-footer {
  font-size: 13px;
  color: #666680;
}

.gfc-auth-footer a {
  color: var(--gfc-gold);
  text-decoration: none;
}

.gfc-auth-footer a:hover {
  text-decoration: underline;
  color: #cc9900;
}

/* Font sizes */
.font-sm {
  font-size: 13px !important;
}

.font-xs {
  font-size: 11px !important;
}

.invalid-feedback {
  font-size: 11px !important;
  font-weight: 600;
  color: #ff3b30;
  margin-top: 4px;
}

/* ============================================================
   DEDICATED MENU DETAILS PAGE CUSTOM STYLING (Tokyo Seafood style)
   ============================================================ */
.gfc-details-page-section {
  background-color: #ffffff;
  padding: 130px 0 80px;
  /* Offset for sticky header */
}

.gfc-back-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--gfc-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.gfc-back-btn:hover {
  color: #cc9900;
}

/* Gallery Slider Styles */
.gfc-details-gallery-wrapper {
  background: #ffffff;
}

.gfc-details-gallery-main {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.gfc-details-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gfc-details-gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.gfc-gallery-thumb {
  width: 90px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.65;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.gfc-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gfc-gallery-thumb:hover {
  opacity: 0.9;
}

.gfc-gallery-thumb.active {
  opacity: 1;
  border-color: var(--gfc-gold);
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

/* Details Info Card */
.gfc-details-info-card {
  padding-left: 15px;
}

.gfc-details-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
  line-height: 1.25;
}

.gfc-details-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #8888a0;
  font-weight: 500;
  margin-bottom: 20px;
}

.gfc-details-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Tags cloud */
.gfc-details-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gfc-details-tag-badge {
  background-color: #fff2f2;
  color: #ff4d4d;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid #ffe5e5;
}

.gfc-details-tag-badge.gold {
  background-color: #fff9e6;
  color: #b38600;
  border-color: #ffe699;
}

.gfc-details-desc {
  font-size: 0.95rem;
  color: #666680;
  line-height: 1.7;
}

/* Giant WhatsApp CTA button */
.gfc-details-wa-btn {
  background-color: #25d366 !important;
  /* WhatsApp Green */
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: center;
  padding: 14px 24px !important;
  border-radius: 8px !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s ease, transform 0.1s ease !important;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.gfc-details-wa-btn:hover {
  background-color: #20ba5a !important;
}

.gfc-details-wa-btn:active {
  transform: scale(0.98);
}

/* Tabs override styles */
.gfc-details-tabs {
  border-bottom: 2px solid #eaeaea;
  gap: 5px;
}

.gfc-details-tabs .nav-link {
  border: none !important;
  background: transparent !important;
  color: #666680;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  position: relative;
  transition: color 0.2s ease;
}

.gfc-details-tabs .nav-link:hover {
  color: var(--gfc-gold);
}

.gfc-details-tabs .nav-link.active {
  color: #1a1a2e !important;
}

.gfc-details-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--gfc-gold);
  border-radius: 2px;
}

.gfc-details-tab-content {
  background-color: #ffffff;
  border-color: #eaeaea !important;
  border-width: 1px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

/* Mini Food Product Card styles */
.gfc-product-item-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.gfc-product-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.gfc-product-img {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.gfc-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gfc-product-meal-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: rgba(26, 26, 46, 0.85);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.gfc-product-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gfc-product-details h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.4;
}

.gfc-product-rating {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 15px;
}

.gfc-product-order-btn {
  background-color: #25d366 !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  border-radius: 4px !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  text-decoration: none !important;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.gfc-product-order-btn:hover {
  background-color: #20ba5a !important;
}

@media (max-width: 991.98px) {
  .gfc-details-info-card {
    padding-left: 0;
    margin-top: 15px;
  }

  .gfc-details-gallery-main {
    height: 300px;
  }
}

/* Bullet item list styles for meals */
.gfc-meal-bullets-list {
  padding-left: 0;
  margin-bottom: 20px;
}

.gfc-meal-bullets-list li {
  font-size: 14px;
  font-weight: 600;
  color: #444455;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.gfc-meal-bullets-list li i {
  font-size: 16px;
  font-weight: bold;
}

.gfc-details-meals-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
}

.gfc-details-meals-header p {
  font-size: 14px;
}

/* Biryani special notice styling */
.gfc-biryani-notice {
  background-color: #fffaf0;
  border: 1.5px solid #ffe699;
  border-left: 5px solid var(--gfc-gold);
  border-radius: 12px;
  padding: 16px 22px;
  color: #806000;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.05);
}

.gfc-notice-icon {
  font-size: 22px;
  color: var(--gfc-gold);
  display: flex;
  align-items: center;
}

.gfc-details-notice-box {
  background-color: #fff5f5;
  border: 1.5px solid #ffe3e3;
  border-left: 5px solid #ff3b30;
  border-radius: 8px;
  padding: 12px 18px;
  color: #cc2929;
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

/* ============================================================
   MENUS DIRECTORY PAGE CUSTOM STYLING (menu/index.php)
   ============================================================ */
.gfc-menus-directory-section {
  background-color: #f8f9fa;
  padding: 140px 0 85px;
  /* Offset for sticky header */
  min-height: 85vh;
}

.gfc-pre-heading {
  font-size: 13px;
  font-weight: 800;
  color: var(--gfc-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.gfc-page-title {
  font-size: 2.8rem;
  font-weight: 850;
  color: #1a1a2e;
  letter-spacing: -1px;
}

.gfc-title-bar {
  width: 60px;
  height: 3.5px;
  background-color: var(--gfc-gold);
  border-radius: 2px;
  margin-top: 15px;
}

/* Catalog Card styling */
.gfc-catalog-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 45px 35px 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.gfc-catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.gfc-catalog-card.active-catalog {
  border: 2px solid var(--gfc-gold);
}

.gfc-catalog-badge {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.gfc-catalog-badge.active {
  background-color: #e3fcf7;
  color: #008767;
}

.gfc-catalog-badge.preview {
  background-color: #f1f2f6;
  color: #68768a;
}

.gfc-catalog-icon {
  width: 54px;
  height: 54px;
  background-color: #fff9e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.gfc-catalog-icon i {
  font-size: 24px;
  color: var(--gfc-gold);
}

.gfc-catalog-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.gfc-catalog-desc {
  font-size: 14px;
  color: #666680;
  line-height: 1.6;
  margin-bottom: 25px;
}

.gfc-catalog-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.gfc-catalog-features li {
  font-size: 13.5px;
  font-weight: 650;
  color: #444455;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.gfc-catalog-btn {
  font-weight: 700 !important;
  font-size: 14px !important;
  padding: 12px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease;
}

/* ============================================================
   USER DASHBOARD PAGE CUSTOM STYLING (dashboard.php)
   ============================================================ */
.gfc-dashboard-section {
  background-color: #f9f9fc;
  padding: 140px 0 80px;
  /* Offset for sticky header */
  min-height: 85vh;
}

.gfc-dashboard-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}

.gfc-dashboard-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  /* height: 100%; */
}

.avatar-large {
  width: 80px;
  height: 80px;
  background-color: #fff1f1;
  color: #ff3b30;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.gfc-inquiries-table th {
  font-size: 13px;
  font-weight: 700;
  color: #8888a0;
  text-transform: uppercase;
  border-bottom: 2px solid #eaeaea;
  padding: 14px 10px;
}

.gfc-inquiries-table td {
  font-size: 14px;
  padding: 16px 10px;
  border-bottom: 1px solid #f2f2f5;
}

.gfc-dashboard-chat-btn {
  background-color: #25d366 !important;
  /* WhatsApp green */
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 7px 15px !important;
  border-radius: 6px !important;
  border: none !important;
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  transition: background-color 0.2s ease;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.2);
}

.gfc-dashboard-chat-btn:hover {
  background-color: #20ba5a !important;
}

/* Empty state styling */
.gfc-empty-state .empty-icon {
  font-size: 48px;
  color: #c0c0d0;
}

.gfc-empty-state h5 {
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

/* ============================================================
   PAGE HEADER HERO BANNERS (For About, Menu, Gallery, News, etc.)
   ============================================================ */
.gfc-page-hero-banner {
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 130px;
  /* Offset for taller header spacing */
}

/* Dark readable overlay */
.gfc-page-hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(212, 175, 55, 0.4) 100%);
  z-index: 1;
}

.gfc-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.gfc-page-hero-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.gfc-page-hero-breadcrumbs {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gfc-page-hero-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.gfc-page-hero-breadcrumbs a:hover {
  color: var(--gfc-gold);
}

.gfc-page-hero-breadcrumbs span.separator {
  color: var(--gfc-gold);
  margin: 0 8px;
}

.gfc-page-hero-breadcrumbs span.current {
  color: var(--gfc-gold);
}

/* ============================================================
   ABOUT PAGE DETAILED STYLING (about.php)
   ============================================================ */
.gfc-about-stats-panel {
  background: #ffffff;
  border-bottom: 1.5px solid #eaeaea;
  padding: 40px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.gfc-stat-item {
  text-align: center;
}

.gfc-stat-number {
  font-size: 2.8rem;
  font-weight: 850;
  color: #ff3b30;
  /* Red counter numbers from mockup */
  line-height: 1;
  margin-bottom: 8px;
}

.gfc-stat-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #8888a0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gfc-about-intro-section {
  padding: 80px 0 60px;
}

.gfc-about-section-badge {
  background-color: #fff1f1;
  color: #ff3b30;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
}

.gfc-about-main-heading {
  font-size: 2.2rem;
  font-weight: 850;
  color: #1a1a2e;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.gfc-about-main-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  height: 100%;
  max-height: 380px;
}

.gfc-about-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Story text section */
.gfc-about-story-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}

.gfc-about-story-content {
  font-size: 15px;
  color: #555566;
  line-height: 1.85;
}

.gfc-about-story-content p {
  margin-bottom: 24px;
}

.gfc-about-story-content p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   GLOBAL FLOATING ACTION BUTTON (CTA)
   ============================================================ */
.gfc-global-fab {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #c8a97e;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(200, 169, 126, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  z-index: 999;
  transition: all 0.3s ease;
  animation: pulseFab 2s infinite;
}

.gfc-global-fab:hover {
  background-color: #1a1a2e;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.4);
  text-decoration: none;
  animation: none;
}

.gfc-global-fab i {
  font-size: 1.2rem;
}

@keyframes pulseFab {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 169, 126, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(200, 169, 126, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(200, 169, 126, 0);
  }
}

@media (max-width: 768px) {
  .gfc-global-fab {
    bottom: 70px;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* ============================================================
   GLOBAL HALAL SEAL
   ============================================================ */
.gfc-halal-seal {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1050;
  text-align: center;
  transform: rotate(-10deg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.gfc-halal-seal:hover {
  transform: scale(1.1) rotate(0deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.gfc-halal-seal .halal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gfc-halal-seal .halal-text {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
}
.gfc-halal-seal .halal-sub {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
  letter-spacing: 0.5px;
}



/* ============================================================
   RESPONSIVE FIXES
   ============================================================ */
.gfc-dashboard-section {
  padding-top: 200px !important;
}
@media (max-width: 991px) {
  .gfc-dashboard-section {
    padding-top: 120px !important;
  }
  .gfc-halal-seal {
    bottom: 15px;
    left: 15px;
    width: 65px;
    height: 65px;
    border-width: 2px;
  }
  .gfc-halal-seal .bi-patch-check-fill {
    font-size: 16px !important;
  }
  .gfc-halal-seal .halal-text {
    font-size: 12px;
  }
  .gfc-halal-seal .halal-sub {
    font-size: 6px;
  }
}

