/* =========================================================
   SNR MAK WEBSITE
   Pink / Black / White Brand
========================================================= */


/* =========================
   BRAND COLOURS
========================= */

:root {
  --pink: #e91e8c;
  --pink-dark: #c51676;

  --black: #111111;
  --charcoal: #1c1c1c;
  --dark-grey: #333333;
  --mid-grey: #66727c;
  --light-grey: #f5f5f5;
  --border-grey: #e5e5e5;

  --white: #ffffff;
}


/* =========================
   RESET / GLOBAL
========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark-grey);
  line-height: 1.6;
  background: var(--white);
}

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

.section-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-label.light {
  color: var(--pink);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--black);
}


/* =========================
   NAVIGATION
========================= */

nav {
  min-height: 82px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 5%;

  background: var(--black);

  border-bottom: 3px solid var(--pink);

  position: relative;
  z-index: 100;
}


/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 21px;
  font-weight: bold;

  color: var(--white);
}

.logo img {
  width: 90px;
  height: auto;
}


/* Navigation links */

.nav-links {
  list-style: none;

  display: flex;
  align-items: center;

  gap: 28px;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  color: var(--white);

  text-decoration: none;

  font-size: 15px;
  font-weight: 600;

  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--pink);
}


/* Main navigation button */

.nav-links .nav-order {
  background: var(--pink);
  color: var(--white);

  padding: 10px 18px;

  border-radius: 5px;
}

.nav-links .nav-order:hover {
  background: var(--pink-dark);
  color: var(--white);
}


/* =========================
   HERO
========================= */

.hero {
  min-height: 620px;

  position: relative;

  background-image: url('images/box2.png');
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 70px 20px;
}


/* Dark overlay over hero image */

.hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.05);
}


.hero-content {
  position: relative;
  z-index: 2;

  max-width: 850px;

  color: var(--white);
}


.hero-label {
  font-size: 13px;

  letter-spacing: 3px;

  font-weight: bold;

  margin-bottom: 15px;

  color: var(--pink);
}


.hero-content h1 {
  font-size: 58px;

  line-height: 1.08;

  margin-bottom: 22px;

  color: var(--white);
}


.hero-subtitle {
  max-width: 680px;

  margin: 0 auto 25px;

  font-size: 21px;

  line-height: 1.5;

  color: #eeeeee;
}


/* GPS / POD / Weight */

.hero-points {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 25px;

  margin-bottom: 35px;

  font-size: 16px;

  font-weight: bold;

  color: var(--white);
}


/* Hero buttons */

.hero-buttons,
.final-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 12px;
}


.business-only {
  margin-top: 15px;

  font-size: 13px;

  color: #dddddd;
}


/* =========================
   BUTTONS
========================= */

.cta-button {
  display: inline-block;

  padding: 14px 24px;

  border-radius: 5px;

  text-decoration: none;

  font-size: 16px;

  font-weight: bold;

  transition: all 0.2s ease;
}


/* Pink primary button */

.cta-button.primary {
  background: var(--pink);
  color: var(--white);
}

.cta-button.primary:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
}


/* White secondary button */

.cta-button.secondary {
  background: var(--white);
  color: var(--black);
}

.cta-button.secondary:hover {
  background: #eeeeee;
}


/* White button */

.cta-button.white {
  background: var(--white);
  color: var(--black);
}

.cta-button.white:hover {
  background: #eeeeee;
}


/* Outline button */

.cta-button.outline {
  border: 2px solid var(--pink);

  color: var(--pink);

  background: transparent;
}

.cta-button.outline:hover {
  background: var(--pink);
  color: var(--white);
}


/* Text links */

.text-link {
  display: inline-block;

  margin-top: 22px;

  color: var(--pink);

  text-decoration: none;

  font-weight: bold;
}

.text-link:hover {
  text-decoration: underline;
}


/* =========================
   TRUST STRIP
========================= */

.trust-strip {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  max-width: 1100px;

  margin: -35px auto 0;

  position: relative;

  z-index: 5;

  background: var(--white);

  border-radius: 8px;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);

  overflow: hidden;
}


.trust-strip div {
  padding: 25px 15px;

  text-align: center;

  border-right: 1px solid var(--border-grey);
}


.trust-strip div:last-child {
  border-right: none;
}


