:root {
  --primary: #0066A6;
  --secondary: #FFDE59;
  --neutral: #F5F5F5;
  --accent: #333333;
  --section-kicker-size: 22px;
  --section-title-size: 50px;
  --card-hover: #e5a752;
  --title: #000000;
  --red: #FF2F29;
}

.section-kicker {
  font-size: var(--section-kicker-size, 17px);
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--card-hover);
  text-transform: capitalize;
  margin-bottom: 5px;
  text-align: center;
}

.section-title {
  font-size: calc(var(--section-title-size, 50px) + 6px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--title);
  text-align: left;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.section-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 28px;
}

.section-header--center {
  align-items: center;
  text-align: center;
}

.section-header--left {
  align-items: flex-start;
  text-align: left;
}

.section-header--right {
  align-items: flex-end;
  text-align: right;
}

.fade-up { opacity: 0; transform: translateY(12px); animation: fadeUp .6s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.section-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  color: rgba(53, 58, 64, 0.84);
  margin: 0 0 18px;
}

.section-divider {
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
}

@media (max-width: 768px) {
  .section-title {
    font-size: calc(var(--section-title-size, 50px) * 0.75);
  }
  .section-kicker {
    font-size: calc(var(--section-kicker-size, 17px) * 1.05);
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: calc(var(--section-title-size, 50px) * 0.6);
  }
  .section-kicker {
    font-size: calc(var(--section-kicker-size, 17px) * 0.95);
  }
}

.about-intro {
  text-align: center;
  padding: 100px 20px 60px;
  background: #fff;
}

.about-vision {
  background: #f8f8f8;
  padding: 80px 20px;
  font-family: 'Oswald', sans-serif;
}
.about-vision .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

.image-side {
  position: relative;
  flex: 1 1 45%;
  text-align: left;
}
.image-side img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.18));
}
@media (min-width: 992px) {
  .image-side img { margin-left: -24px; }
}

.text-side {
  flex: 1 1 50%;
}
.desc {
  font-size: 19px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 95%;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.info-box {
  display: flex;
  align-items: start;
  gap: 15px;
  flex: 1 1 45%;
  line-height: 1;
}
.info-box--column { flex-direction: row; }
.info-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0d4d8f;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.info-box i {
  font-size: 30px;
  color: var(--primary);
  margin-top: 20px;
}
.info-box h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 5px;
}
.info-box p {
  font-size: 18px;
  color: #555;
  line-height: 1.5;
  text-align: left;
}

.about-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 45px;
  border-radius: 8px;
  transition: 0.3s;
}
.about-btn:hover {
  background: #004f7d;
}
.about-cta-row { display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.about-note { min-width: 260px; }
.note-label { font-family:'Oswald',sans-serif; color:#e63946; font-weight:800; letter-spacing:.6px; }
.note-text { font-family:'Oswald',sans-serif; font-weight:900; color:#111; }

.core-values {
  background: #fff8f4;
  text-align: center;
  padding: 80px 0px 40px;
  font-family: 'Oswald', sans-serif;
}
.core-values .container { max-width:1200px; margin:0 auto; padding:80px 0; text-align:center; }

@media (max-width: 900px) {
  .core-values .main-title {
    font-size: 42px;
    font-weight: 700;
  }
}
/* Keep all core value boxes in a single horizontal row.
   On small screens this creates horizontal scrolling so items remain in one row. */
.values-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 26px;
  align-items: start;
  overflow-x: hidden;
}

.value-box {
  padding: 35px 20px;
  border-radius: 14px;
  transition: all 0.35s ease;
  background: transparent;
  text-align: center;
  flex: 1 1 calc(20% - 20px);
  max-width: 300px;
  min-width: 0;
}
.value-box:hover {
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}
.value-box i {
  font-size: 38px;
  color: #0066A6;
  margin-bottom: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.value-box:hover i {
  transform: translateY(-6px);
  color: var(--primary);
}
.value-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.3;
}
.value-box p {
  font-size: 18px;
  line-height: 1.5;
  color: #555;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .values-row { flex-wrap: wrap; }
  .value-box { flex: 1 1 calc(50% - 20px); max-width: none; }
}

@media (max-width: 600px) {
  .value-box { flex: 1 1 100%; max-width: none; }
}

@media (max-width: 900px) {
  .about-vision .container {
    flex-direction: column;
    text-align: center;
  }
  .main-title {
    font-size: 38px;
  }
  .info-box {
    flex: 1 1 100%;
    justify-content: center;
  }
}

@keyframes floatBadge {
  0% { transform: translateX(-50%) rotate(-10deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(-10deg) translateY(-10px); }
  100% { transform: translateX(-50%) rotate(-10deg) translateY(0); }
}

.marquee-strip {
  background: #fdf9f4;
  overflow: hidden;
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
}
.marquee {
  white-space: nowrap;
  display: inline-block;
  animation: scrollText 25s linear infinite;
}
.marquee span {
  font-family: 'Oswald', sans-serif;
  font-size: 125px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(227, 27, 35, 0.6);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: inline-block;
  padding-right: 80px;
  opacity: 0.8;
}
@keyframes scrollText {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
.marquee:hover span {
  -webkit-text-stroke: 2px #b30000;
  text-shadow: 0 0 8px rgba(227, 27, 35, 0.3);
}

.delivery-section {
  background: url("/images/about/bg.jpg") center/cover no-repeat;
  padding: 80px 0;
  color: #111;
  position: relative;
  overflow: hidden;
  height: 406px;
}
.delivery-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 20px;
  height: 100%;
}
.delivery-section .section-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: #ffde59;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.delivery-section .section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 25px;
}
.delivery-section .section-title span { color: #ffde59; }
.order-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #111;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 35px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.order-btn:hover {
  background: #ffde59;
  transform: translateY(-3px);
}
.order-btn i {
  color: var(--primary);
  font-size: 20px;
}
.delivery-rider img {
  max-width: 480px;
  transition: transform 0.5s ease-out;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.35));
}
@media (max-width: 900px) {
  .delivery-container {
    flex-direction: column;
    text-align: center;
  }
  .delivery-rider img {
    max-width: 320px;
    margin-top: 25px;
  }
  .section-title {
    font-size: 42px;
  }
  .delivery-section {
    height: auto;
    padding: 80px 20px;
  }
}

