* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #f8fafc;
}
h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
}
h1 a {
  text-decoration: none;
  color: #123c73;
  font-size: 2rem;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5rem;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
nav ul li a {
  text-decoration: none;
  color: 123c73;
  font-weight: 500;
}
nav ul li a:hover {
  color: #1d4ed8;
}
.cta-button {
  background-color: #123c73;
  color: white;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
}
.cta-button:hover {
  background-color: #1d4ed8;
}
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 5rem;
  min-height: 90vh;
  gap: 5rem;
}
.hero-text {
  flex: 1.2;
  animation: heroTextIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: heroImageIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
}
.image-placeholder {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #f8f5ef, #dbeafe);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2563eb;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.home-hero-photo {
  width: 100%;
  max-width: 560px;
  height: 580px;

  object-fit: cover;
  object-position: center;

  border-radius: 30px;

  box-shadow: 0 25px 55px rgba(18, 60, 115, 0.16);

  display: block;
}

.hero-image {
  flex: 1;

  display: flex;
  justify-content: center;
  align-items: center;

  overflow: hidden;

  border-radius: 30px;

  animation: heroImageIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;

  opacity: 0;
}
.hero-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  line-height: 1.1;
  color: #123c73;
  margin-bottom: 1.5rem;
}
.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.secondary-button {
  text-decoration: none;
  background-color: #f8f5ef;
  color: #1f2937;
  padding: 0.9rem 1.6rem;
  border: 2px solid #fad35e;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.secondary-button:hover {
  background-color: #f4d35e;
  color: white;
}
.hero-trust {
  color: #6b7280;
  font-size: 0.95rem;
}
.hero-badge {
  color: #d4af37;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.feature-card {
  background-color: white;
  padding: 2.5rem;
  border: 1px solid #eee8dc;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition:
    transform 1s ease,
    box-shadow 0.3s ease,
    opacity 1s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.feature-card h3 {
  color: #123c73;
  font-family:
    "Poppins",
    sans serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #d4af37;
}
.feature-card p:not(.feature-icon) {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}
.features-section {
  padding: 6rem 5rem;
  background-color: #fffdf8;
}
.features-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  color: #123c73;
  text-align: center;
  margin-bottom: 1rem;
}
.features-section > .container > p {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
  margin-bottom: 3rem;
  color: #64748b;
  line-height: 1.7;
}
.features-section h2::before {
  content: "";
  display: block;
  width: 45px;
  height: 3px;
  background-color: #d4af37;
  margin: 0 auto 1rem;
  border-radius: 10px;
}
.about-section {
  padding: 7rem 5rem;
  background-color: #ffffff;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}
.section-label {
  color: #d4af37;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.about-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  color: #123c73;
  margin-bottom: 1.5rem;
}
.about-text p:not(.section-label) {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.reveal {
  opacity: 0;
  transition:
    opacity 0.7s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-up {
  transform: translateY(70px);
}

.reveal-left {
  transform: translateX(-180px);
}

.reveal-right {
  transform: translateX(180px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0);
}
.feature-card:nth-child(1) {
  transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
  transition-delay: 0.25s;
}

.feature-card:nth-child(3) {
  transition-delay: 0.4s;
}

.feature-card:nth-child(4) {
  transition-delay: 0.55s;
}
.about-image {
  min-height: 400px;
  background: linear-gradient(135deg, #f8f5ef, #dbeafe);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
footer {
  padding: 3rem 5rem;
  text-align: center;
  background-color: #f8f5ef;
  border-top: 1px solid #eee8dc;
}
footer p {
  margin: 0;
  color: #123c73;
  font-size: 0.9rem;
}
.service-ticker {
  overflow: hidden;
  background-color: #123c73;
  color: #d4af37;
  padding: 1rem 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: ticker-scroll 10s linear infinite;
}
.ticker-track span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}
@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateX(-220px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translateX(220px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
/* =========================
   HAMBURGER MENU
========================= */

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.menu-button {
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.menu-button span {
  width: 28px;
  height: 2px;
  background-color: #123c73;
  transition: all 0.3s ease;
}

.menu-button:hover span {
  background-color: #d4af37;
}

/* SIDE MENU */

.side-menu {
  position: fixed;
  top: 0;
  right: 0;

  width: min(420px, 85vw);
  height: 100vh;

  background-color: #123c73;
  padding: 2rem 2.5rem;

  z-index: 1000;

  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);

  display: flex;
  flex-direction: column;
}

.side-menu.active {
  transform: translateX(0);
}

/* CLOSE BUTTON */

.close-menu {
  align-self: flex-end;

  background: transparent;
  border: none;

  color: white;
  font-size: 2.5rem;

  cursor: pointer;

  transition: color 0.3s ease;
}

.close-menu:hover {
  color: #d4af37;
}

/* MENU LABEL */

.menu-label {
  color: #d4af37;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* MENU LINKS */

.side-menu ul {
  list-style: none;

  display: flex;
  flex-direction: column;

  gap: 1.5rem;
}

.side-menu ul li a {
  color: white;
  text-decoration: none;

  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;

  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}

.side-menu ul li a:hover {
  color: #d4af37;
  padding-left: 10px;
}

/* MENU CTA */

.menu-cta {
  display: inline-block;

  margin-top: auto;

  padding: 1rem 1.5rem;

  background-color: #d4af37;
  color: #123c73;

  text-decoration: none;

  text-align: center;

  font-weight: 700;

  border-radius: 8px;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.menu-cta:hover {
  background-color: #f8f5ef;
  transform: translateY(-3px);
}

/* DARK OVERLAY */

.menu-overlay {
  position: fixed;
  inset: 0;

  background-color: rgba(0, 0, 0, 0.45);

  z-index: 999;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
/* =========================
   SERVICES SECTION
========================= */

.services-section {
  padding: 7rem 5rem;
  background-color: #123c73;
  color: white;
}

.services-heading {
  max-width: 700px;
  margin-bottom: 4rem;
}

.services-heading .section-label {
  color: #d4af37;
}

.services-heading h2 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.services-heading > p:last-child {
  color: #dbe4f0;
  line-height: 1.8;
  max-width: 620px;
}

/* SERVICE GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* SERVICE CARD */

.service-card {
  position: relative;

  background-color: #f8f5ef;
  color: #123c73;

  padding: 2.5rem;

  min-height: 330px;

  border-radius: 20px;

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

/* NUMBER */

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;

  font-family: "Poppins", sans-serif;

  font-size: 0.85rem;
  font-weight: 700;

  color: #d4af37;
}

/* ICON */

.service-icon {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d4af37;
  border-radius: 50%;

  color: #d4af37;

  font-size: 1.5rem;

  margin-bottom: 2rem;
}

.service-card h3 {
  font-family: "Poppins", sans-serif;

  font-size: 1.6rem;

  margin-bottom: 1rem;
}

.service-card p {
  color: #64748b;

  line-height: 1.7;

  max-width: 450px;

  margin-bottom: 2rem;
}

/* LEARN MORE */

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  color: #123c73;

  text-decoration: none;

  font-weight: 700;

  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.service-card a:hover {
  gap: 0.9rem;
  color: #d4af37;
}

/* ADDITIONAL SERVICES */

.additional-services {
  margin-top: 5rem;

  padding-top: 3rem;

  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.additional-services .section-label {
  margin-bottom: 0.75rem;
}

.additional-services h3 {
  font-family: "Poppins", sans-serif;

  font-size: 2rem;

  margin-bottom: 0.75rem;
}

.additional-services > p:not(.section-label) {
  color: #dbe4f0;

  line-height: 1.7;

  margin-bottom: 2rem;
}

.additional-service-list {
  display: flex;

  flex-wrap: wrap;

  gap: 0.75rem;
}

.additional-service-list span {
  padding: 0.75rem 1.25rem;

  border: 1px solid rgba(212, 175, 55, 0.6);

  border-radius: 50px;

  color: white;

  font-size: 0.9rem;

  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.additional-service-list span:hover {
  background-color: #d4af37;
  color: #123c73;
}
/* =========================
   SERVICES HERO — CLEAN BANNER
========================= */

.services-page-hero {
  position: relative;
  height: 320px;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.services-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.services-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(8, 20, 35, 0.82) 0%,
    rgba(8, 20, 35, 0.62) 48%,
    rgba(8, 20, 35, 0.25) 100%
  );
}

.services-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 2.5rem 5rem;
}

.services-hero-content .section-label {
  color: #d4af37;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 0.6rem;
}

.services-hero-content h1 {
  font-family: "Poppins", sans-serif;
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1;
  margin-bottom: 0.9rem;
}

.services-hero-content > p:last-child {
  max-width: 560px;
  color: #f3f4f6;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .services-page-hero {
    height: 280px;
  }

  .services-hero-content {
    padding: 2rem 1.25rem;
  }

  .services-hero-content h1 {
    font-size: 2.5rem;
  }

  .services-hero-content > p:last-child {
    font-size: 0.9rem;
  }
}
/* =========================
   SERVICES PAGE — CORE SERVICES
========================= */

.services-page-section {
  padding: 6rem 5rem;
  background-color: #f8f5ef;
}

.services-page-heading {
  max-width: 720px;
  margin-bottom: 4rem;
}

.services-page-heading .section-label {
  color: #d4af37;
}

.services-page-heading h2 {
  font-family: "Poppins", sans-serif;
  color: #123c73;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.services-page-heading > p:last-child {
  color: #64748b;
  line-height: 1.8;
  max-width: 650px;
}

/* =========================
   LARGE SERVICE SECTIONS
========================= */

.services-page-grid {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.large-service-card {
  position: relative;

  min-height: 540px;

  border-radius: 26px;
  overflow: hidden;

  background-color: #123c73;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.large-service-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.17);
}

/* IMAGE */

.service-card-image {
  position: absolute;
  inset: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.7s ease;
}

.large-service-card:hover .service-card-image img {
  transform: scale(1.05);
}

/* DARK GRADIENT */

.large-service-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(9, 24, 43, 0.92) 0%,
    rgba(9, 24, 43, 0.72) 45%,
    rgba(9, 24, 43, 0.15) 100%
  );

  z-index: 1;
}

/* CONTENT */

.large-service-card-content {
  position: relative;
  z-index: 2;

  min-height: 540px;

  max-width: 570px;

  padding: 4rem;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: white;
}

.large-service-card-content .service-number {
  position: static;

  display: flex;
  align-items: center;
  gap: 1rem;

  color: #d4af37;

  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;

  margin-bottom: 1.5rem;
}

.large-service-card-content .service-number::after {
  content: "";

  width: 55px;
  height: 1px;

  background-color: #d4af37;
}

.large-service-card-content h3 {
  font-family: "Poppins", sans-serif;

  color: white;

  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.1;

  margin-bottom: 1.3rem;
}

.large-service-card-content p {
  color: #e5e7eb;

  line-height: 1.8;

  margin-bottom: 2rem;

  max-width: 500px;
}

/* SERVICE BUTTON */

.large-service-card-content .cta-button {
  align-self: flex-start;

  background: transparent;

  border: 1px solid #d4af37;

  color: white;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.large-service-card-content .cta-button:hover {
  background-color: #d4af37;
  color: #123c73;

  transform: translateY(-2px);
}

/* =========================
   ALTERNATING SERVICES
========================= */

.large-service-card.reveal-right .large-service-card-content {
  margin-left: auto;

  text-align: right;

  align-items: flex-end;
}

.large-service-card.reveal-right::after {
  background: linear-gradient(
    270deg,
    rgba(9, 24, 43, 0.92) 0%,
    rgba(9, 24, 43, 0.72) 45%,
    rgba(9, 24, 43, 0.15) 100%
  );
}

.large-service-card.reveal-right .large-service-card-content .service-number {
  flex-direction: row-reverse;
}

/* =========================
   ADDITIONAL SERVICES
========================= */

.additional-services-page {
  padding: 6rem 5rem;

  background-color: white;
}

.additional-services-content {
  max-width: 700px;

  margin-bottom: 3rem;
}

.additional-services-content h2 {
  font-family: "Poppins", sans-serif;

  color: #123c73;

  font-size: clamp(2.2rem, 4vw, 3rem);

  margin-bottom: 1rem;
}

.additional-services-content > p:last-child {
  color: #64748b;

  line-height: 1.8;
}

.additional-services-page-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.5rem;
}

.additional-service-card {
  padding: 2rem;

  background-color: #f8f5ef;

  border: 1px solid #eee8dc;
  border-radius: 16px;

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.additional-service-card:hover {
  transform: translateY(-6px);

  border-color: #d4af37;

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.additional-service-card > span {
  display: block;

  color: #d4af37;

  font-size: 1.3rem;

  margin-bottom: 1rem;
}

.additional-service-card h3 {
  font-family: "Poppins", sans-serif;

  color: #123c73;

  font-size: 1.15rem;

  margin-bottom: 0.7rem;
}

.additional-service-card p {
  color: #64748b;

  line-height: 1.7;

  font-size: 0.9rem;
}

/* =========================
   SERVICES FINAL CTA
========================= */

.services-page-cta {
  padding: 6rem 5rem;

  background-color: #123c73;

  color: white;

  text-align: center;
}

.services-page-cta .container {
  max-width: 750px;
}

.services-page-cta .section-label {
  color: #d4af37;
}

.services-page-cta h2 {
  font-family: "Poppins", sans-serif;

  font-size: clamp(2.2rem, 4vw, 3rem);

  margin-bottom: 1.2rem;
}

.services-page-cta p:not(.section-label) {
  color: #dbe4f0;

  line-height: 1.8;

  margin-bottom: 2rem;
}

/* =========================
   SERVICES PAGE RESPONSIVE
========================= */

@media (max-width: 900px) {
  .services-page-section,
  .additional-services-page,
  .services-page-cta {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .large-service-card,
  .large-service-card-content {
    min-height: 500px;
  }

  .large-service-card-content {
    padding: 3rem;
  }

  .additional-services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-page-section,
  .additional-services-page,
  .services-page-cta {
    padding: 4rem 1.25rem;
  }

  .services-page-grid {
    gap: 3rem;
  }

  .large-service-card,
  .large-service-card-content {
    min-height: 470px;
  }

  .large-service-card-content {
    padding: 2rem;
  }

  .large-service-card-content h3 {
    font-size: 2.4rem;
  }

  .large-service-card.reveal-right .large-service-card-content {
    margin-left: 0;

    text-align: left;

    align-items: flex-start;
  }

  .large-service-card.reveal-right::after {
    background: linear-gradient(
      90deg,
      rgba(9, 24, 43, 0.92) 0%,
      rgba(9, 24, 43, 0.72) 55%,
      rgba(9, 24, 43, 0.3) 100%
    );
  }

  .large-service-card.reveal-right .large-service-card-content .service-number {
    flex-direction: row;
  }

  .additional-services-page-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   PLANS PAGE
========================= */

.plans-page-hero {
  position: relative;
  height: 520px;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.plans-page-hero .container {
  max-width: 900px;
}

.plans-page-hero .section-label {
  color: #d4af37;
}

.plans-page-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.plans-page-hero p:last-child {
  max-width: 650px;
  color: #dbe4f0;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* =========================
   PLANS SECTION
========================= */

.plans-section {
  padding: 7rem 5rem;
  background-color: #f8f5ef;
}

.plans-heading {
  max-width: 700px;
  margin-bottom: 4rem;
}

.plans-heading h2 {
  font-family: "Poppins", sans-serif;
  color: #123c73;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.plans-heading > p:last-child {
  color: #64748b;
  line-height: 1.8;
}

/* =========================
   PLAN CARDS
========================= */

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.plan-card {
  position: relative;

  background-color: white;

  padding: 2.5rem;

  border: 1px solid #eee8dc;
  border-radius: 20px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.plan-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.plan-name {
  color: #d4af37;

  font-size: 0.85rem;
  font-weight: 700;

  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 1rem;
}

.plan-card h3 {
  font-family: "Poppins", sans-serif;

  color: #123c73;

  font-size: 2.2rem;

  margin-bottom: 1.75rem;
}

.plan-card h3 span {
  font-family: "Inter", sans-serif;

  color: #64748b;

  font-size: 0.9rem;

  font-weight: 500;
}

.plan-card ul {
  list-style: none;

  margin-bottom: 2rem;
}

.plan-card li {
  position: relative;

  padding-left: 1.5rem;
  margin-bottom: 0.9rem;

  color: #64748b;

  line-height: 1.6;
}

.plan-card li::before {
  content: "✦";

  position: absolute;
  left: 0;

  color: #d4af37;

  font-size: 0.8rem;
}

/* =========================
   MOST POPULAR
========================= */

.featured-plan {
  border: 2px solid #d4af37;

  transform: translateY(-10px);
}

.featured-plan:hover {
  transform: translateY(-18px);
}

.popular-badge {
  position: absolute;

  top: -1px;
  right: 2rem;

  background-color: #d4af37;

  color: white;

  padding: 0.5rem 1rem;

  border-radius: 0 0 8px 8px;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 1px;
}

/* =========================
   PLAN BUTTON
========================= */

.plan-button {
  display: inline-block;

  width: 100%;

  padding: 0.9rem 1rem;

  text-align: center;

  background-color: #123c73;

  color: white;

  text-decoration: none;

  border-radius: 8px;

  font-weight: 600;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
}

.plan-button:hover {
  background-color: #d4af37;

  transform: translateY(-2px);
}

/* =========================
   PLANS CTA
========================= */

.plans-page-cta {
  padding: 7rem 5rem;

  background-color: #123c73;

  color: white;

  text-align: center;
}

.plans-page-cta .container {
  max-width: 750px;
}

.plans-page-cta .section-label {
  color: #d4af37;
}

.plans-page-cta h2 {
  font-family: "Poppins", sans-serif;

  font-size: 2.8rem;

  line-height: 1.2;

  margin-bottom: 1.25rem;
}

.plans-page-cta p:not(.section-label) {
  color: #dbe4f0;

  line-height: 1.8;

  margin-bottom: 2rem;
}
/* =========================
   PLAN CARD ANIMATIONS
========================= */
.plan-card.reveal-left {
  opacity: 0;
  transform: translateX(-100px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.plan-card.reveal-right {
  opacity: 0;
  transform: translateX(100px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.plan-card.reveal-left.visible,
.plan-card.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.plan-card:nth-child(3) {
  transition-delay: 0.2s;
}

.plan-card:nth-child(4) {
  transition-delay: 0.35s;
}
/* =========================================================
   GALLERY PAGE
========================================================= */

/* HERO */

.gallery-page-hero {
  position: relative;
  height: 520px;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(7, 25, 48, 0.78) 0%,
      rgba(7, 25, 48, 0.55) 28%,
      rgba(7, 25, 48, 0.12) 48%,
      transparent 62%
    ),
    url("../Clean'D_images/closeup carpet cleaning.jpg") center 85% / cover
      no-repeat;
}

.gallery-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 11rem;
  padding-bottom: 7rem;
}

.gallery-page-hero .section-label {
  margin-bottom: 1.3rem;
  color: #d4af37;
}

.gallery-page-hero h1 {
  max-width: 760px;
  margin: 0 0 1.5rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.gallery-page-hero p:last-child {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

/* GALLERY INTRO */

.gallery-section {
  padding: 8rem 0;
  overflow: hidden;
  background: #f8f5ef;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 3.5rem;
}

.gallery-heading .section-label {
  color: #d4af37;
  margin-bottom: 1rem;
}

.gallery-heading h2 {
  margin: 0;
  color: #123c73;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.05;
}

.gallery-heading-text {
  max-width: 520px;
  margin: 0 0 0.4rem;
  color: #64748b;
  line-height: 1.8;
}

/* SCROLL NOTE */

.gallery-scroll-note {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  color: #123c73;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-scroll-arrow {
  color: #d4af37;
  font-size: 1.4rem;
}

/* HORIZONTAL GALLERY */

.gallery-track-wrapper {
  width: 100%;
  overflow-x: auto;
  padding-left: max(5rem, calc((100vw - 1200px) / 2));
  padding-right: 3rem;
  padding-bottom: 2rem;

  scrollbar-width: thin;
  scrollbar-color: #d4af37 transparent;
}

.gallery-track-wrapper::-webkit-scrollbar {
  height: 7px;
}

.gallery-track-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-track-wrapper::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.7);
  border-radius: 30px;
}

.gallery-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  scroll-snap-type: x mandatory;
}

.gallery-photo {
  position: relative;
  width: 390px;
  height: 500px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #123c73;
  scroll-snap-align: start;
}

.gallery-photo-large {
  width: 520px;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(18, 60, 115, 0.04) 25%,
    rgba(18, 60, 115, 0.88) 100%
  );

  transition: background 0.4s ease;
}

.gallery-photo:hover img {
  transform: scale(1.06);
}

.gallery-photo:hover::after {
  background: linear-gradient(
    180deg,
    rgba(18, 60, 115, 0.08) 10%,
    rgba(18, 60, 115, 0.94) 100%
  );
}

/* IMAGE LABELS */

.gallery-photo-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  pointer-events: none;
}

.gallery-photo-overlay > span {
  color: #d4af37;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.gallery-photo-overlay p {
  margin: 0 0 0.6rem;
  color: #d4af37;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.gallery-photo-overlay h3 {
  max-width: 330px;
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

/* STATEMENT */

.gallery-statement {
  padding: 8rem 0;
  background: #fff;
}

.gallery-statement-inner {
  max-width: 950px;
}

.gallery-statement .section-label {
  color: #d4af37;
  margin-bottom: 1.3rem;
}

.gallery-statement h2 {
  max-width: 900px;
  margin: 0 0 1.6rem;
  color: #123c73;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.gallery-statement h2 span {
  color: #d4af37;
}

.gallery-statement p:last-child {
  max-width: 620px;
  margin: 0;
  color: #64748b;
  line-height: 1.8;
}

/* CTA */

.gallery-page-cta {
  padding: 8rem 5rem;
  text-align: center;
  background: #123c73;
}

.gallery-page-cta .container {
  max-width: 800px;
}

.gallery-page-cta .section-label {
  color: #d4af37;
  margin-bottom: 1rem;
}

.gallery-page-cta h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.gallery-page-cta p {
  max-width: 580px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-track-wrapper {
    padding-left: 2rem;
  }

  .gallery-photo,
  .gallery-photo-large {
    width: 380px;
  }
}

@media (max-width: 600px) {
  .gallery-page-hero {
    min-height: 70vh;
  }

  .gallery-hero-content {
    padding-top: 9rem;
    padding-bottom: 4.5rem;
  }

  .gallery-section {
    padding: 5rem 0;
  }

  .gallery-track-wrapper {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .gallery-photo,
  .gallery-photo-large {
    width: 82vw;
    height: 440px;
  }

  .gallery-statement {
    padding: 5rem 0;
  }

  .gallery-page-cta {
    padding: 5rem 1.5rem;
  }
}
/* =========================
   FAQ PAGE
========================= */

.faq-page-hero {
  position: relative;
  height: 520px;
  min-height: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 5rem;

  background:
    linear-gradient(
      90deg,
      rgba(7, 25, 48, 0.78) 0%,
      rgba(7, 25, 48, 0.55) 28%,
      rgba(7, 25, 48, 0.12) 48%,
      transparent 62%
    ),
    url("../Clean'D_images/CEO alone.jpg") center 40% / cover no-repeat;

  color: #ffffff;
}
.faq-page-hero .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-page-hero .section-label {
  color: #d4af37;
}

.faq-page-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.35),
    0 4px 20px rgba(0, 0, 0, 0.25);
}

.faq-page-hero p:last-child {
  max-width: 650px;
  color: #dbe4f0;
  font-size: 1.1rem;
  line-height: 1.8;
}
.faq-page-hero > .container > p:last-child {
  color: #ffffff;

  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* =========================
   FAQ SECTION
========================= */

.faq-section {
  padding: 7rem 5rem;
  background-color: #f8f5ef;
}

.faq-heading {
  max-width: 700px;
  margin-bottom: 3.5rem;
}

.faq-heading h2 {
  font-family: "Poppins", sans-serif;
  color: #123c73;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.faq-heading p:last-child {
  color: #64748b;
  line-height: 1.8;
}

.faq-heading a {
  color: #123c73;
  font-weight: 600;
}

/* =========================
   FAQ ITEMS
========================= */

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;

  border: 1px solid #eee8dc;
  border-radius: 14px;

  margin-bottom: 1rem;

  overflow: hidden;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: #d4af37;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* QUESTION */

.faq-question {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 2rem;

  padding: 1.5rem 1.75rem;

  background: transparent;
  border: none;

  cursor: pointer;

  text-align: left;

  color: #123c73;

  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.faq-icon {
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  background-color: #f8f5ef;

  color: #d4af37;

  font-size: 1.3rem;

  transition:
    transform 0.35s ease,
    background-color 0.35s ease;
}

/* ANSWER */

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}

.faq-answer p {
  padding: 0 1.75rem 1.5rem;

  color: #64748b;

  line-height: 1.8;
}

/* ACTIVE FAQ */

.faq-item.active {
  border-color: #d4af37;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);

  background-color: #123c73;

  color: white;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* =========================
   FAQ CTA
========================= */

.faq-page-cta {
  padding: 7rem 5rem;

  background-color: #123c73;

  color: white;

  text-align: center;
}

.faq-page-cta .container {
  max-width: 750px;
}

.faq-page-cta .section-label {
  color: #d4af37;
}

.faq-page-cta h2 {
  font-family: "Poppins", sans-serif;

  font-size: 2.8rem;

  line-height: 1.2;

  margin-bottom: 1.25rem;
}

.faq-page-cta p:not(.section-label) {
  color: #dbe4f0;

  line-height: 1.8;

  margin-bottom: 2rem;
}
/* =========================
   CONTACT PAGE
========================= */

.contact-page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(7, 25, 48, 0.76) 0%,
      rgba(7, 25, 48, 0.52) 42%,
      rgba(7, 25, 48, 0.16) 70%,
      transparent 100%
    ),
    url("../Clean'D_images/CEO and laptop.jpg") center / cover no-repeat;
  color: white;
}

.contact-page-hero .container {
  max-width: 1200px;
}

.contact-page-hero .section-label {
  color: #d4af37;
}

.contact-page-hero h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-family: "Poppins", sans-serif;

  font-size: clamp(2.8rem, 5vw, 4.5rem);

  line-height: 1;
  letter-spacing: -0.04em;
  color: white;
}

.contact-page-hero p:last-child {
  max-width: 650px;
  color: #dbe4f0;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  padding: 7rem 5rem;
  background-color: #f8f5ef;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: start;
}

/* =========================
   CONTACT INFORMATION
========================= */

.contact-info {
  padding-top: 1rem;
}

.contact-info h2 {
  font-family: "Poppins", sans-serif;
  color: #123c73;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-info > p:not(.section-label) {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  flex-shrink: 0;

  background-color: white;

  border: 1px solid #eee8dc;

  border-radius: 10px;

  font-size: 1.1rem;
}

.contact-detail h3 {
  font-family: "Poppins", sans-serif;
  color: #123c73;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-detail p {
  color: #64748b;
  font-size: 0.9rem;
}

/* =========================
   QUOTE FORM
========================= */

.quote-form-wrapper {
  background-color: white;

  padding: 3rem;

  border-radius: 20px;

  border: 1px solid #eee8dc;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.quote-form-heading {
  margin-bottom: 2rem;
}

.quote-form-heading h2 {
  font-family: "Poppins", sans-serif;
  color: #123c73;
  font-size: 2rem;
  line-height: 1.2;
}

/* FORM */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  color: #123c73;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 0.95rem 1rem;

  border: 1px solid #ddd8ce;

  border-radius: 9px;

  background-color: #fffdf8;

  color: #123c73;

  font-family: "Inter", sans-serif;

  font-size: 0.95rem;

  outline: none;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d4af37;

  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-submit {
  border: none;

  cursor: pointer;

  font-family: "Inter", sans-serif;

  font-size: 0.95rem;

  width: 100%;

  margin-top: 0.5rem;
}

/* =========================
   CONTACT CTA
========================= */

.contact-page-cta {
  padding: 7rem 5rem;

  background-color: #123c73;

  color: white;

  text-align: center;
}
.contact-page-cta .container {
  max-width: 750px;
}
.contact-page-cta .section-label {
  color: #d4af37;
}
.contact-page-cta h2 {
  font-family: "Poppins", sans-serif;

  font-size: 3rem;

  line-height: 1.2;

  margin-bottom: 1.25rem;
}
.contact-page-cta p:not(.section-label) {
  color: #dbe4f0;

  line-height: 1.8;
}
/* =========================
   HEADER / MENU FIX
========================= */

header {
  position: relative;
  z-index: 1000;
}

.menu-button {
  position: relative;
  z-index: 1001;
}

.side-menu {
  z-index: 1002;
}

.menu-overlay {
  z-index: 1000;
}

/* =========================
   HOME FINAL CTA
========================= */

.cta-section {
  position: relative;

  padding: 7rem 2rem;

  background: #123c73;

  color: white;

  text-align: center;

  overflow: hidden;
}

/* subtle gold decoration */

.cta-section::before {
  content: "";

  position: absolute;

  width: 320px;
  height: 320px;

  border: 1px solid rgba(212, 175, 55, 0.2);

  border-radius: 50%;

  top: -190px;
  left: -100px;
}

.cta-section::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  border: 1px solid rgba(212, 175, 55, 0.15);

  border-radius: 50%;

  bottom: -140px;
  right: -50px;
}

.cta-content {
  position: relative;
  z-index: 2;

  max-width: 760px;

  margin: 0 auto;
}

.cta-section .section-label {
  color: #d4af37;

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.18em;

  margin-bottom: 1rem;
}

.cta-section h2 {
  font-family: "Poppins", sans-serif;

  font-size: clamp(2.5rem, 5vw, 4rem);

  line-height: 1.15;

  color: white;

  margin-bottom: 1.2rem;
}

.cta-description {
  max-width: 590px;

  margin: 0 auto 2.3rem;

  color: #dbe5ef;

  line-height: 1.8;

  font-size: 1rem;
}

.cta-final-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 0.8rem;

  padding: 1rem 1.8rem;

  background: #d4af37;

  color: #123c73;

  text-decoration: none;

  font-weight: 700;

  border-radius: 6px;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

.cta-final-button span {
  transition: transform 0.3s ease;
}

.cta-final-button:hover {
  transform: translateY(-3px);

  background: #e2c15c;
}

.cta-final-button:hover span {
  transform: translateX(5px);
}

@media (max-width: 600px) {
  .cta-section {
    padding: 5rem 1.25rem;
  }

  .cta-section h2 {
    font-size: 2.4rem;
  }
}
.hero-text h1 {
  color: #123c73;
  text-shadow: none;
}
.service-price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 0.7rem 2rem;

  width: 100%;
  max-width: 520px;

  margin-bottom: 2rem;
}

.service-price-list span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;

  padding-bottom: 0.55rem;

  border-bottom: 1px solid rgba(255, 255, 255, 0.16);

  color: #f1f1f1;

  font-size: 0.88rem;
}

.service-price-list strong {
  color: #d4af37;
  white-space: nowrap;
}

.service-extras {
  display: flex;
  flex-wrap: wrap;

  gap: 0.6rem;

  margin: -0.5rem 0 2rem;
}

.service-extras span {
  padding: 0.5rem 0.8rem;

  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50px;

  color: #f5f5f5;

  font-size: 0.75rem;
}

@media (max-width: 600px) {
  .service-price-list {
    grid-template-columns: 1fr;
  }
}
.addon-link {
  display: inline-block;

  margin-top: 1rem;

  color: #d4af37;

  font-size: 0.82rem;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.addon-link:hover {
  color: #123c73;
  transform: translateX(4px);
}
.service-extras {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 2rem;
}

.service-extras span {
  padding: 0.5rem 0.8rem;

  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50px;

  color: #f5f5f5;

  font-size: 0.75rem;
}
/* =========================================================
   CONTACT PAGE
========================================================= */

/* =========================
   CONTACT HERO
========================= */

.contact-page-hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(7, 25, 48, 0.76) 0%,
      rgba(7, 25, 48, 0.52) 42%,
      rgba(7, 25, 48, 0.16) 70%,
      transparent 100%
    ),
    url("../Clean'D_images/CEO and laptop.jpg") center / cover no-repeat;
  color: white;
}

.contact-page-hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;

  right: -100px;
  top: -120px;
}

.contact-page-hero::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;

  right: 16%;
  bottom: -80px;
}

.contact-page-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-page-hero .section-label {
  color: #d4af37;
  margin-bottom: 1rem;
}

.contact-page-hero h1 {
  max-width: 760px;
  margin-bottom: 1.5rem;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;

  color: white;
}

.contact-page-hero > .container > p:last-child {
  max-width: 600px;

  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =========================
   MAIN CONTACT SECTION
========================= */

.contact-section {
  position: relative;
  padding: 8rem 0;

  background:
    radial-gradient(
      circle at 0% 50%,
      rgba(212, 175, 55, 0.08),
      transparent 30%
    ),
    #f8f6f1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 6rem;
  align-items: start;
}

/* =========================
   LEFT CONTACT INFORMATION
========================= */

.contact-info {
  position: sticky;
  top: 130px;
}

.contact-info > .section-label {
  color: #d4af37;
  margin-bottom: 1rem;
}

.contact-info > h2 {
  max-width: 500px;
  margin-bottom: 1.25rem;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;

  color: #123c73;
}

.contact-intro {
  max-width: 500px;
  margin-bottom: 3rem;

  color: #667085;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;

  padding: 1.4rem 0;

  border-bottom: 1px solid rgba(18, 60, 115, 0.12);
}

.contact-detail-icon {
  flex: 0 0 auto;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50%;

  color: #d4af37;
  font-size: 0.8rem;
}

.contact-detail-label {
  margin-bottom: 0.3rem;

  color: #d4af37;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.contact-detail h3 {
  margin-bottom: 0.3rem;

  color: #123c73;
  font-size: 1rem;
}

.contact-detail a,
.contact-detail p {
  color: #667085;
  text-decoration: none;
  line-height: 1.6;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.contact-detail a:hover {
  color: #d4af37;
}

/* SMALL EDITORIAL NOTE */

.contact-note {
  position: relative;

  display: flex;
  gap: 1.2rem;

  margin-top: 3rem;
  padding: 1.6rem;

  border-left: 3px solid #d4af37;
  background: rgba(255, 255, 255, 0.65);
}

.contact-note > span {
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.contact-note p {
  margin: 0;

  color: #606a78;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =========================
   FORM PANEL
========================= */

.quote-form-wrapper {
  position: relative;

  padding: 3.5rem;

  background: #ffffff;
  border: 1px solid rgba(18, 60, 115, 0.08);
  border-radius: 28px;

  box-shadow:
    0 30px 80px rgba(18, 60, 115, 0.1),
    0 6px 20px rgba(0, 0, 0, 0.04);
}

.quote-form-wrapper::before {
  content: "";
  position: absolute;

  width: 90px;
  height: 4px;

  top: 0;
  left: 3.5rem;

  background: #d4af37;
  border-radius: 0 0 8px 8px;
}

.quote-form-heading {
  margin-bottom: 2.5rem;
}

.quote-form-heading .section-label {
  color: #d4af37;
  margin-bottom: 0.8rem;
}

.quote-form-heading h2 {
  margin-bottom: 0.8rem;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;

  color: #123c73;
}

.quote-form-heading > p:last-child {
  max-width: 520px;

  color: #727b88;
  line-height: 1.7;
}

/* =========================
   FORM
========================= */

#quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-group label {
  color: #27364b;
  font-size: 0.82rem;
  font-weight: 700;
}

.optional-label {
  margin-left: 0.35rem;

  color: #9a9fa8;
  font-size: 0.68rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;

  padding: 1rem 1.05rem;

  border: 1px solid #dfe3e8;
  border-radius: 12px;

  outline: none;

  background: #fbfbfa;

  color: #243247;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a8adb5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212, 175, 55, 0.85);

  background: white;

  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

/* =========================
   SELECTED PRICE
========================= */

.selected-price {
  position: relative;
  overflow: hidden;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;

  padding: 1.3rem 1.5rem;

  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 14px;

  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.08),
    rgba(255, 255, 255, 0.95)
  );
}

.selected-price::after {
  content: "✦";

  position: absolute;
  right: 20px;
  top: -18px;

  color: rgba(212, 175, 55, 0.1);
  font-size: 5rem;
}

.selected-price span {
  position: relative;
  z-index: 1;

  color: #667085;
  font-size: 0.8rem;
}

.selected-price strong {
  position: relative;
  z-index: 1;

  color: #123c73;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
}

/* =========================
   CARPET ADD-ONS
========================= */

.carpet-extras-group {
  padding: 1.4rem;

  border: 1px solid rgba(18, 60, 115, 0.09);
  border-radius: 16px;

  background: #f9fafb;
}

.contact-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;

  margin-top: 0.4rem;
}

.contact-checkbox {
  display: flex;
  align-items: center;
  gap: 0.7rem;

  padding: 0.9rem;

  border: 1px solid #e1e5e9;
  border-radius: 10px;

  background: white;

  color: #536071;
  font-size: 0.78rem !important;
  font-weight: 500 !important;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-checkbox:hover {
  transform: translateY(-2px);

  border-color: rgba(212, 175, 55, 0.65);

  box-shadow: 0 8px 20px rgba(18, 60, 115, 0.06);
}

.contact-checkbox input {
  width: auto;
  accent-color: #d4af37;
}

.form-helper {
  margin-top: 0.7rem;

  color: #8a919c;
  font-size: 0.72rem;
}

/* =========================
   SUBMIT BUTTON
========================= */

.form-submit {
  width: 100%;
  justify-content: center;

  margin-top: 0.5rem;
  padding: 1.1rem 1.5rem;

  border: none;
  border-radius: 10px;

  cursor: pointer;

  font-size: 0.88rem;
}

.form-submit:hover {
  transform: translateY(-2px);
}

.form-submit-note {
  margin-top: -0.4rem;

  text-align: center;

  color: #9399a2;
  font-size: 0.7rem;
  line-height: 1.6;
}

/* =========================
   FINAL CONTACT CTA
========================= */

.contact-page-cta {
  position: relative;
  overflow: hidden;

  padding: 7rem 0;

  background: #123c73;

  text-align: center;
  color: white;
}

.contact-page-cta::before,
.contact-page-cta::after {
  content: "";

  position: absolute;

  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;
}

.contact-page-cta::before {
  width: 330px;
  height: 330px;

  left: -150px;
  top: -170px;
}

.contact-page-cta::after {
  width: 220px;
  height: 220px;

  right: -80px;
  bottom: -120px;
}

.contact-page-cta .container {
  position: relative;
  z-index: 2;
}

.contact-page-cta .section-label {
  color: #d4af37;
  margin-bottom: 1rem;
}

.contact-page-cta h2 {
  margin-bottom: 1rem;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1;

  color: white;
}

.contact-page-cta p:last-child {
  color: rgba(255, 255, 255, 0.7);

  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-info {
    position: static;
  }

  .contact-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 2rem;
  }
}

@media (max-width: 700px) {
  .contact-page-hero {
    min-height: 430px;
  }

  .contact-page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .contact-section {
    padding: 5rem 0;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .quote-form-wrapper {
    padding: 2.2rem 1.3rem;
    border-radius: 20px;
  }

  .quote-form-wrapper::before {
    left: 1.3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .selected-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-page-cta {
    padding: 5rem 1rem;
  }
}
/* Never display dynamic form sections while hidden */
[hidden] {
  display: none !important;
}
/* =========================================================
   CUSTOM CLEAN'D DROPDOWNS
========================================================= */

.native-select-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  min-height: 54px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  padding: 1rem 1.1rem;

  border: 1px solid #dfe3e8;
  border-radius: 12px;

  background: #fbfbfa;

  color: #243247;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  text-align: left;

  cursor: pointer;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.custom-select-trigger:hover {
  border-color: rgba(212, 175, 55, 0.65);
}

.custom-select.open .custom-select-trigger {
  border-color: #d4af37;
  background: white;

  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.custom-select-value {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.custom-select-arrow {
  flex-shrink: 0;

  color: #d4af37;
  font-size: 1.2rem;
  line-height: 1;

  transition: transform 0.3s ease;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
}

/* DROPDOWN MENU */

.custom-select-menu {
  position: absolute;
  z-index: 100;

  top: calc(100% + 8px);
  left: 0;

  width: 100%;
  max-height: 280px;
  overflow-y: auto;

  padding: 0.45rem;

  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 14px;

  background: #ffffff;

  box-shadow:
    0 20px 45px rgba(18, 60, 115, 0.14),
    0 4px 15px rgba(0, 0, 0, 0.06);

  opacity: 0;
  visibility: hidden;

  transform: translateY(-8px);

  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.custom-select.open .custom-select-menu {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

/* OPTIONS */

.custom-select-option {
  width: 100%;

  display: flex;
  align-items: center;

  padding: 0.9rem 1rem;

  border: none;
  border-radius: 9px;

  background: transparent;

  color: #344054;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  text-align: left;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}

.custom-select-option:hover {
  padding-left: 1.25rem;

  background: rgba(212, 175, 55, 0.1);

  color: #123c73;
}

.custom-select-option.selected {
  background: rgba(212, 175, 55, 0.14);

  color: #123c73;
  font-weight: 700;
}

.custom-select-option.selected::before {
  content: "✦";

  margin-right: 0.55rem;

  color: #d4af37;
  font-size: 0.65rem;
}

/* SCROLLBAR */

.custom-select-menu::-webkit-scrollbar {
  width: 6px;
}

.custom-select-menu::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.45);
}

.custom-select-menu::-webkit-scrollbar-track {
  background: transparent;
}

/* IMPORTANT FOR DYNAMIC FORM AREAS */

[hidden] {
  display: none !important;
}
/* =========================================================
   MAINTENANCE PLANS HERO
========================================================= */

.plans-page-hero {
  position: relative;
  height: 430px;
  min-height: 0;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: white;
}

.plans-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.plans-hero-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;
}
.plans-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(7, 25, 48, 0.78) 0%,
    rgba(7, 25, 48, 0.55) 28%,
    rgba(7, 25, 48, 0.12) 48%,
    transparent 62%
  );
}

.plans-hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
}

.plans-hero-content .section-label {
  margin-bottom: 1rem;

  color: #d4af37;
}

.plans-hero-content h1 {
  max-width: 760px;

  margin-bottom: 1.2rem;

  font-family: "Poppins", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;

  color: white;
}

.plans-hero-content > p:last-child {
  max-width: 600px;

  margin: 0;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1rem;
  line-height: 1.75;
}

/* PLAN NUMBER */

.plan-number {
  display: inline-block;

  margin-bottom: 1rem;

  color: #d4af37;

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* PLAN DESCRIPTION */

.plan-description {
  margin-bottom: 1.6rem;

  color: #707987;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .plans-page-hero {
    height: 380px;
  }

  .plans-hero-content h1 {
    font-size: 3rem;
  }
}
/* =========================================================
   MAINTENANCE PLAN ADD-ONS
========================================================= */

.maintenance-addons {
  margin-top: 7rem;
  padding: 4.5rem;

  border-radius: 28px;

  background: #123c73;

  position: relative;
  overflow: hidden;
}

.maintenance-addons::before {
  content: "";

  position: absolute;
  width: 300px;
  height: 300px;

  top: -170px;
  right: -100px;

  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
}

.maintenance-addons-heading {
  position: relative;
  z-index: 1;

  max-width: 650px;

  margin-bottom: 3rem;
}

.maintenance-addons-heading .section-label {
  color: #d4af37;
}

.maintenance-addons-heading h2 {
  margin: 0.7rem 0 1rem;

  color: #ffffff;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.maintenance-addons-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);

  line-height: 1.7;
}

/* GRID */

.maintenance-addons-grid {
  position: relative;
  z-index: 1;

  display: grid;

  grid-template-columns: repeat(5, minmax(0, 1fr));

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* INDIVIDUAL ADD-ON */

.maintenance-addon-card {
  min-height: 160px;

  padding: 1.7rem 1.3rem;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-right: 1px solid rgba(255, 255, 255, 0.12);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.maintenance-addon-card:last-child {
  border-right: none;
}

.maintenance-addon-card:hover {
  background: rgba(212, 175, 55, 0.08);

  transform: translateY(-5px);
}

.addon-number {
  color: #d4af37;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.maintenance-addon-card h3 {
  margin: 0 0 0.4rem;

  color: #ffffff;

  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.maintenance-addon-card p {
  margin: 0;

  color: #d4af37;

  font-size: 0.82rem;
  font-weight: 600;
}

/* NOTE */

.maintenance-addons-note {
  position: relative;
  z-index: 1;

  max-width: 700px;

  margin: 2rem 0 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 0.82rem;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .maintenance-addons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .maintenance-addon-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 650px) {
  .maintenance-addons {
    margin-top: 5rem;

    padding: 3rem 1.4rem;

    border-radius: 22px;
  }

  .maintenance-addons-grid {
    grid-template-columns: 1fr;
  }

  .maintenance-addon-card {
    min-height: auto;

    padding: 1.4rem 0.7rem;

    flex-direction: row;
    align-items: center;

    border-right: none;
  }
}
/* Maintenance add-on prices */

.contact-checkbox span {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-checkbox span small {
  color: #d4af37;
  font-size: 0.72rem;
  font-weight: 600;
}
/* Preferred date field */

input[type="date"] {
  width: 100%;
  min-height: 54px;
  padding: 1rem 1.1rem;
  border: 1px solid #dfe3e8;
  border-radius: 12px;
  background: #fbfbfa;
  color: #243247;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

input[type="date"]:hover {
  border-color: rgba(212, 175, 55, 0.65);
}

input[type="date"]:focus {
  outline: none;
  border-color: #d4af37;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.75;
  padding: 0.35rem;
}
.custom-date-picker {
  position: relative;
  width: 100%;
}

.custom-date-trigger {
  width: 100%;
  min-height: 54px;
  padding: 1rem 1.1rem;

  display: flex;
  justify-content: space-between;
  align-items: center;

  border: 1px solid #dfe3e8;
  border-radius: 12px;

  background: #fbfbfa;
  color: #243247;

  font-family: "Inter", sans-serif;
  font-size: 0.92rem;

  cursor: pointer;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.custom-date-trigger:hover {
  border-color: rgba(212, 175, 55, 0.65);
}

.custom-date-picker.open .custom-date-trigger {
  border-color: #d4af37;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.custom-date-icon {
  color: #d4af37;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.custom-date-picker.open .custom-date-icon {
  transform: rotate(180deg);
}

.custom-calendar {
  position: absolute;
  z-index: 200;

  top: calc(100% + 10px);
  left: 0;

  width: 100%;
  max-width: 380px;

  padding: 1.2rem;

  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;

  background: #fff;

  box-shadow:
    0 22px 45px rgba(18, 60, 115, 0.16),
    0 5px 15px rgba(0, 0, 0, 0.06);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 1rem;
}

.calendar-header h3 {
  margin: 0;

  color: #123c73;

  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.calendar-header button {
  width: 34px;
  height: 34px;

  border: none;
  border-radius: 50%;

  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;

  font-size: 1.35rem;
  cursor: pointer;
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.calendar-weekdays {
  margin-bottom: 0.5rem;
}

.calendar-weekdays span {
  text-align: center;

  color: #98a2b3;

  font-size: 0.68rem;
  font-weight: 700;
}

.calendar-day {
  aspect-ratio: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 10px;

  background: transparent;
  color: #344054;

  font-family: "Inter", sans-serif;
  font-size: 0.82rem;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.calendar-day:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #123c73;
  transform: translateY(-2px);
}

.calendar-day.today {
  border: 1px solid rgba(212, 175, 55, 0.6);
}

.calendar-day.selected {
  background: #d4af37;
  color: #fff;
  font-weight: 700;
}

.calendar-day.disabled {
  opacity: 0.25;
  pointer-events: none;
}

.calendar-empty {
  aspect-ratio: 1;
}
/* =========================================================
   ABOUT PAGE
========================================================= */

/* =========================
   HERO
========================= */

.about-page-hero {
  position: relative;

  height: 520px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(7, 25, 48, 0.78) 0%,
      rgba(7, 25, 48, 0.55) 30%,
      rgba(7, 25, 48, 0.15) 52%,
      transparent 68%
    ),
    url("../Clean'D_images/team sitting.jpg") 60% 40% / cover no-repeat;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-page-hero .section-label {
  margin-bottom: 1.2rem;

  color: #d4af37;
}

.about-page-hero h1 {
  max-width: 560px;

  margin: 0;

  color: #ffffff;

  font-family: "Poppins", sans-serif;
  font-size: clamp(3rem, 5.5vw, 5rem);

  line-height: 0.98;
  letter-spacing: -0.04em;
}

.about-page-hero h1 span {
  color: #d4af37;
}

.about-hero-intro {
  max-width: 480px;

  margin: 2rem 0 0;

  color: rgba(255, 255, 255, 0.8);

  font-size: 1.05rem;
  line-height: 1.8;
}

/* =========================
   STORY
========================= */

.about-story-section {
  padding: 9rem 5rem;

  background: #f8f5ef;
}

.about-story-grid {
  display: grid;

  grid-template-columns: 0.9fr 1.1fr;

  align-items: center;

  gap: 7rem;
}

/* FIRST ABOUT IMAGE */

.about-story-image {
  position: relative;

  width: 100%;
  max-width: 520px;
  height: 620px;

  margin: 0 auto;

  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.75);
  border-radius: 24px;

  background: #e9eef5;

  box-shadow: 0 24px 55px rgba(18, 60, 115, 0.12);
}
.about-story-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-story-image:hover img {
  transform: scale(1.04);
}
/* STORY TEXT */

.about-story-text {
  max-width: 610px;
}

.about-story-text .section-label {
  color: #d4af37;
}

.about-story-text h2 {
  margin: 0.8rem 0 2rem;

  color: #123c73;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2.3rem, 3.5vw, 3.4rem);

  line-height: 1.08;
  letter-spacing: -0.035em;
}

.about-story-text p {
  margin: 0 0 1.3rem;

  color: #64748b;

  line-height: 1.85;
}

.about-story-text .about-story-lead {
  color: #344054;

  font-size: 1.08rem;
  font-weight: 500;
}

.about-text-link {
  display: inline-flex;

  align-items: center;

  gap: 0.8rem;

  margin-top: 1rem;

  padding-bottom: 0.4rem;

  border-bottom: 1px solid rgba(212, 175, 55, 0.7);

  color: #123c73;

  font-size: 0.84rem;
  font-weight: 700;

  text-decoration: none;
}

.about-text-link span {
  color: #d4af37;

  font-size: 1.1rem;

  transition: transform 0.3s ease;
}

.about-text-link:hover span {
  transform: translateX(6px);
}

/* =========================
   WHY CLEAN'D / DIFFERENCE
========================= */

.about-difference-section {
  padding: 8rem 5rem;

  background: #ffffff;
}

.about-difference-heading {
  max-width: 720px;

  margin-bottom: 4.5rem;
}

.about-difference-heading .section-label {
  margin-bottom: 1rem;

  color: #d4af37;
}

.about-difference-heading h2 {
  margin: 0 0 1.2rem;

  color: #123c73;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);

  line-height: 1.1;
}

.about-difference-heading > p:last-child {
  max-width: 620px;

  margin: 0;

  color: #64748b;

  line-height: 1.8;
}

.about-difference-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid #e7e2d8;
}

.about-difference-item {
  padding: 2.7rem 2.5rem 0;

  border-right: 1px solid #e7e2d8;
}

.about-difference-item:first-child {
  padding-left: 0;
}

.about-difference-item:last-child {
  border-right: none;
}

.about-difference-item > span {
  display: block;

  margin-bottom: 1.6rem;

  color: #d4af37;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.15em;
}

.about-difference-item h3 {
  margin: 0 0 0.9rem;

  color: #123c73;

  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
}

.about-difference-item p {
  margin: 0;

  color: #64748b;

  font-size: 0.9rem;
  line-height: 1.75;
}

/* =========================
   VALUES
========================= */

.about-values-section {
  padding: 8rem 5rem;

  background: #f8f5ef;
}

.about-values-heading {
  max-width: 700px;

  margin-bottom: 4rem;
}

.about-values-heading .section-label {
  margin-bottom: 1rem;

  color: #d4af37;
}

.about-values-heading h2 {
  margin: 0;

  color: #123c73;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.6rem);

  line-height: 1.1;
}

.about-values-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.5rem;
}

.about-value-card {
  padding: 2rem;

  border: 1px solid rgba(212, 175, 55, 0.35);
  border-top: 3px solid #d4af37;
  border-radius: 16px;

  background: #ffffff;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.about-value-card:hover {
  transform: translateY(-7px);

  box-shadow: 0 16px 35px rgba(18, 60, 115, 0.1);
}

.about-value-card > span {
  display: block;

  margin-bottom: 1.5rem;

  color: #d4af37;

  font-size: 0.8rem;
  font-weight: 700;

  letter-spacing: 0.1em;
}

.about-value-card h3 {
  margin: 0 0 0.75rem;

  color: #123c73;

  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
}

.about-value-card p {
  margin: 0;

  color: #64748b;

  font-size: 0.9rem;
  line-height: 1.7;
}
.about-values-heading::before,
.about-difference-heading::before {
  content: "";
  display: block;

  width: 55px;
  height: 3px;

  margin-bottom: 1.5rem;

  background: #d4af37;
  border-radius: 20px;
}
/* =========================
   CLOSING IMAGE SECTION
========================= */

.about-closing-section {
  padding: 8rem 5rem;

  background: #ffffff;
}

.about-closing-grid {
  display: grid;

  grid-template-columns: 1.05fr 0.95fr;

  align-items: center;

  gap: 6rem;
}

.about-closing-image {
  height: 560px;

  overflow: hidden;

  border-radius: 22px;
}

.about-closing-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-closing-image:hover img {
  transform: scale(1.04);
}

.about-closing-content {
  max-width: 560px;
}

.about-closing-content .section-label {
  margin-bottom: 1rem;

  color: #d4af37;
}

.about-closing-content h2 {
  margin: 0 0 1.6rem;

  color: #123c73;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.7rem);

  line-height: 1.1;
}

.about-closing-content > p {
  margin: 0 0 1.2rem;

  color: #64748b;

  line-height: 1.8;
}

.about-closing-content .text-link {
  display: inline-flex;

  align-items: center;

  gap: 0.7rem;

  margin-top: 1rem;

  color: #123c73;

  font-weight: 700;

  text-decoration: none;
}

.about-closing-content .text-link span {
  color: #d4af37;

  transition: transform 0.3s ease;
}

.about-closing-content .text-link:hover span {
  transform: translateX(5px);
}

/* =========================
   CTA
========================= */

.about-page-cta {
  padding: 8rem 5rem;

  background: #123c73;

  color: #ffffff;

  text-align: center;
}

.about-page-cta .container {
  max-width: 800px;
}

.about-page-cta .section-label {
  margin-bottom: 1rem;

  color: #d4af37;
}

.about-page-cta h2 {
  margin: 0 0 1.3rem;

  color: #ffffff;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);

  line-height: 1.08;
}

.about-page-cta p:not(.section-label) {
  max-width: 600px;

  margin: 0 auto 2.2rem;

  color: rgba(255, 255, 255, 0.75);

  line-height: 1.8;
}

/* =========================================================
   ABOUT PAGE RESPONSIVE
========================================================= */

@media (max-width: 950px) {
  .about-story-grid,
  .about-closing-grid {
    grid-template-columns: 1fr;

    gap: 4rem;
  }

  .about-story-image {
    width: 480px;
    max-width: 100%;
    height: 600px;
  }

  .about-story-text {
    max-width: 700px;
  }

  .about-difference-grid {
    grid-template-columns: 1fr;
  }

  .about-difference-item {
    padding: 2rem 0;

    border-right: none;
    border-bottom: 1px solid #e7e2d8;
  }

  .about-difference-item:last-child {
    border-bottom: none;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .about-page-hero {
    min-height: 560px;
  }

  .about-hero-content {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }

  .about-page-hero h1 {
    font-size: 3.2rem;
  }

  .about-story-section,
  .about-difference-section,
  .about-values-section,
  .about-closing-section,
  .about-page-cta {
    padding: 5.5rem 1.5rem;
  }

  .about-story-image {
    width: min(100%, 420px);
    height: 540px;
  }

  .about-closing-image {
    height: 430px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-page-hero h1 {
    font-size: 2.8rem;
  }

  .about-story-image {
    width: 100%;
    height: 480px;
  }

  .about-values-grid {
    gap: 1rem;
  }

  .about-closing-image {
    height: 360px;
  }
}
/* =========================================================
   HOME PAGE — NEW HERO
========================================================= */
.home-hero {
  position: relative;
  height: 520px;
  min-height: 0;

  display: flex;
  align-items: center;

  overflow: hidden;
  background-color: #123c73;
}

.home-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;

  background:
    linear-gradient(
      90deg,
      rgba(7, 25, 48, 0.78) 0%,
      rgba(7, 25, 48, 0.55) 28%,
      rgba(7, 25, 48, 0.12) 48%,
      transparent 62%
    ),
    url("../Clean'D_images/team standing hands folded.jpg") center 30% / cover
      no-repeat;

  animation: homeHeroImageIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home-hero-overlay {
  display: none;
}
.home-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;

  padding-top: 4rem;
  padding-bottom: 4rem;
}
.home-hero-text {
  width: min(520px, 100%);

  opacity: 0;

  animation: homeHeroTextIn 1.25s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.home-hero-label {
  margin-bottom: 1.3rem;

  color: #d4af37;

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}
.home-hero-text h1 {
  margin: 0 0 0.9rem;
  max-width: 650px;

  color: #ffffff;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.035em;
}
.home-hero-description {
  max-width: 590px;

  margin-bottom: 2rem;

  color: rgba(255, 255, 255, 0.84);

  font-size: 1.05rem;

  line-height: 1.8;
}

.home-hero-buttons {
  display: flex;

  align-items: center;

  gap: 1rem;

  flex-wrap: wrap;

  margin-bottom: 1.7rem;
}

.home-primary-button,
.home-secondary-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 52px;

  padding: 0.9rem 1.6rem;

  border-radius: 7px;

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 700;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.home-primary-button {
  background-color: #d4af37;

  color: #123c73;

  border: 1px solid #d4af37;
}

.home-primary-button:hover {
  transform: translateY(-3px);

  background-color: #e3c25a;

  border-color: #e3c25a;
}

.home-secondary-button {
  background: rgba(255, 255, 255, 0.07);

  color: #ffffff;

  border: 1px solid rgba(212, 175, 55, 0.8);

  backdrop-filter: blur(4px);
}

.home-secondary-button:hover {
  transform: translateY(-3px);

  background-color: #d4af37;

  color: #123c73;
}

.home-hero-note {
  margin: 0;

  color: rgba(255, 255, 255, 0.62);

  font-size: 0.86rem;

  letter-spacing: 0.02em;
}

@keyframes homeHeroTextIn {
  from {
    opacity: 0;

    transform: translateX(-110px);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}

@keyframes homeHeroImageIn {
  from {
    opacity: 0;

    transform: scale(1.12);
  }

  to {
    opacity: 1;

    transform: scale(1.04);
  }
}
/* =========================================================
   HOME PAGE — CLEAN'D STANDARD
========================================================= */

.home-standard {
  padding: 7.5rem 5rem;
  background: #fffdf8;
}

.home-standard-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7rem;
  align-items: start;
}

.home-standard-heading {
  position: sticky;
  top: 3rem;
}

.home-standard-heading .section-label {
  margin-bottom: 1.2rem;
}

.home-standard-heading h2 {
  max-width: 520px;

  margin: 0 0 1.5rem;

  color: #123c73;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2.7rem, 4.5vw, 4rem);

  line-height: 1.08;
  letter-spacing: -0.035em;
}

.home-standard-heading > p:not(.section-label) {
  max-width: 520px;

  margin-bottom: 2rem;

  color: #64748b;

  font-size: 1rem;
  line-height: 1.85;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;

  color: #123c73;

  text-decoration: none;

  font-weight: 700;
}

.home-text-link span {
  color: #d4af37;

  transition: transform 0.3s ease;
}

.home-text-link:hover span {
  transform: translateX(5px);
}

/* RIGHT SIDE */

.home-standard-points {
  border-top: 1px solid rgba(18, 60, 115, 0.15);
}

.home-standard-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.5rem;

  padding: 2.2rem 0;

  border-bottom: 1px solid rgba(18, 60, 115, 0.15);

  transition:
    padding-left 0.35s ease,
    border-color 0.35s ease;
}

.home-standard-item:hover {
  padding-left: 1rem;

  border-color: #d4af37;
}

.home-standard-item > span {
  padding-top: 0.25rem;

  color: #d4af37;

  font-size: 0.78rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.home-standard-item h3 {
  margin: 0 0 0.65rem;

  color: #123c73;

  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
}

.home-standard-item p {
  max-width: 520px;

  margin: 0;

  color: #64748b;

  font-size: 0.95rem;
  line-height: 1.75;
}
/* =========================================================
   HOME PAGE — SERVICES PREVIEW
========================================================= */

.home-services {
  padding: 8rem 5rem;
  background: #ffffff;
}

.home-services-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 7rem;
  align-items: center;
}

/* TEXT SIDE */

.home-services-content h2 {
  max-width: 600px;

  margin: 0 0 1.6rem;

  color: #123c73;

  font-family: "Poppins", sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);

  line-height: 1.06;
  letter-spacing: -0.04em;
}

.home-services-intro {
  max-width: 540px;

  margin: 0 0 2.5rem;

  color: #64748b;

  line-height: 1.85;
}

/* SERVICE LIST */

.home-service-list {
  margin-bottom: 2.6rem;

  border-top: 1px solid rgba(18, 60, 115, 0.16);
}

.home-service-list a {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 1rem;

  padding: 1.15rem 0;

  border-bottom: 1px solid rgba(18, 60, 115, 0.16);

  color: #123c73;

  text-decoration: none;

  transition:
    padding-left 0.3s ease,
    border-color 0.3s ease;
}

.home-service-list a:hover {
  padding-left: 0.6rem;

  border-color: #d4af37;
}

.home-service-list span {
  color: #d4af37;

  font-size: 0.72rem;
  font-weight: 700;

  letter-spacing: 0.12em;
}

.home-service-list p {
  margin: 0;

  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.home-service-list b {
  color: #d4af37;

  font-size: 1.1rem;
  font-weight: 400;

  transition: transform 0.3s ease;
}

.home-service-list a:hover b {
  transform: translateX(5px);
}

/* BUTTON */

.home-services-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;

  padding: 0.95rem 1.5rem;

  background: #123c73;

  color: #ffffff;

  border-radius: 7px;

  text-decoration: none;
  font-weight: 700;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.home-services-button span {
  color: #d4af37;

  transition: transform 0.3s ease;
}

.home-services-button:hover {
  transform: translateY(-3px);

  background: #d4af37;

  color: #123c73;
}

.home-services-button:hover span {
  color: #123c73;

  transform: translateX(4px);
}

/* IMAGE SIDE */

.home-services-visual {
  position: relative;

  height: 620px;

  overflow: hidden;

  border-radius: 22px;

  box-shadow: 0 25px 60px rgba(18, 60, 115, 0.13);
}

.home-services-visual::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(18, 60, 115, 0) 50%,
    rgba(18, 60, 115, 0.82) 100%
  );
}

.home-services-visual img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-services-visual:hover img {
  transform: scale(1.04);
}

.home-services-visual-label {
  position: absolute;

  left: 2.2rem;
  right: 2.2rem;
  bottom: 2.2rem;

  z-index: 2;
}

.home-services-visual-label span {
  display: block;

  margin-bottom: 0.55rem;

  color: #d4af37;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.17em;
}

.home-services-visual-label p {
  max-width: 430px;

  margin: 0;

  color: #ffffff;

  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;

  line-height: 1.4;
}
/* =========================================================
   HOME PAGE — MAINTENANCE PREVIEW
========================================================= */

.home-plans {
  padding: 8rem 5rem;
  background: #fffdf8;
}

.home-plans-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 7rem;
  align-items: center;
}

/* IMAGE */

.home-plans-visual {
  position: relative;

  height: 620px;

  overflow: hidden;

  border-radius: 22px;

  box-shadow: 0 25px 60px rgba(18, 60, 115, 0.13);
}

.home-plans-visual::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(18, 60, 115, 0) 45%,
    rgba(18, 60, 115, 0.82) 100%
  );
}

.home-plans-visual img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-plans-visual:hover img {
  transform: scale(1.04);
}

.home-plans-visual-label {
  position: absolute;

  left: 2.2rem;
  right: 2.2rem;
  bottom: 2.2rem;

  z-index: 2;
}

.home-plans-visual-label span {
  display: block;

  margin-bottom: 0.55rem;

  color: #d4af37;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.17em;
}

.home-plans-visual-label p {
  max-width: 430px;

  margin: 0;

  color: #ffffff;

  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;

  line-height: 1.4;
}

/* CONTENT */

.home-plans-content h2 {
  max-width: 600px;

  margin: 0 0 1.6rem;

  color: #123c73;

  font-family: "Poppins", sans-serif;

  font-size: clamp(2.8rem, 4.5vw, 4.2rem);

  line-height: 1.06;

  letter-spacing: -0.04em;
}

.home-plans-intro {
  max-width: 540px;

  margin: 0 0 2.5rem;

  color: #64748b;

  font-size: 1rem;

  line-height: 1.85;
}

/* PLAN NAMES */

.home-plan-names {
  display: grid;
  grid-template-columns: 1fr 1fr;

  margin-bottom: 2.8rem;

  border-top: 1px solid rgba(18, 60, 115, 0.16);
}

.home-plan-names span {
  padding: 1.15rem 0;

  color: #123c73;

  font-weight: 600;

  border-bottom: 1px solid rgba(18, 60, 115, 0.16);
}

.home-plan-names span:nth-child(odd) {
  margin-right: 1.5rem;
}

.home-plan-names span::before {
  content: "✦";

  margin-right: 0.7rem;

  color: #d4af37;
}

/* BUTTON */

.home-plans-button {
  display: inline-flex;

  align-items: center;

  gap: 0.8rem;

  padding: 0.95rem 1.5rem;

  background: #123c73;

  color: #ffffff;

  border: 1px solid #123c73;
  border-radius: 7px;

  text-decoration: none;

  font-weight: 700;

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.home-plans-button span {
  color: #d4af37;

  transition: transform 0.3s ease;
}

.home-plans-button:hover {
  transform: translateY(-3px);

  background: #d4af37;

  color: #123c73;

  border-color: #d4af37;
}

.home-plans-button:hover span {
  color: #123c73;

  transform: translateX(4px);
}
/* =========================================================
   CLEAN'D — REFINED MENU
   CSS ONLY — APPLIES TO EVERY PAGE
========================================================= */

.side-menu {
  width: min(430px, 88vw);
  height: 100vh;

  padding: 2.2rem 2.8rem 2.6rem;

  background: #123c73;

  display: flex;
  flex-direction: column;

  overflow-y: auto;

  transform: translateX(100%);
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-menu.active {
  transform: translateX(0);
}

/* CLOSE BUTTON */

.close-menu {
  width: 44px;
  height: 44px;

  align-self: flex-end;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;

  color: #ffffff;

  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.close-menu:hover {
  color: #d4af37;
  border-color: #d4af37;

  transform: rotate(90deg);
}

/* SMALL BRAND LABEL */

.menu-label {
  margin: 1.5rem 0 1.4rem;

  color: #d4af37;

  font-size: 0.7rem;
  font-weight: 700;

  letter-spacing: 0.22em;
}

/* NAVIGATION */

.side-menu ul {
  display: flex;
  flex-direction: column;

  gap: 0;

  margin: 0;
  padding: 0;

  list-style: none;

  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.side-menu ul li {
  margin: 0;
}

.side-menu ul li a {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 57px;

  padding: 0.85rem 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.11);

  color: rgba(255, 255, 255, 0.92);

  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;

  text-decoration: none;

  transition:
    color 0.3s ease,
    padding-left 0.35s ease,
    border-color 0.3s ease;
}

/* tiny gold line */

.side-menu ul li a::before {
  content: "";

  width: 0;
  height: 1px;

  margin-right: 0;

  background: #d4af37;

  transition:
    width 0.35s ease,
    margin-right 0.35s ease;
}

.side-menu ul li a:hover {
  padding-left: 0.25rem;

  color: #d4af37;

  border-color: rgba(212, 175, 55, 0.4);
}

.side-menu ul li a:hover::before {
  width: 20px;
  margin-right: 0.8rem;
}

/* CTA */

.side-menu .menu-cta {
  min-height: 52px;

  margin-top: auto;
  padding: 0.95rem 1.25rem;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #d4af37;

  border-radius: 7px;

  color: #123c73;

  text-align: center;
  text-decoration: none;

  font-size: 0.9rem;
  font-weight: 700;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.side-menu .menu-cta:hover {
  background: #ffffff;

  color: #123c73;

  transform: translateY(-2px);
}

/* BACKDROP */

.menu-overlay {
  background: rgba(18, 60, 115, 0.28);

  backdrop-filter: blur(3px);
}
/* =========================================================
   CLEAN'D — MOBILE
   SHARED HEADER + HOME PAGE
========================================================= */

@media (max-width: 768px) {
  /* =======================================================
     GLOBAL
  ======================================================= */

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
  }

  /* =======================================================
     HEADER
  ======================================================= */

  nav {
    padding: 1rem 1.25rem;
  }

  nav h1,
  nav h1 a {
    font-size: 1.55rem;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  /* Hide header CTA on phones.
     The hamburger is enough here. */

  .nav-actions > .cta-button {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .menu-button span {
    width: 25px;
  }

  /* =======================================================
     SIDE MENU
  ======================================================= */

  .side-menu {
    width: 88vw;
    max-width: 360px;

    padding: 1.5rem 1.5rem 1.8rem;
  }

  .close-menu {
    font-size: 2rem;
  }

  .menu-label {
    margin-top: 1rem;
    margin-bottom: 1.3rem;
  }

  .side-menu ul {
    gap: 0;
  }

  .side-menu ul li a {
    display: block;

    padding: 0.8rem 0;

    font-size: 1.05rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .side-menu .menu-cta {
    margin-top: auto;

    padding: 0.9rem 1rem;
  }

  /* =======================================================
     REVEAL ANIMATIONS
     Keep movement without throwing elements off-screen
  ======================================================= */

  .reveal-left {
    transform: translateX(-45px);
  }

  .reveal-right {
    transform: translateX(45px);
  }

  .reveal-up {
    transform: translateY(45px);
  }

  .reveal.visible {
    transform: translate(0);
  }

  /* =======================================================
     HOME HERO
  ======================================================= */

  .home-hero {
    height: auto;
    min-height: 350px;

    align-items: center;
  }

  .home-hero-image {
    background-position: center;
  }

  .home-hero-content {
    padding: 1.6rem 1.25rem;
  }

  .home-hero-text {
    width: 100%;
    max-width: 100%;
  }

  .home-hero-label {
    margin-bottom: 0.55rem;

    font-size: 0.68rem;
    letter-spacing: 0.15em;
  }

  .home-hero-text h1 {
    max-width: 330px;

    margin-bottom: 0.55rem;

    font-size: clamp(1.9rem, 7.5vw, 2.3rem);
    line-height: 1;
  }

  .home-hero-description {
    max-width: 330px;

    font-size: 0.8rem;
    line-height: 1.5;
  }

  .home-hero-buttons {
    gap: 0.5rem;

    margin-top: 0.9rem;
    margin-bottom: 0;
  }

  .home-primary-button,
  .home-secondary-button {
    width: 100%;
    min-height: 44px;
    padding: 0.65rem 1.2rem;
    font-size: 0.82rem;
  }

  .home-hero-note {
    margin-top: 0.65rem;

    font-size: 0.72rem;
  }

  /* =======================================================
     CLEAN'D STANDARD
  ======================================================= */

  .home-standard {
    padding: 4.8rem 1.25rem;
  }

  .home-standard-grid {
    grid-template-columns: 1fr;

    gap: 3.2rem;
  }

  .home-standard-heading {
    position: static;
  }

  .home-standard-heading h2 {
    max-width: 100%;

    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .home-standard-heading > p:not(.section-label) {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .home-standard-item {
    grid-template-columns: 42px 1fr;

    gap: 0.8rem;

    padding: 1.6rem 0;
  }

  .home-standard-item:hover {
    padding-left: 0;
  }

  .home-standard-item h3 {
    font-size: 1.15rem;
  }

  .home-standard-item p {
    font-size: 0.9rem;
  }

  /* =======================================================
     TICKER
  ======================================================= */

  .service-ticker {
    padding: 0.85rem 0;
  }

  .ticker-track {
    gap: 1.3rem;
  }

  .ticker-track span {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
  }

  /* =======================================================
     HOME SERVICES
  ======================================================= */

  .home-services {
    padding: 4.8rem 1.25rem;
  }

  .home-services-grid {
    grid-template-columns: 1fr;

    gap: 3.5rem;
  }

  .home-services-content h2 {
    max-width: 100%;

    font-size: clamp(2.3rem, 10vw, 3rem);

    line-height: 1.08;
  }

  .home-services-intro {
    margin-bottom: 2rem;

    font-size: 0.94rem;
    line-height: 1.75;
  }

  .home-service-list a {
    grid-template-columns: 35px 1fr auto;

    gap: 0.7rem;

    padding: 1rem 0;
  }

  .home-service-list p {
    font-size: 0.92rem;
  }

  .home-services-button {
    width: 100%;

    justify-content: center;
  }

  .home-services-visual {
    height: 430px;

    border-radius: 17px;
  }

  .home-services-visual-label {
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
  }

  .home-services-visual-label p {
    font-size: 1.1rem;
  }

  /* =======================================================
     HOME MAINTENANCE PLANS
  ======================================================= */

  .home-plans {
    padding: 4.8rem 1.25rem;
  }

  .home-plans-grid {
    grid-template-columns: 1fr;

    gap: 3.5rem;
  }

  .home-plans-visual {
    height: 430px;

    border-radius: 17px;
  }

  .home-plans-visual-label {
    left: 1.4rem;
    right: 1.4rem;
    bottom: 1.4rem;
  }

  .home-plans-visual-label p {
    font-size: 1.1rem;
  }

  .home-plans-content h2 {
    max-width: 100%;

    font-size: clamp(2.3rem, 10vw, 3rem);

    line-height: 1.08;
  }

  .home-plans-intro {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .home-plan-names {
    grid-template-columns: 1fr;
  }

  .home-plan-names span:nth-child(odd) {
    margin-right: 0;
  }

  .home-plans-button {
    width: 100%;

    justify-content: center;
  }

  /* =======================================================
     FOOTER
  ======================================================= */

  footer {
    padding: 2.5rem 1.25rem;
  }
  /* =======================================================
   MAINTENANCE PLANS PAGE
======================================================= */

  .plans-page-hero {
    height: auto;
    min-height: 430px;

    padding: 4.5rem 1.25rem;
  }

  .plans-hero-content {
    width: 100%;
  }

  .plans-hero-content h1 {
    max-width: 340px;

    font-size: clamp(2.6rem, 12vw, 3.3rem);
    line-height: 1;
  }

  .plans-hero-content > p:last-child {
    max-width: 100%;

    font-size: 0.92rem;
    line-height: 1.7;
  }

  /* MAIN PLANS AREA */

  .plans-section {
    width: 100%;

    padding: 4.8rem 1.25rem;
  }

  .plans-section .container {
    width: 100%;
    max-width: 100%;

    margin: 0;
    padding: 0;
  }

  .plans-heading {
    width: 100%;
    max-width: 100%;

    margin-bottom: 3rem;
  }

  .plans-heading h2 {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }

  /* PLAN CARDS */

  .plans-grid {
    width: 100%;

    grid-template-columns: 1fr;

    gap: 1.5rem;
  }

  .plan-card {
    width: 100%;

    padding: 2rem 1.5rem;

    border-radius: 18px;
  }

  .plan-card h3 {
    font-size: 2rem;
    line-height: 1.15;

    margin-bottom: 1.3rem;
  }

  .plan-description {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .plan-card li {
    padding-left: 1.3rem;

    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* =======================================================
   MAINTENANCE ADD-ONS
======================================================= */

  .maintenance-addons {
    width: 100%;

    margin-top: 4rem;

    padding: 2.5rem 1.4rem;

    border-radius: 20px;
  }

  .maintenance-addons-heading {
    max-width: 100%;

    margin-bottom: 2rem;
  }

  .maintenance-addons-heading h2 {
    max-width: 300px;

    font-size: clamp(2rem, 10vw, 2.6rem);
    line-height: 1.08;
  }

  .maintenance-addons-heading > p:last-child {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .maintenance-addons-grid {
    width: 100%;

    grid-template-columns: 1fr;
  }

  .maintenance-addon-card {
    width: 100%;
    min-height: auto;

    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;

    gap: 0.8rem;

    padding: 1.3rem 0;

    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .maintenance-addon-card:last-child {
    border-bottom: none;
  }

  .maintenance-addon-card h3 {
    font-size: 0.95rem;
  }

  .maintenance-addon-card p {
    font-size: 0.78rem;
  }

  .maintenance-addons-note {
    margin-top: 1.5rem;

    font-size: 0.76rem;
  }
  /* =======================================================
   ABOUT PAGE — MOBILE
======================================================= */

  .about-page-hero {
    min-height: 430px;

    padding: 0 1.25rem;

    /* Remove the navy overlay, keep only the image */
    background: url("../Clean\'D_images/team sitting.jpg") center / cover
      no-repeat;
  }

  .about-hero-content {
    width: 100%;

    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  .about-page-hero h1 {
    max-width: 350px;

    font-size: clamp(2.5rem, 10.5vw, 3rem);
    line-height: 1;
  }

  .about-hero-intro {
    max-width: 340px;

    margin-top: 1.3rem;

    color: #ffffff;

    font-size: 0.9rem;
    line-height: 1.65;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  }

  .about-page-hero .section-label {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  }

  .about-page-hero h1 {
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
  }

  /* STORY */

  .about-story-section {
    padding: 4.8rem 1.25rem;
  }

  .about-story-grid {
    grid-template-columns: 1fr;

    gap: 3rem;
  }

  .about-story-image {
    width: 100%;
    max-width: 100%;

    height: 410px;

    border-radius: 18px;
  }

  .about-story-text {
    max-width: 100%;
  }

  .about-story-text h2 {
    font-size: clamp(2.25rem, 10vw, 2.9rem);
    line-height: 1.08;
  }

  .about-story-text p {
    font-size: 0.92rem;
    line-height: 1.75;
  }
  /* ABOUT HERO — MOBILE REFINEMENT */

  .about-page-hero {
    min-height: 520px;

    padding: 0 1.25rem;

    background:
      linear-gradient(
        90deg,
        rgba(18, 60, 115, 0.94) 0%,
        rgba(18, 60, 115, 0.78) 52%,
        rgba(18, 60, 115, 0.28) 100%
      ),
      url("../Clean\'D_images/team sitting.jpg") 64% center / cover no-repeat;
  }

  .about-hero-content {
    padding-top: 4.8rem;
    padding-bottom: 4rem;
  }

  .about-page-hero h1 {
    max-width: 330px;

    font-size: clamp(2.55rem, 10.5vw, 3rem);
    line-height: 1.02;
  }

  .about-hero-intro {
    max-width: 330px;

    margin-top: 1.3rem;

    font-size: 0.9rem;
    line-height: 1.65;
  }
  /* =======================================================
   GALLERY PAGE — MOBILE REFINEMENT
======================================================= */

  /* HERO */

  .gallery-page-hero {
    min-height: 420px;
    height: 420px;
  }

  .gallery-hero-content {
    width: 100%;

    padding: 3.5rem 1.25rem 2.8rem;
  }

  .gallery-page-hero h1 {
    max-width: 330px;

    font-size: 2.65rem;
    line-height: 1.02;
  }

  .gallery-page-hero p:last-child {
    max-width: 320px;

    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* INTRO / PORTFOLIO SECTION */

  .gallery-section {
    padding: 4.5rem 0;
  }

  .gallery-heading {
    width: 100%;

    padding-left: 1.25rem;
    padding-right: 1.25rem;

    grid-template-columns: 1fr;

    gap: 1.2rem;
  }

  .gallery-heading h2 {
    max-width: 330px;

    font-size: 2.35rem;
    line-height: 1.08;
  }

  .gallery-heading p {
    max-width: 340px;

    font-size: 0.92rem;
    line-height: 1.7;
  }

  /* SCROLL NOTE */

  .gallery-scroll-note {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* HORIZONTAL GALLERY */

  .gallery-track-wrapper {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .gallery-photo,
  .gallery-photo-large {
    width: 82vw;
    max-width: 330px;

    height: 410px;

    border-radius: 18px;
  }

  .gallery-photo-overlay {
    padding: 1.4rem;
  }

  .gallery-photo-overlay h3 {
    font-size: 1.15rem;
  }

  /* BIG STATEMENT SECTION */

  .gallery-statement {
    padding: 4.5rem 1.25rem;
  }

  .gallery-statement-inner {
    width: 100%;
    max-width: 100%;
  }

  .gallery-statement h2 {
    max-width: 340px;

    font-size: 2.35rem;
    line-height: 1.08;

    letter-spacing: -0.025em;
  }

  .gallery-statement p:last-child {
    max-width: 340px;

    font-size: 0.92rem;
    line-height: 1.7;
  }

  /* FINAL CTA */

  .gallery-page-cta {
    padding: 4.5rem 1.25rem;
  }

  .gallery-page-cta h2 {
    font-size: 2.3rem;
    line-height: 1.1;
  }
  /* =======================================================
   GALLERY — MOBILE FIX
======================================================= */

  @media (max-width: 768px) {
    .gallery-page-hero {
      min-height: 440px;
    }

    .gallery-hero-content {
      padding: 4.5rem 1.25rem 3rem;
    }

    .gallery-hero-content h1 {
      font-size: 2.7rem;
      line-height: 1.04;
    }

    /* INTRO */

    .gallery-section > .container {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }

    .gallery-heading {
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin-bottom: 2rem;
    }

    .gallery-heading h2 {
      font-size: 2.2rem;
      line-height: 1.1;
    }

    .gallery-heading-text {
      font-size: 0.9rem;
      line-height: 1.7;
    }

    /* GALLERY CARDS */

    .gallery-track-wrapper {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }

    .gallery-photo,
    .gallery-photo-large {
      width: 78vw;
      max-width: 305px;
      height: 390px;
    }

    /* STATEMENT */

    .gallery-statement .container {
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }

    .gallery-statement h2 {
      font-size: 2.15rem;
      line-height: 1.1;
    }

    .gallery-statement p:last-child {
      font-size: 0.9rem;
      line-height: 1.7;
    }
  }
  /* =======================================================
   FAQ PAGE — MOBILE
======================================================= */

  .faq-page-hero {
    min-height: 430px;
    height: 430px;

    padding: 3.5rem 1.25rem;
  }

  .faq-page-hero .container {
    width: 100%;
    max-width: 100%;
  }

  .faq-page-hero h1 {
    max-width: 330px;

    font-size: 2.75rem;
    line-height: 1.03;

    margin-bottom: 1.2rem;
  }

  .faq-page-hero p:last-child {
    max-width: 320px;

    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* FAQ CONTENT */

  .faq-section {
    padding: 4.5rem 1.25rem;
  }

  .faq-section .container {
    width: 100%;
    max-width: 100%;
  }

  .faq-heading {
    max-width: 100%;
    margin-bottom: 2.5rem;
  }

  .faq-heading h2 {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  /* FAQ CARDS */

  .faq-list {
    width: 100%;
    max-width: 100%;

    margin: 0;
  }

  .faq-item {
    width: 100%;

    border-radius: 12px;
  }

  .faq-question {
    gap: 1rem;

    padding: 1.2rem 1.1rem;

    font-size: 0.95rem;
    line-height: 1.4;
  }

  .faq-icon {
    width: 28px;
    height: 28px;

    flex-shrink: 0;
  }

  .faq-answer p {
    padding: 0 1.1rem 1.3rem;

    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* FINAL FAQ CTA */

  .faq-page-cta {
    padding: 4.5rem 1.25rem;
  }

  .faq-page-cta h2 {
    font-size: 2.35rem;
    line-height: 1.08;
  }
  /* =======================================================
   CONTACT PAGE — MOBILE
======================================================= */

  /* HERO */

  .contact-page-hero {
    min-height: 410px;
    height: 410px;

    padding: 3.5rem 1.25rem;
  }

  .contact-page-hero .container {
    width: 100%;
    max-width: 100%;
  }

  .contact-page-hero h1 {
    max-width: 340px;

    font-size: 2.7rem;
    line-height: 1.02;

    margin-bottom: 1.2rem;
  }

  .contact-page-hero > .container > p:last-child {
    max-width: 330px;

    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* MAIN CONTACT SECTION */

  .contact-section {
    padding: 4.5rem 1.25rem;
  }

  .contact-section .container {
    width: 100%;
    max-width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  /* CONTACT INFORMATION */

  .contact-info {
    position: static;
    padding-top: 0;
  }

  .contact-info h2 {
    max-width: 340px;

    font-size: 2.15rem;
    line-height: 1.1;
  }

  .contact-intro,
  .contact-info > p:not(.section-label) {
    max-width: 340px;

    margin-bottom: 2rem;

    font-size: 0.9rem;
    line-height: 1.7;
  }

  .contact-details {
    gap: 1rem;
  }

  .contact-detail {
    gap: 0.85rem;

    padding: 0.8rem 0;
  }

  .contact-detail-icon {
    width: 40px;
    height: 40px;
  }

  .contact-detail h3 {
    font-size: 0.95rem;
  }

  .contact-detail p,
  .contact-detail a {
    font-size: 0.86rem;
  }

  /* FORM */

  .quote-form-wrapper {
    width: 100%;

    padding: 2rem 1.25rem;

    border-radius: 18px;
  }

  .quote-form-wrapper::before {
    left: 1.25rem;
  }

  .quote-form-heading {
    margin-bottom: 2rem;
  }

  .quote-form-heading h2 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group textarea,
  .custom-select-trigger,
  .custom-date-trigger {
    font-size: 16px;
  }

  /* FINAL CTA */

  .contact-page-cta {
    padding: 4.5rem 1.25rem;
  }

  .contact-page-cta h2 {
    font-size: 2.45rem;
    line-height: 1.05;
  }
  /* =======================================================
   CONTACT PAGE — MOBILE REFINED
======================================================= */

  @media (max-width: 768px) {
    /* HERO */

    .contact-page-hero {
      min-height: 360px;
      height: 360px;
      padding: 2.5rem 1.5rem;
    }

    .contact-page-hero .container {
      max-width: 330px;
      margin: 0 auto;
    }

    .contact-page-hero h1 {
      max-width: 300px;
      font-size: 2.25rem;
      line-height: 1.03;
      margin-bottom: 1rem;
    }

    .contact-page-hero > .container > p:last-child {
      max-width: 300px;
      font-size: 0.84rem;
      line-height: 1.6;
    }

    /* CONTACT SECTION */

    .contact-section {
      padding: 4rem 1.25rem;
    }

    .contact-section .container {
      width: 100%;
      max-width: 350px;
      margin: 0 auto;
    }

    .contact-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    /* CONTACT INFO */

    .contact-info {
      position: static;
      padding: 0;
    }

    .contact-info h2 {
      font-size: 1.8rem;
      line-height: 1.12;
    }

    .contact-intro,
    .contact-info > p:not(.section-label) {
      font-size: 0.84rem;
      line-height: 1.65;
      margin-bottom: 1.6rem;
    }

    .contact-details {
      gap: 0;
    }

    .contact-detail {
      gap: 0.75rem;
      padding: 1rem 0;
    }

    .contact-detail-icon {
      width: 34px;
      height: 34px;
    }

    .contact-detail-label {
      font-size: 0.6rem;
    }

    .contact-detail h3 {
      font-size: 0.88rem;
    }

    .contact-detail a,
    .contact-detail p {
      font-size: 0.78rem;
    }

    /* FORM PANEL */

    .quote-form-wrapper {
      width: 92%;
      max-width: 330px;

      margin: 0 auto;

      padding: 1.6rem 1.2rem;

      border-radius: 16px;
    }

    .quote-form-wrapper::before {
      left: 1.2rem;
      width: 65px;
    }

    .quote-form-heading {
      margin-bottom: 1.5rem;
    }

    .quote-form-heading .section-label {
      font-size: 0.62rem;
    }

    .quote-form-heading h2 {
      font-size: 1.65rem;
      line-height: 1.12;
    }

    .quote-form-heading > p:last-child {
      font-size: 0.82rem;
      line-height: 1.6;
    }

    /* FORM SPACING */

    #quote-form {
      gap: 1rem;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .form-group {
      gap: 0.4rem;
    }

    .form-group label {
      font-size: 0.76rem;
    }

    .optional-label {
      font-size: 0.62rem;
    }

    /* INPUTS */

    .form-group input,
    .form-group textarea {
      min-height: 46px;

      padding: 0.75rem 0.85rem;

      font-size: 0.88rem;

      border-radius: 9px;
    }

    .form-group textarea {
      min-height: 100px;
    }

    /* CUSTOM DROPDOWNS */

    .custom-select-trigger,
    .custom-date-trigger {
      min-height: 46px;

      padding: 0.75rem 0.85rem;

      font-size: 0.86rem;

      border-radius: 9px;
    }

    .custom-select-arrow,
    .custom-date-icon {
      font-size: 1rem;
    }

    /* CHECKBOXES */

    .contact-checkbox-grid {
      grid-template-columns: 1fr;
      gap: 0.6rem;
    }

    .contact-checkbox {
      font-size: 0.8rem;
    }

    /* SUBMIT */

    .form-submit {
      min-height: 46px;

      font-size: 0.84rem;
    }

    /* FINAL CTA */

    .contact-page-cta {
      padding: 3.8rem 1.5rem;
    }

    .contact-page-cta .container {
      max-width: 320px;
      margin: 0 auto;
    }

    .contact-page-cta h2 {
      font-size: 2rem;
      line-height: 1.08;
    }

    .contact-page-cta p:last-child {
      font-size: 0.7rem;
    }
  }
  /* =========================================================
   CLEAN'D — TRUE MOBILE SCALE
   GLOBAL FINAL OVERRIDES
========================================================= */

  @media (max-width: 768px) {
    /* -------------------------------------------------------
     GLOBAL PHONE WIDTH
  ------------------------------------------------------- */

    body {
      font-size: 13px;
    }

    .container {
      width: 100%;
      max-width: 300px;
      margin-left: auto;
      margin-right: auto;
    }

    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.16em;
    }

    /* -------------------------------------------------------
     GLOBAL TYPOGRAPHY
  ------------------------------------------------------- */

    p {
      font-size: 0.86rem;
      line-height: 1.65;
    }

    h2 {
      line-height: 1.1;
    }

    /* -------------------------------------------------------
     PAGE HEROES
  ------------------------------------------------------- */

    .services-page-hero,
    .plans-page-hero,
    .about-page-hero,
    .gallery-page-hero,
    .faq-page-hero,
    .contact-page-hero {
      min-height: 320px;
      height: 320px;
    }

    .plans-hero-content h1,
    .about-page-hero h1,
    .gallery-page-hero h1,
    .faq-page-hero h1,
    .contact-page-hero h1 {
      font-size: 2rem;
      line-height: 1.03;
    }

    .plans-hero-content > p:last-child,
    .about-hero-intro,
    .gallery-page-hero p:last-child,
    .faq-page-hero p:last-child,
    .contact-page-hero > .container > p:last-child {
      font-size: 0.82rem;
      line-height: 1.6;
    }

    /* -------------------------------------------------------
     NORMAL SECTIONS
  ------------------------------------------------------- */

    .plans-section,
    .about-story-section,
    .about-difference-section,
    .about-values-section,
    .about-closing-section,
    .gallery-section,
    .gallery-statement,
    .faq-section,
    .contact-section {
      padding-top: 2.5rem;
      padding-bottom: 2.5rem;
    }

    /* -------------------------------------------------------
     SECTION HEADINGS
  ------------------------------------------------------- */

    .plans-heading h2,
    .about-story-text h2,
    .about-difference-heading h2,
    .about-values-heading h2,
    .gallery-heading h2,
    .gallery-statement h2,
    .faq-heading h2,
    .contact-info h2 {
      font-size: 1.85rem;
      line-height: 1.12;
    }

    /* -------------------------------------------------------
     CARDS
  ------------------------------------------------------- */

    .plan-card,
    .about-value-card,
    .faq-item {
      border-radius: 14px;
    }

    .plan-card {
      padding: 1.5rem 1.25rem;
    }

    .plan-card h3 {
      font-size: 1.65rem;
    }

    .plan-card li {
      font-size: 0.82rem;
      line-height: 1.6;
    }

    /* -------------------------------------------------------
     ABOUT
  ------------------------------------------------------- */

    .about-story-image {
      width: 100%;
      height: 360px;
    }

    .about-value-card {
      padding: 1.4rem;
    }

    .about-value-card h3,
    .about-difference-item h3 {
      font-size: 1rem;
    }

    /* -------------------------------------------------------
     GALLERY
  ------------------------------------------------------- */

    .gallery-photo,
    .gallery-photo-large {
      width: 75vw;
      max-width: 290px;
      height: 360px;
    }

    .gallery-photo-overlay {
      padding: 1.25rem;
    }

    .gallery-photo-overlay h3 {
      font-size: 1rem;
    }

    /* -------------------------------------------------------
     FAQ
  ------------------------------------------------------- */

    .faq-question {
      padding: 1rem;
      font-size: 0.85rem;
    }

    .faq-answer p {
      padding: 0 1rem 1rem;
      font-size: 0.82rem;
    }

    .faq-icon {
      width: 26px;
      height: 26px;
      font-size: 1rem;
    }

    /* -------------------------------------------------------
     CONTACT FORM
  ------------------------------------------------------- */

    .contact-section .container {
      max-width: 340px;
    }

    .quote-form-wrapper {
      width: 90%;
      max-width: 310px;

      margin-left: auto;
      margin-right: auto;

      padding: 1.15rem 0.09rem;

      border-radius: 14px;
    }

    .quote-form-heading h2 {
      font-size: 1rem;
    }

    .quote-form-heading > p:last-child {
      font-size: 0.78rem;
    }

    #quote-form {
      gap: 0.55rem;
    }

    .form-group label {
      font-size: 0.68rem;
    }

    .form-group input,
    .form-group textarea,
    .custom-select-trigger,
    .custom-date-trigger {
      min-height: 42px;
      padding: 0.65rem 0.75rem;
      font-size: 0.82rem;
    }

    .form-group textarea {
      min-height: 70px;
    }

    /* -------------------------------------------------------
     BLUE CTA SECTIONS
  ------------------------------------------------------- */

    .plans-page-cta,
    .about-page-cta,
    .gallery-page-cta,
    .faq-page-cta,
    .contact-page-cta,
    .cta-section {
      padding: 3.5rem 1.25rem;
    }

    .plans-page-cta h2,
    .about-page-cta h2,
    .gallery-page-cta h2,
    .faq-page-cta h2,
    .contact-page-cta h2,
    .cta-section h2 {
      font-size: 1.95rem;
      line-height: 1.08;
    }
  }
}
@media (max-width: 768px) {
  header {
    position: relative;
    z-index: 1000;
    background: #ffffff;
  }

  body {
    padding-top: 0;
  }
  .menu-button {
    position: fixed;
    top: 16px;
    right: 18px;

    width: 42px;
    height: 42px;

    z-index: 5000;

    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .menu-button span {
    width: 25px;
    height: 2px;
    background: #123c73;
    border-radius: 10px;
  }
}
/* SERVICES — COMPACT MOBILE CARDS */
@media (max-width: 768px) {
  .services-page-grid {
    gap: 2rem;
  }

  .large-service-card,
  .large-service-card-content {
    min-height: 0;
  }

  .large-service-card-content {
    padding: 1.5rem;
  }

  .large-service-card-content .service-number {
    margin-bottom: 0.9rem;
  }

  .large-service-card-content h3 {
    font-size: 2rem;
    line-height: 1.05;
    margin-bottom: 0.8rem;
  }

  .large-service-card-content p {
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
}
@media (max-width: 768px) {
  .side-menu {
    z-index: 6000;
  }

  .close-menu {
    position: relative;
    z-index: 6001;
  }
}
/* HEADER BRAND LOGO */
nav h1 a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-logo {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .about-page-hero {
    height: 390px;
    min-height: 390px;

    background:
      linear-gradient(
        90deg,
        rgba(7, 25, 48, 0.72) 0%,
        rgba(7, 25, 48, 0.45) 45%,
        rgba(7, 25, 48, 0.08) 75%,
        transparent 100%
      ),
      url("../Clean'D_images/team sitting.jpg") 90% center / cover no-repeat;
  }

  .about-hero-content {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
/* =========================================================
   CLEAN'D — FINAL COMPACT MOBILE
========================================================= */

@media (max-width: 768px) {
  /* ---------- GLOBAL ---------- */

  body {
    font-size: 12.5px;
  }

  .container {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  p {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .section-label {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.55rem;
  }

  /* ---------- HEADER ---------- */

  nav {
    padding: 0.7rem 1rem;
  }

  nav h1,
  nav h1 a {
    font-size: 1.25rem;
  }

  .header-logo {
    width: 31px;
    height: 31px;
  }

  .menu-button {
    top: 8px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .menu-button span {
    width: 22px;
  }

  /* ---------- HOME HERO ---------- */

  .home-hero {
    height: auto;
    min-height: 330px;
    align-items: center;
  }

  .home-hero-content {
    padding: 1.5rem 1rem;
  }

  .home-hero-label {
    margin-bottom: 0.45rem;
    font-size: 0.58rem;
  }

  .home-hero-text h1 {
    max-width: 300px;
    margin-bottom: 0.55rem;
    font-size: 1.8rem;
    line-height: 1.02;
  }

  .home-hero-description {
    max-width: 290px;
    margin-bottom: 0;
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .home-hero-buttons {
    gap: 0.45rem;
    margin-top: 0.8rem;
    margin-bottom: 0;
  }

  .home-primary-button,
  .home-secondary-button {
    min-height: 42px;
    padding: 0.55rem 1rem;
    font-size: 0.76rem;
  }

  .home-hero-note {
    margin-top: 0.55rem;
    font-size: 0.66rem;
  }

  /* ---------- ALL PAGE HEROES ---------- */

  .services-page-hero,
  .plans-page-hero,
  .about-page-hero,
  .gallery-page-hero,
  .faq-page-hero,
  .contact-page-hero {
    height: 280px;
    min-height: 280px;
  }

  .services-hero-content,
  .plans-hero-content,
  .about-hero-content,
  .gallery-hero-content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .services-hero-content h1,
  .plans-hero-content h1,
  .about-page-hero h1,
  .gallery-page-hero h1,
  .faq-page-hero h1,
  .contact-page-hero h1 {
    font-size: 1.7rem;
    line-height: 1.03;
    margin-bottom: 0.65rem;
  }

  .services-page-hero p,
  .plans-page-hero p,
  .about-page-hero p,
  .gallery-page-hero p,
  .faq-page-hero p,
  .contact-page-hero p {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  /* ---------- GENERAL SECTIONS ---------- */

  .home-standard,
  .services-section,
  .services-page-section,
  .additional-services-page,
  .plans-section,
  .about-story-section,
  .about-difference-section,
  .about-values-section,
  .about-closing-section,
  .gallery-section,
  .gallery-statement,
  .faq-section,
  .contact-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  /* ---------- SECTION HEADINGS ---------- */

  .services-heading h2,
  .services-page-heading h2,
  .additional-services-content h2,
  .plans-heading h2,
  .about-story-text h2,
  .about-difference-heading h2,
  .about-values-heading h2,
  .gallery-heading h2,
  .gallery-statement h2,
  .faq-heading h2,
  .contact-info h2,
  .home-standard-heading h2 {
    font-size: 1.55rem;
    line-height: 1.08;
    margin-bottom: 0.7rem;
  }

  /* ---------- SERVICES ---------- */

  .services-page-grid {
    gap: 1.3rem;
  }

  .large-service-card {
    min-height: 0;
    border-radius: 16px;
  }

  .large-service-card-content {
    min-height: 0;
    padding: 1.2rem;
  }

  .large-service-card-content .service-number {
    margin-bottom: 0.6rem;
    font-size: 0.65rem;
  }

  .large-service-card-content h3 {
    font-size: 1.45rem;
    line-height: 1.05;
    margin-bottom: 0.55rem;
  }

  .large-service-card-content p {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }

  .service-price-list {
    font-size: 0.75rem;
  }

  .service-extras {
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .service-extras span {
    padding: 0.35rem 0.6rem;
    font-size: 0.65rem;
  }

  /* ---------- PLAN CARDS ---------- */

  .plans-grid {
    gap: 1rem;
  }

  .plan-card {
    padding: 1.15rem;
    border-radius: 12px;
  }

  .plan-name {
    margin-bottom: 0.55rem;
    font-size: 0.62rem;
  }

  .plan-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
  }

  .plan-card li {
    margin-bottom: 0.55rem;
    font-size: 0.75rem;
    line-height: 1.45;
  }

  /* ---------- ABOUT IMAGES + CARDS ---------- */

  .about-story-image {
    width: 100%;
    height: 290px;
  }

  .about-closing-image {
    height: 280px;
  }

  .about-values-grid {
    gap: 0.8rem;
  }

  .about-value-card {
    padding: 1.1rem;
  }

  .about-value-card h3,
  .about-difference-item h3 {
    font-size: 0.9rem;
  }

  /* ---------- GALLERY ---------- */

  .gallery-heading {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .gallery-track {
    gap: 0.8rem;
  }

  .gallery-photo,
  .gallery-photo-large {
    width: 68vw;
    max-width: 250px;
    height: 300px;
    border-radius: 16px;
  }

  .gallery-photo-overlay {
    padding: 1rem;
  }

  .gallery-photo-overlay h3 {
    font-size: 0.85rem;
  }

  /* ---------- FAQ ---------- */

  .faq-heading {
    margin-bottom: 1.5rem;
  }

  .faq-item {
    margin-bottom: 0.6rem;
    border-radius: 10px;
  }

  .faq-question {
    padding: 0.8rem;
    gap: 0.7rem;
    font-size: 0.76rem;
  }

  .faq-answer p {
    padding: 0 0.8rem 0.8rem;
    font-size: 0.73rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  /* ---------- CONTACT ---------- */

  .contact-grid {
    gap: 2rem;
  }

  .contact-detail {
    padding: 0.8rem 0;
    gap: 0.8rem;
  }

  .contact-detail-icon {
    width: 34px;
    height: 34px;
  }

  .contact-detail h3 {
    font-size: 0.85rem;
  }

  .contact-detail p,
  .contact-detail a {
    font-size: 0.75rem;
  }

  .quote-form-wrapper {
    width: 100%;
    max-width: 320px;
    padding: 1.2rem 1rem;
    border-radius: 12px;
  }

  .quote-form-heading {
    margin-bottom: 1.2rem;
  }

  .quote-form-heading h2 {
    font-size: 1.3rem;
  }

  #quote-form {
    gap: 0.7rem;
  }

  .form-group label {
    font-size: 0.68rem;
  }

  .form-group input,
  .form-group textarea,
  .custom-select-trigger,
  .custom-date-trigger {
    min-height: 42px;
    padding: 0.55rem 0.65rem;
    font-size: 0.76rem;
  }

  .form-group textarea {
    min-height: 75px;
  }

  /* ---------- FINAL CTA SECTIONS ---------- */

  .plans-page-cta,
  .about-page-cta,
  .gallery-page-cta,
  .faq-page-cta,
  .contact-page-cta,
  .services-page-cta,
  .cta-section {
    padding: 2.5rem 1rem;
  }

  .plans-page-cta h2,
  .about-page-cta h2,
  .gallery-page-cta h2,
  .faq-page-cta h2,
  .contact-page-cta h2,
  .services-page-cta h2,
  .cta-section h2 {
    font-size: 1.5rem;
    line-height: 1.08;
    margin-bottom: 0.7rem;
  }
}
