:root {
  --navy: #000f66;
  --pink: #f43280;
  --pink-dark: #d81f6b;
  --bg-soft: #eef1ff;
  --text: #0a0a23;
  --white: #ffffff;
  --radius: 0px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text);
  background: var(--bg-soft);
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: "Roboto Slab", "Roboto", serif;
  margin: 0;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top strip */
.topstrip {
  background: var(--navy);
  color: var(--white);
}
.topstrip ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 8px 24px;
  font-size: 13px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
}
.topstrip li { display: flex; align-items: center; gap: 6px; }

/* Header / nav */
header.mainnav {
  background: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid #e5e8f5;
}
.mainnav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.mainnav nav ul {
  display: flex;
  list-style: none;
  gap: 26px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.mainnav .logo img { height: 40px; }
.cart-icon { font-size: 20px; color: var(--navy); }

/* Hero */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 40px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h2.hero-sub {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
.hero p { margin: 0 0 8px; font-size: 15px; line-height: 1.5; opacity: 0.95; }
.hero-img {
  background: var(--white);
  border-radius: 18px;
  padding: 14px;
}
.hero-img img { border-radius: 8px; }
.btn-primary {
  display: inline-block;
  margin-top: 22px;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background 0.15s ease;
}
.btn-primary:hover { background: var(--pink-dark); }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.hero-ctas .btn-primary { margin-top: 0; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  padding: 13px 26px;
  border: 2px solid var(--white);
  border-radius: var(--radius);
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { background: var(--white); color: var(--navy); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.95;
}
.trust-row span { display: flex; align-items: center; gap: 4px; }
.trust-row em { opacity: 0.8; font-style: normal; }

/* Steps */
.steps { padding: 50px 0 10px; text-align: center; }
.steps h2 { color: var(--navy); font-size: 30px; margin-bottom: 30px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.step {
  background: var(--white);
  border-radius: 8px;
  padding: 26px;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}
.step h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.step p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--text); }

/* USP bar */
.usp-bar {
  background: var(--navy);
  color: var(--white);
  padding: 18px 0;
}
.usp-bar ul {
  list-style: none;
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
}
.usp-bar li::before { content: "✓ "; color: var(--pink); }

/* Services section */
.services {
  padding: 64px 0 40px;
  text-align: center;
}
.services h2 {
  color: var(--navy);
  font-size: 34px;
  margin-bottom: 8px;
}
.services > .container > p {
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 32px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: left;
}
.service-grid .full { grid-column: 1 / -1; }
.service-card {
  background: var(--pink);
  color: var(--white);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card .card-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  padding: 14px;
  background: var(--pink);
}
.service-card .card-photo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.service-card .card-body {
  padding: 24px 28px 28px;
}
.service-card h3 { font-size: 26px; margin-bottom: 8px; }
.service-card p { margin: 0; font-size: 14px; line-height: 1.4; }
.service-card p strong { display: block; margin-top: 4px; }

.cta-box {
  background: var(--bg-soft);
  border: 2px dashed var(--navy);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}
.cta-box p { margin: 0; font-size: 14px; color: var(--text); }
.cta-box h2 { color: var(--navy); font-size: 22px; }
.cta-box .btn-primary { margin: 6px 0 0; }
.urgency-badge {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Delivery area */
.delivery {
  padding: 60px 0;
}
.delivery .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.delivery h2 { color: var(--navy); font-size: 30px; margin-bottom: 14px; }
.delivery p { color: var(--pink); font-weight: 600; margin-bottom: 12px; }
.delivery ul { list-style: none; padding: 0; margin: 14px 0 0; }
.delivery li { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.delivery li::before { content: "✓ "; color: var(--navy); }

/* Occasion pills */
.occasions {
  padding: 0 0 50px;
}
.occasions .container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.pill {
  background: var(--white);
  border: 1px solid #d8dcf0;
  border-radius: 24px;
  padding: 10px 22px;
  font-weight: 700;
  color: var(--navy);
  cursor: default;
}

/* Testimonials */
.testimonials { padding: 20px 0 50px; text-align: center; }
.testimonials h2 { color: var(--navy); font-size: 30px; margin-bottom: 28px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.testimonials blockquote {
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  margin: 0;
}
.testimonials .stars { color: var(--pink); margin: 0 0 10px; letter-spacing: 1px; }
.testimonials p { font-size: 14px; line-height: 1.5; margin: 0 0 12px; color: var(--text); }
.testimonials cite { font-size: 13px; font-weight: 700; color: var(--navy); font-style: normal; }
.testimonial-note { margin: 24px 0 0; font-size: 11px; color: #8a8fb0; text-align: center; }

/* FAQ */
.faq { padding: 40px 0 70px; }
.faq-box {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  max-width: 780px;
  margin: 0 auto;
}
.faq-box h2 {
  color: var(--navy);
  font-size: 30px;
  text-align: center;
  margin-bottom: 28px;
}
.faq-item { border-bottom: 1px solid #e5e8f5; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  font-weight: 700;
  color: var(--pink);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q::after { content: "▾"; transition: transform 0.15s ease; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 0 16px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }

/* Footer */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 50px 0 30px;
}
footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
}
footer .logo-white img { height: 42px; margin-bottom: 14px; }
footer p { font-size: 13px; line-height: 1.6; opacity: 0.9; max-width: 480px; }
.footer-social {
  list-style: none;
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 18px 0;
}
.footer-social li {
  background: var(--pink);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.footer-contact { list-style: none; padding: 0; margin: 0; font-size: 14px; line-height: 1.8; }

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  font-size: 12px;
  z-index: 50;
}
.wa-float strong { font-size: 13px; }

/* Sticky mobile CTA bar */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 60;
  padding: 10px max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  gap: 10px;
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 0;
  border-radius: 6px;
  background: var(--pink);
}
.sticky-cta a:first-child { background: rgba(255,255,255,0.15); }

@media (max-width: 860px) {
  .hero .container,
  .delivery .container,
  footer .container { grid-template-columns: 1fr; }
  .service-grid,
  .steps-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 30px; }
  .hero h1 { font-size: 32px; }
  .topstrip ul { justify-content: center; }
  .usp-bar ul { gap: 18px; justify-content: flex-start; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 64px; }
  .wa-float { display: none; }
}
