:root {
  /* Simple palette to match the feel of the reference */
  --brand: #245ea8;
  --brand-dark: #1b4a86;
  --ink: #0b1320;
  --muted: #6b7a90;
  --surface: #e8f4ff;
}

.navbar {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffffcc;
  backdrop-filter: saturate(150%) blur(6px);
}

.brand-mark {
  height: 36px;
  width: 36px;
  border-radius: 8px;
  background: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  place-items: center;
  text-align: left;
  color: #fff;
  overflow: hidden;
  border-bottom: 4px solid var(--brand);
}

/*  */

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-weight: 800;
  letter-spacing: 0.5px;
}

.hero p.lead {
  color: #eaf2ff;
  font-weight: 500;
}

.btn-brand {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-dark);
  --bs-btn-hover-border-color: var(--brand-dark);
  --bs-btn-color: #fff;
}

.info-band {
  background: var(--surface);
  border-top: 1px solid rgba(36, 94, 168, 0.15);
  border-bottom: 1px solid rgba(36, 94, 168, 0.15);
}

.mockup {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(11, 19, 32, 0.08);
  overflow: hidden;
  border: 1px solid rgba(11, 19, 32, 0.06);
}

.stat {
  text-align: center;
}

.stat .icon {
  height: 56px;
  width: 56px;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 19, 32, 0.08);
  color: var(--brand);
  box-shadow: 0 6px 16px rgba(11, 19, 32, 0.07);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.stat .value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}

.stat .label,
.stat .sub {
  color: var(--muted);
}

footer {
  color: var(--muted);
}

.hero {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--brand-blue);
  border-radius: 12px;
}

.hero-media {
  min-height: 420px; /* base height */
}

@media (min-width: 992px) {
  .hero-media {
    min-height: 560px; /* larger on desktop */
  }
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.obj-left {
  object-position: left center;
}
.obj-right {
  object-position: right center;
}

/* subtle vertical divider between halves (desktop only) */
.split-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.25);
  mix-blend-mode: soft-light;
  display: none;
}
@media (min-width: 992px) {
  .split-divider {
    display: block;
  }
}

/* dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* centered content */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-title {
  font-weight: 800;
  letter-spacing: 0.4px;
}

/* CTA buttons with slight “pill + depth” */
.btn-cta {
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
  border: 1px solid var(--brand-blue);
}

.btn-restaurant {
  background-color: var(--brand-navy);
  color: #fff;
}
.btn-restaurant:hover {
  background-color: #182f60;
  color: #fff;
}
.btn-restaurant {
  background-color: #182f60;
  color: #fff;
}
.btn-supplier {
  background-color: var(--brand-blue-light);
  color: #fff;
}
.btn-supplier:hover {
  background-color: #4b84d9;
  color: #fff;
}
.btn-supplier {
  background-color: #4b84d9;
  color: #fff;
}

#restaurant-mandi .lead {
  color: var(--rm-muted);
  max-width: 980px;
  margin-inline: auto;
}

/* Center logo card */
#restaurant-mandi .center-card {
  --size: clamp(180px, 22vw, 260px);
  width: var(--size);
  height: var(--size);
  border-radius: 16px;
  border: 4px solid var(--rm-accent);
  background: #1f2b59;
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
  isolation: isolate;
}

/* Subtle pattern inside the center card */
#restaurant-mandi .center-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      100% 60% at 20% 20%,
      rgba(255, 255, 255, 0.08),
      transparent 60%
    ),
    radial-gradient(100% 60% at 80% 80%, rgba(0, 0, 0, 0.18), transparent 60%);
  border-radius: 12px;
  z-index: 0;
}

#restaurant-mandi .center-card img {
  position: relative;
  z-index: 1;
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
  margin: auto;
  border-radius: 8px;
}

/* Pill items */
#restaurant-mandi .category-list {
  gap: 1rem;
}

#restaurant-mandi .category-item {
  position: relative;
  background: #fff;
  border: 1px solid var(--rm-border);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
  z-index: 1; /* above connectors */
}

#restaurant-mandi .category-item .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--rm-border);
  background: linear-gradient(180deg, #fff, #f2f6ff);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(2, 6, 23, 0.05) inset;
  overflow: hidden;
  flex: 0 0 56px;
}

#restaurant-mandi .category-item .icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#restaurant-mandi .category-item .label {
  margin: 0;
  color: var(--rm-text);
  font-weight: 600;
  line-height: 1.2;
}

/* Dotted connectors (shown on lg+ screens) */
@media (min-width: 992px) {
  #restaurant-mandi .left-list .category-item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: var(--connector-width);
    border-top: 2px dotted var(--rm-border-strong);
    opacity: 0.9;
    transform: translateY(-50%);
    z-index: 0;
  }
  #restaurant-mandi .right-list .category-item::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    width: var(--connector-width);
    border-top: 2px dotted var(--rm-border-strong);
    opacity: 0.9;
    transform: translateY(-50%);
    z-index: 0;
  }
}

/* Footer note */
#restaurant-mandi .footnote {
  color: var(--rm-muted);
  max-width: 980px;
  margin-inline: auto;
}

.register-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  /* margin: 4rem auto; */
  border: 1px solid #e5e7eb;
}

.register-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.register-card h6 {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.register-card p {
  color: #555;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.btn-register {
  background-color: #153b72;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
}

.btn-register:hover {
  background-color: #102b56;
  transform: translateY(-2px);
  color: #fff;
}
.btn-register {
  background-color: #102b56;
  transform: translateY(-2px);
  color: #fff;
}

.btn-register i {
  margin-left: 8px;
  font-size: 1rem;
  transition: margin-left 0.3s ease;
}

.btn-register:hover i {
  margin-left: 12px;
}

@media (max-width: 576px) {
  .register-card {
    flex-direction: column;
    text-align: center;
  }
}

.hero1 {
  min-height: 70vh;
  background-image: url("/assets/people-taking-photos-food\ 1.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
/* Optional: constrain text width on very large screens */
.hero1 .content {
  max-width: 860px;
  color: #fff;
}

.bg-black {
  --bs-bg-opacity: 0.7;
}

footer {
  background-color: #e9f8ff;
  color: #000;
  padding: 40px 0 20px;
}

.footer-logo {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 15px 20px;
  display: inline-block;
  max-width: 250px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-heading {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: #000;
}

.footer-text {
  line-height: 1.8;
  margin-bottom: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 5px;
  text-align: center;
  line-height: 35px;
  margin-right: 10px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #333333;
}

.disclaimer {
  /* background-color: #e8ecef; */
  color: #000;
  padding: 20px;
  text-align: center;
  margin-top: 30px;
  border-radius: 10px;
}

.disclaimer a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 600;
}

.disclaimer a:hover {
  text-decoration: underline;
}

#whatsapp-fab {
  position: fixed;
  right: 18px; /* move to left side? use: left: 18px; right: auto; */
  bottom: 18px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366; /* WhatsApp green */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
#whatsapp-fab svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
/* gentle pulse */
@media (prefers-reduced-motion: no-preference) {
  #whatsapp-fab {
    animation: wppPulse 2.2s infinite;
  }
  @keyframes wppPulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
      box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
}

/*  */
@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobresponsivehero {
    margin-bottom: 28%;
  }
}

@media (max-width: 420px) {
  .mobresponsivehero {
    margin-bottom: 52%;
  }
}
/*  */
