body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #F8F7F5;
  color: #3d3d3d;
}

.home-page {
  background-color: #F8F7F5;
}

.home-header {
  width: 100%;
}

.home-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background-color: #faf7f5;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.home-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #9db7d6;
}

.home-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.home-nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.home-nav-links a {
  text-decoration: none;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 500;
}

.home-nav-button a {
  background-color: #9db7d6;
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
}

.home-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 80px 88px 40px;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.home-hero-text {
  width: 48%;
}

.home-hero-text h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 500;
  margin: 0;
  max-width: 460px;
}

.home-hero-text h1 span {
  color: #9db7d6;
}

.home-hero-text p {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  color: #5f5a55;
  max-width: 520px;
}

.home-search-bar {
  margin-top: 32px;
  display: flex;
  align-items: center;
  width: 560px;
  padding: 8px;
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.home-search-bar input {
  border: none;
  outline: none;
  padding: 16px 18px;
  font-size: 16px;
  background: transparent;
  color: #4a4038;
  font-family: inherit;
  flex: 1;
  min-width: 0;
}

.home-search-bar input::placeholder {
  color: #a59e97;
}

.home-service-search-wrap {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

.home-service-search-wrap input {
  width: 100%;
  box-sizing: border-box;
}

.home-page #postcode-input {
  border-left: 1px solid #ece7e1;
}

.home-search-bar button {
  border: none;
  background-color: #9db7d6;
  color: white;
  padding: 16px 28px;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.home-service-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #e6dfd7;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  padding: 8px;
  display: none;
  z-index: 50;
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

.home-service-dropdown.show {
  display: block;
}

.home-service-dropdown .service-dropdown-item {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.35;
  color: #4a4038;
  cursor: pointer;
  transition: 0.2s ease;
}

.home-service-dropdown .service-dropdown-item:hover {
  background: #f3f7fc;
}

.home-service-dropdown .service-dropdown-empty {
  padding: 12px 16px;
  font-size: 14px;
  color: #8c857d;
}

.home-hero-image {
  width: 52%;
}

.home-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.home-services-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 80px 40px;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.home-service-card {
  width: 150px;
  padding: 12px;
  background-color: #ffffff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: 0.2s ease;
  cursor: pointer;
}

.home-service-card:hover {
  background-color: #f3f7fc;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.home-service-card p {
  margin: 12px 0 4px;
  font-size: 16px;
  font-weight: 500;
  color: #3d3d3d;
}

.home-featured-companies {
  padding: 40px 80px 60px;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.home-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.home-section-heading h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  color: #2f2f2f;
}

.home-section-heading a {
  text-decoration: none;
  color: #9db7d6;
  font-weight: 500;
}

.home-company-cards {
  display: flex;
  gap: 24px;
}

.home-company-card {
  width: calc((100% - 48px) / 3);
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
}

.home-company-card:hover {
  transform: translateY(-4px);
}

.home-company-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.home-company-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.home-featured-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: #f3f7fc;
  color: #7e9fc3;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.home-company-info h3 {
  margin: 0;
  font-size: 22px;
  color: #2f2f2f;
}

.home-company-location,
.home-company-services,
.home-company-rating {
  margin: 0;
  color: #5f5a55;
  font-size: 15px;
}

.home-view-profile {
  display: inline-block;
  align-self: flex-start;
  margin-top: 16px;
  text-decoration: none;
  color: white;
  background-color: #9db7d6;
  padding: 12px 20px;
  border-radius: 24px;
  font-weight: 500;
}

.home-how-it-works {
  display: flex;
  gap: 24px;
  padding: 20px 80px 60px;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.home-how-it-works-left,
.home-how-it-works-right {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.home-how-it-works-left {
  flex: 2;
}

.home-how-it-works-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-how-it-works h2 {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 600;
  color: #2f2f2f;
}

.home-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.home-step {
  flex: 1;
  text-align: center;
}

.home-step-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.home-step h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #2f2f2f;
}

.home-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #5f5a55;
}

.home-how-it-works-right p {
  font-size: 16px;
  line-height: 1.6;
  color: #5f5a55;
  margin: 0 0 24px;
}

.home-business-button {
  display: inline-block;
  width: fit-content;
  text-decoration: none;
  background-color: #9db7d6;
  color: white;
  padding: 14px 24px;
  border-radius: 28px;
  font-weight: 500;
}


@media (max-width: 1100px) {
  .home-nav,
  .home-hero,
  .home-services-row,
  .home-featured-companies,
  .home-how-it-works {
    padding-left: 32px;
    padding-right: 32px;
  }

  .home-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .home-hero-text,
  .home-hero-image {
    width: 100%;
  }

  .home-search-bar {
    width: 100%;
    max-width: 640px;
  }

  .home-services-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .home-service-card {
    width: calc(33.333% - 12px);
    box-sizing: border-box;
  }

  .home-company-cards {
    flex-wrap: wrap;
  }

  .home-company-card {
    width: calc(50% - 12px);
  }

  .home-how-it-works {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .home-nav,
  .home-hero,
  .home-services-row,
  .home-featured-companies,
  .home-how-it-works {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .home-nav-links {
    order: 3;
    width: 100%;
    gap: 18px;
    flex-wrap: wrap;
  }

  .home-hero {
    padding-top: 40px;
  }

  .home-hero-text h1 {
    font-size: 48px;
  }

  .home-search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 28px;
  }

  .home-page #postcode-input {
    border-left: none;
    border-top: 1px solid #ece7e1;
  }

  .home-search-bar button {
    margin-top: 8px;
  }

  .home-service-card,
  .home-company-card {
    width: 100%;
  }

  .home-steps,
  .home-footer-container {
    flex-direction: column;
  }
}

header {
  width: 100%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background-color: #f7f4ef;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  color: #9db7d6;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain; /* IMPORTANT */
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 500;
}

.nav-button a {
  background-color: #9db7d6;
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 88px 40px;
  gap: 50px;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-text {
  width: 48%;
}

.hero-text h1 {
  font-size: 64px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  line-height: 1.05;
  color: #4a4038;
  margin: 0;
}

.hero-text h1 span {
  color: #9db7d6;
}

.hero-text p {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  color: #5f5a55;
  max-width: 520px;
}

.search-bar {
  margin-top: 32px;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 40px;
  padding: 8px;
  width: 560px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.search-bar input {
  border: none;
  outline: none;
  padding: 16px 18px;
  font-size: 16px;
  background: transparent;
  flex: 1;
  color: #4a4038;
  min-width: 0;
  font-family: inherit;
}

.search-bar input::placeholder {
  color: #a59e97;
}

#postcode-input {
  border-left: 1px solid #ece7e1;
}

.search-bar button {
  border: none;
  background-color: #9db7d6;
  color: white;
  padding: 16px 28px;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.hero-image {
  width: 52%;
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.services-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 80px 40px;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.service-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 12px;
  width: 150px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: 0.2s ease;
  cursor: pointer;
}

.service-card:hover {
  background-color: #f3f7fc;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

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

.service-card p {
  margin: 12px 0 4px;
  font-size: 16px;
  font-weight: 500;
  color: #3d3d3d;
}

.featured-companies {
  padding: 40px 80px 60px;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0;
}

.section-heading a {
  text-decoration: none;
  color: #9db7d6;
  font-weight: 500;
}

.company-cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.company-card {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  width: calc((100% - 48px) / 3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
}

.company-card:hover {
  transform: translateY(-4px);
}

.company-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.company-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.company-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.featured-badge {
  display: inline-block;
  background-color: #f3f7fc;
  color: #7e9fc3;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.company-info h3 {
  font-size: 22px;
  margin: 0 0 8px;
  color: #2f2f2f;
}

.company-location,
.company-services,
.company-rating {
  margin: 0;
  color: #5f5a55;
  font-size: 15px;
}

.view-profile {
  display: inline-block;
  margin-top: auto;
  text-decoration: none;
  color: white;
  background-color: #9db7d6;
  padding: 12px 20px;
  border-radius: 24px;
  font-weight: 500;
}

/* HOMEPAGE CUSTOM SERVICE DROPDOWN */
.service-search-wrap {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

.service-search-wrap input {
  width: 100%;
  box-sizing: border-box;
}

.service-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #e6dfd7;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  padding: 8px;
  display: none;
  z-index: 50;
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

.service-dropdown.show {
  display: block;
}

.service-dropdown-item {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.35;
  color: #4a4038;
  cursor: pointer;
  transition: 0.2s ease;
}

.service-dropdown-item:hover {
  background: #f3f7fc;
}

.service-dropdown-empty {
  padding: 12px 16px;
  font-size: 14px;
  color: #8c857d;
}

.service-dropdown::-webkit-scrollbar {
  width: 6px;
}

.service-dropdown::-webkit-scrollbar-thumb {
  background-color: #d6d0c9;
  border-radius: 10px;
}

.how-it-works {
  display: flex;
  gap: 24px;
  padding: 20px 80px 80px;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.how-it-works-left,
.how-it-works-right {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.how-it-works-left {
  flex: 2;
}

.how-it-works-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.how-it-works h2 {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 600;
  color: #2f2f2f;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.step {
  flex: 1;
  text-align: center;
}

.step-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #2f2f2f;
}

.step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #5f5a55;
}

.how-it-works-right p {
  font-size: 16px;
  line-height: 1.6;
  color: #5f5a55;
  margin-bottom: 24px;
}

.business-button {
  display: inline-block;
  width: fit-content;
  text-decoration: none;
  background-color: #9db7d6;
  color: white;
  padding: 14px 24px;
  border-radius: 28px;
  font-weight: 500;
}

.footer {
  background-color: #f7f9fc;
  margin-top: 60px;
  padding: 40px 80px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}

.footer-logo h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #2f2f2f;
}

.footer-logo p {
  margin: 0;
  color: #5f5a55;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #2f2f2f;
}

.footer-links a {
  text-decoration: none;
  color: #5f5a55;
  font-size: 14px;
}

.footer-links a:hover {
  color: #9db7d6;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #9ca3af;
}

@media (max-width: 1100px) {
  nav,
  .hero,
  .services-row,
  .featured-companies,
  .how-it-works,
  .footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .hero-text,
  .hero-image {
    width: 100%;
  }

  .search-bar {
    width: 100%;
    max-width: 640px;
  }

  .services-row {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .service-card {
    width: calc(33.333% - 12px);
    box-sizing: border-box;
  }

  .company-cards {
    flex-wrap: wrap;
  }

  .company-card {
    width: calc(50% - 12px);
  }

  .how-it-works {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  nav,
  .hero,
  .services-row,
  .featured-companies,
  .how-it-works,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-text h1 {
    font-size: 48px;
  }

  .search-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 28px;
    padding: 10px;
    gap: 0;
  }

  #postcode-input {
    border-left: none;
    border-top: 1px solid #ece7e1;
  }

  .search-bar button {
    margin-top: 8px;
  }

  .service-card,
  .company-card {
    width: 100%;
  }

  .steps,
  .footer-container {
    flex-direction: column;
  }
}

/* FIND CLEANERS PAGE */

.find-cleaners-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 42px 80px 24px;
}

.find-cleaners-left {
  max-width: 560px;
}

.find-cleaners-left h1 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0 0 18px;
}

.find-cleaners-left h1 span {
  color: #9db7d6;
}

.find-cleaners-left p {
  font-size: 18px;
  line-height: 1.55;
  color: #5f5a55;
  margin: 0;
  max-width: 500px;
}

.find-cleaners-right {
  display: flex;
  justify-content: flex-end;
}

.find-cleaners-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 430px;
}

.benefit-card {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 22px 16px;
  min-height: 132px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.benefit-card:hover {
  transform: translateY(-3px);
  transition: 0.2s ease;
}

.benefit-icon {
  font-size: 20px;
  margin-bottom: 10px;
  color: #9db7d6;
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #2f2f2f;
  font-weight: 600;
}

.benefit-card p {
  margin: 0;
  font-size: 13px;
  color: #5f5a55;
  line-height: 1.45;
}

.find-search-section {
  padding: 0 80px 30px;
}

.find-search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.find-search-bar input {
  border: none;
  outline: none;
  background: transparent;
  padding: 18px 20px;
  font-size: 16px;
  color: #3d3d3d;
  flex: 1;
  font-family: 'Poppins', sans-serif;
}

.find-search-bar input:first-child {
  border-right: 1px solid #ece7e1;
}

.find-search-bar button {
  border: none;
  background-color: #9db7d6;
  color: white;
  padding: 16px 34px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.popular-searches {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.popular-searches span {
  font-size: 15px;
  color: #5f5a55;
  font-weight: 500;
}

.popular-searches a {
  text-decoration: none;
  background-color: #ffffff;
  color: #4a4038;
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 13px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: 0.2s ease;
}

.popular-searches a:hover {
  background-color: #f3f7fc;
}

.cleaners-results-section {
  display: flex;
  gap: 30px;
  padding: 20px 80px 60px;
  align-items: flex-start;
}

.results-left {
  flex: 1.45;
}

.results-right {
  flex: 1;
  position: sticky;
  top: 30px;
}

.results-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 20px;
}

.results-heading-row h2 {
  margin: 0;
  font-size: 34px;
  color: #2f2f2f;
  font-weight: 600;
  line-height: 1.15;
}

.results-heading-row select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  border: none;
  outline: none;
  background: #ffffff;

  height: 44px;
  min-width: 140px;

  padding: 12px 38px 12px 16px;
  border-radius: 20px;

  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #4a4038;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  cursor: pointer;

  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%234a4038' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.results-heading-row select:hover {
  background-color: #f3f7fc;
}

.cleaner-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  border-radius: 24px;
  padding: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.cleaner-card img {
  width: 180px;
  height: 170px;
  object-fit: cover;
  border-radius: 18px;
  flex-shrink: 0;
}

.cleaner-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cleaner-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.cleaner-top h3 {
  margin: 0 0 8px;
  font-size: 30px;
  color: #2f2f2f;
  font-weight: 600;
}

.cleaner-top p {
  margin: 0;
  font-size: 16px;
  color: #5f5a55;
}

.cleaner-rating {
  font-size: 18px;
  font-weight: 600;
  color: #4a4038;
  white-space: nowrap;
}

.cleaner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.cleaner-tags span {
  background-color: #f3f7fc;
  color: #5f5a55;
  padding: 9px 14px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 500;
}

.cleaner-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cleaner-bottom p {
  margin: 0;
  font-size: 16px;
  color: #5f5a55;
}

.cleaner-bottom a {
  text-decoration: none;
  background-color: #f3f7fc;
  color: #4a4038;
  padding: 12px 20px;
  border-radius: 24px;
  font-weight: 500;
  transition: 0.2s ease;
}

.cleaner-bottom a:hover {
  background-color: #9db7d6;
  color: white;
}

.more-cleaners {
  margin-top: 10px;
}

.more-cleaners a {
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #ffffff;
  color: #4a4038;
  padding: 18px;
  border-radius: 24px;
  font-size: 17px;
  font-weight: 500;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.more-cleaners a:hover {
  background-color: #f3f7fc;
}

.map-card {
  background-color: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  position: relative;
}

.map-button {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  border: none;
  background-color: #eeede8;
  color: #4a4038;
  padding: 12px 18px;
  border-radius: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.map-card img {
  width: 100%;
  height: 760px;
  object-fit: cover;
  display: block;
}

.why-book-section {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 36px;
  padding: 30px 80px 80px;
  align-items: start;
  margin-top: 20px;
}

.why-book-left h2 {
  margin: 0 0 30px;
  font-size: 34px;
  color: #2f2f2f;
  font-weight: 600;
  line-height: 1.15;
}

.why-book-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 30px;
}

.why-book-item {
  background: transparent;
  text-align: center;
  padding: 8px 18px;
}

.why-book-icon {
  font-size: 24px;
  margin-bottom: 12px;
  color: #9db7d6;
  line-height: 1;
}

.why-book-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  color: #2f2f2f;
  font-weight: 600;
}

.why-book-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #5f5a55;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 34px 32px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  align-self: start;
}

.testimonial-card blockquote {
  margin: 0 0 24px;
  font-size: 26px;
  line-height: 1.45;
  color: #2f2f2f;
  font-weight: 500;
}

.testimonial-name {
  margin: 0 0 16px;
  font-size: 16px;
  color: #5f5a55;
}

.testimonial-rating {
  font-size: 18px;
  color: #4a4038;
  font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .find-cleaners-hero,
  .cleaners-results-section,
  .why-book-section {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .find-cleaners-right {
    justify-content: flex-start;
  }

  .find-cleaners-benefits {
    max-width: 100%;
  }

  .results-right {
    position: static;
    width: 100%;
  }

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

  .map-card img {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .find-cleaners-hero,
  .find-search-section,
  .cleaners-results-section,
  .why-book-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .find-cleaners-hero {
    gap: 28px;
    padding-top: 32px;
  }

  .find-cleaners-left h1 {
    font-size: 42px;
  }

  .find-cleaners-left p {
    font-size: 17px;
  }

  .find-cleaners-benefits {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .find-search-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    gap: 0;
    max-width: 900px;
    margin-top: 28px;
  }

  .find-search-bar input:first-child {
    border-right: none;
    border-bottom: 1px solid #ece7e1;
  }

  .find-search-bar input::placeholder {
    color: #a8a29e;
  }

  .cleaner-card {
    flex-direction: column;
  }

  .cleaner-card img {
    width: 100%;
    height: 220px;
  }

  .cleaner-top,
  .cleaner-bottom,
  .results-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-book-grid {
    grid-template-columns: 1fr;
  }

  .why-book-left h2 {
    font-size: 28px;
  }

  .why-book-item h3 {
    font-size: 20px;
  }

  .testimonial-card {
    padding: 26px 24px;
  }

  .testimonial-card blockquote {
    font-size: 22px;
  }
} 

/* HOMEPAGE CUSTOM SERVICE DROPDOWN */
.service-search-wrap {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

.service-search-wrap input {
  width: 100%;
  box-sizing: border-box;
}

.service-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #e6dfd7;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  padding: 8px;
  display: none;
  z-index: 50;
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

.service-dropdown.show {
  display: block;
}

.service-dropdown-item {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 15px;
  line-height: 1.35;
  color: #4a4038;
  cursor: pointer;
  transition: 0.2s ease;
}

.service-dropdown-item:hover {
  background: #f3f7fc;
}

.service-dropdown-empty {
  padding: 12px 16px;
  font-size: 14px;
  color: #8c857d;
}

.service-dropdown::-webkit-scrollbar {
  width: 6px;
}

.service-dropdown::-webkit-scrollbar-thumb {
  background-color: #d6d0c9;
  border-radius: 10px;
}
  

/* =========================
   LIST YOUR BUSINESS PAGE
========================= */

.list-page {
  background-color: #f7f4ef;
}

/* NAVBAR (scoped only to this page) */
.list-page .list-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background-color: #f7f4ef;
}

.list-page .logo {
  font-size: 28px;
  font-weight: 600;
  color: #9db7d6;
}

.list-page .nav-links {
  display: flex;
  gap: 28px;
}

.list-page .nav-links a {
  text-decoration: none;
  color: #4a4038;
  font-size: 15px;
}

.list-page .nav-links a:last-child {
  background-color: #9db7d6;
  color: white;
  padding: 10px 18px;
  border-radius: 24px;
}
/* HERO */
.list-page .list-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 88px 40px;
  gap: 60px;
}

.list-page .hero-left {
  max-width: 500px;
}

.list-page .hero-left h1 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 500;
  color: #4a4038;
  margin: 0 0 20px;
}

.list-page .hero-left p {
  font-size: 18px;
  line-height: 1.6;
  color: #5f5a55;
  margin-bottom: 30px;
}

/* BUTTON */
.list-page .cta-button {
  display: inline-block;
  background-color: #9db7d6;
  color: white;
  padding: 14px 26px;
  border-radius: 28px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}



/* RIGHT SIDE (UI BOX PLACEHOLDER) */
.list-page .hero-right {
  width: 520px;
}

.list-page .mock-ui {
  width: 100%;
  height: 340px;
  background: linear-gradient(180deg, #eee8e0 0%, #e8e1d9 100%);
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(68, 64, 56, 0.06);
  position: relative;
  overflow: hidden;
}

.list-page .mock-topbar {
  height: 56px;
  background-color: rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(68, 64, 56, 0.08);
}

.list-page .mock-card {
  position: absolute;
  left: 24px;
  right: 24px;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.6);
}

.list-page .mock-card-one {
  top: 76px;
  height: 64px;
}

.list-page .mock-card-two {
  top: 154px;
  height: 92px;
}

.list-page .mock-card-three {
  top: 260px;
  height: 52px;
}

.list-page .hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}

.list-page.secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #4a4038;
  padding: 14px 26px;
  border-radius: 28px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #d8d2ca;
}
/* =========================
   LIST PAGE - FEATURES
========================= */