.trust-strip strong {
  display: block;

  color: var(--pink);

  font-size: 19px;
}


.trust-strip span {
  display: block;

  font-size: 13px;

  color: var(--mid-grey);

  margin-top: 3px;
}


/* =========================
   INTRO
========================= */

.intro {
  padding: 110px 0 90px;

  text-align: center;

  background: var(--white);
}


.intro .section-inner {
  max-width: 850px;
}


.large-text {
  font-size: 19px;

  color: #555555;
}


/* =========================
   SERVICES
========================= */

.services {
  padding: 90px 0;

  background: var(--light-grey);

  text-align: center;
}


.service-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;

  margin-top: 45px;

  text-align: left;
}


.service-card {
  background: var(--white);

  border-radius: 10px;

  overflow: hidden;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);

  border-bottom: 4px solid var(--pink);
}


.service-card > img {
  width: 100%;

  height: 260px;

  object-fit: cover;
}


.service-card-content {
  padding: 30px;
}


.service-card h3 {
  color: var(--black);

  font-size: 26px;

  margin-bottom: 12px;
}


.service-card p {
  color: #555555;

  margin-bottom: 20px;
}


.service-detail {
  padding: 15px 0;

  border-top: 1px solid var(--border-grey);

  border-bottom: 1px solid var(--border-grey);
}


.service-detail strong,
.service-detail span {
  display: block;
}


.service-detail strong {
  color: var(--black);
}


.service-detail span {
  font-size: 14px;

  color: var(--mid-grey);
}


.price {
  font-size: 34px;

  color: var(--pink);

  font-weight: bold;

  margin: 20px 0;
}


.price span {
  font-size: 14px;

  color: var(--mid-grey);

  font-weight: normal;
}


/* =========================
   HOW IT WORKS
========================= */

.how-it-works {
  padding: 90px 0;

  text-align: center;

  background: var(--white);
}


.steps {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 25px;

  margin-top: 50px;
}


.step {
  padding: 25px;
}


.step-number {
  width: 50px;
  height: 50px;

  margin: 0 auto 18px;

  border-radius: 50%;

  background: var(--pink);

  color: var(--white);

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 20px;

  font-weight: bold;
}


.step h3 {
  color: var(--black);

  margin-bottom: 8px;
}


.step p {
  color: var(--mid-grey);

  font-size: 14px;
}


/* =========================
   FREE TRIAL SECTION
========================= */

.trial {
  background: var(--black);

  color: var(--white);

  padding: 90px 20px;

  text-align: center;

  border-top: 5px solid var(--pink);

  border-bottom: 5px solid var(--pink);
}


.trial-content {
  max-width: 750px;

  margin: 0 auto;
}


.trial h2 {
  color: var(--white);

  font-size: 40px;
}


.trial p {
  font-size: 18px;

  margin-bottom: 30px;

  color: #dddddd;
}


/* Trial button gets pink */

.trial .cta-button.white {
  background: var(--pink);

  color: var(--white);
}


.trial .cta-button.white:hover {
  background: var(--pink-dark);
}


/* =========================
   SERVICE AREAS
========================= */

.service-areas {
  padding: 90px 0;

  background: var(--light-grey);

  text-align: center;
}


.areas-container {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;

  margin: 45px 0 15px;
}


.area img {
  width: 150px;
  height: 150px;

  border-radius: 50%;

  object-fit: cover;

  margin: 0 auto 15px;

  border: 4px solid var(--pink);

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}


.area h3 {
  color: var(--black);

  font-size: 19px;
}


/* =========================
   DELIVERY TIMES
========================= */

.pickup-delivery {
  padding: 90px 0;

  text-align: center;

  background: var(--white);
}


.delivery-intro {
  color: var(--mid-grey);

  margin-bottom: 40px;
}


.delivery-info {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}


.location {
  background: var(--light-grey);

  padding: 25px 18px;

  border-radius: 8px;

  border-top: 4px solid var(--pink);
}


.location h3 {
  color: var(--black);

  font-size: 20px;

  margin-bottom: 10px;
}


.location p {
  font-weight: bold;

  color: var(--black);

  margin-bottom: 5px;
}


.location span {
  font-size: 14px;

  color: var(--mid-grey);
}


/* =========================
   FINAL CALL TO ACTION
========================= */

.final-cta {
  padding: 80px 20px;

  text-align: center;

  background: var(--light-grey);
}