.special-deals {
  background: #fff8f4;
  padding: 80px 0;
}
.deals-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}
.deal-box {
  position: relative;
  color: #111;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  font-family: 'Oswald', sans-serif;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.deal-left {
  background: url("/images/about/imgi_55_burger-bg.png") center/cover no-repeat;
  width: 742px;
  height: 410px;
  padding: 45px;
  position: relative;
}
.deal-left .deal-content { position: relative; z-index: 2; }
.deal-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.burger-img {
  position: absolute;
  bottom: 25px;
  right: 50px;
  width: 280px;
  transition: transform 0.4s ease;
}
.deal-left:hover .burger-img {
  transform: translateY(-8px) scale(1.04);
}
.deal-right {
  background: url("/images/about/imgi_56_pepsi-bg.png") center/cover no-repeat;
  width: 513px;
  height: 410px;
  padding: 45px;
  position: relative;
}
.box-img {
  position: absolute;
  bottom: 10px;
  right: -10px;
  width: 275px;
  transition: transform 0.4s ease;
}
.deal-right:hover .box-img {
  transform: translateX(10px) scale(1.02);
}
.deal-sub {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 2px;
  line-height: 1.1;
}
.deal-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  margin: 6px 0 8px 0;
}
.deal-item {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 18px;
}
.deal-item span { color: #ffde59; }
.price {
  position: absolute;
  bottom: 22px;
  left: 45px;
  font-size: 20px;
  font-weight: 700;
  color: #ffde59;
}
.deal-sub-2 {
  color: #ffde59;
  font-size: 17px;
  margin-bottom: 10px;
}
.deal-desc {
  font-size: 16px;
  color: #eee;
  margin-bottom: 30px;
  max-width: 300px;
}
.deal-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .deals-container {
    flex-direction: column;
    align-items: center;
  }
  .deal-box {
    width: 90%;
    height: auto;
  }
  .burger-img, .box-img {
    position: static;
    transform: none;
    width: 250px;
    margin: 20px auto 0;
  }
  .deal-title { font-size: 48px; }
  .deal-item { font-size: 30px; }
}

.serve-section {
  background: #fff8f4;
  padding: 20px 0;
  text-align: center;
  position: relative;
}
.serve-section .container { max-width:1200px; margin:0 auto; padding:20px 0; text-align:center; }
.serve-subtitle {
  color: var(--primary);
  font-size: 17px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  margin-bottom: -20px;
}
.serve-title {
  font-family: 'Oswald', sans-serif;
  font-size: 60px;
  color: #111;
  margin-bottom: 80px;
}
.serve-section::after {
  content: "";
  position: absolute;
  top: 285px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  z-index: 0;
}
.serve-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: nowrap;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.serve-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px 50px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}
.serve-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,222,89,0.08), rgba(255,222,89,0.3));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.serve-card:hover::before { opacity: 1; }
.serve-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.serve-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 170px;
  margin-bottom: 20px;
}
.serve-img img {
  width: 160px;
  height: auto;
  transition: transform 0.4s ease;
}
.serve-card:hover img {
  transform: scale(1.06);
}
.serve-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 20px 0 10px;
}
.serve-card p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
  max-width: 300px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .serve-section::after {
    width: 70%;
    top: 300px;
  }
}
@media (max-width: 992px) {
  .serve-cards {
    flex-wrap: wrap;
    gap: 35px;
  }
  .serve-card {
    max-width: 90%;
  }
  .serve-section::after {
    display: none;
  }
  .serve-title {
    font-size: 46px;
  }
}

/* Follow us for more Boom */
.follow-boom {
  background: #fff;
  padding: 60px 0;
}
.follow-boom .container {
  max-width: 1100px;
  margin: 0 auto;
}
.follow-boom .section-title {
  text-align: center;
}
.follow-row {
  display: grid;
  place-items: center;
  gap: 16px;
}
.follow-text {
  text-align: left;
  font-family: 'Oswald', sans-serif;
}
.follow-line {
  font-size: 22px;
  margin: 6px 0;
  color: #222;
}
.follow-qr img {
  width: 260px;
  height: auto;
  display: block;
}
.follow-cta {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: #222;
  margin: 4px 0 0;
  text-align: center;
}