.list-features {
  padding: 20px 88px 80px;
  margin-top: -20px;
}

.list-trust {
  text-align: center;
  font-size: 14px;
  color: #8c857d;
  margin: 0 0 36px;
  letter-spacing: 0.3px;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.feature-text {
  max-width: 460px;
}

.feature-text h2 {
  font-size: 44px;
  font-weight: 500;
  color: #4a4038;
  margin-bottom: 18px;
  line-height: 1.15;
}

.feature-text p {
  font-size: 17px;
  color: #5f5a55;
  line-height: 1.7;
}

/* UI BOX (more premium feel) */
.feature-ui {
  width: 520px;
  height: 300px;
  background: linear-gradient(180deg, #eee8e0 0%, #e8e1d9 100%);
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(68, 64, 56, 0.06);
  position: relative;
  overflow: hidden;
}

/* subtle inner UI layers */
.feature-ui::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 46px;
  background: rgba(255,255,255,0.45);
  border-radius: 14px;
}

.feature-ui::after {
  content: "";
  position: absolute;
  top: 86px;
  left: 24px;
  right: 24px;
  height: 170px;
  background: rgba(255,255,255,0.35);
  border-radius: 18px;
}

.list-page a.secondary-button {
  display: inline-block;
  background-color: #9db7d6 !important;
  color: white !important;
  padding: 14px 26px;
  border-radius: 28px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: none;
}

.list-page a.secondary-button:hover {
  background-color: #9db7d6 !important;
}

/* =========================
   TYDIE PRICING PAGE
========================= */

.pricing-page {
  background-color: #f7f4ef;
}

/* NAV */
.pricing-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background-color: #f7f4ef;
}

