/* ═══ KORA LONDON — GLOBAL STYLES ═══ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #1c1917; color: #fff; font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
::selection { background: #CFFF04; color: #0a0a0a; }
a { text-decoration: none; }

/* ─── ANIMATIONS ─── */
@keyframes grain {
  0%, 100% { transform: translate(0,0) }
  10% { transform: translate(-5%,-10%) }
  30% { transform: translate(3%,-15%) }
  50% { transform: translate(-15%,5%) }
  70% { transform: translate(8%,10%) }
  90% { transform: translate(-10%,15%) }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.9s cubic-bezier(.22,1,.36,1) forwards; }
.fade-up-d1 { animation-delay: 0.12s; opacity: 0; }
.fade-up-d2 { animation-delay: 0.24s; opacity: 0; }
.fade-up-d3 { animation-delay: 0.36s; opacity: 0; }
.fade-up-d4 { animation-delay: 0.48s; opacity: 0; }
.fade-up-d5 { animation-delay: 0.60s; opacity: 0; }

.reveal { opacity: 0; transform: translateY(44px); transition: opacity 0.85s cubic-bezier(.22,1,.36,1), transform 0.85s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── GRAIN ─── */
.grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.035;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(28,25,23,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 18px;
  letter-spacing: 4px; cursor: pointer; color: #fff; text-transform: uppercase;
}
.logo span { color: #CFFF04; }
.nav-links { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.5px; color: rgba(255,255,255,0.45); transition: color 0.3s;
}
.nav-links a:hover { color: rgba(255,255,255,0.85); }
.nav-links a.active { color: #CFFF04; }

/* Mobile toggle */
.mobile-toggle {
  display: none; background: none; border: none; color: #fff;
  font-size: 28px; cursor: pointer; z-index: 200; line-height: 1;
}
.mobile-menu {
  display: none; position: fixed; inset: 0; background: rgba(28,25,23,0.97);
  z-index: 150; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700;
  color: rgba(255,255,255,0.6); transition: color 0.3s;
}
.mobile-menu a:hover { color: #CFFF04; }

/* ─── PILL ─── */
.pill {
  display: inline-block; padding: 6px 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18); font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-family: 'DM Sans', sans-serif; margin-bottom: 28px;
}

/* ─── LAYOUT ─── */
.page-wrap { position: relative; z-index: 1; }
.section-pad { padding: 120px 48px; max-width: 1200px; margin: 0 auto; }
.page-header {
  padding: 160px 48px 80px; max-width: 1200px; margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.section-title {
  font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800;
  line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 20px;
}
.section-title .accent { color: #CFFF04; }
.section-sub {
  font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.42);
  max-width: 580px;
}

/* ─── BUTTONS ─── */
.btn-primary {
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px;
  padding: 16px 36px; border-radius: 999px; border: none;
  background: #CFFF04; color: #0a0a0a; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s; letter-spacing: 0.3px;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(207,255,4,0.25); }
.btn-secondary {
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px;
  padding: 16px 36px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12); background: transparent;
  color: rgba(255,255,255,0.7); cursor: pointer; transition: all 0.3s;
  letter-spacing: 0.3px; display: inline-block;
}
.btn-secondary:hover { border-color: rgba(207,255,4,0.4); color: #fff; }

/* ─── GRIDS ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ─── SERVICE CARDS ─── */
.service-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 36px 32px; transition: all 0.4s ease; cursor: default;
}
.service-card:hover { background: rgba(207,255,4,0.04); border-color: rgba(207,255,4,0.3); }
.service-num {
  font-family: 'Space Mono', monospace; font-size: 13px; color: #CFFF04;
  margin-bottom: 14px; letter-spacing: 1px;
}
.service-card h3 {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 14px; line-height: 1.3;
}
.service-card p {
  font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.5); margin: 0;
}

/* ─── FOUNDER CARDS ─── */
.founder-card {
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 44px 36px; transition: all 0.4s ease;
}
.founder-card:hover { background: rgba(207,255,4,0.03); border-color: rgba(207,255,4,0.25); }
.founder-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #CFFF04 0%, #1c1917 100%);
  margin-bottom: 24px; display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 20px; color: #0a0a0a;
}
.founder-card h3 {
  font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700;
  color: #fff; margin: 0 0 6px 0;
}
.founder-role {
  font-family: 'Space Mono', monospace; font-size: 11px; color: #CFFF04;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px;
}
.founder-card p {
  font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,0.5); margin: 0 0 20px 0;
}
.founder-link {
  font-family: 'DM Sans', sans-serif; font-size: 13px; color: #CFFF04;
  border-bottom: 1px solid rgba(207,255,4,0.3); padding-bottom: 2px;
}

/* ─── FORMS ─── */
input, textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px 20px; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 15px; outline: none;
  transition: border-color 0.3s; width: 100%; margin-bottom: 16px;
}
input:focus, textarea:focus { border-color: rgba(207,255,4,0.5); }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
.btn-submit {
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px;
  padding: 16px 0; border-radius: 12px; border: none;
  background: #CFFF04; color: #0a0a0a; cursor: pointer;
  transition: opacity 0.3s; letter-spacing: 0.3px; width: 100%;
}
.btn-submit:hover { opacity: 0.85; }

