*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #132a34;
  --muted: #5e6d72;
  --paper: #f7f8f6;
  --white: #ffffff;
  --blue: #236c86;
  --teal: #0f8f8d;
  --green: #526f4f;
  --gold: #d1a13b;
  --coral: #c86f56;
  --border: #dce3e2;
  --shadow: 0 18px 45px rgba(19, 42, 52, 0.14);
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.topbar .container {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-list,
.nav-list,
.footer-links {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar-list {
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
}

.topbar a,
.footer a {
  text-decoration: none;
}

.topbar a:hover,
.footer a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(19, 42, 52, 0.06);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 92px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.nav-list {
  align-items: center;
  gap: 1.6rem;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-machines::before {
  background-image:
    linear-gradient(90deg, rgba(19, 42, 52, 0.88) 0%, rgba(19, 42, 52, 0.68) 45%, rgba(19, 42, 52, 0.18) 100%),
    url("../img/Machines.jpg");
}

.hero-towels::before {
  background-image:
    linear-gradient(90deg, rgba(19, 42, 52, 0.88) 0%, rgba(19, 42, 52, 0.66) 45%, rgba(19, 42, 52, 0.2) 100%),
    url("../img/white-towels1.jpg");
}

.hero-building::before {
  background-image:
    linear-gradient(90deg, rgba(19, 42, 52, 0.88) 0%, rgba(19, 42, 52, 0.66) 45%, rgba(19, 42, 52, 0.18) 100%),
    url("../img/outside.jpg");
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 670px;
  padding: 112px 0 100px;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.hero h2,
.page-hero h1 {
  margin: 0 0 1.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1.04;
  font-weight: 700;
}

.hero p,
.page-hero p {
  max-width: 620px;
  margin-bottom: 1.7rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

/*.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}*/
.hero-actions .material-icons {
    font-size: 32px;
    align-self: center;
    color: #ffffff;
}

.service-icon {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 1rem;
}


.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 0.75rem 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-primary:hover,
.button-primary:focus {
  background: #0a7775;
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.button-outline:hover,
.button-outline:focus {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:focus {
  background: var(--blue);
}

.hero-dots {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 0.55rem;
}

.hero-dot {
  width: 40px;
  height: 5px;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--white);
}

.section {
  padding: 88px 0;
}

.section-paper {
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.2rem;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:first-child,
.service-text .eyebrow-dark {
  margin: 0 0 0.65rem;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section h2,
.service-text h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 1.18;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
}

.hours-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.hours-item {
  min-height: 150px;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.hours-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--green);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(19, 42, 52, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.service-card:focus {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1.35rem;
}

.service-card p {
  color: var(--muted);
}

.service-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
}

.service-card:nth-child(1) .service-mark {
  background: var(--blue);
}

.service-card:nth-child(2) .service-mark {
  background: var(--teal);
}

.service-card:nth-child(3) .service-mark {
  background: var(--coral);
}

.text-link {
  color: var(--blue);
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.image-collage {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 1rem;
  align-items: start;
}

.image-collage img {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-collage img:nth-child(2) {
  margin-top: 48px;
}

.image-collage img:nth-child(3) {
  grid-column: 1 / -1;
  height: 210px;
}

.contact-banner {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(19, 42, 52, 0.84), rgba(35, 108, 134, 0.42)),
    url("../img/Contact.jpg") center / cover no-repeat;
}

.contact-banner h2 {
  max-width: 760px;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 2rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.detail-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.detail-card h3 {
  margin: 0 0 0.35rem;
  color: var(--blue);
  font-size: 1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(15, 143, 141, 0.18);
  border-color: var(--teal);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-message {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 6px;
}

.form-message.is-visible {
  display: block;
}

.form-message.success {
  color: #155a36;
  background: #e5f5eb;
}

.form-message.error {
  color: #7d2d1d;
  background: #fbe9e2;
}

.map-frame {
  width: 100%;
  height: 390px;
  border: 0;
  display: block;
}

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.84);
  padding: 1.3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-links {
  gap: 1.2rem;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  color: var(--white);
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero-laundry {
  background-image:
    linear-gradient(90deg, rgba(19, 42, 52, 0.88) 0%, rgba(19, 42, 52, 0.66) 48%, rgba(19, 42, 52, 0.24) 100%),
    url("../img/maidandbed.jpg");
}

.page-hero-linen {
  background-image:
    linear-gradient(90deg, rgba(19, 42, 52, 0.88) 0%, rgba(19, 42, 52, 0.66) 48%, rgba(19, 42, 52, 0.24) 100%),
    url("../img/bedlinen.jpg");
}

.page-hero-additional {
  background-image:
    linear-gradient(90deg, rgba(19, 42, 52, 0.88) 0%, rgba(19, 42, 52, 0.66) 48%, rgba(19, 42, 52, 0.24) 100%),
    url("../img/ChairLinen.jpg");
}

.page-hero-content {
  max-width: 760px;
  padding: 92px 0;
}

.service-body {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 1.04fr);
  gap: 3rem;
  align-items: center;
}

.service-body img {
  width: 100%;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-list {
  margin: 1.4rem 0 1.8rem;
  padding-left: 1.2rem;
}

.service-list li {
  margin-bottom: 0.55rem;
}

@media (max-width: 900px) {
  .topbar .container,
  .header-inner,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.65rem 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 121px 0 auto;
    display: none;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(19, 42, 52, 0.14);
  }

  body.nav-open .site-nav {
    display: block;
  }

  .nav-list {
    width: min(100% - 28px, 1120px);
    margin: 0 auto;
    padding: 0.8rem 0 1rem;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-list a {
    border-bottom: 1px solid var(--border);
  }

  .hero {
    min-height: 600px;
  }

  .hero h1,
  .hero h2,
  .page-hero h1 {
    font-size: 3rem;
  }

  .hero-content,
  .page-hero-content {
    padding: 86px 0;
  }

  .service-grid,
  .about-grid,
  .contact-layout,
  .service-body {
    grid-template-columns: 1fr;
  }

  .service-body img {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero,
  .page-hero {
    min-height: 540px;
  }

  .hero h1,
  .hero h2,
  .page-hero h1 {
    font-size: 2.35rem;
  }

  .hero p,
  .page-hero p,
  .lead {
    font-size: 1rem;
  }

  .section {
    padding: 64px 0;
  }

  .section h2,
  .service-text h2 {
    font-size: 2rem;
  }

  .hours-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-dots {
    right: 14px;
    bottom: 18px;
  }

  .hero-dot {
    width: 30px;
  }

  .image-collage {
    grid-template-columns: 1fr;
  }

  .image-collage img,
  .image-collage img:nth-child(3),
  .service-body img {
    height: 260px;
  }

  .image-collage img:nth-child(2) {
    margin-top: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
