* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  color: #000000;
  line-height: 1.6;
  background: white;
}

section {
  padding: 70px 20px;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("b5.jpeg"); /* 🔁 replace with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* DARK COLOR OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 17, 78, 0.88),
    rgba(2, 31, 96, 0.88)
  );
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 20px;
  text-align: center;
  color: #ffffff;
}

.pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

/* PILLS SECTION */
.hero-pills {
  margin-top: -30px;
  padding: 40px 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  background: #f8fafc;
}

.pills {
  background: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  margin-bottom: 25px;
}

.hero h1 span {
  color: #ff7c18;
}

/* FEATURE LIST */
.hero-points {
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.point {
  color: #CBD5F5;
  font-size: 1rem;
}

.point::before {
  content: "✔ ";
   color: #ff7c18;
  font-weight: bold;
}

/* BUTTONS */
.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: #ff7c18;
  color: #020617;
}

.secondary {
  border: 2px solid #8a8b8b;
  color: #dcdcdc;
}

/* DESKTOP TWEAK */
@media (min-width: 768px) {
  .hero-points {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .point {
    width: 45%;
  }
}

.products-section {
  padding: 80px 20px;
  text-align: center;
  background: #f8fafc;
}

.section-pill {
  display: inline-block;
  background: #eaf3fb;
  color: #0b5ed7;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 12px;
}

.products-section h2 {
  font-size: 36px;
  margin: 10px 0;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 50px;
  color: #6b7280;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.product-image {
  height: 180px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

/* TEXT */
.product-card h3 {
  font-size: 18px;
  margin: 16px 0 4px;
}

.product-card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 18px;
}

/* MOBILE */
@media (max-width: 768px) {
  .products-section h2 {
    font-size: 28px;
  }

  .product-image {
    height: 150px;
  }
}

/* WHATSAPP CTA */
.whatsapp-big {
  display: inline-block;
  margin-top: 60px;
  background: #22c55e;
  color: white;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 600px) {
  .product-card {
    text-align: center;
  }

  .product-card ul {
    text-align: left;
  }
}

.process-section {
  padding: 5rem 6%;
  text-align: center;
  background: linear-gradient(135deg, #0b4f6c, #1f8ea3);
  color: #ffffff;
}

.process-pill {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.process-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.process-subtitle {
  max-width: 720px;
  margin: 0 auto 3rem;
  opacity: 0.9;
  font-size: 1.1rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.step-card {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  position: relative;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

.step-card.active {
  background: rgba(255,255,255,0.15);
}

.step-icon {
  width: 52px;
  height: 52px;
  background: #f26b2c;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.15;
}

.step-card h3 {
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.process-footer {
  margin-bottom: 2rem;
  font-weight: 500;
}

.process-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: #f26b2c;
  color: #fff;
}

.btn.outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}

/* Mobile */
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-title {
    font-size: 2.2rem;
  }
}

.testimonials {
  padding: 5rem 6%;
  background: #f8fbfd;
  text-align: center;
}

.section-pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: #eaf4f8;
  color: #0b4f6c;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: #0b1f33;
}

.section-subtitle {
  max-width: 650px;
  margin: 0 auto 3rem;
  color: #5f7485;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  position: relative;
}

.quote-mark {
  font-size: 3rem;
  color: #f26b2c;
  opacity: 0.25;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  margin-top: 1.5rem;
  color: #334e68;
  line-height: 1.6;
}

.stars {
  color: #f5b301;
  margin: 1rem 0;
  font-size: 1.1rem;
}

.author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.avatar {
  width: 42px;
  height: 42px;
  background: #0b4f6c;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.author span {
  display: block;
  font-size: 0.85rem;
  color: #6b7f90;
}

/* Mobile */
@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

.location-section {
  padding: 100px 6%;
  background: #f8fafc;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-pill {
  display: inline-block;
  padding: 6px 14px;
  background: #eaf2f9;
  color: #0b5ed7;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.location-content h2 {
  font-size: 38px;
  margin-bottom: 16px;
}

.location-desc {
  color: #64748b;
  max-width: 420px;
  margin-bottom: 32px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-item {
  display: flex;
  gap: 16px;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.location-icon {
  background: #eaf2ff;
}

.phone-icon {
  background: #fff1e9;
}

.time-icon {
  background: #e9fdf3;
}

.location-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn.whatsapp {
  background: #22c55e;
  color: white;
}

.btn.call {
  background: #0f4c81;
  color: white;
}

/* RIGHT SIDE */
.location-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.location-card {
  position: relative;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: white;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PIN */
.pin-wrapper {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pin {
  width: 56px;
  height: 56px;
  background: #f26b2b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(242, 107, 43, 0.4);
}

.pulse {
  position: absolute;
  width: 90px;
  height: 90px;
  background: rgba(242,107,43,0.35);
  border-radius: 50%;
  animation: pulse 2.5s infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pulse:nth-child(1) { animation-delay: 0s; }
.pulse:nth-child(2) { animation-delay: 1.2s; }

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* PIN TEXT */
.pin-text {
  position: absolute;
  bottom: 26px;
  width: 100%;
  text-align: center;
}

.pin-text strong {
  display: block;
  font-size: 16px;
}

.pin-text span {
  font-size: 13px;
  color: #64748b;
}

.delivery-note {
  background: white;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

/* MOBILE */
@media (max-width: 900px) {
  .location-container {
    grid-template-columns: 1fr;
  }
}


.site-footer {
  background: linear-gradient(135deg, #050b1e, #0b163a);
  color: #cbd5f5;
  padding: 80px 6% 30px;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 35px;
  height: 3px;
  background: #3b82f6;
  display: block;
  margin-top: 6px;
  border-radius: 2px;
}

.footer-col p,
.footer-col li {
  font-size: 15px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-col a:hover {
  color: #3b82f6;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0f1d4d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-bottom span {
  color: #3b82f6;
}

.footer-links a {
  text-decoration: none;
  border: none;
  color: #cbd5f5;
  font-size: 14px;
}

.footer-links a:hover {
  color: #3b82f6;
}

/* Specifically for Terms button */
.terms-btn {
  text-decoration: none;
  border: none;
  background: #1e3a8a;
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
}

/* Kill any inherited underline or border */
.footer-links a::after,
.footer-links a::before {
  content: none;
}


/* MOBILE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;

  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}
.footer-links a {
  text-decoration: none !important;
  border-bottom: none !important;
}


.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo span {
  color: #ffb703;
}

/* CATEGORY BUTTON */
.cat-btn {
  background: #f3f3f3;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111;
  border-radius: 4px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* ANIMATION ☰ → X */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #eee;
}

.mobile-menu a {
  padding: 14px 20px;
  border-bottom: 1px solid #f1f1f1;
  text-decoration: none;
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-inner {
    justify-content: space-between;
  }

  /* center logo on mobile */
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-menu.active {
    display: flex;
  }
}

.logo a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
html {
  scroll-behavior: smooth;
}
