/* =========================================
   Door 2 Door Laundry
   Main Stylesheet
   ========================================= */

/* ---------- Basic reset ---------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #062d7a;
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #0878f9;
}

a:hover {
  color: #062d7a;
}


/* ---------- Header ---------- */

header {
  background: #ffffff;
  border-bottom: 1px solid #dce8ec;
  padding: 24px 20px;
}

header > div {
  width: min(800px, 100%);
  margin: 0 auto;
}

header h1 {
  margin: 0;
  color: #0878f9;
  font-size: 2rem;
}

header p {
  margin: 4px 0 18px;
  color: #435b7a;
}


/* ---------- Navigation ---------- */

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}

nav a {
  color: #062d7a;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: #0878f9;
}

nav a:last-child {
  background: #0878f9;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
}

nav a:last-child:hover {
  background: #062d7a;
  color: #ffffff;
}


/* ---------- Main sections ---------- */

main section {
  padding: 70px 20px;
}

main section > * {
  width: min(800px, 100%);
  margin-left: auto;
  margin-right: auto;
}

main section h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #0878f9;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
}

main section h3 {
  color: #062d7a;
}


/* ---------- Hero / Home ---------- */

#home {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      #eef5ff 0%,
      #ffffff 50%,
      #f5f8ff 100%
    );
}

#home h2 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  max-width: 850px;
  margin-bottom: 20px;
}

#home p {
  max-width: 720px;
  font-size: 1.15rem;
}

#home > a {
  display: inline-block;
  width: auto;
  align-self: flex-start;
  margin-left: max(20px, calc((100% - 800px) / 2));
  margin-top: 18px;
  padding: 14px 24px;
  background: #0878f9;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

#home > a:hover {
  background: #062d7a;
}


/* ---------- Alternating section backgrounds ---------- */

#pricing,
#faq,
#booking {
  background: #f4f8ff;
}


/* ---------- Service area ---------- */

#service-area ul {
  padding-left: 22px;
}

#service-area iframe {
  display: block;
  margin-top: 30px;
  border-radius: 16px;
}


/* ---------- Contact ---------- */

#contact a {
  font-weight: 700;
}


/* ---------- Booking form basic layout ---------- */

form {
  max-width: 760px;
}

form > div {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: #062d7a;
  background: #ffffff;
  border: 1px solid #b9cbd1;
  border-radius: 8px;
}

textarea {
  resize: vertical;
}

input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

input[type="checkbox"] + label {
  display: inline;
  font-weight: 400;
}

button {
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  background: #0878f9;
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  background: #062d7a;
}


/* ---------- FAQ ---------- */

details {
  padding: 18px 0;
  border-bottom: 1px solid #d7e5e8;
}

summary {
  font-weight: 700;
  cursor: pointer;
}


/* ---------- Footer ---------- */

footer {
  padding: 35px 20px;
  text-align: center;
  background: #062d7a;
  color: #ffffff;
}

footer p {
  margin: 5px auto;
}

footer a {
  color: #ffffff;
}


/* ---------- Mobile ---------- */

@media (max-width: 700px) {

  header {
    padding: 18px 16px;
  }

  header h1 {
    font-size: 1.65rem;
  }

  nav {
    gap: 10px 16px;
  }

  main section {
    padding: 50px 16px;
  }

  #home {
    min-height: 430px;
  }

  #home h2 {
    font-size: 2.6rem;
  }

  #home > a {
    margin-left: 16px;
  }

  #service-area iframe {
    height: 320px;
  }
}

/* ---------- Hero branding image ---------- */

.hero-image {
  width: min(800px, calc(100% - 40px));
  margin: 35px auto 0;
  text-align: center;
}

.hero-image img {
  display: block;
  width: 100%;
  max-width: 850px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

@media (max-width: 700px) {
  .hero-image {
    width: calc(100% - 32px);
    margin-top: 28px;
  }

  .hero-image img {
    max-width: 100%;
  }
}

/* ---------- Our Laundry Work gallery ---------- */

#our-work {
  background: #ffffff;
}

.laundry-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.laundry-gallery img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(6, 45, 122, 0.12);
}

@media (max-width: 900px) {
  .laundry-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .laundry-gallery {
    grid-template-columns: 1fr;
  }

  .laundry-gallery img {
    height: 280px;
  }
}

/* ---------- Hero image-only layout ---------- */

#home {
  min-height: 0;
  padding: 0;
  display: block;
  background: #ffffff;
}

