:root {
  --orange: #E85D1A;
  --orange-lt: #F4825A;
  --orange-bg: #FFF3EC;
  --dark: #1C1C1C;
  --cream: #F5EFE6;
  --brown: #7A3B2E;
  --white: #FFFFFF;
}

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

body {
  font-family: 'Nunito', sans-serif;
  /* background: var(--cream); */
  color: var(--dark);
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  display: none !important;              /* Chrome, Safari */
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

/* ─── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--cream);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-left {
  position: relative;
  z-index: 2;
  width: 45%;
  padding: 48px 36px 48px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Half mandala on the left edge, rotating (place mandal.png in assets/images/) */
.hero-mandal {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  /*
   * Clip strip must be ≥ (½ of .hero-mandal-spin size) × (img scale), or overflow:hidden
   * cuts off the right side of the motif. Spin max 840px → 420×1.2 ≈ 504px.
   */
  width: clamp(180px, 26.4vw, 504px);
  height: clamp(340px, 70vw, 920px);
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-mandal-spin {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  width: clamp(300px, 44vw, 840px);
  height: clamp(300px, 44vw, 840px);
  transform: translate(-50%, -50%);
  animation: hero-mandal-rotate 48s linear infinite;
}

.hero-mandal-spin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.88;
  filter: drop-shadow(0 2px 8px rgba(232, 93, 26, 0.12));
  /* Extra scale helps when the PNG has empty margins around the motif */
  transform: scale(1.2);
  transform-origin: center center;
}

@keyframes hero-mandal-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mandal-spin {
    animation: none;
  }
}

.hero-brand {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: min(540px, 100%);
}

.hero-logo {
  width: 100%;
  padding: 20px 16px;
  /* background: rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  box-shadow:
    0 4px 24px rgba(28, 28, 28, 0.06),
    0 0 0 1px rgba(232, 93, 26, 0.12); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);*/
}

.hero-logo-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(28, 28, 28, 0.08));
}

.hero-brand-line {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brown);
  margin: 0;
  line-height: 1.3;
}

.hero-by {
  font-family: "Fredoka", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 2px;
}

.hero-company {
  font-size: 42px;
  font-weight: bolder;
  color: #333333;
  letter-spacing: 0.5px;
}

.hero-byline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  overflow: hidden;
  background: var(--cream);
}

.hero-carousel {
  position: relative;
  height: 100%;
  min-height: 100%;
}

/* Gradient above slides, below indicators/controls */
.hero-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(to right, var(--cream) 0%, transparent 40%);
}

.hero-carousel .carousel-inner {
  position: relative;
  z-index: 0;
  height: 100%;
}

.hero-carousel .carousel-item {
  height: 100%;
}

.hero-carousel-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-carousel-indicators {
  margin-bottom: 1.25rem;
  z-index: 3;
}

.hero-carousel-indicators [data-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
  margin: 0 5px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero-carousel-indicators [data-target].active {
  background-color: var(--orange);
  border-color: var(--orange);
  transform: scale(1.15);
}

.hero-carousel-control {
  width: 12%;
  min-width: 44px;
  z-index: 3;
  opacity: 1;
}

.hero-carousel-control .carousel-control-prev-icon,
.hero-carousel-control .carousel-control-next-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(245, 239, 230, 0.92);
  background-size: 50% 50%;
  box-shadow: 0 2px 12px rgba(28, 28, 28, 0.12);
  filter: none;
}

.hero-carousel-control .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231C1C1C'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.hero-carousel-control .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231C1C1C'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.hero-right img.img-placeholder,
.hero-right .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-right .img-placeholder {
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #888;
  font-weight: 600;
}


/* dots accent */
.hero-dots {
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 12px);
  gap: 8px;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.5;
}

/* Hero: mobile / tablet stacked layout (order + blend) */
.hero-left {
  order: 1;
}

.hero-right {
  order: 2;
}

/* ─── SECTION COMMONS ────────────────────────────── */
section {
  padding: 40px 0 50px;
}

.section-bg-cream {
  background: var(--cream);
}

.section-bg-white {
  background: var(--white);
}

/* brush heading – match PDF: horizontal brush stroke, text centered */
.brush-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 1.5px;
  padding: 10px 32px;
  margin-bottom: 10px;
  min-height: 52px;
  color: #FFFFFF;
  text-align: center;
  text-transform: uppercase;
  background-image: url(../images/brush-heading-bg.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  width: 100%;
}

/* ─── SLIDE 2 · PRESENCE (redesigned) ─────────────── */
.presence-section {
  padding: 62px 30px 5px;
  background: linear-gradient(180deg, #f7f1e8 0%, #f5efe6 100%);
}

.presence-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

/* ── Header ── */
.presence-header {
  text-align: center;
  margin-bottom: 36px;
}

.presence-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff2ec;
  border: 1px solid #f5c8af;
  color: var(--orange);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.presence-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #111;
  margin: 0;
  line-height: 1.2;
}

.presence-title span {
  color: var(--orange);
}

/* ── Stat cards row ── */
.presence-stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.pstat-card {
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f2 100%);
  border: 1px solid #e7d7c8;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(32, 24, 18, 0.08);
  padding: 22px 14px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.pstat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(232, 93, 26, 0.09), transparent 50%);
  pointer-events: none;
}

.pstat-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 28px rgba(32, 24, 18, 0.15);
  border-color: rgba(232, 93, 26, 0.45);
}

.pstat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.28s ease;
}

.pstat-card:hover .pstat-icon {
  transform: scale(1.08) rotate(-4deg);
}

