/* ===== Go4me — Jamaican Food Delivery =====
   Layout & structure modelled on surgixlimited.com
   Theme: Jamaican green / gold / charcoal
============================================ */

:root {
  --green:      #009b3a;   /* Jamaican green */
  --green-dark: #007a2e;
  --gold:       #fed100;   /* Jamaican gold */
  --gold-dark:  #e6bd00;
  --charcoal:   #1a1a1a;
  --ink:        #23272a;
  --muted:      #667085;
  --bg:         #ffffff;
  --bg-soft:    #f6f9f5;
  --bg-mint:    #eef7ef;
  --border:     #e6e8ec;
  --radius:     16px;
  --shadow:     0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-sm:  0 6px 16px rgba(0, 0, 0, 0.06);
  --max:        1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 155, 58, 0.28);
}
.btn-primary:hover { background: var(--green-dark); }

.btn-light {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 8px 20px rgba(254, 209, 0, 0.35);
}
.btn-light:hover { background: var(--gold-dark); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--bg-soft); }

/* ===== Eyebrow / section heads ===== */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--bg-mint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--charcoal); background: rgba(255, 255, 255, 0.7); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; }
.section-head p { color: var(--muted); margin-top: 12px; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--charcoal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 24px;
  font-size: 14px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-banner .btn { padding: 8px 18px; font-size: 13px; }
.cookie-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-banner .btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--charcoal);
}
.logo img { height: 40px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--green); }
.main-nav .nav-cta {
  background: var(--green);
  color: #fff;
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.main-nav .nav-cta:hover { background: var(--green-dark); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--charcoal);
}

/* ===== Store buttons ===== */
.store-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.store-btn:hover { transform: translateY(-2px); background: #000; }
.store-btn.dark { background: #000; }
.store-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--gold);
  flex-shrink: 0;
  position: relative;
}
.store-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--charcoal);
  clip-path: polygon(20% 0, 100% 50%, 20% 100%);
}
.store-icon.play::after { clip-path: polygon(15% 0, 100% 50%, 15% 100%, 15% 0); }
.store-text { display: flex; flex-direction: column; line-height: 1.1; }
.store-text small { font-size: 10px; opacity: 0.8; }
.store-text strong { font-size: 15px; font-weight: 600; }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--bg-mint) 0%, #ffffff 60%);
  padding: 70px 0 80px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-text > p {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 28px; font-weight: 800; color: var(--green); }
.hero-stats span { font-size: 13px; color: var(--muted); }

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img {
  max-height: 560px;
  width: auto;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-image::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(254,209,0,0.35), transparent 70%);
  top: -20px; right: -30px;
  z-index: -1;
}

/* ===== Services ===== */
.services { padding: 90px 0; background: var(--bg); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  background: var(--bg-mint);
  border-radius: 16px;
  margin-bottom: 20px;
  color: var(--green);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.learn-more { color: var(--green); font-weight: 600; font-size: 15px; }
.learn-more:hover { color: var(--green-dark); }

/* ===== Feature ===== */
.feature { padding: 90px 0; background: var(--bg-soft); }
.feature-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 55px;
  align-items: center;
}
.feature-image { display: flex; justify-content: center; }
.feature-image img {
  max-height: 500px;
  width: auto;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.feature-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
}
.feature-list { list-style: none; margin-bottom: 30px; }
.feature-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 16px;
}
.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.feature-list strong { color: var(--ink); }

/* ===== Community ===== */
.community {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  text-align: center;
}
.community-inner { max-width: 680px; margin: 0 auto; }
.community h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; }
.community p { font-size: 17px; opacity: 0.92; margin-bottom: 30px; }

/* ===== Download CTA ===== */
.download { padding: 80px 0; background: var(--charcoal); color: #fff; text-align: center; }
.download-inner { max-width: 640px; margin: 0 auto; }
.download h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin-bottom: 12px; }
.download p { opacity: 0.8; margin-bottom: 30px; }
.download .store-buttons { justify-content: center; }

/* ===== Footer ===== */
.site-footer { background: #101312; color: #c9cdca; padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { color: #fff; margin-bottom: 16px; }
.footer-logo span { color: #fff; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 16px; font-weight: 600; }
.footer-col p { font-size: 14px; margin-bottom: 12px; }
.social-links { display: flex; flex-direction: column; gap: 8px; }
.social-links a { font-size: 14px; transition: color 0.15s ease; }
.social-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
}
.footer-bottom p { font-size: 13px; text-align: center; }
.footer-bottom a { color: var(--gold); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner,
  .feature-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .feature-image { order: -1; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; }
  .main-nav .nav-cta { text-align: center; }
  .card-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