.pricing-logo {
  text-decoration: none;
}

.pricing-nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.pricing-nav-links a {
  text-decoration: none;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 500;
}

.pricing-nav-links a:hover {
  color: #9db7d6;
}

/* HERO */
.pricing-hero {
  padding: 70px 88px 50px;
  text-align: center;
}

.pricing-hero h1 {
  max-width: 1050px;
  margin: 0 auto 22px;
  font-size: 76px;
  line-height: 0.95;
  font-weight: 700;
  color: #4a4038;
}

.pricing-hero-text {
  margin: 0 auto 38px;
  font-size: 20px;
  line-height: 1.6;
  color: #5f5a55;
  max-width: 760px;
}

.pricing-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.pricing-primary-btn,
.pricing-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: 0.2s ease;
}

.pricing-primary-btn {
  background: #9db7d6;
  color: white;
  border: 2px solid #9db7d6;
}

.pricing-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(157, 183, 214, 0.28);
}

.pricing-secondary-btn {
  background: #9db7d6;
  color: white;
  border: 2px solid #9db7d6;
}

.pricing-secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(157, 183, 214, 0.28);
}

/* MAIN PRICING */
.pricing-section-main {
  padding: 10px 88px 70px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: #ffffff;
  border: 2px solid #9db7d6;
  border-radius: 28px;
  padding: 34px 26px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pricing-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  color: #4a4038;
}

.price {
  margin: 0 0 8px;
  font-size: 54px;
  line-height: 1;
  font-weight: 700;
  color: #2f2f2f;
}

.price span {
  font-size: 16px;
  font-weight: 500;
  color: #8c857d;
  margin-left: 4px;
}

.price-sub {
  margin: 0 0 18px;
  font-size: 15px;
  color: #8c857d;
}

.desc {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.5;
  color: #5f5a55;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.plan-features li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #4a4038;
}

.pricing-card.featured {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(157, 183, 214, 0.35);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #e7b8c7;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 15px rgba(231, 184, 199, 0.4);
}

.plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  background: #f3efe9;
  color: #4a4038;
  border: 1.5px solid #e4ddd5;
  font-size: 15px;
  font-weight: 600;
  transition: 0.2s ease;
}

.plan-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.featured-btn {
  background: #9db7d6;
  color: white;
  border-color: #9db7d6;
}

/* COMPARE */
.compare-section {
  padding: 20px 88px 80px;
}

.compare-section h2 {
  margin: 0 0 28px;
  font-size: 40px;
  color: #4a4038;
}

.compare-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 2px solid rgba(157, 183, 214, 0.3);
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid #efe8e0;
  color: #4a4038;
  font-size: 15px;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.compare-table thead th {
  background: #fcfaf7;
  font-size: 16px;
}

/* ADDONS */
.addons-section {
  padding: 0 88px 80px;
}

.addons-section h2 {
  margin: 0 0 14px;
  font-size: 40px;
  color: #4a4038;
}

.addons-subtext {
  margin: 0 0 32px;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.6;
  color: #5f5a55;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.addon-card {
  position: relative;
  background: #ffffff;
  border: 2px solid rgba(157, 183, 214, 0.28);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.addon-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.addon-top h3 {
  margin: 0;
  font-size: 22px;
  color: #4a4038;
}

.addon-price {
  font-size: 15px;
  font-weight: 600;
  color: #5f7ea6;
  background: #d8e4f1;
  padding: 8px 12px;
  border-radius: 999px;
}

.addon-card p {
  margin: 0;
  color: #5f5a55;
  line-height: 1.6;
}

.featured-addon {
  border-color: #e7b8c7;
}

.addon-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: #e7b8c7;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

/* FAQ */
.pricing-faq {
  padding: 0 88px 90px;
}

.pricing-faq h2 {
  margin: 0 0 28px;
  font-size: 40px;
  color: #4a4038;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.faq-card {
  background: #ffffff;
  border: 2px solid rgba(157, 183, 214, 0.28);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.faq-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  color: #4a4038;
}

.faq-card p {
  margin: 0;
  color: #5f5a55;
  line-height: 1.65;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .pricing-nav,
  .pricing-hero,
  .pricing-section-main,
  .compare-section,
  .addons-section,
  .pricing-faq {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pricing-nav {
    flex-direction: column;
    gap: 18px;
  }

  .pricing-nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .pricing-hero h1 {
    font-size: 44px;
  }

  .pricing-hero-text {
    font-size: 17px;
  }

  .pricing-cards,
  .addons-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .pricing-primary-btn,
  .pricing-secondary-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* =========================
   LIST YOUR BUSINESS FOOTER
========================= */

.list-footer {
  background-color: #f4f0ea;
  margin-top: 20px;
  padding: 48px 88px 20px;
  border-top: 1px solid rgba(68, 64, 56, 0.08);
}

.list-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 32px;
}

.list-footer-brand {
  max-width: 360px;
}

.list-footer-brand h2 {
  margin: 0 0 12px;
  font-size: 30px;
  font-weight: 600;
  color: #9db7d6;
}

.list-footer-brand p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #5f5a55;
}

.list-footer-links {
  display: flex;
  gap: 60px;
}

.list-footer .footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.list-footer .footer-column h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: #4a4038;
}

.list-footer .footer-column a {
  text-decoration: none;
  font-size: 14px;
  color: #5f5a55;
  transition: 0.2s ease;
}

.list-footer .footer-column a:hover {
  color: #9db7d6;
}

.list-footer-bottom {
  border-top: 1px solid rgba(68, 64, 56, 0.08);
  padding-top: 18px;
  text-align: center;
}

.list-footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #8c857d;
}

@media (max-width: 768px) {

  .list-footer {
    padding: 36px 24px 20px;
  }

  .list-footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .list-footer-links {
    flex-direction: column;
    gap: 28px;
  }

}

/* =========================
   TYDIE FAKE SOFTWARE UI
========================= */