.pstat-num {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.pstat-label {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #444;
  position: relative;
  z-index: 1;
}

/* ── Map + BBSR body ── */
.presence-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Map panel */
.presence-map-panel {
  background: linear-gradient(180deg, #fffdfb, #fff8f2);
  border: 1px solid #e7d7c8;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(32, 24, 18, 0.08);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.presence-map-panel img {
  width: min(100%, 350px);
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.presence-map-panel:hover img {
  transform: scale(1.04);
}

/* BBSR panel */
.presence-bbsr-panel {
  background: linear-gradient(180deg, #fffdfb, #fff8f2);
  border: 1px solid #e7d7c8;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(32, 24, 18, 0.08);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.presence-bbsr-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(232, 93, 26, 0.08), transparent 44%);
  pointer-events: none;
}

.bbsr-chip-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}

.bbsr-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.bbsr-loc {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #e7d7c8;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  box-shadow: 0 4px 10px rgba(32, 24, 18, 0.06);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
  white-space: nowrap;
}

.bbsr-loc:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.bbsr-brand-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid #ebdccf;
  border-radius: 14px;
  background: #fffaf6;
  position: relative;
  z-index: 1;
}

.bbsr-brand-note img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.bbsr-brand-note p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  line-height: 1.65;
}

/* ─── SLIDE 3 · PROBLEM STATEMENT (redesigned) ──── */
.problem-section {
  background: linear-gradient(180deg, #f7f1e8 0%, #f5efe6 100%);
  position: relative;
  padding: 62px 40px 52px;
}

/* Decorative border for all sections except slide 1 & 2 */
.section-bordered {
  position: relative;
  overflow: hidden;
}

.section-bordered>* {
  position: relative;
  z-index: 2;
}

.problem-wrap {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.problem-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.problem-logo-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem-logo-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.problem-logo-sep {
  width: 1px;
  height: 32px;
  margin: 0 20px;
  border-left: 1px dashed #000;
  flex-shrink: 0;
}

.problem-logo-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 0.25em;
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
  letter-spacing: 0.5px;
}

.problem-logo-text .corporate {
  font-weight: 300;
  color: #000;
}

.problem-logo-text .food {
  font-weight: 700;
  color: var(--orange);
}

.problem-logo-text .connection {
  font-weight: 700;
  color: #000;
}

/* quote-bar kept for legacy compatibility */
.quote-bar {
  display: none;
}

/* ── New Slide 3 components ── */
.problem-wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ps3-quote {
  position: relative;
  max-width: 960px;
  margin: 0 auto 42px;
  padding: 22px 28px 20px 56px;
  background: linear-gradient(145deg, #fffdfb, #fff8f2);
  border: 1px solid #e7d7c8;
  border-left: 5px solid var(--orange);
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(32, 24, 18, 0.08);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
  color: #222;
}

.ps3-quote-mark {
  position: absolute;
  left: 16px;
  top: 10px;
  font-size: 52px;
  line-height: 1;
  color: var(--orange);
  font-family: Georgia, serif;
  opacity: 0.7;
}

.ps3-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ps3-card {
  position: relative;
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f2 100%);
  border: 1px solid #e7d7c8;
  border-radius: 18px;
  padding: 22px 18px 22px;
  box-shadow: 0 10px 24px rgba(32, 24, 18, 0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
  animation: ps3CardIn 0.55s ease both;
}

.ps3-card:nth-child(2) {
  animation-delay: 0.1s;
}

.ps3-card:nth-child(3) {
  animation-delay: 0.2s;
}

.ps3-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(232, 93, 26, 0.09), transparent 50%);
  pointer-events: none;
}

.ps3-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 34px rgba(32, 24, 18, 0.16);
  border-color: rgba(232, 93, 26, 0.5);
}

.ps3-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}

.ps3-card:hover .ps3-card-badge {
  transform: scale(1.05);
}

.ps3-icon-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid #f0d9c8;
  background: #fff;
  box-shadow: 0 8px 18px rgba(32, 24, 18, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.ps3-icon-ring img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  transition: transform 0.32s ease;
}

.ps3-card:hover .ps3-icon-ring {
  transform: scale(1.07);
  box-shadow: 0 12px 24px rgba(32, 24, 18, 0.14);
}

.ps3-card:hover .ps3-icon-ring img {
  transform: rotate(0deg) scale(1.08);
}

.ps3-card-text {
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #2a2a2a;
  line-height: 1.65;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 1;
}

@keyframes ps3CardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

/* old problem-* classes no longer used in HTML */

/* ─── OFFERINGS ──────────────────────────────────── */
/* .offerings-section {
  background: var(--white);
} */

.offerings-section .offerings-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.offerings-section .offerings-logo img {
  width: min(560px, 100%);
  height: auto;
  display: block;
}

/* Slide 4 intro: same visual system as .ps3-quote; fw-bold spans stay heavier than body (500) */
.offerings-intro.ps3-quote {
  max-width: 980px;
  margin: 44px auto 42px;
  text-align: left;
}

.offerings-intro.ps3-quote .fw-bold {
  font-weight: 700;
}

.offerings-layout {
  max-width: 1150px;
  margin: 0 auto;
  align-items: stretch;
}

/* .offerings-layout>.col-lg-6 {
  display: flex;
} */

.offerings-panel {
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f2 100%);
  border: 1px solid #e7d7c8;
  border-radius: 18px;
  padding: 22px 20px 20px !important;
  box-shadow: 0 12px 28px rgba(38, 30, 22, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.offerings-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(232, 93, 26, 0.08), transparent 45%);
  pointer-events: none;
}

.offerings-title {
  font-family: "Montserrat", sans-serif;
  font-size: 29px;
  font-weight: 800;
  color: #121212;
  text-decoration: underline;
  margin-bottom: 20px;
  margin-left: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.meal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 12px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.meal-card {
  padding: 14px 10px 10px;
  border: 1px solid #e7d7c8;
  border-radius: 12px;
  background: #ffffff;
  text-align: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  animation: mealCardReveal 0.5s ease both;
}

.meal-card:nth-child(2) {
  animation-delay: 0.05s;
}

.meal-card:nth-child(3) {
  animation-delay: 0.1s;
}

.meal-card:nth-child(4) {
  animation-delay: 0.15s;
}

.meal-card:nth-child(5) {
  animation-delay: 0.2s;
}

.meal-card:nth-child(6) {
  animation-delay: 0.25s;
}

.meal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 26px rgba(32, 24, 18, 0.14);
  border-color: rgba(232, 93, 26, 0.45);
}

