/* =========================================
   HARBOUR SHINE — PRESSURE WASHING PAGE
   ========================================= */

:root {
  --navy: #071d33;
  --deep-blue: #0b3152;
  --blue: #1478ad;
  --light-blue: #49a9d8;
  --pale-blue: #eaf7fc;
  --ice-blue: #f6fbfd;
  --white: #ffffff;
  --text: #183346;
  --muted: #597080;
  --border: #cde5ef;
  --shadow: 0 12px 35px rgba(7, 29, 51, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(73, 169, 216, 0.13),
      transparent 30%
    ),
    var(--ice-blue);
  line-height: 1.7;
}

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

.pressure-header {
  min-height: 480px;
  padding: 80px 25px;
  position: relative;
  overflow: hidden;

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

  text-align: center;
  color: var(--white);

  background:
    linear-gradient(
      135deg,
      rgba(7, 29, 51, 0.96),
      rgba(13, 88, 132, 0.88) 58%,
      rgba(73, 169, 216, 0.76)
    ),
    url("pressure-washing-background.jpg") center/cover no-repeat;
}

/* Subtle clean-water shine */

.pressure-header::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(255, 255, 255, 0.035),
    0 0 0 110px rgba(255, 255, 255, 0.025);
}

.pressure-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  background: linear-gradient(
    to bottom right,
    transparent 49%,
    var(--ice-blue) 50%
  );
}

.pressure-header .overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(7, 29, 51, 0.05),
      rgba(7, 29, 51, 0.3)
    );
}

.pressure-header h1,
.pressure-header p {
  position: relative;
  z-index: 2;
}

.pressure-header h1 {
  max-width: 950px;
  margin-bottom: 18px;

  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -2px;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.26);
}

.pressure-header p {
  max-width: 720px;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

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

nav {
  position: sticky;
  top: 0;
  z-index: 20;

  display: flex;
  justify-content: center;
  gap: 12px;

  padding: 13px 20px;
  background: rgba(7, 29, 51, 0.97);
  box-shadow: 0 5px 22px rgba(7, 29, 51, 0.2);
  backdrop-filter: blur(12px);
}

nav a {
  padding: 9px 18px;
  border-radius: 999px;

  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

nav a:hover {
  color: var(--navy);
  background: var(--light-blue);
  transform: translateY(-1px);
}

/* =========================================
   PAGE CONTENT
   ========================================= */

main {
  width: min(1120px, calc(100% - 34px));
  margin: 30px auto 80px;
}

section {
  position: relative;
  margin-bottom: 25px;
  padding: clamp(30px, 5vw, 58px);

  border: 1px solid rgba(205, 229, 239, 0.85);
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

section h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.7px;
}

section h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 14px;

  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--blue),
    var(--light-blue)
  );
}

section p {
  max-width: 900px;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 1.05rem;
}

section p:last-child {
  margin-bottom: 0;
}

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

#services {
  color: var(--white);
  border: none;

  background:
    linear-gradient(
      135deg,
      var(--deep-blue),
      var(--blue)
    );
}

#services h2 {
  color: var(--white);
}

#services h2::after {
  background: linear-gradient(
    90deg,
    var(--white),
    var(--light-blue)
  );
}

#services ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;

  margin-top: 28px;
  list-style: none;
}

#services li {
  position: relative;
  min-height: 66px;
  padding: 20px 20px 20px 55px;

  display: flex;
  align-items: center;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;

  backdrop-filter: blur(6px);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

#services li::before {
  content: "✓";
  position: absolute;
  left: 20px;

  display: grid;
  place-items: center;

  width: 25px;
  height: 25px;
  border-radius: 50%;

  background: var(--white);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 900;
}

#services li:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

/* =========================================
   CONTACT
   ========================================= */

#contact {
  overflow: hidden;
  border: none;

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(73, 169, 216, 0.28),
      transparent 35%
    ),
    var(--navy);

  color: var(--white);
}

#contact h2 {
  color: var(--white);
}

#contact h2::after {
  background: var(--light-blue);
}

#contact p {
  color: rgba(255, 255, 255, 0.82);
}

#contact p a {
  color: var(--white);
  font-weight: 700;
  text-decoration-color: var(--light-blue);
  text-underline-offset: 4px;
}

#contact p a:hover {
  color: var(--light-blue);
}

form {
  max-width: 750px;
  margin-top: 32px;
  padding: clamp(22px, 4vw, 36px);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(10px);
}

.form-row {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 7px;

  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  outline: none;

  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font: inherit;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

textarea {
  min-height: 145px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 4px rgba(73, 169, 216, 0.23);
}

button {
  min-width: 180px;
  padding: 14px 25px;

  border: 0;
  border-radius: 999px;
  cursor: pointer;

  background: linear-gradient(
    135deg,
    var(--light-blue),
    #76c8e8
  );

  color: var(--navy);
  font: inherit;
  font-weight: 800;

  box-shadow: 0 8px 24px rgba(73, 169, 216, 0.25);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(73, 169, 216, 0.34);
}

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

@media (max-width: 700px) {
  .pressure-header {
    min-height: 410px;
    padding: 65px 22px 95px;
  }

  .pressure-header h1 {
    letter-spacing: -1px;
  }

  nav {
    gap: 3px;
    padding: 10px 8px;
  }

  nav a {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  main {
    width: min(100% - 22px, 1120px);
    margin-top: 18px;
  }

  section {
    margin-bottom: 16px;
    padding: 28px 21px;
    border-radius: 17px;
  }

  #services ul {
    grid-template-columns: 1fr;
  }

  #services li {
    min-height: 60px;
  }

  form {
    padding: 20px 16px;
  }

  button {
    width: 100%;
  }
}