.list-page .mock-ui {
  width: 100%;
  height: 340px;
  background: linear-gradient(180deg, #eee8e0 0%, #e8e1d9 100%);
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(68, 64, 56, 0.06);
  overflow: hidden;
}

.list-page .mock-topbar {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background-color: rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(68, 64, 56, 0.08);
}

.list-page .mock-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(74, 64, 56, 0.18);
}

.list-page .dashboard-shell {
  display: flex;
  height: calc(100% - 56px);
}

.list-page .dashboard-sidebar {
  width: 72px;
  padding: 20px 14px;
  border-right: 1px solid rgba(68, 64, 56, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-page .sidebar-pill {
  height: 18px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.45);
}

.list-page .sidebar-pill.active {
  background-color: rgba(157, 183, 214, 0.8);
}

.list-page .dashboard-main {
  flex: 1;
  padding: 20px;
}

.list-page .dashboard-stat-row {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.list-page .dashboard-stat {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  padding: 16px;
}

.list-page .dashboard-stat p {
  margin: 0 0 8px;
  font-size: 12px;
  color: #8c857d;
}

.list-page .dashboard-stat h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #4a4038;
}

.list-page .dashboard-booking-card {
  background-color: rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 14px;
}

.list-page .dashboard-booking-card.small {
  padding: 14px 16px;
}

.list-page .booking-line {
  height: 10px;
  border-radius: 999px;
  background-color: rgba(74, 64, 56, 0.12);
  margin-bottom: 10px;
}

.list-page .booking-line.long {
  width: 80%;
}

.list-page .booking-line.medium {
  width: 60%;
}

.list-page .booking-line.short {
  width: 36%;
}

.list-page .booking-tag {
  width: 70px;
  height: 26px;
  border-radius: 999px;
  background-color: rgba(157, 183, 214, 0.65);
  margin-top: 12px;
}

/* Feature UI shared */
.feature-ui {
  width: 520px;
  height: 300px;
  background: linear-gradient(180deg, #eee8e0 0%, #e8e1d9 100%);
  border-radius: 28px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(68, 64, 56, 0.06);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  padding: 22px;
  box-sizing: border-box;
}

.feature-topbar,
.search-bar-ui {
  height: 44px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.feature-panel.large {
  height: 120px;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.feature-panel.small-row {
  height: 64px;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}

.mini-pill {
  width: 72px;
  height: 18px;
  border-radius: 999px;
  background-color: rgba(157, 183, 214, 0.6);
}

.search-ui .listing-card-ui {
  display: flex;
  gap: 14px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  padding: 12px;
  margin-bottom: 14px;
}

.search-ui .listing-card-ui.second {
  background-color: rgba(255, 255, 255, 0.38);
}

.listing-image-ui {
  width: 88px;
  height: 68px;
  border-radius: 14px;
  background-color: rgba(157, 183, 214, 0.45);
  flex-shrink: 0;
}

.listing-text-ui {
  flex: 1;
}

.text-line {
  height: 10px;
  border-radius: 999px;
  background-color: rgba(74, 64, 56, 0.12);
  margin-bottom: 10px;
}

.text-line.long {
  width: 78%;
}

.text-line.medium {
  width: 56%;
}

.text-line.short {
  width: 34%;
  margin-bottom: 0;
}

/* BUTTON HOVER */
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: 0.2s ease;
}

/* PRICING CARD HOVER */
.pricing-card {
  transition: 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

/* FEATURE UI HOVER */
.feature-ui:hover {
  transform: translateY(-4px);
  transition: 0.2s ease;
}

/* =========================
   MORE REALISTIC TYDIE UI
========================= */

.dashboard-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.dashboard-tabs span {
  font-size: 12px;
  color: #8c857d;
  background: rgba(255,255,255,0.35);
  padding: 8px 12px;
  border-radius: 999px;
}

.dashboard-tabs .active-tab {
  background: rgba(157, 183, 214, 0.55);
  color: #4a4038;
}

.booking-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: rgba(157, 183, 214, 0.75);
  flex-shrink: 0;
}

.booking-copy {
  flex: 1;
}

.calendar-strip {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.calendar-pill {
  width: 74px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.42);
}

.calendar-pill.active {
  background: rgba(157, 183, 214, 0.7);
}

.calendar-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.calendar-job {
  flex: 1;
  height: 38px;
  border-radius: 12px;
}

.calendar-job.soft-blue {
  background: rgba(157, 183, 214, 0.55);
}

.calendar-job.soft-beige {
  background: rgba(255,255,255,0.5);
}

.listing-meta {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.meta-pill {
  width: 72px;
  height: 16px;
  border-radius: 999px;
  background: rgba(157, 183, 214, 0.6);
}

.meta-pill.small {
  width: 46px;
  background: rgba(255,255,255,0.55);
}

.dashboard-tabs span {
  padding: 8px 16px;
  border-radius: 16px;
  background: #eee8e0;
  font-size: 13px;
  color: #6b635c;
}

.dashboard-tabs .active-tab {
  background: #9db7d6;
  color: white;
}

/* =========================
   FILLED TYDIE MOCKUPS
========================= */

.withdraw-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 14px;
}

.withdraw-card {
  flex: 1;
  background: rgba(255,255,255,0.52);
  border-radius: 16px;
  padding: 12px 14px;
}

.withdraw-card p {
  margin: 0 0 6px;
  font-size: 11px;
  color: #8c857d;
}

.withdraw-card h5 {
  margin: 0;
  font-size: 18px;
  color: #4a4038;
}

.withdraw-button {
  min-width: 96px;
  border-radius: 16px;
  background: rgba(157, 183, 214, 0.85);
  color: white;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

.booking-meta-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.booking-chip {
  width: 78px;
  height: 18px;
  border-radius: 999px;
  background: rgba(157, 183, 214, 0.58);
}

.booking-chip.small {
  width: 48px;
  background: rgba(255,255,255,0.6);
}

/* weekly calendar box */
.week-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.day-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.day-label {
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  width: 70%;
}

.calendar-job {
  border-radius: 12px;
  height: 34px;
}

.calendar-job.tall {
  height: 58px;
}

/* third box extras */
.review-panel {
  background: rgba(255,255,255,0.45);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 14px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-score {
  font-size: 24px;
  font-weight: 600;
  color: #4a4038;
}

.review-stars {
  width: 90px;
  height: 14px;
  border-radius: 999px;
  background: rgba(157, 183, 214, 0.65);
}

.review-lines .text-line {
  margin-bottom: 8px;
}

/* =========================
   FILLED MOCKUP TEXT
========================= */

.booking-copy-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.booking-copy-text strong {
  font-size: 13px;
  color: #4a4038;
  font-weight: 600;
}

.booking-copy-text span {
  font-size: 11px;
  color: #8c857d;
}

.booking-chip-text {
  height: 20px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(157, 183, 214, 0.58);
  color: #4a4038;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-chip-text.light {
  background: rgba(255,255,255,0.6);
}

/* calendar box with real text */
.feature-topbar {
  font-size: 13px;
  color: #6f675f;
  display: flex;
  align-items: center;
  padding: 0 14px;
}

.calendar-header-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.calendar-header-row span {
  font-size: 11px;
  color: #8c857d;
  text-align: center;
}

.text-calendar .day-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calendar-job-card {
  border-radius: 12px;
  padding: 10px 8px;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calendar-job-card strong {
  font-size: 11px;
  color: #4a4038;
}

.calendar-job-card span {
  font-size: 10px;
  color: #5f5a55;
  line-height: 1.3;
}

/* search box real text */
.text-search {
  font-size: 13px;
  color: #8c857d;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.listing-text-ui.filled {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.listing-text-ui.filled strong {
  font-size: 13px;
  color: #4a4038;
  font-weight: 600;
}

.listing-text-ui.filled span {
  font-size: 11px;
  color: #8c857d;
}

.listing-meta-text {
  font-size: 11px;
  color: #5f5a55;
}

.filled-review {
  padding: 14px;
}

.review-stars-text {
  font-size: 12px;
  color: #8c857d;
}

.review-copy {
  font-size: 11px;
  color: #5f5a55;
  line-height: 1.5;
  margin-top: 8px;
}

 /* =========================
   TYDIE LOGIN PAGE
========================= */

/* PAGE */
.login-page {
  background-color: #f7f4ef;
}

/* NAVBAR */
.login-page .login-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background-color: #f7f4ef;
}

.login-page .login-logo {
  text-decoration: none;
}

.login-page .login-nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.login-page .login-nav-links a {
  text-decoration: none;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 500;
}

.login-page .login-nav-links a:hover {
  color: #9db7d6;
}

/* HERO LAYOUT */
.login-page .login-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 60px 88px 90px;
}

.login-page .login-left {
  max-width: 560px;
}

.login-page .login-right {
  display: flex;
  justify-content: flex-end;
}

/* LEFT CONTENT */
.login-page .login-eyebrow {
  margin: 0 0 14px;
  font-size: 15px;
  color: #8c857d;
  font-weight: 500;
}

.login-page .login-left h1 {
  margin: 0 0 18px;
  font-size: 60px;
  line-height: 1.05;
  font-weight: 600;
  color: #4a4038;
}

.login-page .login-subtext {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.65;
  color: #5f5a55;
  max-width: 500px;
}

/* LEFT MOCKUP CARD */
.login-page .login-feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.35);
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
}

.login-page .login-feature-top {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.login-page .feature-pill {
  padding: 9px 14px;
  border-radius: 999px;
  background: #f3efe9;
  color: #7a746d;
  font-size: 13px;
  font-weight: 500;
}

.login-page .feature-pill.active {
  background: #9db7d6;
  color: white;
}

.login-page .login-feature-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

.login-page .feature-stat {
  background: #f9f7f3;
  border-radius: 22px;
  padding: 20px;
}

.login-page .feature-stat p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #8c857d;
}

.login-page .feature-stat h3 {
  margin: 0;
  font-size: 34px;
  color: #4a4038;
}

/* EXTRA STATS */
.login-page .login-extra-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.login-page .extra-stat {
  background: #f3efe9;
  border-radius: 18px;
  padding: 14px 16px;
}

.login-page .extra-stat p {
  margin: 0 0 6px;
  font-size: 13px;
  color: #8c857d;
}

.login-page .extra-stat h4 {
  margin: 0;
  font-size: 22px;
  color: #4a4038;
  line-height: 1.2;
}

/* BOOKING CARDS */
.login-page .feature-booking-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f9f7f3;
  border-radius: 22px;
  padding: 16px;
  margin-bottom: 12px;
}

.login-page .feature-booking-card.second {
  margin-bottom: 0;
}

.login-page .booking-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #c9d9eb;
  flex-shrink: 0;
}