.meal-icon {
  width: 62px;
  height: 62px;
  display: block;
  object-fit: contain;
  margin: 0 auto 6px;
  transition: transform 0.3s ease;
}

.meal-card:hover .meal-icon {
  transform: scale(1.1) rotate(-4deg);
}

.meal-card strong {
  font-size: 15px;
  font-weight: 700;
  display: block;
  color: #111;
  font-family: "Montserrat", sans-serif;
}

.cuisine-wrap {
  padding-left: 10px;
}

.cuisine-list {
  list-style: disc;
  padding-left: 30px;
  margin: 0;
  position: relative;
  z-index: 1;
}

.cuisine-list li {
  padding: 5px 0;
  font-size: 17px;
  font-weight: 700;
  color: #111;
  font-family: "Montserrat", sans-serif;
  transition: transform 0.25s ease, color 0.25s ease;
}

.cuisine-list li:hover {
  transform: translateX(6px);
  color: var(--orange);
}

@keyframes mealCardReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* ─── COLLABORATE ────────────────────────────────── */
.collab-section {
  background: var(--cream);
  padding: 40px 0 70px !important;
}

/* ─── Slide 5 (COLLABORATE & WHY US) redesigned ─── */
.collab-main-row {
  align-items: stretch;
}

.collab-main-row>.col-lg-7,
.collab-main-row>.col-lg-5 {
  display: flex;
}

.collab-panel,
.why-panel {
  width: 100%;
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f2 100%);
  border: 1px solid #e7d7c8;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(32, 24, 18, 0.08);
  padding: 20px 18px 18px;
  position: relative;
  overflow: hidden;
}

.collab-panel::before,
.why-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(232, 93, 26, 0.08), transparent 40%);
  pointer-events: none;
}

.slide5-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-decoration: underline;
  color: #121212;
  text-align: center;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

.slide5-heading--right {
  text-align: center;
  margin-left: 0;
}

.slide5-subheading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-decoration: underline;
  color: #121212;
  font-size: 18px;
  line-height: 1.2;
  margin: 24px 0 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Slide 5: stack WHY US → list → ADDITIONAL BENEFITS → list on small screens */
.why-panel-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.why-panel-grid__h-why {
  order: 1;
}

.why-panel-grid__list-why {
  order: 2;
}

.why-panel-grid__h-benefits {
  order: 3;
}

.why-panel-grid__list-benefits {
  order: 4;
}

@media (min-width: 992px) {

  .collab-main-row>.col-lg-7,
  .collab-main-row>.col-lg-5 {
    align-items: stretch;
  }

  .collab-panel,
  .why-panel {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .collab-grid {
    flex: 1 1 auto;
    align-content: start;
  }

  /* Headings on one row; lists beneath in two balanced columns */
  .why-panel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
    gap: 10px 14px;
    flex: 1 1 auto;
    min-height: 0;
    align-items: start;
  }

  .why-panel-grid__h-why {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
  }

  .why-panel-grid__h-benefits {
    grid-column: 2;
    grid-row: 1;
    margin: 0 !important;
    align-self: center;
  }

  .why-panel-grid__list-why {
    grid-column: 1;
    grid-row: 2;
    align-self: stretch;
  }

  .why-panel-grid__list-benefits {
    grid-column: 2;
    grid-row: 2;
    align-self: stretch;
  }

  .why-panel-grid .slide5-list {
    gap: 8px;
  }

  .why-panel-grid .slide5-list li {
    padding: 8px 9px;
    font-size: 13px;
    line-height: 1.22;
  }
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  justify-items: stretch;
  padding: 0;
  position: relative;
  z-index: 1;
}

.collab-tile {
  text-align: center;
  min-width: 0;
  border: 1px solid #e7d7c8;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 7px 16px rgba(34, 24, 18, 0.07);
  padding: 12px 8px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.collab-tile img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
  transition: transform 0.3s ease;
}

.collab-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 24px rgba(34, 24, 18, 0.14);
  border-color: rgba(232, 93, 26, 0.45);
}

.collab-tile:hover img {
  transform: scale(1.08) rotate(-4deg);
}

.collab-tile .tile-label {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.slide5-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.slide5-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 1.25;
  border: 1px solid #e7d7c8;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 10px;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.slide5-list li:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 20px rgba(34, 24, 18, 0.1);
  border-color: rgba(232, 93, 26, 0.42);
}

.slide5-list-icon {
  width: 30px;
  object-fit: contain;
  margin-top: 0;
  flex-shrink: 0;
  transition: transform 0.26s ease;
}

.slide5-list li:hover .slide5-list-icon {
  transform: scale(1.08);
}

.collab-card {
  text-align: center;
  padding: 20px 10px;
}