/* ─── CONTACT INFO ─── */
.contact-label {
  font-family: 'Space Mono', monospace; font-size: 11px; color: #CFFF04;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.contact-value {
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: rgba(255,255,255,0.6);
}
.social-links { display: flex; gap: 20px; margin-top: 4px; }
.social-links a {
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  color: rgba(255,255,255,0.4); transition: color 0.3s;
}
.social-links a:hover { color: #CFFF04; }

/* ─── FOOTER ─── */
footer {
  padding: 48px 48px 36px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px; max-width: 1200px; margin: 0 auto;
}
.footer-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 14px;
  letter-spacing: 4px; color: rgba(255,255,255,0.3);
}
.footer-logo span { color: rgba(207,255,4,0.5); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ─── FOOD SECTION ─── */
.food-wrapper {
  background: linear-gradient(135deg, rgba(207,255,4,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.05); border-radius: 24px;
  padding: 64px 56px; position: relative; overflow: hidden;
}
.food-circle-1 {
  position: absolute; top: -80px; right: -80px; width: 300px; height: 300px;
  border-radius: 50%; border: 1px solid rgba(207,255,4,0.08); pointer-events: none;
}
.food-circle-2 {
  position: absolute; top: -40px; right: -40px; width: 200px; height: 200px;
  border-radius: 50%; border: 1px solid rgba(207,255,4,0.05); pointer-events: none;
}
.food-pillars h4 {
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 10px;
}
.food-pillars p {
  font-family: 'DM Sans', sans-serif; font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.4); margin: 0;
}
.food-icon { font-size: 28px; margin-bottom: 16px; }
.partner-box {
  padding: 32px 36px; background: rgba(207,255,4,0.04);
  border: 1px solid rgba(207,255,4,0.12); border-radius: 16px;
}
.partner-box h4 {
  font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700;
  color: #CFFF04; margin-bottom: 10px;
}
.partner-box p {
  font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.5); margin: 0;
}

/* ─── DETAIL CARDS (for services detail) ─── */
.detail-block {
  padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.detail-block:last-child { border-bottom: none; }
.detail-block h3 {
  font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700;
  color: #fff; margin-bottom: 16px; line-height: 1.25;
}
.detail-block p {
  font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.48); max-width: 640px;
}
.detail-num {
  font-family: 'Space Mono', monospace; font-size: 14px; color: #CFFF04;
  letter-spacing: 1px; margin-bottom: 16px;
}

/* ─── QUOTE BOX ─── */
.quote-box {
  padding: 40px 44px; background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; text-align: center;
}
.quote-box p {
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 600;
  color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; font-style: italic;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 80px 48px; text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(207,255,4,0.03) 100%);
}
.cta-banner h2 {
  font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800;
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.cta-banner p {
  font-size: 17px; color: rgba(255,255,255,0.4); margin-bottom: 32px;
}

/* ─── WHATSAPP BUTTON ─── */
.wa-float {
  position: fixed; bottom: 172px; right: 28px; z-index: 999;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-tooltip {
  position: fixed; bottom: 232px; right: 28px; z-index: 998;
  background: #fff; color: #1a1a1a; padding: 12px 18px;
  border-radius: 12px 12px 4px 12px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none; white-space: nowrap;
}
.wa-float:hover + .wa-tooltip,
.wa-tooltip.show {
  opacity: 1; transform: translateY(0);
}

/* ─── CHATBOT TYPING DOTS ─── */
@keyframes koraDots {
  0%, 80%, 100% { opacity: 0.3; }
  40% { opacity: 1; }
}
.kora-dots { animation: koraDots 1.4s infinite; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .section-title { font-size: 36px !important; }
  .grid-2, .grid-3 { grid-template-columns: 1fr !important; }
  .nav-links { display: none !important; }
  .mobile-toggle { display: block !important; }
  .section-pad, .page-header { padding-left: 20px !important; padding-right: 20px !important; }
  .page-header { padding-top: 120px !important; }
  nav { padding: 0 20px; }
  footer { padding: 36px 20px 28px; }
  .food-wrapper { padding: 40px 24px !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
  #home { padding: 120px 20px 60px !important; }
  .hero-title { font-size: 42px !important; }
}