.login-page .booking-avatar-text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #4a4038;
}

.login-page .booking-copy {
  flex: 1;
}

.login-page .booking-copy-real h5 {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.2;
  color: #4a4038;
}

.login-page .booking-copy-real p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #8c857d;
}

/* STATUS BASE */
.login-page .booking-status-text {
  width: auto;
  min-width: 84px;
  height: auto;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CONFIRMED = dusty green */
.login-page .status-confirmed {
  background: #dce8e1;
  color: #4f6f5f;
}

/* PENDING = dusty neutral beige */
.login-page .status-pending {
  background: #ece7df;
  color: #7a746d;
}

/* PAID = dusty blue */
.login-page .status-paid {
  background: #d8e4f1;
  color: #5f7ea6;
}

/* CANCELLED = dusty red */
.login-page .status-cancelled {
  background: #f0dada;
  color: #8a5c5c;
}

/* WEEKLY PROGRESS */
.login-page .weekly-progress {
  margin-top: 18px;
}

.login-page .weekly-progress p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #8c857d;
}

.login-page .progress-bar {
  width: 100%;
  height: 10px;
  background: #e6dfd7;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.login-page .progress-fill {
  width: 83%;
  height: 100%;
  background: #9db7d6;
  border-radius: 999px;
}

.login-page .weekly-progress span {
  font-size: 13px;
  color: #6f6962;
}

/* LOGIN CARD */
.login-page .login-card {
  width: 100%;
  max-width: 500px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.35);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
}

.login-page .login-card h2 {
  margin: 0 0 10px;
  font-size: 34px;
  color: #4a4038;
}

.login-page .login-card-subtext {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.6;
  color: #6d665f;
}

/* FORM */
.login-page .login-form {
  display: flex;
  flex-direction: column;
}

.login-page .login-form label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #4a4038;
}

.login-page .login-form input[type="email"],
.login-page .login-form input[type="password"] {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1.5px solid #e6dfd7;
  background: white;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #3d3d3d;
  outline: none;
  transition: 0.2s ease;
}

.login-page .login-form input[type="email"]:focus,
.login-page .login-form input[type="password"]:focus {
  border-color: #9db7d6;
  box-shadow: 0 0 0 4px rgba(157, 183, 214, 0.12);
}

.login-page .login-form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 2px 0 22px;
}

.login-page .remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  color: #5f5a55;
}

.login-page .remember-me input {
  margin: 0;
}

.login-page .forgot-link {
  text-decoration: none;
  color: #7e9fc3;
  font-size: 14px;
  font-weight: 500;
}

.login-page .forgot-link:hover {
  text-decoration: underline;
}

.login-page .login-submit {
  border: none;
  background: #9db7d6;
  color: white;
  padding: 16px 22px;
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.login-page .login-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(157, 183, 214, 0.28);
}

/* DIVIDER */
.login-page .login-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 20px;
}

.login-page .login-divider::before,
.login-page .login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e8e1d9;
}

.login-page .login-divider span {
  font-size: 14px;
  color: #8c857d;
}

/* SIGNUP OPTIONS */
.login-page .signup-options {
  display: grid;
  gap: 14px;
}

.login-page .signup-option {
  display: block;
  text-decoration: none;
  background: #f9f7f3;
  border: 1.5px solid #ece4dc;
  border-radius: 20px;
  padding: 18px;
  transition: 0.2s ease;
}

.login-page .signup-option:hover {
  transform: translateY(-2px);
  border-color: #9db7d6;
  background: #ffffff;
}

.login-page .signup-option strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: #4a4038;
}

.login-page .signup-option span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: #6f6962;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .login-page .login-hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .login-page .login-right {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .login-page .login-nav,
  .login-page .login-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .login-page .login-nav {
    gap: 20px;
    flex-wrap: wrap;
  }

  .login-page .login-nav-links {
    gap: 18px;
    flex-wrap: wrap;
  }

  .login-page .login-left h1 {
    font-size: 42px;
  }

  .login-page .login-card {
    padding: 24px;
  }

  .login-page .login-form-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .login-page .login-feature-main,
  .login-page .login-extra-stats {
    grid-template-columns: 1fr;
  }
}

/* =========================
   TYDIE CLEANER DASHBOARD
========================= */

.dashboard-page {
  background-color: #f7f4ef;
  min-height: 100vh;
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 34px;
  background-color: #f7f4ef;
  border-bottom: 1px solid rgba(74, 64, 56, 0.08);
}

.dashboard-logo {
  text-decoration: none;
}

.dashboard-topbar-right {
  display: flex;
  align-items: center;
}

.dashboard-user-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3efe9;
  color: #4a4038;
  font-size: 14px;
  font-weight: 500;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 85px);
}

.dashboard-sidebar {
  padding: 28px 20px;
  border-right: 1px solid rgba(74, 64, 56, 0.08);
  background: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dashboard-nav-link {
  text-decoration: none;
  color: #5f5a55;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 18px;
  transition: 0.2s ease;
}

.dashboard-nav-link:hover {
  background: #f3efe9;
  color: #4a4038;
}

.dashboard-nav-link.active {
  background: #9db7d6;
  color: white;
}

.dashboard-main {
  padding: 34px;
}

/* HEADER */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.dashboard-eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  color: #8c857d;
  font-weight: 500;
}

.dashboard-header h1 {
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.08;
  color: #4a4038;
}

.dashboard-subtext {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5f5a55;
}

.dashboard-header-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dashboard-primary-btn,
.dashboard-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: 0.2s ease;
}

.dashboard-primary-btn {
  background: #9db7d6;
  color: white;
  border: 2px solid #9db7d6;
}

.dashboard-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(157, 183, 214, 0.25);
}

.dashboard-secondary-btn {
  background: white;
  color: #4a4038;
  border: 1.5px solid #e4ddd5;
}

.dashboard-secondary-btn:hover {
  background: #f9f7f3;
}

/* STATS */
.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.dashboard-stat-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.3);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.dashboard-stat-card p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #8c857d;
}

.dashboard-stat-card h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  color: #4a4038;
}

.dashboard-stat-card span {
  font-size: 13px;
  color: #6f6962;
}

/* CONTENT GRID */
.dashboard-content-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}

.dashboard-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.3);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.large-panel {
  grid-column: span 1;
}

.side-panel {
  grid-column: span 1;
}

.medium-panel {
  grid-column: span 1;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-header h3 {
  margin: 0;
  font-size: 24px;
  color: #4a4038;
}

.panel-header a {
  text-decoration: none;
  color: #7e9fc3;
  font-size: 14px;
  font-weight: 500;
}

/* BOOKING ROWS */
.booking-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f9f7f3;
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 12px;
}

.booking-row:last-child {
  margin-bottom: 0;
}

.dashboard-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #4a4038;
}

.booking-details {
  flex: 1;
}

.booking-details h4 {
  margin: 0 0 4px;
  font-size: 15px;
  color: #4a4038;
}

.booking-details p {
  margin: 0;
  font-size: 13px;
  color: #8c857d;
}

/* DUSTY STATUS BADGES */
.booking-badge {
  min-width: 84px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.status-confirmed {
  background: #dce8e1;
  color: #4f6f5f;
}

.status-pending {
  background: #ece7df;
  color: #7a746d;
}

.status-paid {
  background: #d8e4f1;
  color: #5f7ea6;
}

.status-cancelled {
  background: #f0dada;
  color: #8a5c5c;
}

/* WEEKLY GOAL */
.goal-amount {
  font-size: 28px;
  font-weight: 600;
  color: #4a4038;
  margin-bottom: 16px;
}

.goal-bar {
  width: 100%;
  height: 12px;
  background: #e6dfd7;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}

.goal-fill {
  width: 83%;
  height: 100%;
  background: #9db7d6;
  border-radius: 999px;
}

.goal-note {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6f6962;
}

/* MINI JOBS */
.mini-job-card {
  background: #f9f7f3;
  border-radius: 18px;
  padding: 15px 16px;
  margin-bottom: 12px;
}

.mini-job-card:last-child {
  margin-bottom: 0;
}

.mini-job-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #4a4038;
}

.mini-job-card span {
  display: block;
  font-size: 13px;
  color: #8c857d;
}

/* CALENDAR */
.calendar-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.calendar-day {
  background: #f9f7f3;
  border-radius: 18px;
  padding: 14px 10px;
  text-align: center;
}

.calendar-day span {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  color: #8c857d;
  font-weight: 500;
}

.calendar-event {
  height: 28px;
  border-radius: 12px;
  margin-bottom: 8px;
}

.calendar-event:last-child {
  margin-bottom: 0;
}

.soft-blue {
  background: #d8e4f1;
}

.soft-beige {
  background: #ece7df;
}

/* QUICK ACTIONS */
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quick-action-card {
  display: block;
  text-decoration: none;
  background: #f9f7f3;
  border: 1.5px solid #ece4dc;
  border-radius: 20px;
  padding: 18px;
  transition: 0.2s ease;
}

.quick-action-card:hover {
  transform: translateY(-2px);
  border-color: #9db7d6;
  background: #ffffff;
}

.quick-action-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: #4a4038;
}