.final-cta h2 {
  margin-bottom: 10px;

  color: var(--black);
}


.final-cta p {
  color: var(--mid-grey);

  margin-bottom: 25px;
}


/* =========================
   FOOTER
========================= */

.footer {
  background: var(--black);

  color: #cccccc;

  padding: 55px 20px;

  text-align: center;

  border-top: 4px solid var(--pink);
}


.footer-content {
  max-width: 600px;

  margin: 0 auto;
}


.footer-logo {
  width: 100px;

  margin: 0 auto 15px;
}


.company-name {
  font-size: 20px;

  font-weight: bold;

  color: var(--white);

  margin-bottom: 10px;
}


.footer a {
  color: var(--white);

  text-decoration: none;
}


.footer a:hover {
  color: var(--pink);
}


.footer-login {
  margin-top: 20px;

  font-size: 13px;
}


/* =========================================================
   ORDER / PICKUP FORM
========================================================= */

.order-pickup {
  padding: 60px 20px;

  text-align: center;
}


.order-pickup h2 {
  font-size: 28px;

  color: var(--black);

  margin-bottom: 20px;
}


.order-pickup p {
  font-size: 16px;

  color: #555555;

  margin-bottom: 30px;
}


.pickup-form {
  max-width: 500px;

  margin: 0 auto;

  text-align: left;
}


.pickup-form h3 {
  font-size: 18px;

  color: var(--black);

  margin-top: 20px;

  margin-bottom: 10px;
}


.pickup-form label {
  font-size: 14px;

  color: var(--dark-grey);

  margin-top: 10px;

  display: block;
}


.pickup-form input,
.pickup-form select,
.pickup-form textarea {
  width: 100%;

  padding: 11px;

  margin-top: 5px;

  margin-bottom: 15px;

  border: 1px solid #cccccc;

  border-radius: 4px;

  font-family: Arial, Helvetica, sans-serif;
}


.pickup-form input:focus,
.pickup-form select:focus,
.pickup-form textarea:focus {
  outline: none;

  border-color: var(--pink);

  box-shadow: 0 0 0 2px rgba(233, 30, 140, 0.12);
}


.pickup-form button {
  width: 100%;

  padding: 13px;

  background: var(--pink);

  color: var(--white);

  font-size: 16px;

  font-weight: bold;

  border: none;

  border-radius: 4px;

  cursor: pointer;

  transition: background 0.2s ease;
}


.pickup-form button:hover {
  background: var(--pink-dark);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  nav {
    min-height: 70px;

    padding: 12px 20px;
  }


  .logo span {
    display: none;
  }


  .logo img {
    width: 80px;
  }


  .nav-links {
    gap: 12px;
  }


  /* Hide secondary navigation on mobile */

  .nav-links li:nth-child(1),
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(3) {
    display: none;
  }


  .hero {
    min-height: 600px;

    padding: 60px 20px;
  }


  .hero-content h1 {
    font-size: 40px;
  }


  .hero-subtitle {
    font-size: 18px;
  }


  .hero-points {
    flex-direction: column;

    gap: 5px;
  }


  .hero-buttons {
    flex-direction: column;
  }


  .hero-buttons .cta-button {
    width: 100%;
  }


  .trust-strip {
    grid-template-columns: repeat(2, 1fr);

    margin: -25px 15px 0;
  }


  .trust-strip div {
    border-bottom: 1px solid var(--border-grey);
  }


  h2 {
    font-size: 30px;
  }


  .intro {
    padding: 80px 0 65px;
  }


  .service-grid {
    grid-template-columns: 1fr;
  }


  .steps {
    grid-template-columns: repeat(2, 1fr);
  }


  .areas-container {
    grid-template-columns: repeat(2, 1fr);
  }


  .delivery-info {
    grid-template-columns: 1fr;
  }


  .trial h2 {
    font-size: 31px;
  }

}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {

  .hero {
    min-height: 570px;
  }


  .hero-content h1 {
    font-size: 34px;
  }


  .hero-subtitle {
    font-size: 17px;
  }


  .steps {
    grid-template-columns: 1fr;
  }


  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }


  .areas-container {
    grid-template-columns: 1fr 1fr;
  }


  .area img {
    width: 115px;
    height: 115px;
  }


  .section-inner {
    padding: 0 18px;
  }

}