#home .hero-image {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

#home .hero-image img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
}

/* ---------- 800px website width ---------- */

body {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#home,
#home .hero-image,
#home .hero-image img {
  width: 100%;
  max-width: 800px;
}


/* ---------- Header phone ---------- */

.header-phone {
  margin-bottom: 12px;
  text-align: right;
  font-weight: 700;
  color: #062d7a;
}

.header-phone a {
  color: #0878f9;
  text-decoration: none;
}

.header-phone a:hover {
  color: #ff6b00;
}

/* ---------- Compact footer ---------- */

footer {
  padding-top: 16px;
  padding-bottom: 16px;
}


/* Final footer size adjustment */
footer {
  padding: 8px 20px;
}

footer p {
  margin: 0;
}

/* ---------- Header contact row ---------- */

.header-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.header-phone {
  margin-bottom: 0;
}

.facebook-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1877f2;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.facebook-icon:hover {
  background: #062d7a;
  color: #ffffff;
}

/* ---------- Compact booking form ---------- */

#booking {
  padding-top: 40px;
  padding-bottom: 40px;
}

#booking form > div {
  margin-bottom: 10px;
}

#booking label {
  margin-bottom: 3px;
  line-height: 1.2;
}

#booking input,
#booking select,
#booking textarea {
  padding: 8px 10px;
  border-radius: 6px;
  line-height: 1.25;
}

#booking textarea {
  min-height: 90px;
  rows: 4;
}

#booking button {
  margin-top: 4px;
  padding: 10px 18px;
}

#booking p {
  margin-top: 0;
  margin-bottom: 14px;
}

#booking input[type="checkbox"] {
  margin-top: 2px;
  margin-right: 6px;
}

/* Compact booking heading */
#booking h2 {
  white-space: nowrap;
  font-size: 1.7rem;
}

@media (max-width: 700px) {
  #booking h2 {
    white-space: normal;
    font-size: 1.45rem;
  }
}

/* ---------- Final booking heading layout ---------- */

#booking h2 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 16px;
  padding: 0;
  white-space: nowrap;
  font-size: clamp(1.25rem, 3.2vw, 1.7rem);
}

@media (max-width: 600px) {
  #booking h2 {
    white-space: normal;
  }
}


/* Booking title spans the available page width */
#booking h2 {
  width: 100%;
  max-width: 100%;
  margin: 0 0 14px 0;
  padding: 0;
  font-size: 2rem;
  line-height: 1.15;
  white-space: nowrap;
  letter-spacing: 0;
}

@media (max-width: 700px) {
  #booking h2 {
    font-size: clamp(1.25rem, 5.5vw, 1.8rem);
    white-space: normal;
  }
}

/* Centre booking heading */
#booking h2 {
  text-align: center;
}

/* ---------- Service Area suburb columns ---------- */

#service-area ul {
  columns: 2;
  column-gap: 40px;
}

#service-area li {
  break-inside: avoid;
  margin-bottom: 4px;
}

/* ---------- Service Area background ---------- */

#service-area {
  position: relative;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    url("bin/Ad3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#service-area h2,
#service-area ul,
#service-area iframe {
  position: relative;
  z-index: 1;
}


/* Service Area: background image behind text only */
#service-area {
  background-image: none;
}

#service-area .service-area-text {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)),
    url("bin/Ad3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 30px;
}

#service-area .service-area-text h2,
#service-area .service-area-text ul {
  position: relative;
  z-index: 1;
}


/* Service Area - Ad3 without overlay */
#service-area .service-area-text {
  background-image: url("bin/Ad3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Service Area - Ad3 without overlay */
#service-area .service-area-text {
  background-image: url("bin/Ad3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Service Area suburb text */
#service-area .service-area-text li {
  color: #ff6b00;
  font-weight: 700;
}


/* Service Area suburb text - dark navy */
#service-area .service-area-text li {
  color: #062d7a;
  font-weight: 700;
}


/* Service Area text panel - 50px taller */
#service-area .service-area-text {
  padding-top: 55px;
  padding-bottom: 55px;
  background-size: cover;
  background-position: center center;
}


/* Service Area text panel - 100px taller */
#service-area .service-area-text {
  padding-top: 80px;
  padding-bottom: 80px;
}


/* Service Area text - double size and centered */
#service-area .service-area-text {
  text-align: center;
}

#service-area .service-area-text h2 {
  font-size: 4rem;
  text-align: center;
}

