html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ─── SIDE NAV ─── */
.side-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.side-overlay.open { opacity: 1; pointer-events: all; }

.side-nav {
  position: fixed; top: 0; left: 0; z-index: 201;
  width: 300px; max-width: 85vw; height: 100vh;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.side-nav.open { transform: translateX(0);background: var(--yellow); }

.side-nav-header {
  /* background: var(--yellow);  */
  padding: 0 20px; 
  /* height: 70px; */
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.side-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--black); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 14px; transition: background 0.2s;
}
.side-close:hover { background: #333; }

.side-nav-auth {
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--gray-light);
}
.side-nav-auth p { font-size: 22px; font-weight: 900; color: var(--black); }
.side-nav-auth p a { color: var(--red); text-decoration: none; }
.side-nav-auth p a:hover { text-decoration: underline; }
.side-nav-auth span { color: var(--gray-dark); font-size: 15px; font-weight: 600; }

.side-nav-links { padding: 16px 0; flex: 1; }
.side-nav-links a {
  display: block; padding: 14px 24px;
  font-size: 16px; font-weight: 700;
  color: var(--black); text-decoration: none;
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
}
.side-nav-links a:hover {
  background: var(--yellow-light); color: var(--black);
  border-left-color: var(--yellow);
}

/* ─── NAV — YELLOW ─── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--yellow);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; padding: 0 28px; height: 96px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.15);
}
.nav-left { display: flex; align-items: center; }
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2.5px;
  background: var(--black); border-radius: 2px;
}

.logo { display: flex; align-items: center; text-decoration: none; justify-content: center; }
.logo svg { height: 46px; width: auto; display: block; }

.nav-right { display: flex; justify-content: flex-end; }
.btn-locations {
  background: var(--black); color: var(--yellow);
  border: none; font-family: 'Barlow', sans-serif;
  font-weight: 800; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; padding: 10px 22px;
  border-radius: 8px; cursor: pointer;
  transition: background 0.2s, transform 0.15s; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.btn-locations:hover { background: #222; transform: translateY(-1px); }



/* ─── FOOTER — YELLOW ─── */
  footer {
    background: var(--yellow);
  }

  .footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px; padding: 60px 40px 40px;
    border-bottom: 1px solid rgba(0,0,0,0.12);
  }

  .footer-brand .logo { justify-content: flex-start; margin-bottom: 18px; }
  .footer-brand .logo svg { height: 42px; }
  .footer-brand p {
    font-size: 13px; line-height: 1.7; color: rgba(0,0,0,0.6); margin-bottom: 16px;
  }
  .footer-address { font-size: 13px; line-height: 1.8; color: rgba(0,0,0,0.55); }
  .footer-address strong { color: var(--black); font-weight: 800; }

  .footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; letter-spacing: 2px; color: var(--black); margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(0,0,0,0.6); text-decoration: none;
    font-size: 14px; font-weight: 700; transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--black); }

  .social-links { display: flex; flex-direction: column; gap: 12px; }
  .social-link {
    display: flex; align-items: center; gap: 12px;
    color: rgba(0,0,0,0.6); text-decoration: none;
    font-size: 14px; font-weight: 700; transition: color 0.2s;
  }
  .social-link:hover { color: var(--black); }
  .social-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; transition: background 0.2s; flex-shrink: 0;
    color: var(--black);
  }
  .social-link:hover .social-icon { background: var(--black); color: var(--yellow); }

  /* Footer bottom stays BLACK */
  .footer-bottom {
    background: var(--black);
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 40px; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 600; }
  .footer-legal { display: flex; gap: 20px; }
  .footer-legal a {
    font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 600;
    text-decoration: none; transition: color 0.2s;
  }
  .footer-legal a:hover { color: var(--yellow); }

  
  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .locations-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    nav { padding: 0 16px; height: 96px; }
    .side-nav-header { height: 62px; }
    .btn-locations { font-size: 11px; padding: 9px 14px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 32px; }
    .footer-bottom { padding: 18px 24px; }
  }
  @media (max-width: 520px) {
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

.franchise-section {
  position: relative;
  background: #111111;
  overflow: hidden;
  padding: 88px 40px;
}

/* Background kitchen image with overlay */
.fs-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.18);
  z-index: 0;
}

/* Yellow top accent line */
.franchise-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: #F5C400;
  z-index: 2;
}

/* Diagonal bottom cut */
/* .franchise-section::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 70px;
  background: #F5F5F5;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
} */

/* Inner two-column layout */
.fs-inner {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

/* ── LEFT CONTENT ── */
.fs-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #F5C400;
  color: #111111;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.fs-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5.5vw, 70px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: #ffffff;
  margin-bottom: 22px;
}

.fs-heading span {
  color: #F5C400;
}