.quick-action-card span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: #6f6962;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .dashboard-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(74, 64, 56, 0.08);
    flex-direction: row;
    flex-wrap: wrap;
  }

  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .dashboard-topbar,
  .dashboard-main {
    padding-left: 24px;
    padding-right: 24px;
  }

  .dashboard-stats-grid,
  .quick-actions-grid {
    grid-template-columns: 1fr;
  }

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

  .dashboard-header h1 {
    font-size: 34px;
  }
}

/* =========================
   TYDIE CLEANER PROFILE PAGE
========================= */

.profile-page {
  background-color: #f7f4ef;
}

.profile-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background-color: #f7f4ef;
}

.profile-logo {
  text-decoration: none;
}

.profile-topbar-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.profile-topbar-links a {
  text-decoration: none;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 500;
}

.profile-topbar-links a:hover {
  color: #9db7d6;
}

/* HERO */
.profile-hero {
  padding: 50px 88px 24px;
}

.profile-eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  color: #8c857d;
}

.profile-hero h1 {
  margin: 0 0 16px;
  font-size: 56px;
  line-height: 1.05;
  color: #4a4038;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  color: #5f5a55;
  font-size: 15px;
}

.trusted-badge {
  background: #e7b8c7;
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.profile-subtext {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: #5f5a55;
}

/* GALLERY */
.profile-gallery {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 18px;
  padding: 0 88px 38px;
}

.gallery-main,
.gallery-small {
  background: linear-gradient(180deg, #eee8e0 0%, #e8e1d9 100%);
  border-radius: 28px;
  border: 2px solid rgba(157, 183, 214, 0.25);
}

.gallery-main {
  min-height: 360px;
}

.gallery-side {
  display: grid;
  gap: 18px;
}

.gallery-small {
  min-height: 171px;
}

/* LAYOUT */
.profile-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
  padding: 0 88px 90px;
}

.profile-main {
  display: grid;
  gap: 22px;
}

.profile-section {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.28);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.profile-section h2 {
  margin: 0 0 18px;
  font-size: 30px;
  color: #4a4038;
}

.profile-section p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: #5f5a55;
}

/* SERVICES */
.service-list {
  display: grid;
  gap: 14px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  background: #f9f7f3;
  border-radius: 20px;
  padding: 18px;
}

.service-row h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #4a4038;
}

.service-row p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #7a746d;
}

.service-row span {
  font-size: 16px;
  font-weight: 600;
  color: #4a4038;
  white-space: nowrap;
}

/* REVIEWS */
.review-card {
  background: #f9f7f3;
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 14px;
}

.review-card:last-child {
  margin-bottom: 0;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.review-top strong {
  font-size: 16px;
  color: #4a4038;
}

.review-top span {
  font-size: 14px;
  color: #8c857d;
}

.google-rating-box {
  background: #f3efe9;
  border-radius: 22px;
  padding: 20px;
  margin-bottom: 14px;
}

.google-label {
  margin: 0 0 6px;
  font-size: 13px;
  color: #8c857d;
}

.google-rating-box h3 {
  margin: 0 0 4px;
  font-size: 28px;
  color: #4a4038;
}

.google-rating-box span {
  font-size: 14px;
  color: #6f6962;
}

.google-review {
  border: 1.5px solid rgba(157, 183, 214, 0.2);
}

/* SIDEBAR BOOKING CARD */
.profile-sidebar {
  position: sticky;
  top: 24px;
}

.booking-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.28);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.booking-card-label {
  margin: 0 0 8px;
  font-size: 14px;
  color: #8c857d;
}

.booking-card h3 {
  margin: 0 0 8px;
  font-size: 34px;
  color: #4a4038;
}

.booking-card-subtext {
  margin: 0 0 20px;
  font-size: 15px;
  color: #5f5a55;
}

.availability-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.availability-box span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3efe9;
  font-size: 13px;
  color: #6f6962;
}

.availability-box .active {
  background: #9db7d6;
  color: white;
}

.profile-book-btn,
.profile-message-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: 0.2s ease;
  box-sizing: border-box;
}

.profile-book-btn {
  background: #9db7d6;
  color: white;
  border: 2px solid #9db7d6;
}

.profile-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(157, 183, 214, 0.28);
}

.profile-message-btn {
  background: white;
  color: #4a4038;
  border: 1.5px solid #e4ddd5;
}

.profile-message-btn:hover {
  background: #f9f7f3;
}

.booking-points {
  margin-top: 10px;
}

.booking-points p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #5f5a55;
}

.booking-points p:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-sidebar {
    position: static;
  }

  .profile-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    min-height: 280px;
  }

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

@media (max-width: 768px) {
  .profile-topbar,
  .profile-hero,
  .profile-gallery,
  .profile-layout {
    padding-left: 24px;
    padding-right: 24px;
  }

  .profile-topbar {
    gap: 18px;
    flex-wrap: wrap;
  }

  .profile-topbar-links {
    gap: 18px;
    flex-wrap: wrap;
  }

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

  .service-row {
    flex-direction: column;
  }

  .gallery-side {
    grid-template-columns: 1fr;
  }
}

/* =========================
   TYDIE BOOKING PAGE
========================= */

.booking-page {
  background-color: #f7f4ef;
}

.booking-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background-color: #f7f4ef;
}

.booking-logo {
  text-decoration: none;
}

.booking-topbar-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.booking-topbar-links a {
  text-decoration: none;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 500;
}

.booking-topbar-links a:hover {
  color: #9db7d6;
}

/* HERO */
.booking-hero {
  padding: 44px 88px 28px;
}

.booking-eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  color: #8c857d;
}

.booking-hero h1 {
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 1.05;
  color: #4a4038;
}

.booking-subtext {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: #5f5a55;
}

/* LAYOUT */
.booking-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 28px;
  align-items: start;
  padding: 0 88px 90px;
}

.booking-main {
  display: grid;
  gap: 22px;
}

.booking-section {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.28);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.booking-section h2 {
  margin: 0 0 18px;
  font-size: 30px;
  color: #4a4038;
}

/* SERVICE OPTIONS */
.booking-service-options {
  display: grid;
  gap: 14px;
}

.service-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  background: #f9f7f3;
  border: 1.5px solid #ece4dc;
  border-radius: 22px;
  padding: 18px;
  cursor: pointer;
}

.service-option.active {
  border-color: #9db7d6;
  background: #ffffff;
}

.service-option input {
  margin: 0;
}

.service-option strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  color: #4a4038;
}

.service-option span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: #6f6962;
}

.service-option em {
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  color: #4a4038;
  white-space: nowrap;
}

/* DATE GRID */
.booking-date-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.date-card {
  border: 1.5px solid #ece4dc;
  background: #f9f7f3;
  border-radius: 22px;
  padding: 16px 10px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: 0.2s ease;
}

.date-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #8c857d;
}

.date-card strong {
  display: block;
  font-size: 20px;
  color: #4a4038;
}

.date-card.active,
.date-card:hover {
  background: white;
  border-color: #9db7d6;
}

/* TIME SLOTS */
.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.time-slot {
  border: 1.5px solid #ece4dc;
  background: #f9f7f3;
  border-radius: 999px;
  padding: 14px 16px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #4a4038;
  transition: 0.2s ease;
}

.time-slot.active,
.time-slot:hover {
  background: #9db7d6;
  color: white;
  border-color: #9db7d6;
}

/* FORM */
.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.booking-field {
  display: flex;
  flex-direction: column;
}

.booking-field.full-width {
  grid-column: span 2;
}

.booking-field label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #4a4038;
}

.booking-field input,
.booking-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1.5px solid #e6dfd7;
  background: white;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #3d3d3d;
  outline: none;
  transition: 0.2s ease;
  resize: vertical;
}

.booking-field input:focus,
.booking-field textarea:focus {
  border-color: #9db7d6;
  box-shadow: 0 0 0 4px rgba(157, 183, 214, 0.12);
}

/* SIDEBAR */
.booking-sidebar {
  position: sticky;
  top: 24px;
}

.booking-summary-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.28);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.summary-cleaner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.summary-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #c9d9eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #4a4038;
  flex-shrink: 0;
}

.summary-cleaner h3 {
  margin: 0 0 4px;
  font-size: 20px;
  color: #4a4038;
}

.summary-cleaner p {
  margin: 0;
  font-size: 14px;
  color: #8c857d;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.summary-line span {
  font-size: 14px;
  color: #8c857d;
}

.summary-line strong {
  font-size: 15px;
  color: #4a4038;
  text-align: right;
}

.summary-divider {
  height: 1px;
  background: #e8e1d9;
  margin: 18px 0;
}

.total-line {
  margin-top: 6px;
}

.total-line strong {
  font-size: 18px;
}

.booking-confirm-btn,
.booking-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: 0.2s ease;
  box-sizing: border-box;
}

.booking-confirm-btn {
  background: #9db7d6;
  color: white;
  border: 2px solid #9db7d6;
}

.booking-confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(157, 183, 214, 0.28);
}