.collab-icon {
  width: 72px;
  height: 72px;
  background: var(--orange-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 28px;
}

.collab-card strong {
  font-size: 13px;
  font-weight: 800;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.why-bullet {
  min-width: 18px;
  height: 18px;
  background: var(--orange);
  border-radius: 3px;
  margin-top: 3px;
  flex-shrink: 0;
}

.why-item p {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.benefit-bullet {
  min-width: 16px;
  height: 16px;
  background: var(--orange-lt);
  border-radius: 3px;
  margin-top: 3px;
  flex-shrink: 0;
}

.benefit-item p {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  color: #444;
}

.collab-quote {
  font-style: italic;
  font-size: 19px;
  text-align: center;
  margin: 30px auto 0;
  color: #2a2a2a;
  font-weight: 600;
  max-width: 840px;
  padding: 14px 20px;
  border-radius: 12px;
  background: #fff6ef;
  border: 1px dashed #e8b28f;
}

/* ─── PROCESS ────────────────────────────────────── */
.process-section {
  background: var(--white);
  padding: 40px 0 60px;
}

.process-illustration-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 18px auto 0;
}

.process-illustration {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 70px;
}

/* Premium motion for process step blocks (no SVG line animation) */
@media (min-width: 992px) {
  .process-step-block {
    will-change: transform, opacity, filter;
    transform: translate3d(-50%, 14px, 0) scale(0.985);
    opacity: 0.01;
    filter: blur(1.8px);
    transition:
      transform 620ms cubic-bezier(0.2, 0.65, 0.2, 1),
      opacity 520ms ease,
      filter 560ms ease,
      text-shadow 260ms ease;
  }

  .process-step-block.process-step-visible {
    transform: translate3d(-50%, 0, 0) scale(1);
    opacity: 1;
    filter: blur(0);
  }

  .process-step-block.process-step-hover {
    transform: translate3d(-50%, -4px, 0) scale(1.012);
  }

  .process-step-block.process-step-hover .process-step-title {
    text-shadow: 0 2px 14px rgba(232, 93, 26, 0.34);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-step-block,
  .process-step-block.process-step-visible,
  .process-step-block.process-step-hover {
    transition: none !important;
    transform: translateX(-50%) !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

.process-diagram {
  position: relative;
}

.process_img {
  position: relative;
  top: 50px;
}

.process-step-block {
  position: absolute;
  transform: translateX(-50%);
  width: 22%;
  font-family: "Montserrat", sans-serif;
}

.process-step-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 2px;
  line-height: 1.1;
  white-space: nowrap;
  text-align: left;
}

.process-step-list {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  color: #111;
}

.process-step-list li {
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  padding: 0;
  color: #1f1f1f;
}

/* positions derived from process-step.png circle centers (1084x182) */
.p-step-1 {
  left: 11%;
  top: -25%;
}

.p-step-2 {
  left: 25%;
  bottom: -25%;
}

.p-step-3 {
  left: 38%;
  top: -25%;
}

.p-step-4 {
  left: 50%;
  bottom: -25%;
}

.p-step-5 {
  left: 62%;
  top: -25%;
}

.p-step-6 {
  left: 75%;
  bottom: -25%;
}

.p-step-7 {
  left: 86%;
  top: -25%;
}

.p-step-8 {
  left: 100%;
  bottom: -25%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .process-step-title {
    font-size: 12px;
  }

  .process-step-list li {
    font-size: 10.5px;
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-circle {
  width: 90px;
  height: 90px;
  background: #F5EFE6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 30px;
  border: 3px solid var(--orange);
  position: relative;
}

.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--orange);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h6 {
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 11px;
  color: #555;
  line-height: 1.6;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--orange);
  margin-top: 35px;
}

.prebook-badge {
  display: inline-block;
  border: 2px dashed var(--brown);
  color: var(--dark);
  font-size: 20px;
  font-weight: 700;
  padding: 6px 24px;
  border-radius: 8px;
  margin-top: 130px;
  background-color: #f6d9bd;
}

/* ─── Slide headings (avoid inline styles) ───────────────────── */
.slide-underlined-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-decoration: underline;
  color: #121212;
  text-align: center;
  font-size: 2rem;
}

/* ═══ SLIDE 8 · CTA FOOTER ═══════════════════════════════════ */
.cta-footer {
  /* background: #f4eee5; */
  color: #2a1a0e;
  font-family: 'Nunito', sans-serif;
  padding: 0px 0 20px;

}

/* ── Two-column inner layout ───────────────────── */
.cta-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 35px 48px 10px;
}

/* ── Left: illustration ────────────────────────── */
.cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-visual-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(120, 80, 40, 0.18));
  transition: transform 0.35s ease;
}

.cta-visual:hover .cta-visual-img {
  transform: translateY(-4px) scale(1.03);
}

/* ── Right: content ────────────────────────────── */
.cta-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #e85d1a;
  line-height: 1.3;
  margin: 0;
}

/* ── Contact pills row ─────────────────────────── */
.cta-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid #e2d4c4;
  border-radius: 10px;
  padding: 9px 16px 9px 10px;
  text-decoration: none;
  color: #2a1a0e;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(120, 80, 40, 0.08);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.cta-pill:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232, 93, 26, 0.28);
}

.cta-pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(232, 93, 26, 0.18);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: background 0.22s ease, color 0.22s ease;
}

.cta-pill:hover .cta-pill-icon {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* ── Social row ────────────────────────────────── */
.cta-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-social-label {
  font-size: 13px;
  color: #5e4a38;
  white-space: nowrap;
}

.cta-social-handle {
  color: var(--orange);
  font-weight: 700;
}

.cta-social-icons {
  display: flex;
  gap: 8px;
}

.cta-social-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #d8c9b8;
  background: #fff;
  color: #5e4a38 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.2s ease;
}

.cta-social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Copyright bar ─────────────────────────────── */
.cta-footer-bar {
  border-top: 1px solid #ddd0c0;
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.cta-footer-bar-copy {
  font-size: 11.5px;
  color: #7a6655;
}

.cta-footer-bar-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(232, 93, 26, 0.6);
  text-transform: uppercase;
}

/* ─── CLIENTS ────────────────────────────────────── */
.clients-section {
  background: var(--cream);
}

/* ─── Slide 7: Past clients (redesigned) ─── */
.past-clients-wrap {
  padding: 0 35px;
}

.client-logos-panel {
  background: #f9f5ef;
  border: 1px solid #e5d8cb;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(38, 32, 24, 0.08);
}

.clients-panel-head,
.testimonial-panel-head {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #3f342f;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.testimonial-panel {
  background: #f9f5ef;
  border: 1px solid #e5d8cb;
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 10px 26px rgba(38, 32, 24, 0.08);
}

.past-client-grid-wrap {
  width: 100%;
  background: transparent;
}

.past-client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  gap: 12px;
  margin-left: 0;
}