.fs-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}

/* Benefits list */
.fs-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.fs-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.fs-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #F5C400;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* CTA Buttons */
.fs-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.fs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #F5C400;
  color: #111111;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(245,196,0,0.35);
  transition: background 0.2s, transform 0.2s;
}

.fs-btn-primary:hover {
  background: #d4a900;
  transform: translateY(-3px);
}

.fs-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.2s;
}

.fs-btn-secondary:hover {
  border-color: #F5C400;
  color: #F5C400;
  transform: translateY(-2px);
}

/* ── RIGHT SIDE ── */
.fs-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* Big badge */
.fs-badge-wrap {
  animation: fsBadgeFloat 3s ease-in-out infinite;
}

@keyframes fsBadgeFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%       { transform: translateY(-12px) rotate(-4deg); }
}

.fs-badge {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #F5C400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(245,196,0,0.4), 0 0 0 10px rgba(245,196,0,0.12);
}

.fs-badge-zero {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: #111111;
  letter-spacing: -2px;
}

.fs-badge-label {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #111111;
  margin-top: -6px;
}

.fs-badge-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(0,0,0,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Mini stat row */
.fs-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  width: 100%;
}

.fs-stat {
  flex: 1;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.fs-stat:last-child {
  border-right: none;
}

.fs-stat strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 1px;
  color: #F5C400;
  line-height: 1;
}

.fs-stat strong span {
  font-size: 18px;
}

.fs-stat > span {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .fs-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .fs-right {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .fs-stats {
    width: auto;
    flex: 1;
    min-width: 260px;
  }
}

@media (max-width: 768px) {
  .franchise-section {
    padding: 72px 24px;
  }
  .fs-heading {
    font-size: 48px;
  }
  .fs-right {
    flex-direction: column;
    align-items: center;
  }
  .fs-stats {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .fs-ctas {
    flex-direction: column;
  }
  .fs-btn-primary,
  .fs-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .fs-heading {
    font-size: 40px;
  }
}

.whatsapp-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover{
    transform: scale(1.1);
}

.whatsapp-float img{
    width: 35px;
    height: 35px;
}


/* ─── Section wrapper ─── */
.trust-section {
  background: #ffffff;
  padding: 80px 40px;
  position: relative;
}

/* Subtle top border accent */
.trust-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fcd00c 0%, #E8190B 50%, #fcd00c 100%);
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fcd00c;
  color: #111111;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  font-family: 'Barlow', sans-serif;
}

.trust-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: 2px;
  color: #111111;
  line-height: 1;
  margin-bottom: 12px;
}
.trust-heading span { color: #b11f24; }

.trust-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Cards row ─── */
.trust-cards {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: #f9f9f9;
  border-radius: 18px;
  border: 1.5px solid #eeeeee;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.06);
}

/* ─── Single card ─── */
.trust-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 40px 44px;
  text-decoration: none;
  color: #111111;
  background: #fffbe6;
  transition: background 0.2s, transform 0.2s;
  position: relative;
}

.trust-card:hover {
  background: #fffbe6;
  transform: translateY(-3px);
  z-index: 1;
}

/* Yellow left accent line on hover */
.trust-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: #fcd00c;
  transition: width 0.2s;
  border-radius: 0;
}
.trust-card:hover::before { width: 5px; }

/* ─── Logo box ─── */
.trust-card-logo {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.trust-card-logo.pfa-logo {
  width: 160px;
}

/* ─── Card text ─── */
.trust-card-body {
  flex: 1;
}

.trust-card-stars {
  color: #fcd00c;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
}
/* certificate icon colour */
.trust-card-stars .fa-certificate { color: #b11f24; font-size: 15px; }

.trust-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1.5px;
  color: #111111;
  margin-bottom: 2px;
  line-height: 1;
}

.trust-card-score {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #b11f24;
  margin-bottom: 10px;
}

.trust-card-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  line-height: 1.7;
  margin-bottom: 14px;
}