.booking-back-btn {
  background: white;
  color: #4a4038;
  border: 1.5px solid #e4ddd5;
}

.booking-back-btn:hover {
  background: #f9f7f3;
}

.booking-security-note {
  margin-top: 10px;
}

.booking-security-note p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #5f5a55;
}

.booking-security-note p:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;
  }

  .booking-date-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .booking-topbar,
  .booking-hero,
  .booking-layout {
    padding-left: 24px;
    padding-right: 24px;
  }

  .booking-topbar {
    gap: 18px;
    flex-wrap: wrap;
  }

  .booking-topbar-links {
    gap: 18px;
    flex-wrap: wrap;
  }

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

  .booking-form-grid,
  .time-slot-grid {
    grid-template-columns: 1fr;
  }

  .booking-field.full-width {
    grid-column: span 1;
  }

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

  .service-option {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}

/* =========================
   TYDIE PAYMENT PAGE
========================= */

.payment-page {
  background-color: #f7f4ef;
}

.payment-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  background-color: #f7f4ef;
}

.payment-logo {
  text-decoration: none;
}

.payment-topbar-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.payment-topbar-links a {
  text-decoration: none;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 500;
}

.payment-topbar-links a:hover {
  color: #9db7d6;
}

/* HERO */
.payment-hero {
  padding: 44px 88px 28px;
}

.payment-eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  color: #8c857d;
}

.payment-hero h1 {
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 1.05;
  color: #4a4038;
}

.payment-subtext {
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: #5f5a55;
}

/* LAYOUT */
.payment-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr;
  gap: 28px;
  align-items: start;
  padding: 0 88px 90px;
}

.payment-main {
  display: grid;
  gap: 22px;
}

.payment-section {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.28);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.payment-section h2 {
  margin: 0 0 18px;
  font-size: 30px;
  color: #4a4038;
}

/* CLEANER CARD */
.payment-cleaner-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f9f7f3;
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 18px;
}

.payment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #c9d9eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #4a4038;
  flex-shrink: 0;
}

.payment-cleaner-copy h3 {
  margin: 0 0 4px;
  font-size: 20px;
  color: #4a4038;
}

.payment-cleaner-copy p {
  margin: 0;
  font-size: 14px;
  color: #8c857d;
}

/* DETAILS */
.payment-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.payment-detail-box {
  background: #f9f7f3;
  border-radius: 20px;
  padding: 18px;
}

.payment-detail-box span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  color: #8c857d;
}

.payment-detail-box strong {
  display: block;
  font-size: 15px;
  color: #4a4038;
}

/* METHOD TABS */
.payment-method-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.payment-tab {
  border: 1.5px solid #e4ddd5;
  background: #f9f7f3;
  color: #4a4038;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.payment-tab.active,
.payment-tab:hover {
  background: #9db7d6;
  border-color: #9db7d6;
  color: white;
}

/* FORM */
.payment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.payment-field {
  display: flex;
  flex-direction: column;
}

.payment-field.full-width {
  grid-column: span 2;
}

.payment-field label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #4a4038;
}

.payment-field input,
.payment-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1.5px solid #e6dfd7;
  background: white;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #3d3d3d;
  outline: none;
  transition: 0.2s ease;
  resize: vertical;
}

.payment-field input:focus,
.payment-field textarea:focus {
  border-color: #9db7d6;
  box-shadow: 0 0 0 4px rgba(157, 183, 214, 0.12);
}

.payment-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 14px;
  color: #5f5a55;
}

.payment-checkbox input {
  margin: 0;
}

/* SIDEBAR */
.payment-sidebar {
  position: sticky;
  top: 24px;
}

.payment-summary-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.28);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.payment-summary-card h3 {
  margin: 0 0 20px;
  font-size: 30px;
  color: #4a4038;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.summary-row span {
  font-size: 14px;
  color: #8c857d;
}

.summary-row strong {
  font-size: 15px;
  color: #4a4038;
  text-align: right;
}

.summary-divider {
  height: 1px;
  background: #e8e1d9;
  margin: 18px 0;
}

.total-row strong {
  font-size: 20px;
}

/* PROMO */
.promo-box label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: #4a4038;
  font-weight: 500;
}

.promo-row {
  display: flex;
  gap: 10px;
}

.promo-row input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1.5px solid #e6dfd7;
  background: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

.promo-row button {
  border: none;
  background: #9db7d6;
  color: white;
  padding: 0 18px;
  border-radius: 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* BUTTONS */
.payment-confirm-btn,
.payment-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: 0.2s ease;
  box-sizing: border-box;
}

.payment-confirm-btn {
  border: none;
  background: #9db7d6;
  color: white;
  cursor: pointer;
}

.payment-confirm-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(157, 183, 214, 0.28);
}

.payment-back-btn {
  background: white;
  color: #4a4038;
  border: 1.5px solid #e4ddd5;
}

.payment-back-btn:hover {
  background: #f9f7f3;
}

/* SECURITY */
.payment-security-box {
  margin-top: 10px;
}

.payment-security-box p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #5f5a55;
}

.payment-security-box p:last-child {
  margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .payment-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .payment-topbar,
  .payment-hero,
  .payment-layout {
    padding-left: 24px;
    padding-right: 24px;
  }

  .payment-topbar {
    gap: 18px;
    flex-wrap: wrap;
  }

  .payment-topbar-links {
    gap: 18px;
    flex-wrap: wrap;
  }

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

  .payment-form-grid,
  .payment-detail-grid {
    grid-template-columns: 1fr;
  }

  .payment-field.full-width {
    grid-column: span 1;
  }

  .promo-row {
    flex-direction: column;
  }
}


/* =========================
   TYDIE BOOKINGS PAGE
========================= */

.bookings-page {
  background-color: #f7f4ef;
  min-height: 100vh;
}

.bookings-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 34px;
  background-color: #f7f4ef;
  border-bottom: 1px solid rgba(74, 64, 56, 0.08);
}

.bookings-logo {
  text-decoration: none;
}

.bookings-topbar-right {
  display: flex;
  align-items: center;
}

.bookings-user-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3efe9;
  color: #4a4038;
  font-size: 14px;
  font-weight: 500;
}

.bookings-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 85px);
}

.bookings-sidebar {
  padding: 28px 20px;
  border-right: 1px solid rgba(74, 64, 56, 0.08);
  background: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bookings-nav-link {
  text-decoration: none;
  color: #5f5a55;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 18px;
  transition: 0.2s ease;
}

.bookings-nav-link:hover {
  background: #f3efe9;
  color: #4a4038;
}

.bookings-nav-link.active {
  background: #9db7d6;
  color: white;
}

.bookings-main {
  padding: 34px;
}

/* HEADER */
.bookings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.bookings-eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  color: #8c857d;
  font-weight: 500;
}

.bookings-header h1 {
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.08;
  color: #4a4038;
}

.bookings-subtext {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5f5a55;
}

.bookings-header-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.bookings-primary-btn,
.bookings-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: 0.2s ease;
}

.bookings-primary-btn {
  background: #9db7d6;
  color: white;
  border: 2px solid #9db7d6;
}

.bookings-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(157, 183, 214, 0.25);
}

.bookings-secondary-btn {
  background: white;
  color: #4a4038;
  border: 1.5px solid #e4ddd5;
}

.bookings-secondary-btn:hover {
  background: #f9f7f3;
}

/* STATS */
.bookings-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.bookings-stat-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.3);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.bookings-stat-card p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #8c857d;
}

.bookings-stat-card h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  color: #4a4038;
}

.bookings-stat-card span {
  font-size: 13px;
  color: #6f6962;
}

/* FILTERS */
.bookings-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.bookings-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f3efe9;
  color: #6f6962;
  font-size: 13px;
  font-weight: 500;
}

.bookings-filter-pill.active {
  background: #9db7d6;
  color: white;
}

/* LIST SECTION */
.bookings-list-section {
  display: grid;
  gap: 16px;
}

.booking-list-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.28);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.booking-list-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.booking-client {
  display: flex;
  align-items: center;
  gap: 14px;
}

.booking-client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #c9d9eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #4a4038;
  flex-shrink: 0;
}

.booking-client-copy h3 {
  margin: 0 0 4px;
  font-size: 20px;
  color: #4a4038;
}

.booking-client-copy p {
  margin: 0;
  font-size: 14px;
  color: #8c857d;
}

.booking-top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.booking-price {
  font-size: 20px;
  font-weight: 600;
  color: #4a4038;
}

.booking-badge {
  min-width: 92px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.booking-badge-confirmed {
  background: #dce8e1;
  color: #4f6f5f;
}

.booking-badge-pending {
  background: #ece7df;
  color: #7a746d;
}

.booking-badge-paid {
  background: #d8e4f1;
  color: #5f7ea6;
}

.booking-badge-cancelled {
  background: #f0dada;
  color: #8a5c5c;
}

.booking-list-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid #e8e1d9;
  padding-top: 16px;
}

.booking-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.booking-meta span {
  font-size: 14px;
  color: #6f6962;
}

.booking-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.booking-actions a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #7e9fc3;
}

.booking-actions a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .bookings-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .bookings-layout {
    grid-template-columns: 1fr;
  }

  .bookings-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(74, 64, 56, 0.08);
    flex-direction: row;
    flex-wrap: wrap;
  }

  .bookings-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .bookings-topbar,
  .bookings-main {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bookings-stats-grid {
    grid-template-columns: 1fr;
  }

  .booking-list-top,
  .booking-list-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-top-right {
    align-items: flex-start;
  }

  .bookings-header h1 {
    font-size: 34px;
  }
}