.past-client-tile {
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ded0c2;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(32, 24, 18, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.past-client-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(232, 93, 26, 0) 20%, rgba(232, 93, 26, 0.1) 50%, rgba(232, 93, 26, 0) 80%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.past-client-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(32, 24, 18, 0.16);
  border-color: #e85d1a52;
}

.past-client-tile:hover::after {
  transform: translateX(120%);
}

.past-client-logo {
  max-width: 82%;
  max-height: 62px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.past-client-tile:hover .past-client-logo {
  transform: scale(1.05);
  filter: saturate(1.18);
}

.past-testimonials-img {
  width: 100%;
  max-width: 370px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.testimonial-stack {
  display: grid;
  gap: 0;
  max-width: 100%;
  margin: 0 auto;
}

.testimonial-card--modern {
  border: 1px solid #e5d7c8;
  border-bottom: 4px solid var(--orange);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(34, 34, 34, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 0;
}

.testimonial-card--modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(34, 34, 34, 0.14);
}

.testimonial-card--modern p {
  font-size: 14px;
  line-height: 1.65;
  padding-top: 18px;
}

.testimonial-card--modern .author {
  font-size: 14px;
  margin-top: 12px;
}

@media (max-width: 991px) {
  .past-client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .past-client-tile {
    height: 92px;
  }

  .testimonial-stack {
    max-width: 100%;
  }
}

.client-logo {
  background: var(--white);
  border-radius: 10px;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  font-size: 12px;
  font-weight: 700;
  color: #888;
  text-align: center;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  margin-bottom: 15px;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 60px;
  color: var(--orange);
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: 10px;
  left: 18px;
  opacity: 0.8;
}

.testimonial-card p {
  font-size: 13px;
  color: #444;
  line-height: 1.7;
  padding-top: 20px;
}

.testimonial-card .author {
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  margin-top: 10px;
}

/* Legacy aliases kept for any other page that may reference them */
.social-handle {
  color: var(--orange);
  font-weight: 800;
  font-size: 20px;
}

/* ─── LOGO BAR AT TOP OF EVERY SECTION ──────────── */
.section-logo-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.section-logo-bar .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-logo-bar .logo-text .t1 {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
}

.section-logo-bar .logo-text .t2 {
  font-size: 14px;
  font-weight: 900;
  color: var(--orange);
}

.section-logo-bar .logo-text .t3 {
  font-size: 14px;
  font-weight: 900;
  color: var(--dark);
}

/* ─── BORDER PATTERN (zigzag) ────────────────────── */
.zigzag-border-top,
.zigzag-border-bottom {
  height: 24px;
  background: repeating-linear-gradient(90deg,
      transparent, transparent 10px,
      var(--brown) 10px, var(--brown) 12px);
  opacity: 0.3;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 991px) {
  section {
    padding: 60px 24px;
  }

  /* Slide 8: CTA Footer — tablet (≤991px) */
  .cta-inner {
    grid-template-columns: 160px 1fr;
    gap: 0 32px;
    padding: 28px 28px 24px;
  }

  .cta-visual-img {
    max-width: 150px;
  }

  .cta-tagline {
    font-size: 16px;
  }

  .cta-footer-bar {
    padding: 10px 28px;
  }

  /* Slide 2: Presence tablet layout */
  .presence-section {
    padding: 44px 18px 36px;
  }

  .presence-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .presence-body {
    grid-template-columns: 1fr;
  }

  .presence-title {
    font-size: 1.3rem;
  }

  /* Hero: keep side-by-side split on mobile/tablet */
  section.hero.p-0 {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-left {
    width: 45%;
    max-width: 45%;
    padding: 24px 16px;
    flex-shrink: 0;
    position: relative;
    align-items: flex-start;
    text-align: left;
  }

  .hero-brand {
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
  }

  .hero-left::after {
    display: none;
  }

  .hero-right {
    width: 55%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow: hidden;
    border-radius: 0;
    background-position: center top;
  }

  .hero-carousel-control .carousel-control-prev-icon,
  .hero-carousel-control .carousel-control-next-icon {
    width: 1.85rem;
    height: 1.85rem;
  }

  .hero-carousel::after {
    background: linear-gradient(to right,
        var(--cream) 0%,
        rgba(245, 239, 230, 0.58) 22%,
        transparent 56%);
  }

  .hero {
    flex-direction: row;
    align-items: center;
    min-height: 56vh;
  }

  .hero-dots {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Slide 6: Order process responsive (tablet) */
  .process-section {
    padding: 34px 14px 44px;
  }

  .process-diagram {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    align-items: start;
  }

  .process-illustration {
    grid-column: 1 / -1;
    margin-top: 18px;
  }

  .process-step-block {
    position: static;
    transform: none;
    width: 100%;
    background: #fff8f1;
    border: 1px solid #e6c9a8;
    border-radius: 8px;
    padding: 10px 10px 8px;
  }

  .process-step-title {
    white-space: normal;
    font-size: 13px;
    line-height: 1.2;
  }

  .process-step-list li {
    font-size: 11px;
    line-height: 1.3;
  }

  .prebook-badge {
    margin-top: 16px;
    font-size: 12px;
  }

  /* presence tablet – kept blank; handled above */

  .problem-section {
    padding: 46px 20px 32px;
  }

  .ps3-quote {
    font-size: 17px;
    padding: 18px 18px 16px 48px;
    margin-bottom: 28px;
  }

  .ps3-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Slide 4: intro above panels when columns stack */
  .offerings-section {
    display: flex;
    flex-direction: column;
  }

  .offerings-intro.ps3-quote {
    order: -1;
    margin: 0 auto 22px;
  }

  .offerings-title {
    font-size: 24px;
    margin-left: 0;
    text-align: center;
  }

  .meal-grid {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .meal-card {
    text-align: center;
  }

  .meal-icon {
    margin: 0 auto 0;
  }

  .offerings-layout .col-lg-6 {
    width: 100%;
  }

  .cuisine-wrap {
    padding-left: 0;
  }

  .cuisine-list {
    padding-left: 26px;
  }

  .offerings-panel {
    padding: 20px 14px 16px;
  }

  /* Slide 5 responsiveness */
  .collab-grid {
    gap: 18px 8px;
  }

  .collab-section {
    padding: 42px 18px 54px !important;
  }

  .collab-section .col-lg-7,
  .collab-section .col-lg-5 {
    width: 100%;
  }

  .collab-panel,
  .why-panel {
    padding: 18px 14px 14px;
  }

  .slide5-heading,
  .slide5-heading--right,
  .slide5-subheading {
    text-align: center;
  }

  .slide5-list {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {

  /* Slide 2: Presence phone layout */
  .presence-section {
    padding: 36px 16px 22px;
  }

  /* Slide 2: Presence phone layout */
  .presence-section {
    padding: 28px 12px 24px;
  }

  .presence-stats-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pstat-card {
    padding: 16px 10px 14px;
    border-radius: 14px;
  }

  .pstat-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

  .pstat-num {
    font-size: 2.6rem;
  }

  .pstat-label {
    font-size: 11px;
  }

  .presence-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .presence-map-panel,
  .presence-bbsr-panel {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .bbsr-chip-label {
    font-size: 11px;
    padding: 6px 12px;
  }

  .bbsr-loc {
    font-size: 12px;
    padding: 6px 12px;
  }

  .bbsr-brand-note p {
    font-size: 13px;
  }

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

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

  /* Slide 6: Order process responsive (phone) */
  .process-section {
    padding: 28px 12px 40px;
  }

  .process-diagram {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .process-illustration {
    margin-top: 12px;
  }

  .process-step-block {
    padding: 9px 9px 8px;
  }

  .process-step-title {
    font-size: 12px;
  }

  .process-step-list {
    padding-left: 16px;
  }

  .process-step-list li {
    font-size: 10.5px;
  }

  .prebook-badge {
    margin-top: 12px;
    font-size: 11px;
    padding: 6px 12px;
  }

  .problem-section {
    padding: 28px 12px 22px;
  }

  .ps3-quote {
    font-size: 14px;
    padding: 14px 12px 12px 40px;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .ps3-quote-mark {
    font-size: 38px;
    left: 10px;
  }

  .ps3-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ps3-card {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .ps3-icon-ring {
    width: 78px;
    height: 78px;
  }

  .ps3-icon-ring img {
    width: 46px;
    height: 46px;
  }

  .ps3-card-text {
    font-size: 15px;
  }

  /* Keep decorative borders visible on all section-bordered slides in mobile */
  .section-bordered::before {
    display: block;
    inset: 0 0 18px 0;
    background-image: url('../images/border_img1.png'), url('../images/border_img1.png');
    background-repeat: repeat-y, repeat-y;
    background-size: 18px auto, 18px auto;
    background-position: left top, right top;
  }

  .quote-bar {
    font-size: 16px;
  }

  .problem-card {
    min-height: auto;
  }

  .offerings-intro.ps3-quote {
    margin: 0 auto 18px;
  }

  .offerings-title {
    font-size: 18px;
    margin-left: 0;
    margin-bottom: 12px;
  }

  .meal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 8px;
  }

  .meal-icon {
    width: 54px;
    height: 54px;
  }

  .meal-card strong {
    font-size: 13px;
  }

  .meal-card {
    padding: 12px 8px 8px;
  }

  .cuisine-wrap {
    padding-left: 10px !important;
  }

  .cuisine-list {
    padding-left: 18px;
  }

  .cuisine-list li {
    font-size: 13px;
    line-height: 1.35;
  }

  .offerings-panel {
    border-radius: 12px;
  }

  /* Slide 5 responsiveness */
  .collab-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 8px;
    padding: 0;
  }

  /* Slide 5 mobile: center lone last item in final row */
  .collab-grid>.collab-tile:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .collab-tile img {
    width: 48px;
    height: 48px;
  }

  .collab-tile .tile-label {
    font-size: 12px;
  }

  .slide5-heading {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .slide5-subheading {
    font-size: 14px;
    margin: 18px 0 8px;
  }

  .slide5-list li {
    font-size: 15px;
    margin-bottom: 0;
    align-items: center;
    gap: 8px;
    padding: 8px 8px;
  }

  .slide5-list-icon {
    width: 24px;
  }

  .collab-section {
    padding: 34px 0px 44px !important;
  }

  .collab-quote {
    font-size: 14px;
    margin-top: 24px;
    padding: 10px 8px;
  }

  .collab-panel,
  .why-panel {
    padding: 14px 12px 12px;
    border-radius: 12px;
  }

  /* Slide 8: CTA Footer — mobile (≤575px) */
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px 22px;
    text-align: center;
  }

  .cta-visual {
    justify-content: center;
  }

  .cta-visual-img {
    max-width: 140px;
    margin: 0 auto;
  }

  .cta-tagline {
    font-size: 15px;
  }

  .cta-contact-row {
    justify-content: center;
  }

  .cta-pill {
    font-size: 13px;
    padding: 8px 14px 8px 9px;
  }

  .cta-social-row {
    justify-content: center;
  }

  .cta-footer-bar {
    padding: 10px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  /* Slide 7: keep same design, make mobile fit */
  .clients-section {
    padding: 30px 15px 40px;
  }

  .past-clients-wrap {
    gap: 14px !important;
    padding: 0;
  }

  .past-client-grid-wrap {
    width: 100%;
    /*overflow-x: auto;*/
  }

  .past-client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    margin-left: 0;
    gap: 10px;
  }

  .past-client-tile {
    height: 86px;
    border-width: 1px;
  }

  .past-client-logo {
    max-width: 70%;
    max-height: 54px;
  }

  .client-logos-panel,
  .testimonial-panel {
    padding: 12px;
  }

  .clients-panel-head,
  .testimonial-panel-head {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .testimonial-card--modern p {
    font-size: 13px;
    line-height: 1.55;
  }

  .testimonial-card--modern .author {
    font-size: 13px;
  }


  /*--------------------------------customise-----------------------------*/
  .problem-logo-icon img {
    height: 40px;
  }

  .problem-logo-text {
    font-size: 18px;
  }

  .problem-logo {
    margin-bottom: 10px;
  }

  .hero-brand {
    max-width: min(100%, 220px);
    gap: 8px;
  }

  .hero-logo {
    width: 100%;
    padding: 12px 10px;
    margin-bottom: 0;
    border-radius: 14px;
  }

  .hero-brand-line {
    font-size: 11px;
    letter-spacing: 0.05em;
    line-height: 1.25;
  }

  .hero-byline {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 2px;
  }

  .hero-by {
    font-size: clamp(16px, 4.2vw, 20px);
    letter-spacing: 1px;
    margin: 0;
  }

  .hero-company {
    font-size: 10px;
    line-height: 1.15;
    padding: 2px;
    margin: 0;
    margin-left: 10px;
  }

  .hero-left {
    width: 50%;
    max-width: 50%;
    padding: 18px 12px 16px;
  }

  /* Short hero on phone: strip width ×1.12 matches img scale so the right edge isn’t clipped */
  .hero-mandal {
          width: clamp(99px, 37.9vw, 168px);
        height: clamp(160px, 68vw, 300px);
  }

  .hero-mandal-spin {
    width: clamp(176px, 48vw, 300px);
    height: clamp(176px, 48vw, 300px);
  }

  .hero-mandal-spin img {
    transform: scale(1.5);
  }

  .hero-right {
    width: 56%;
    background-position: center top;
  }

  .hero-carousel::after {
    background: linear-gradient(to right,
        var(--cream) 0%,
        rgba(245, 239, 230, 0.58) 26%,
        transparent 58%);
  }

  .hero {
    min-height: 265px;
  }

  .problem-img {
    left: 125px;
    width: 70px;
  }

  .problem-card p {
    font-size: 18px;
    line-height: 1.30;
  }

  section {
    padding: 40px 30px;
  }


  .hero-carousel-control {
    display: none;
  }

  .offerings-section {
    padding: 36px 5px;
  }

  .offerings-layout {
    gap: 15px;
  }

  .offerings-panel {
    padding: 10px 5px;
  }

  .offerings-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .meal-grid {
    gap: 10px;
  }

  .meal-card {
    padding: 10px 5px;
  }
  
  .meal-icon {
    width: 40px;
    height: 40px;
  }

  .meal-card strong {
    font-size: 13px;
  }
  
  
  .cuisine-list {
    padding-left: 10px;
  }

  .cuisine-list li {
    font-size: 13px;
  }
  
  .collab-main-row {
    gap: 15px;
  }
  
}

/* ═══════════════════════════════════════════════════════════════
   CFC ENROLLMENT PAGE (cfc_enrollment_form.php) — matches index.php
   Scoped under body.cfc-enroll-page only
   ═══════════════════════════════════════════════════════════════ */

body.cfc-enroll-page {
  margin: 0;
  padding: 0;
  color: var(--dark);
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  background: var(--cream);
}

body.cfc-enroll-page *,
body.cfc-enroll-page *::before,
body.cfc-enroll-page *::after {
  box-sizing: border-box;
}

body.cfc-enroll-page h1,
body.cfc-enroll-page h2,
body.cfc-enroll-page h3,
body.cfc-enroll-page h4,
body.cfc-enroll-page .section-title,
body.cfc-enroll-page .form-title,
body.cfc-enroll-page .form-head {
  font-family: 'Montserrat', sans-serif;
}

body.cfc-enroll-page .cfc-document {
  margin: 0 auto;
  max-width: 920px;
  padding: 28px 20px 56px;
}

body.cfc-enroll-page .cfc-page {
  width: 100%;
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f2 100%);
  border: 1px solid #e7d7c8;
  border-radius: 18px;
  padding: 32px 28px 36px;
  margin-bottom: 24px;
  box-shadow: 0 10px 28px rgba(38, 30, 22, 0.08);
  position: relative;
  overflow: hidden;
}

body.cfc-enroll-page .cfc-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(232, 93, 26, 0.06), transparent 48%);
  pointer-events: none;
}

body.cfc-enroll-page .cfc-page > * {
  position: relative;
  z-index: 1;
}

body.cfc-enroll-page .logo {
  text-align: center;
  margin-bottom: 22px;
}

body.cfc-enroll-page .logo img {
  width: min(240px, 100%);
  height: auto;
  display: inline-block;
}

body.cfc-enroll-page .cfc-form-brand.problem-logo {
  margin-bottom: 14px;
}

body.cfc-enroll-page .cfc-form-brand .problem-logo-icon img {
  width: 42px;
  height: 42px;
}

body.cfc-enroll-page .cfc-form-brand .problem-logo-text {
  font-size: 28px;
}

body.cfc-enroll-page .section-title {
  margin: 12px 0 6px;
  font-size: 26px;
  font-weight: 800;
  color: #121212;
  line-height: 1.2;
}

body.cfc-enroll-page .subtitle {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
}

body.cfc-enroll-page .sub-title {
  margin: 20px 0 8px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.cfc-enroll-page h3 {
  margin: 8px 0 6px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #121212;
}

body.cfc-enroll-page p {
  margin: 0 0 14px;
  color: #2a2420;
}

body.cfc-enroll-page ul {
  margin: 0 0 14px;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.45;
  color: #2a2420;
}

body.cfc-enroll-page ul li::marker {
  color: var(--orange);
}

body.cfc-enroll-page .kitchen-photo {
  margin: 18px 0 20px;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid #e7d7c8;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 20px rgba(38, 30, 22, 0.07);
}

body.cfc-enroll-page .cfc-page--intro {
  padding-bottom: 30px;
}

body.cfc-enroll-page .cfc-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 12px 0 20px;
}

body.cfc-enroll-page .cfc-summary-card {
  background: #fff;
  border: 1px solid #e6d8c8;
  border-radius: 14px;
  padding: 16px 16px 14px;
  box-shadow: 0 6px 16px rgba(38, 30, 22, 0.05);
}

body.cfc-enroll-page .cfc-summary-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.25;
  color: #121212;
}

body.cfc-enroll-page .cfc-summary-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

body.cfc-enroll-page .cfc-compact-list {
  margin-bottom: 16px;
}

body.cfc-enroll-page .cfc-intro-note {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--brown);
}

body.cfc-enroll-page .form-title {
  margin: 0 0 24px;
  text-align: center;
  color: var(--brown);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.cfc-enroll-page .form-title-small {
  color: var(--brown);
  text-decoration: none;
  font-size: 1em;
  letter-spacing: inherit;
}

body.cfc-enroll-page .form-head {
  margin: 22px 0 12px;
  padding-bottom: 8px;
  font-size: 15px;
  font-weight: 800;
  color: #121212;
  border-bottom: 2px solid rgba(232, 93, 26, 0.35);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.cfc-enroll-page .form-head:first-of-type {
  margin-top: 0;
}

body.cfc-enroll-page .form-list {
  margin: 0 0 10px 22px;
  font-size: 16px;
  line-height: 1.4;
}

body.cfc-enroll-page .enrollment-form {
  font-size: 16px;
}

body.cfc-enroll-page .field-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  flex-wrap: wrap;
}

body.cfc-enroll-page .field-row label {
  min-width: 220px;
  font-weight: 700;
  color: #3a302a;
}

body.cfc-enroll-page .field-row input,
body.cfc-enroll-page .field-row textarea {
  outline: none;
}

body.cfc-enroll-page .field-row input[type="text"],
body.cfc-enroll-page .field-row input[type="tel"],
body.cfc-enroll-page .field-row input[type="number"],
body.cfc-enroll-page .field-row input[type="email"],
body.cfc-enroll-page .field-row input[type="date"],
body.cfc-enroll-page .field-row textarea {
  flex: 1;
  min-width: 200px;
  border: 1px solid #e2d4c4;
  border-radius: 10px;
  padding: 10px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  background: #fff;
  color: var(--dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.cfc-enroll-page .field-row textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.45;
}

body.cfc-enroll-page .field-row input:focus-visible,
body.cfc-enroll-page .field-row textarea:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 93, 26, 0.2);
}

body.cfc-enroll-page .check-line {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #2a2420;
  cursor: pointer;
}

body.cfc-enroll-page .check-line input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  flex-shrink: 0;
}

body.cfc-enroll-page .inline-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  margin: 6px 0 14px;
}

body.cfc-enroll-page .submit-wrap {
  margin-top: 28px;
  text-align: center;
}

body.cfc-enroll-page .submit-btn {
  border: none;
  background: var(--orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.04em;
  padding: 12px 28px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232, 93, 26, 0.35);
  transition: background 0.22s ease, transform 0.2s ease, box-shadow 0.22s ease;
}

body.cfc-enroll-page .submit-btn:hover {
  background: #c94c10;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(232, 93, 26, 0.4);
}

body.cfc-enroll-page .form-alert {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  display: none;
}

body.cfc-enroll-page .form-alert.success {
  background: #e8f8ee;
  color: #126632;
  border: 1px solid #b5efc8;
}

body.cfc-enroll-page .form-alert.error {
  background: #fff0f0;
  color: #8f1d1d;
  border: 1px solid #f4bbbb;
}

@media (max-width: 900px) {
  body.cfc-enroll-page .cfc-document {
    padding: 18px 14px 40px;
  }

  body.cfc-enroll-page .cfc-page {
    padding: 24px 18px 28px;
    margin-bottom: 18px;
    border-radius: 14px;
  }

  body.cfc-enroll-page .section-title {
    font-size: 16px;
  }

  body.cfc-enroll-page .cfc-form-brand.problem-logo {
    margin-bottom: 10px;
  }

  body.cfc-enroll-page .cfc-form-brand .problem-logo-text {
    font-size: 22px;
  }

  body.cfc-enroll-page .subtitle {
    font-size: 16px;
  }

  body.cfc-enroll-page h3 {
    font-size: 19px;
  }

  body.cfc-enroll-page p,
  body.cfc-enroll-page ul {
    font-size: 15px;
  }

  body.cfc-enroll-page .form-title {
    font-size: 18px;
  }

  body.cfc-enroll-page .cfc-summary-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body.cfc-enroll-page .form-head {
    font-size: 13px;
  }

  body.cfc-enroll-page .enrollment-form,
  body.cfc-enroll-page .form-list {
    font-size: 15px;
  }

  body.cfc-enroll-page .field-row label {
    min-width: 160px;
  }

  body.cfc-enroll-page .field-row input[type="text"],
  body.cfc-enroll-page .field-row input[type="tel"],
  body.cfc-enroll-page .field-row input[type="number"],
  body.cfc-enroll-page .field-row input[type="email"],
  body.cfc-enroll-page .field-row input[type="date"],
  body.cfc-enroll-page .field-row textarea,
  body.cfc-enroll-page .check-line {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  body.cfc-enroll-page .cfc-form-brand .problem-logo-icon img {
    width: 34px;
    height: 34px;
  }

  body.cfc-enroll-page .cfc-form-brand .problem-logo-text {
    font-size: 15px;
  }

  body.cfc-enroll-page .form-title {
    font-size: 14px;
    margin-bottom: 18px;
  }

  body.cfc-enroll-page .field-row {
    flex-direction: column;
    align-items: stretch;
  }

  body.cfc-enroll-page .field-row label {
    min-width: 0;
  }

  body.cfc-enroll-page .field-row input[type="text"],
  body.cfc-enroll-page .field-row input[type="tel"],
  body.cfc-enroll-page .field-row input[type="number"],
  body.cfc-enroll-page .field-row input[type="email"],
  body.cfc-enroll-page .field-row input[type="date"],
  body.cfc-enroll-page .field-row textarea {
    min-width: 0;
    width: 100%;
  }
}