#service-area .service-area-text ul {
  font-size: 2rem;
  text-align: center;
  list-style-position: inside;
  padding-left: 0;
}


/* Correct Service Area sizing */
#service-area .service-area-text h2 {
  font-size: 4rem;
  text-align: center;
}

#service-area .service-area-text ul {
  font-size: 1rem;
  text-align: center;
  list-style-position: inside;
  padding-left: 0;
}


/* Double Service Area heading again */
#service-area .service-area-text h2 {
  font-size: 8rem;
  text-align: center;
  line-height: 1;
}


/* Service Area heading - 7rem */
#service-area .service-area-text h2 {
  font-size: 7rem;
}


/* Service Area heading - dark navy */
#service-area .service-area-text h2 {
  color: #062d7a;
}


/* Service Area heading - white */
#service-area .service-area-text h2 {
  color: #062d7a;
}


/* Service Area suburb names - 2rem */
#service-area .service-area-text ul {
  font-size: 2rem;
}


/* Service Area suburbs - two aligned columns */
#service-area .service-area-text ul {
  columns: 2;
  column-gap: 50px;
  font-size: 2rem;
  text-align: left;
  list-style-position: outside;
  padding-left: 40px;
  margin-left: auto;
  margin-right: auto;
}

#service-area .service-area-text li {
  text-align: left;
  break-inside: avoid;
}


/* Service Area suburb names - white */
#service-area .service-area-text li {
  color: #062d7a;
}


/* Service Area image - 30% white overlay */
#service-area .service-area-text {
  background-image: linear-gradient(rgba(255,255,255,0.30), rgba(255,255,255,0.30)), url("bin/Ad3.png");
}

/* ---------- Final service card layout ---------- */

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.service-card h3 {
  margin: 16px 0 8px;
  text-align: center;
}

.service-card p {
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .service-cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

/* ---------- Header - navigation and contact on one row ---------- */

header > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

header nav {
  order: 1;
  flex-wrap: nowrap;
}

header .header-contact {
  order: 2;
  margin-bottom: 0;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  header > div {
    flex-wrap: wrap;
  }

  header nav {
    flex-wrap: wrap;
  }
}

/* Header phone number - 50% larger */
.header-phone a {
  font-size: 1.5em;
}

/* ---------- Hero pricing ---------- */
.hero-pricing {
  font-size: 2em;
  color: #0878f9;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}

/* Header Kat and phone number - final size */
.header-phone {
  font-size: 2.25em;
}

.header-phone a {
  font-size: 1em;
}

/* ---------- Sticky header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Hero image - 20% smaller, section width unchanged */
.hero-image {
  width: min(640px, calc(80% - 32px));
}

/* Hero image - scale whole image to 80%, no cropping */
.hero-image {
  width: min(800px, calc(100% - 40px));
}

.hero-image img {
  width: 80%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* Hero picture - 80% scale, full 800px section retained */
#home .hero-image {
  width: 100%;
  max-width: 800px;
}

#home .hero-image img {
  width: 80%;
  max-width: 640px;
  height: auto;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

/* One line space below hero image */
#home .hero-image {
  margin-bottom: 1em;
}

/* Thin orange lines above and below hero pricing */
.hero-pricing {
  border-top: 2px solid #ff6b00;
  border-bottom: 2px solid #ff6b00;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Service cards - tighter section spacing */
#services {
  padding: 30px 20px;
}

/* Telephone icon beside header phone number */
.phone-icon {
  color: #0878f9;
  margin-right: 8px;
  font-size: 1em;
  vertical-align: middle;
}

/* Service Area heading - 5rem */
#service-area .service-area-text h2 {
  font-size: 5rem;
}

/* Service Area suburb names - 1.5rem */
#service-area .service-area-text ul {
  font-size: 1.5rem;
}

/* Service Area - show complete Ad3 image without cropping */
#service-area .service-area-text {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Service Area image panel - square 800px */
#service-area .service-area-text {
  height: 800px;
  box-sizing: border-box;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Service Area - reduce top spacing */
#service-area {
  padding-top: 30px;
}

/* Service Area - reduce bottom spacing */
#service-area {
  padding-bottom: 30px;
}

/* Service Area - reduce gap between image panel and map */
#service-area .service-area-text {
  margin-bottom: 10px;
}

#service-area iframe {
  margin-top: 0;
}

/* Thin orange line below service cards */
#services {
  border-bottom: 2px solid #ff6b00;
}

/* Service Area - final top spacing */
#service-area {
  padding-top: 10px;
}