/* =========================
   TYDIE PAYMENTS PAGE
========================= */

.payments-page {
  background-color: #f7f4ef;
  min-height: 100vh;
}

.payments-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 34px;
  background-color: #f7f4ef;
  border-bottom: 1px solid rgba(74, 64, 56, 0.08);
}

.payments-logo {
  text-decoration: none;
}

.payments-topbar-right {
  display: flex;
  align-items: center;
}

.payments-user-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3efe9;
  color: #4a4038;
  font-size: 14px;
  font-weight: 500;
}

.payments-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 85px);
}

.payments-sidebar {
  padding: 28px 20px;
  border-right: 1px solid rgba(74, 64, 56, 0.08);
  background: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payments-nav-link {
  text-decoration: none;
  color: #5f5a55;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 18px;
  transition: 0.2s ease;
}

.payments-nav-link:hover {
  background: #f3efe9;
  color: #4a4038;
}

.payments-nav-link.active {
  background: #9db7d6;
  color: white;
}

.payments-main {
  padding: 34px;
}

/* HEADER */
.payments-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.payments-eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  color: #8c857d;
  font-weight: 500;
}

.payments-header h1 {
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.08;
  color: #4a4038;
}

.payments-subtext {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5f5a55;
}

.payments-header-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.payments-primary-btn,
.payments-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: 0.2s ease;
}

.payments-primary-btn {
  background: #9db7d6;
  color: white;
  border: 2px solid #9db7d6;
}

.payments-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(157, 183, 214, 0.25);
}

.payments-secondary-btn {
  background: white;
  color: #4a4038;
  border: 1.5px solid #e4ddd5;
}

.payments-secondary-btn:hover {
  background: #f9f7f3;
}

/* STATS */
.payments-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.payments-stat-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.3);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.payments-stat-card p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #8c857d;
}

.payments-stat-card h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  color: #4a4038;
}

.payments-stat-card span {
  font-size: 13px;
  color: #6f6962;
}

/* CONTENT GRID */
.payments-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.payments-side-grid {
  display: grid;
  gap: 18px;
}

.payments-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.28);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-header h3 {
  margin: 0;
  font-size: 24px;
  color: #4a4038;
}

.panel-header a {
  text-decoration: none;
  color: #7e9fc3;
  font-size: 14px;
  font-weight: 500;
}

/* TRANSACTIONS */
.payment-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  background: #f9f7f3;
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 14px;
}

.payment-row:last-child {
  margin-bottom: 0;
}

.payment-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.payment-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}

.income-icon {
  background: #d8e4f1;
  color: #5f7ea6;
}

.fee-icon {
  background: #ece7df;
  color: #7a746d;
}

.payout-icon {
  background: #dce8e1;
  color: #4f6f5f;
}

.payment-copy h4 {
  margin: 0 0 4px;
  font-size: 18px;
  color: #4a4038;
}

.payment-copy p {
  margin: 0;
  font-size: 14px;
  color: #8c857d;
}

.payment-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.payment-row-right strong {
  font-size: 20px;
  color: #4a4038;
}

.payment-status {
  min-width: 92px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.status-paid-soft {
  background: #d8e4f1;
  color: #5f7ea6;
}

.status-pending-soft {
  background: #ece7df;
  color: #7a746d;
}

.status-neutral-soft {
  background: #f0e9e1;
  color: #8b7c70;
}

.status-confirmed-soft {
  background: #dce8e1;
  color: #4f6f5f;
}

/* SIDE BOXES */
.payout-summary-box,
.next-payout-card,
.plan-card {
  background: #f9f7f3;
  border-radius: 22px;
  padding: 18px;
}

.payout-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.payout-line:last-child {
  margin-bottom: 0;
}

.payout-line span {
  font-size: 14px;
  color: #8c857d;
}

.payout-line strong {
  font-size: 16px;
  color: #4a4038;
}

.payout-line.total strong {
  font-size: 20px;
}

.next-payout-card h4,
.plan-card h4 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #4a4038;
}

.next-payout-card p,
.plan-card p,
.plan-card span {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #8c857d;
}

.next-payout-card strong {
  display: block;
  margin-top: 12px;
  font-size: 28px;
  color: #4a4038;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .payments-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .payments-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .payments-layout {
    grid-template-columns: 1fr;
  }

  .payments-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(74, 64, 56, 0.08);
    flex-direction: row;
    flex-wrap: wrap;
  }

  .payments-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .payments-topbar,
  .payments-main {
    padding-left: 24px;
    padding-right: 24px;
  }

  .payments-stats-grid {
    grid-template-columns: 1fr;
  }

  .payment-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-row-right {
    align-items: flex-start;
  }

  .payments-header h1 {
    font-size: 34px;
  }
}

/* =========================
   TYDIE SERVICES PAGE
========================= */

.services-page {
  background-color: #f7f4ef;
  min-height: 100vh;
}

.services-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 34px;
  background-color: #f7f4ef;
  border-bottom: 1px solid rgba(74, 64, 56, 0.08);
}

.services-logo {
  text-decoration: none;
}

.services-topbar-right {
  display: flex;
  align-items: center;
}

.services-user-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3efe9;
  color: #4a4038;
  font-size: 14px;
  font-weight: 500;
}

.services-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 85px);
}

.services-sidebar {
  padding: 28px 20px;
  border-right: 1px solid rgba(74, 64, 56, 0.08);
  background: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-nav-link {
  text-decoration: none;
  color: #5f5a55;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 18px;
  transition: 0.2s ease;
}

.services-nav-link:hover {
  background: #f3efe9;
  color: #4a4038;
}

.services-nav-link.active {
  background: #9db7d6;
  color: white;
}

.services-main {
  padding: 34px;
}

/* HEADER */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.services-eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  color: #8c857d;
  font-weight: 500;
}

.services-header h1 {
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.08;
  color: #4a4038;
}

.services-subtext {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5f5a55;
}

.services-header-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.services-primary-btn,
.services-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  transition: 0.2s ease;
}

.services-primary-btn {
  background: #9db7d6;
  color: white;
  border: 2px solid #9db7d6;
}

.services-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(157, 183, 214, 0.25);
}

.services-secondary-btn {
  background: white;
  color: #4a4038;
  border: 1.5px solid #e4ddd5;
}

.services-secondary-btn:hover {
  background: #f9f7f3;
}

/* STATS */
.services-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.services-stat-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.3);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.services-stat-card p {
  margin: 0 0 8px;
  font-size: 14px;
  color: #8c857d;
}

.services-stat-card h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.1;
  color: #4a4038;
}

.services-stat-card span {
  font-size: 13px;
  color: #6f6962;
}

/* CONTENT GRID */
.services-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.services-side-grid {
  display: grid;
  gap: 18px;
}

.services-panel {
  background: linear-gradient(180deg, #ffffff 0%, #fcfaf7 100%);
  border: 2px solid rgba(157, 183, 214, 0.28);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-header h3 {
  margin: 0;
  font-size: 24px;
  color: #4a4038;
}

.panel-header a {
  text-decoration: none;
  color: #7e9fc3;
  font-size: 14px;
  font-weight: 500;
}

/* SERVICE CARDS */
.service-item-card {
  background: #f9f7f3;
  border-radius: 24px;
  padding: 18px;
  margin-bottom: 14px;
}

.service-item-card:last-child {
  margin-bottom: 0;
}

.service-item-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.service-item-copy h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: #4a4038;
}

.service-item-copy p {
  margin: 0;
  font-size: 14px;
  color: #8c857d;
}

.service-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.service-item-right strong {
  font-size: 20px;
  color: #4a4038;
}

.service-status {
  min-width: 82px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.active-service {
  background: #dce8e1;
  color: #4f6f5f;
}

.paused-service {
  background: #ece7df;
  color: #7a746d;
}

.service-item-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid #e8e1d9;
  padding-top: 14px;
}

.service-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-meta span {
  font-size: 14px;
  color: #6f6962;
}

.service-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-actions a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #7e9fc3;
}

.service-actions a:hover {
  text-decoration: underline;
}

/* SIDE PANELS */
.service-performance-row,
.service-note-card,
.pricing-tip-card {
  background: #f9f7f3;
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 12px;
}

.service-performance-row:last-child,
.service-note-card:last-child,
.pricing-tip-card:last-child {
  margin-bottom: 0;
}

.service-performance-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.service-performance-row strong,
.service-note-card strong,
.pricing-tip-card h4 {
  display: block;
  margin: 0 0 4px;
  font-size: 15px;
  color: #4a4038;
}

.service-performance-row span,
.service-note-card p,
.pricing-tip-card p {
  margin: 0;
  font-size: 14px;
  color: #8c857d;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .services-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(74, 64, 56, 0.08);
    flex-direction: row;
    flex-wrap: wrap;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .services-topbar,
  .services-main {
    padding-left: 24px;
    padding-right: 24px;
  }

  .services-stats-grid {
    grid-template-columns: 1fr;
  }

  .service-item-top,
  .service-item-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-item-right {
    align-items: flex-start;
  }

  .services-header h1 {
    font-size: 34px;
  }
}

/* =========================
   LOGOUT PAGE
========================= */

.logout-page {
  background: #f7f4ef;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.logout-card {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 28px;
  border: 2px solid rgba(157,183,214,0.25);
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.logout-card h1 {
  margin-bottom: 10px;
  color: #4a4038;
}

.logout-card p {
  color: #8c857d;
  margin-bottom: 20px;
}

/* Loader */
.logout-loader {
  width: 40px;
  height: 40px;
  border: 4px solid #e6dfd7;
  border-top: 4px solid #9db7d6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