.trust-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111111;
  border-bottom: 2px solid #fcd00c;
  padding-bottom: 1px;
  transition: color 0.2s;
}
.trust-card:hover .trust-card-link { color: #b11f24; border-color: #b11f24; }

/* ─── Divider between cards ─── */
.trust-divider {
  width: 1px;
  background: #eeeeee;
  flex-shrink: 0;
  align-self: stretch;
}

/* ─── Bottom trust bar ─── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #111111;
  border-radius: 12px;
  padding: 18px 32px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-bar-item i {
  color: #fcd00c;
  font-size: 14px;
}

.trust-bar-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .trust-section { padding: 60px 24px; }
  .trust-cards { flex-direction: column; }
  .trust-divider { width: auto; height: 1px; align-self: stretch; }
  .trust-card { padding: 32px 28px; gap: 20px; }
  .trust-card::before { width: 5px !important; height: 0; bottom: auto; right: 0; transition: none; }
  .trust-card:hover { transform: none; }
  .trust-card-logo { width: 110px; }
  .trust-card-logo.pfa-logo { width: 130px; }
  .trust-bar { gap: 0; padding: 16px 20px; }
  .trust-bar-item { padding: 6px 14px; font-size: 11px; }
  .trust-bar-sep { display: none; }
}

@media (max-width: 520px) {
  .trust-card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 28px 20px; }
  .trust-card-logo,
  .trust-card-logo.pfa-logo { width: 120px; }
  .trust-bar-item { flex: 0 0 50%; justify-content: center; }
}


/* ── Section ── */
.humanity-section {
  background: #E8190B;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.humanity-bg-pattern {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.humanity-section::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: #fcd00c; z-index: 2;
}

/* faint watermark */
.humanity-section::after {
  content: 'HUMANITY';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 220px; letter-spacing: 20px;
  color: rgba(0,0,0,0.08);
  position: absolute; bottom: -30px; right: -20px;
  pointer-events: none; z-index: 0;
  white-space: nowrap; line-height: 1;
}

.humanity-inner {
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 32px;
}

/* ── CENTER BLOCK ── */
.humanity-center {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 0;
}

/* Pulsing heart ring */
.humanity-icon-ring {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fcd00c;
  margin-bottom: 14px;
  animation: humanityPulse 2.5s ease-in-out infinite;
}
@keyframes humanityPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(252,208,12,0); }
  50%       { transform: scale(1.06); box-shadow: 0 0 0 14px rgba(252,208,12,0.12); }
}

.humanity-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.18);
  color: #ffffff; border: 1px solid rgba(255,255,255,0.3);
  font-family: 'Barlow', sans-serif;
  font-size: 11px; font-weight: 900; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 5px 16px;
  border-radius: 30px; margin-bottom: 14px;
}

.humanity-heading {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(20px, 3.5vw, 34px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 14px;
  max-width: 680px;
}
.humanity-heading span {
  color: #fcd00c;
  font-style: italic;
}

/* Big quote */
.humanity-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* Serving line */
.humanity-serving {
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 700;
  color: rgba(255,255,255,0.8);
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 30px;
  padding: 9px 20px;
  margin-bottom: 20px;
}
.humanity-serving i { color: #fcd00c; font-size: 14px; flex-shrink: 0; }

/* VIP tagline bar */
.humanity-vip-bar {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 9px 22px;
}
.hvip-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 2px; color: #fcd00c; line-height: 1;
}
.hvip-logo em { font-style: normal; color: #ffffff; }
.hvip-logo small { font-size: 10px; letter-spacing: 3px; color: rgba(255,255,255,0.5); vertical-align: middle; }
.hvip-divider {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.2); flex-shrink: 0;
}
.hvip-text {
  font-family: 'Barlow', sans-serif;
  font-size: 15px; font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.3px;
}

/* ── PILLARS ── */
.humanity-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.humanity-pillar {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 24px 22px;
  text-align: center;
  transition: transform 0.22s, background 0.22s;
}
.humanity-pillar:hover {
  transform: translateY(-4px);
  background: rgba(0,0,0,0.28);
}

/* Featured middle pillar */
.pillar-featured {
  background: rgba(0,0,0,0.28);
  border-color: rgba(252,208,12,0.4);
  position: relative;
  transform: translateY(-6px);
}
.pillar-featured::before {
  content: '★ CORE VALUE';
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: #fcd00c; color: #111111;
  font-family: 'Barlow', sans-serif;
  font-size: 9px; font-weight: 900;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
  white-space: nowrap;
}
.pillar-featured:hover { transform: translateY(-10px); }

.pillar-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fcd00c;
  margin: 0 auto 14px;
  border: 1px solid rgba(255,255,255,0.15);
}
.featured-icon {
  background: #fcd00c; color: #111111;
  border: none;
  box-shadow: 0 4px 16px rgba(252,208,12,0.3);
}
.featured-icon i { color: #111111; }

.humanity-pillar h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 2px;
  color: #ffffff; margin-bottom: 8px;
}
.humanity-pillar p {
  font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .humanity-pillars { grid-template-columns: 1fr; gap: 14px; }
  .pillar-featured { transform: none; }
  .pillar-featured:hover { transform: translateY(-5px); }
  .humanity-section { padding: 64px 24px; }
  .humanity-section::after { font-size: 120px; }
}
@media (max-width: 520px) {
  .humanity-heading { font-size: 22px; }
  .humanity-quote { font-size: 28px; }
  .humanity-vip-bar { flex-wrap: wrap; justify-content: center; border-radius: 14px; }
  .hvip-divider { display: none; }
}