/* Move header phone and icon 10px left */
.header-phone {
  position: relative;
  left: -10px;
}

/* Service Area - single suburb column on phones */
@media (max-width: 700px) {
  #service-area .service-area-text ul {
    columns: 1;
    column-gap: 0;
    padding-left: 0;
  }

  #service-area .service-area-text li {
    text-align: center;
  }
}

/* Booking button - centred on mobile */
@media (max-width: 700px) {
  #booking button[type="submit"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Mobile header centring ---------- */
@media (max-width: 700px) {

  header > div {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  header nav {
    width: 100%;
    justify-content: center;
    text-align: center;
    gap: 10px 16px;
  }

  header nav a:last-child {
    margin-left: auto;
    margin-right: auto;
  }

  header .header-contact {
    width: 100%;
    justify-content: center;
    margin-bottom: 0;
  }

  .header-phone {
    left: 0;
    text-align: center;
  }
}

/* Service Area image - rounded corners on desktop */
@media (min-width: 701px) {
  #service-area .service-area-text {
    border-radius: 16px;
    overflow: hidden;
  }
}

/* Service Area - visibly rounded desktop panel */
@media (min-width: 701px) {
  #service-area .service-area-text {
    border-radius: 24px;
    overflow: hidden;
    background-color: #ffffff;
  }
}

/* Service Area - square panel exactly matching image area */
@media (min-width: 701px) {
  #service-area .service-area-text {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 800px;
    margin-left: auto;
    margin-right: auto;
    background-image:
      linear-gradient(rgba(255,255,255,0.30), rgba(255,255,255,0.30)),
      url("bin/Ad3.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    overflow: hidden;
  }

  #service-area .service-area-text::before {
    content: none;
  }
}

/* Service Area - top spacing 20px */
#service-area {
  padding-top: 20px;
}

/* Service Area - top spacing 30px */
#service-area {
  padding-top: 30px;
}

/* Service Area title - 20px from top of image */
@media (min-width: 701px) {
  #service-area .service-area-text {
    padding-top: 20px;
  }

  #service-area .service-area-text h2 {
    margin-top: 0;
  }
}

/* Service Area - allow full suburb list on mobile */
@media (max-width: 700px) {
  #service-area .service-area-text {
    height: auto;
    min-height: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    background-size: cover;
  }
}

/* ---------- Service Area - fixed-size background, natural-height content ---------- */

#service-area .service-area-text {
  position: relative;
  height: auto;
  min-height: 800px;
  background-image: none;
  overflow: hidden;
  box-sizing: border-box;
}

/* Fixed 800 x 800 background picture */
#service-area .service-area-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translateX(-50%);
  background-image:
    linear-gradient(rgba(255,255,255,0.30), rgba(255,255,255,0.30)),
    url("bin/Ad3.png");
  background-size: 800px 800px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  z-index: 0;
}

/* Keep all Service Area text above the picture */
#service-area .service-area-text h2,
#service-area .service-area-text ul {
  position: relative;
  z-index: 1;
}

/* Phone - keep picture fixed size but anchor its right edge to screen */
@media (max-width: 700px) {
  #service-area .service-area-text {
    height: auto;
    min-height: 800px;
  }

  #service-area .service-area-text::before {
    left: auto;
    right: 0;
    transform: none;
    width: 800px;
    height: 800px;
    background-size: 800px 800px;
  }
}


/* Service Area - section height follows content, background remains fixed size */
#service-area .service-area-text {
  height: auto;
  min-height: 0;
}

/* Service Area - bottom content padding */
#service-area .service-area-text {
  padding-bottom: 30px;
}

/* Service Area - tighter suburb spacing */
#service-area .service-area-text li {
  margin-bottom: 2px;
}

/* Service Area - tighter suburb line spacing */
#service-area .service-area-text li {
  line-height: 1.15;
  margin-bottom: 0;
}

/* Service Area heading - 3.5rem */
#service-area .service-area-text h2 {
  font-size: 3.5rem;
}

/* Service Area heading font */
#service-area .service-area-text h2 {
  font-family: "MV Boli", cursive;
}

/* Pickup & Delivery option */
.pickup-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.pickup-option input {
  margin: 0;
  width: 18px;
  height: 18px;
}

#collection-point {
  margin-top: 12px;
  margin-bottom: 12px;
}

/* Offset anchor jumps for sticky header */
#home,
#services,
#service-area,
#booking {
  scroll-margin-top: 110px;
}
