@font-face {
  font-family: "Venturis Heavy";
  src: url("VenturisADFHeavy.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff9fb;
  color: #252125;
}

/* HEADER */

.site-header {
  width: 100%;
  min-height: 82px;
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #ffeef4;
  border-bottom: 1px solid #f2e7eb;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #252125;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.header-button,
.primary-button {
  display: inline-block;
  background: #ef8faf;
  color: white;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.header-button:hover,
.primary-button:hover {
  background: #e77fa3;
}

/* HERO */

.hero {
  min-height: calc(100vh - 82px);
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  background:
    radial-gradient(circle at 85% 25%, #fbe2eb 0, transparent 28%),
    #fff9fb;
}

.hero-content {
  max-width: 680px;
}

.eyebrow,
.small-title {
  color: #d96f94;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(52px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -4px;
  margin-bottom: 28px;
}

.hero-text {
  max-width: 590px;
  font-size: 19px;
  line-height: 1.7;
  color: #696166;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.secondary-button {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid #e5d6dc;
  border-radius: 999px;
  color: #302a2e;
  text-decoration: none;
  font-weight: 700;
  background: white;
}

/* RIGHT HAND CARD */

.hero-card {
  background: white;
  padding: 48px;
  border-radius: 30px;
  box-shadow: 0 25px 70px rgba(79, 48, 59, 0.10);
  border: 1px solid #f2e5ea;
}

.hero-card h2 {
  font-size: 38px;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
}

.hero-card > p:not(.small-title) {
  color: #71686d;
  font-size: 17px;
  line-height: 1.7;
}

.mini-features {
  margin-top: 30px;
  display: grid;
  gap: 13px;
}

.mini-features span {
  background: #fff5f8;
  padding: 15px 18px;
  border-radius: 14px;
  font-weight: 600;
}

/* PHONE */

@media (max-width: 800px) {
  .site-header {
    padding: 16px 5% !important;
    height: auto !important;
    min-height: 260px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
}

  .nav-links {
    display: flex !important;
    position: static !important;
    transform: none !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 0 auto !important;
}

  .logo {
    font-size: 18px;
  }

  .header-button {
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;

    width: 150px !important;
    min-width: 150px !important;
    max-width: 150px !important;

    margin: -10px auto 14px !important;
    padding: 11px 16px;
    font-size: 14px;
    text-align: center !important;
    white-space: nowrap !important;
}

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 65px 6% 80px;
    gap: 45px;
  }

  .hero h1 {
    font-size: 52px;
    letter-spacing: -2.5px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-card {
    padding: 30px;
    border-radius: 24px;
  }

  .hero-card h2 {
    font-size: 31px;
  }
}

/* SERVICES SECTION */

.services-section {
  padding: 100px 8%;
  background: #ffffff;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  font-size: 18px;
  line-height: 1.7;
  color: #696166;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff7fa;
  border: 1px solid #f4e4ea;
  border-radius: 24px;
  padding: 30px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(79, 48, 59, 0.10);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: #ffeef4;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.service-card p {
  color: #71686d;
  line-height: 1.6;
  margin-bottom: 25px;
}

.service-card a {
  color: #d96f94;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
}

/* SERVICES ON TABLET */

@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SERVICES ON PHONE */

@media (max-width: 600px) {
  .services-section {
    padding: 70px 6%;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
  }
}

/* WHY CLEAN CLUB */

.why-section {
    margin: 0;
    padding: 20px 8% 60px;
    background: #ffeef4;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.why-intro {
    position: static;
    
}

.why-intro .eyebrow {
    color: #d96f94;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.why-intro h2 {
    font-size: 58px;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 28px;
}

.why-description {
    max-width: 480px;
    font-size: 18px;
    line-height: 1.7;
    color: #695e63;
}

.why-points {
    background: #ffffff;
    border-radius: 28px;
    padding: 10px 40px;
}

.why-point {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 38px 0;
    border-bottom: 1px solid #f0dfe5;
}

.why-point:last-child {
    border-bottom: none;
}

.why-number {
    color: #e5789e;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
}

.why-point h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.why-point p {
    color: #71686d;
    font-size: 16px;
    line-height: 1.7;
}

/* WHY CLEAN CLUB - PHONE */

@media (max-width: 800px) {

    .why-section {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 70px 6%;
    }

    .why-intro {
        position: static;
    }

    .why-intro h2 {
        font-size: 42px;
    }

    .why-points {
        padding: 5px 25px;
    }

    .why-point {
        grid-template-columns: 45px 1fr;
        gap: 12px;
        padding: 30px 0;
    }
}

/* GALLERY PAGE */

.gallery-page {
    padding: 90px 8% 110px;
    background: #fffafb;
}

.gallery-grid {
    columns: 3;
    column-gap: 22px;
}

.gallery-grid img {
    width: 100%;
    display: block;
    margin-bottom: 22px;
    border-radius: 22px;
    break-inside: avoid;
    object-fit: cover;
}

@media (max-width: 900px) {
    .gallery-grid {
        columns: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        columns: 1;
    }

    .gallery-page {
        padding: 60px 6%;
    }
}/* POLISHED GALLERY INTRO */

.gallery-page {
    padding-top: 45px;
}

.gallery-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 65px auto;
}

.gallery-intro .eyebrow {
    color: #df6d93;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.gallery-intro h1 {
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin: 0 0 22px 0;
}

.gallery-intro p {
    font-size: 19px;
    line-height: 1.6;
    color: #6b6265;
    margin: 0 auto;
    max-width: 620px;
}

.gallery-grid {
    margin-top: 0;
}

/* LARGE CLEAN CLUB BANNER */

.site-header {
    position: relative;
    min-height: 230px;
    padding: 25px 3%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    background: #ffeef4;
    border-bottom: 2px solid #f58bb4;
}

.brand-word {
    font-family: "Calistoga", serif;
    font-size: clamp(90px, 13vw, 210px);
    line-height: 0.75;
    color: #F15698;
    font-weight: 500;
    letter-spacing: -7px;
    z-index: 1;
    white-space: nowrap;
}

.brand-clean {
    justify-self: start;
}

.brand-club {
    justify-self: end;
}

.site-header .nav-links {
    display: flex;
    gap: 10px;
    z-index: 3;
}

.site-header .nav-links a {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #efafc7;
    border-radius: 999px;
    padding: 12px 24px;
    color: #252125;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    white-space: nowrap;
}

.site-header .nav-links a:hover {
    background: #F15698;
    color: white;
    border-color: #F15698;
}

.site-header .header-button {
    position: relative;
    z-index: 3;
    white-space: nowrap;
}

/* CLEAN CLUB WIDE HEADER */

.site-header {
    position: relative;
    min-height: 220px;
    padding: 30px 3%;
    background: #fff0f5;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    align-items: center;
    gap: 16px;
    overflow: hidden;
}




/* Keep navigation above the large wording */
.site-header .nav-links {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.site-header .nav-links a {
    background: rgba(255,255,255,0.88);
    border: 1px solid #efb1c8;
    border-radius: 999px;
    padding: 11px 22px;
    color: #252125;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.brand-word {
    font-family: "Venturis", serif;
    font-size: clamp(72px, 8.5vw, 155px);
letter-spacing: -3px;
    color: #f85bb4;
    font-weight: 400;
    letter-spacing: -5px;
    white-space: nowrap;
}

.brand-clean {
    justify-self: start;
}

.brand-club {
    justify-self: end;
}



/* Large bubble near top/middle */
.site-header::before {
    width: 90px;
    height: 90px;
    top: 18px;
    left: 34%;
    background:
        radial-gradient(circle at 35% 30%,
        rgba(255,255,255,.9) 0%,
        rgba(255,185,220,.45) 35%,
        rgba(255,100,190,.25) 60%,
        rgba(255,255,255,.05) 72%);
    border: 2px solid rgba(255,120,190,.28);
    box-shadow:
        inset -8px -8px 18px rgba(255,120,190,.12),
        inset 8px 8px 18px rgba(255,255,255,.55);
}

/* Bubble near bottom/right */
.site-header::after {
    width: 55px;
    height: 55px;
    bottom: 18px;
    right: 20%;
    background:
        radial-gradient(circle at 35% 30%,
        rgba(255,255,255,.9) 0%,
        rgba(255,185,220,.45) 35%,
        rgba(255,100,190,.25) 60%,
        rgba(255,255,255,.05) 72%);
    border: 2px solid rgba(255,120,190,.28);
    box-shadow:
        inset -6px -6px 14px rgba(255,120,190,.12),
        inset 6px 6px 14px rgba(255,255,255,.55);
}

/* CANVA BUBBLES */

.header-bubbles {
    position: absolute;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

/* Bubble group on left */
.bubbles-one {
    width: 360px;
    left: 6%;
    top: -80px;
    transform: rotate(-20deg);
}


/* Bubbles spread across centre navigation */
.centre-bubbles {
    position: absolute;
    width: 900px;
    height: auto;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    z-index: 1;
}

/* Bubble group on right */
.bubbles-three {
    width: 340px;
    right: 3%;
    bottom: -100px;
    transform: rotate(35deg);
}

/* Keep writing/buttons above bubbles */
.site-header .nav-links,
.site-header .brand-word,
.site-header .header-button {
    position: relative;
    z-index: 3;
}

.bubbles-faded-one {
    opacity: 0.32;
    filter: blur(0.5px);
    width: 360px;

    left: -70px;
    top: -40px;

    transform: rotate(135deg);
    z-index: 0;
}

.bubbles-faded-two {
    opacity: 0.35;
    filter: blur(0.4px);
    width: 380px;

    right: -140px;
    bottom: -15px;

    transform: rotate(155deg);
    z-index: 0;
}

.bubbles-faded-three {
    opacity: 0.25;
    filter: blur(0.4px);
    width: 190px;

    left: 50%;
    top: -55px;

    transform: translateX(-50%) rotate(180deg);
    z-index: 0;
}

.header-button {
    transition: all 0.25s ease;
}

.header-button:hover {
    background: white;
    color: #F15698;
    border-color: #F15698;
    transform: translateY(-2px);
}

.gallery-intro .gallery-title {
    line-height: 0.78;
    margin: 18px 0 22px;
}

.gallery-intro .gallery-title {
    line-height: 0.78;
    margin: 18px 0 22px;
}

.gallery-intro > p:last-child {
    margin-top: 0;
}

.gallery-intro .gallery-title .gallery-title-dark,
.gallery-intro .gallery-title .gallery-title-pink {
    display: block;
}

.gallery-intro .gallery-title .gallery-title-dark {
    color: #252125;
}

.gallery-intro .gallery-title .gallery-title-pink {
    color: #F15698;
}

.gallery-intro .gallery-title .gallery-title-dark,
.gallery-intro .gallery-title .gallery-title-pink {
    font-family: "Venturis", serif;
    font-weight: normal;
    font-size: clamp(55px, 6vw, 90px);
    letter-spacing: -1px;
}

.gallery-sparkle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 18px auto;
}

.gallery-sparkle span {
    width: 150px;
    height: 1px;
    background: #F15698;
}

.gallery-sparkle b {
    color: #F15698;
    font-size: 25px;
    font-weight: normal;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    margin: 10px auto 35px;
}

.gallery-filters .filter-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #252125;
    border: 1px solid #efafc7;
    min-width: 150px;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 15px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-filters .filter-btn:hover {
    background: #F15698;
    color: white;
    border-color: #F15698;
}

.gallery-filters .filter-btn.active {
    background: #F15698;
    color: white;
    border-color: #F15698;
}

.gallery-grid img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

.gallery-grid img {
    border-radius: 14px;
}

.hero-pink {
    color: #f15698;
}

.hero h1 {
    font-family: "VenturisADFHeavy", Georgia, serif;
    font-weight: normal;
    line-height: 0.95;
}

.hero h1::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    background: #f15698;
    margin-top: 24px;
}

.hero-text {
    max-width: 560px;
    margin-top: 18px;
    margin-bottom: 22px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.hero-buttons a {
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.hero-buttons a:hover {
    transform: translateY(-2px);
}

.hero-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(241, 86, 152, 0.18);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.hero-card li {
    background: #fff7fa;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 10px;
    font-size: 16px;
}

.hero-card h2 {
    font-family: "VenturisADFHeavy", Georgia, serif;
    font-weight: normal;
}

.hero-card li::first-letter {
    color: #ef4f8f;
}

.pink-tick {
    color: #F15698;
}

.hero-card li {
    list-style: none;
}

.hero {
    background: linear-gradient(
        90deg,
        #fffdfd 0%,
        #fff8fb 55%,
        #fff2f7 100%
    );
}

.feature-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 50% !important;
    background-color: #fdebf2 !important;
    color: #ef5b93 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

.hero-card li {
    border: 1px solid rgba(241, 86, 152, 0.10);
}

.hero-card {
    border: 1px solid rgba(241, 86, 152, 0.14);
    box-shadow: 0 18px 45px rgba(80, 45, 60, 0.08);
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    background-image:
        linear-gradient(to right, #fffafb 0%, rgba(255, 250, 251, 0.75) 20%, rgba(255, 250, 251, 0.15) 55%, rgba(255, 250, 251, 0) 100%),
        url("7.jfif");
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-content,
.hero-card {
    position: relative;
    z-index: 1;
}

.hero-card {
    width: 380px !important;
    max-width: 380px !important;
    padding: 28px !important;
}

.obsessed-banner {
  text-align: center;
  padding: 22px 20px;
  background: #ffffff;
}

.obsessed-banner p {
  margin: 0;
  color: #e66f9a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
}

.header-tagline {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 10;

  margin: 0;
  color: #e7548c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  white-space: nowrap;
}

.hero {
    border: none !important;
    outline: none !important;
}

.hero::before,
.hero::after {
    border: none !important;
    outline: none !important;
}

.hero {
    background: #fffafb;
    overflow: hidden;
}

.hero::before {
    left: 41.9% !important;
    width: 58.1% !important;
}

.hero::before,
.hero::after {
    content: none !important;
}

.hero {
    position: relative;
    overflow: hidden;

    background-image:
        linear-gradient(
            to right,
            #fffafb 0%,
            #fffafb 38%,
            rgba(255, 250, 251, 0.98) 44%,
            rgba(255, 250, 251, 0.78) 50%,
            rgba(255, 250, 251, 0.35) 58%,
            rgba(255, 250, 251, 0) 68%
        ),
        url("7.jfif");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-tagline {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);

    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 7px;
    color: #ef4f91;

    white-space: nowrap;
    z-index: 10;
}

/* NEW PREMIUM HEADER */

.site-header {
    position: relative;
    width: 100%;
    height: 285px;

    background-image: url("header-banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

@media (min-width: 1201px) {

.site-header .nav-links {
    position: absolute;
    left: 50%;
    top: 47%;
    transform: translate(-50%, -50%);

    display: flex;
    gap: 16px;
    z-index: 10;
}
}

@media (min-width: 769px) and (max-width: 1200px) {

    .site-header {
        height: auto !important;
        min-height: 255px !important;
        max-height: none !important;

        padding: 18px 20px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 14px !important;
    }

    .header-logo {
        position: static !important;
        inset: auto !important;
        transform: none !important;

        width: 100% !important;

        display: flex !important;
        justify-content: center !important;
        align-items: center !important;

        gap: 16px !important;
        padding: 0 !important;
    }

    .brand-clean,
    .brand-club {
        position: static !important;
        transform: none !important;
    }

    .header-logo span {
        font-size: clamp(46px, 7vw, 66px) !important;
        line-height: 1 !important;
        white-space: nowrap !important;
    }

    .site-header .nav-links {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;

        width: 100% !important;

        display: flex !important;
        justify-content: center !important;
        align-items: center !important;

        gap: 10px !important;
        margin: 0 !important;
    }

    .site-header .nav-links a {
        padding: 10px 17px !important;
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    .site-header .header-button {
        position: static !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;

        width: 150px !important;
        min-width: 150px !important;
        max-width: 150px !important;

        margin: 0 auto !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
}

.site-header .header-button {
    position: absolute;
    right: 32px;
    top: 47%;
    transform: translateY(-50%);
    z-index: 10;
}

.site-header {
    position: relative;
    height: 220px;

    background-image: url("clean-club-banner-1920x337.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.site-header {
    height: 170px !important;

    background-image: url("clean-club-banner-1920x337.png") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.site-header {
    height: 170px !important;
    min-height: 170px !important;
    max-height: 170px !important;
}

.header-logo {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 55px;
    pointer-events: none;
}

.header-logo span {
    font-family: "Playfair Display", serif;
    font-size: 72px;
    font-weight: 500;
    color: #e84d8a;
    line-height: 1;
}



.brand-clean {
    transform: translateX(85px);
}

.brand-club {
    transform: translateX(-130px);
}

.obsessed {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
}

.obsessed p {
    margin: 0;
    color: #e84d8a;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 6px;
    white-space: nowrap;
}

.obsessed span {
    display: block;
    width: 110px;
    height: 1px;
    background: #e84d8a;
}

.feature-symbol svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    display: block;
    fill: none !important;
    stroke: #e84d8a !important;
    stroke-width: 1.8;
}

.mini-features li {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.feature-symbol {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

.feature-symbol svg {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    fill: none !important;
    stroke: #e84d8a !important;
    stroke-width: 1.8 !important;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff0f5;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #e84d8a;
    font-size: 22px;
}

.service-icon i {
    color: #e84d8a;
}

.services-section h2 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

.why-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 0.95;
    margin: 25px 0;
}

.why-section h2 span {
    color: #e84d8a;
}

.why-line {
    width: 55px;
    height: 3px;
    background: #e84d8a;
    margin: 28px 0 28px;
}

.why-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 680px;
}

.why-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(232, 77, 138, 0.14);
    border-radius: 18px;
    padding: 10px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    box-shadow: 0 10px 30px rgba(120, 80, 90, 0.06);
}

.why-item h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: #2a2427;
}

.why-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #6f6569;
}

.why-item > span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1.5px solid #e84d8a;
    border-radius: 50%;

    color: #e84d8a;
    font-size: 14px;
    font-weight: 700;
}

.why-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: #fdebf2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e84d8a;
    font-size: 22px;
}

.why-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 18px;
}

.why-item {
    padding: 8px 16px;
    gap: 14px;
}

.why-item h3 {
    font-size: 15px;
    margin-bottom: 2px;
}

.why-item p {
    font-size: 13px;
    line-height: 1.35;
}

.why-list {
    gap: 6px;
}

.why-image {
    background-image: url("sara home.jpg");
    background-size: cover;
    background-position: right center;
    min-height: 650px;
    border-radius: 0px;
    transform: translateY(-20px);
}

.why-image {
    position: relative;
    overflow: hidden;
}

.why-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #ffeef4 0%,
        rgba(255, 238, 244, 0.85) 8%,
        rgba(255, 238, 244, 0.4) 18%,
        transparent 35%
    );
    pointer-events: none;
}

.why-image {
    align-self: start;
    margin-top: 0;
    height: 560px;
    min-height: 560px;
}

.why-image {
    border: none !important;
    box-shadow: none !important;
}

.why-image::after {
    left: -4px;
    width: calc(100% + 2px);
}

.why-image {
    justify-self: stretch;
    width: calc(100% + 8vw);
    margin-right: -8vw;
}

.why-quote {
    grid-column: 2;
    justify-self: end;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(232, 77, 138, 0.12);
    border-radius: 18px;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: -20px;
    margin-right: 20px;

    box-shadow: 0 10px 30px rgba(120, 80, 90, 0.08);
}

.quote-mark {
    color: #e84d8a;
    font-family: "Playfair Display", serif;
    font-size: 58px;
    line-height: 0.8;
}

.why-quote p {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    line-height: 1.45;
    color: #2a2427;
}

.why-image {
    grid-column: 2;
    grid-row: 1;
}

.why-image {
    grid-column: 2;
    grid-row: 1;
    position: relative;
}





.why-quote {
    grid-column: 2;
    justify-self: stretch;

    width: calc(100% + 8vw);
    margin-right: -8vw;

    transform: translateY(-280px);
    margin-bottom: -280px;

    border-radius: 0;
    box-sizing: border-box;
    z-index: 20;
}

.services-page {
    padding: 70px 5% 10px;
    background: #fffafb;
}

.services-page-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.services-page-heading .eyebrow {
    color: #df6b94;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.services-page-heading h1 {
    margin: 0;
    font-family: "DM Serif Display", serif;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 400;
    color: #241f21;
}

.services-page-heading h1 span {
    color: #e84d8a;
}

.services-page-intro {
    max-width: 650px;
    margin: 20px auto 0;
    font-size: 18px;
    line-height: 1.6;
    color: #6f666a;
}

/* SERVICES PAGE CARDS */

.services-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.services-card {
    background: #ffffff;
    border: 1px solid #f3dbe4;
    border-radius: 20px;
    padding: 24px 25px 22px;
    min-height: 330px;

    display: flex;
    flex-direction: column;

    box-shadow: 0 8px 25px rgba(80, 40, 55, 0.06);
}

.services-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fdebf2;
    color: #ed4f8d;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 21px;
    margin-bottom: 18px;
}

.services-card h3 {
    font-family: "DM Serif Display", serif;
    font-size: 25px;
    line-height: 1.15;
    font-weight: 400;
    color: #241f21;
    margin: 0 0 16px;
}

.services-card > p {
    color: #70666a;
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 14px;
}

.services-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.services-card li {
    color: #665d61;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 22px;
    position: relative;
}

.services-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ed4f8d;
    font-weight: bold;
}

.services-card > a {
    margin-top: auto;
    display: block;

    background: #e94d88;
    color: white;

    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;

    padding: 13px 15px;
    border-radius: 999px;
}

.services-card-image {
    height: 190px;
    margin: -24px -22px 0;
    background: #f9edf1;
    border-radius: 20px 20px 0 0;
}

.services-card-icon {
    position: relative;
    margin-top: -26px;
    z-index: 2;
}

.maintenance-image {
    background-image: url("28.jfif");
    background-size: cover;
    background-position: center;
}

.deep-image {
    background-image: url("12.jfif");
    background-size: cover;
    background-position: center;
}

.holiday-image {
    background-image: url("35.jfif");
    background-size: cover;
    background-position: center;
}

.tenancy-image {
    background-image: url("4.jfif");
    background-size: cover;
    background-position: center;
}

.tenancy-image {
    background-image: url("29.jfif");
    background-size: cover;
    background-position: center;
}

.commercial-image {
    background-image: url("2.jfif");
    background-size: cover;
    background-position: center;
}

/* FOOTER */

.site-footer {
    background: #f7dfe7;
    text-align: center;
    padding: 55px 30px 25px;
    border-top: 1px solid #f3cbd8;
}

.footer-brand {
    font-family: "Venturis Heavy", serif;
    font-size: 42px;
    color: #ed4b87;
    line-height: 1;
}

.footer-tagline {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #d96588;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #4b3f43;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #e94d88;
}

.footer-area {
    margin-top: 22px;
    font-size: 13px;
    color: #7a6f73;
}

.footer-copy {
    margin-top: 12px;
    font-size: 11px;
    color: #9b8f93;
}

.footer-copy {
    border-top: 1px solid rgba(233, 77, 136, 0.15);
    max-width: 520px;
    margin: 18px auto 0;
    padding-top: 14px;
}

.quote-form-section {
    padding: 20px 5% 70px;
    background: #fffafb;
}

.quote-form-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #f3dbe4;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(80, 40, 55, 0.06);
}

.quote-step {
    color: #df6b94;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.quote-form-card h2 {
    font-family: "DM Serif Display", serif;
    font-size: 38px;
    margin-bottom: 8px;
    color: #252125;
}

.quote-help {
    color: #70666a;
    margin-bottom: 28px;
}

.quote-service-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.quote-service {
    border: 1px solid #f0bfd0;
    background: #fff7fa;
    color: #352c30;
    border-radius: 18px;
    padding: 24px 14px;
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
}

.quote-service i {
    font-size: 24px;
    color: #ed4f8d;
}

.quote-service:hover {
    transform: translateY(-3px);
    border-color: #ed4f8d;
    box-shadow: 0 8px 20px rgba(237, 79, 141, 0.12);
}

.quote-service.selected {
    background: #ed4f8d;
    border-color: #ed4f8d;
    color: white;
}

.quote-service.selected i {
    color: white;
}

/* QUOTE DETAILS */

.quote-details {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.quote-field {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.quote-field-full {
    grid-column: 1 / -1;
}

.quote-field label {
    font-size: 14px;
    font-weight: 700;
    color: #2d2528;
}

.quote-field input,
.quote-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    border: 1px solid #f3c5d5;
    border-radius: 14px;
    background: #fffafb;
    font-family: inherit;
    font-size: 16px;
    color: #2d2528;
    outline: none;
}

.quote-field input:focus,
.quote-field textarea:focus {
    border-color: #ed4f8d;
    box-shadow: 0 0 0 3px rgba(237, 79, 141, 0.10);
}

.quote-field textarea {
    resize: vertical;
    min-height: 130px;
}

.quote-success {
    margin-top: 32px;
    padding: 32px;
    border-radius: 20px;
    background: #fff7fa;
    border: 1px solid #f3c5d5;
    text-align: center;
}

.quote-success h2 {
    font-family: "DM Serif Display", serif;
    font-size: 36px;
    color: #252125;
    margin-bottom: 12px;
}

.quote-success p {
    color: #70666a;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.quote-email-button,
.quote-whatsapp-button {
    width: 100%;
    padding: 17px 24px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* SEND ENQUIRY - PINK */
.quote-email-button {
    background: #ed4f8d;
    color: white;
    border: 2px solid #ed4f8d;
}

/* SEND VIA WHATSAPP - WHITE */
.quote-whatsapp-button {
    margin-top: 12px;
    background: white;
    color: #ed4f8d;
    border: 2px solid #ed4f8d;
}

/* PINK BUTTON TURNS WHITE */
.quote-email-button:hover {
    background: white;
    color: #ed4f8d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 79, 141, 0.18);
}

/* WHITE BUTTON TURNS PINK */
.quote-whatsapp-button:hover {
    background: #ed4f8d;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 79, 141, 0.18);
}

/* ENQUIRY SEND AREA */

.quote-send-heading {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.quote-heart-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #ed4f8d;
}

.quote-heart-divider span {
    width: 90px;
    height: 1px;
    background: #ed4f8d;
}

.quote-heart-divider i {
    font-size: 20px;
}

.quote-send-heading h3 {
    margin: 0 0 5px;
    font-size: 25px;
}

.quote-send-heading p {
    margin: 0;
}

.quote-email-button,
.quote-whatsapp-button {
    width: 100%;
    display: block;
    margin: 10px 0 0;
    padding: 17px 24px;

    background: #ffffff;
    color: #ed4f8d;
    border: 2px solid #ed4f8d;
    border-radius: 999px;

    font-size: 16px;
    font-weight: 700;
    cursor: pointer;

    transition: all 0.25s ease;
}

.quote-email-button i,
.quote-whatsapp-button i {
    margin-right: 8px;
}

/* BOTH TURN PINK WHEN HOVERED */

.quote-email-button:hover,
.quote-whatsapp-button:hover {
    background: #ed4f8d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(237, 79, 141, 0.18);
}

.quote-send-heading,
.quote-email-button,
.quote-whatsapp-button {
    grid-column: 1 / -1;
}

.quote-email-button,
.quote-whatsapp-button {
    padding: 14px 24px;
    margin-top: 8px;
}

.quote-trust-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    color: #777;
    font-size: 13px;
    font-weight: 500;
}

.quote-trust-line i {
    color: #ed4f8d;
    font-size: 14px;
}

.quote-trust-line {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    text-align: center;
}

.quote-success {
    text-align: center;
    padding: 55px 30px;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #ed4f8d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 8px 22px rgba(237, 79, 141, 0.18);
}

.quote-success h2 {
    margin: 0 0 12px;
    font-size: 36px;
}

.quote-success p {
    margin: 4px 0;
    font-size: 17px;
}

.quote-success .success-small {
    color: #777;
    font-size: 14px;
    margin-top: 8px;
}

/* QUOTE PAGE INTRO */

.quote-intro {
    max-width: 1416px;
    margin: 0 auto;
    padding: 35px 52px 25px;
}

.quote-intro .quote-step,
.quote-intro-label {
    color: #ed4f8d;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.quote-intro h1 {
    font-size: 38px;
    line-height: 1.05;
    margin: 0 0 12px;
    color: #211d1f;
}

.quote-intro-text {
    max-width: 850px;
    font-size: 18px;
    line-height: 1.55;
    color: #62585c;
    margin: 0;
}

.quote-form-section {
    margin-top: -20px;
}

.quote-intro {
    padding-bottom: 10px;
}

.quote-intro h1 {
    font-family: "VenturisADFHeavy", Georgia, serif;
    font-size: 38px;
    line-height: 1.05;
    margin: 0 0 12px;
    color: #211d1f;
}

/* Quote page header CLEAN CLUB font */
.quote-page .header-brand {
    font-family: "VenturisADFHeavy", serif;
}

.brand-clean,
.brand-club {
    font-family: "VenturisADFHeavy", serif !important;
}

.quote-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-eyebrow::after {
    content: "";
    width: 55px;
    height: 1px;
    background: #ed4b8a;
}

.quote-intro .eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
}

.quote-intro .eyebrow::after {
    content: "";
    width: 55px;
    height: 1px;
    background: #ed4b8a;
}

.quote-intro {
    max-width: 1100px;
}

.quote-intro h1 {
    font-family: "DM Serif Display", Georgia, serif !important;
}

/* MOBILE HEADER */
@media (max-width: 768px) {

    .site-header {
        height: auto !important;
        min-height: 220px;
        padding: 20px 14px 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 16px;
        overflow: hidden;
    }

    .header-logo {
        position: static !important;
        transform: none !important;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .brand-clean,
    .brand-club {
        position: static !important;
        transform: none !important;
        font-size: 48px !important;
        line-height: 1;
    }

    .nav-links {
        position: static !important;
        transform: none !important;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .nav-links a {
        font-size: 14px !important;
        padding: 10px 14px !important;
        white-space: nowrap;
    }
}



/* Tablet service cards */
@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Phone service cards */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1450px) {
    .obsessed {
        display: flex !important;
        position: absolute !important;
        left: 50% !important;
        bottom: 8px !important;
        transform: translateX(-50%) !important;
        width: auto !important;
        z-index: 50 !important;
    }

    .obsessed p {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.tagline-strip {
    background: #ffd9e7;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    border-bottom: 2px solid #f58bb4;
}

.tagline-strip p {
    margin: 0;
    color: #e84d8a;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 6px;
    white-space: nowrap;
}

.tagline-strip span {
    display: block;
    width: 110px;
    height: 1px;
    background: #e84d8a;
}

@media (max-width: 600px) {
    .tagline-strip {
        gap: 10px;
        padding: 0 10px;
    }

    .tagline-strip p {
        font-size: 11px;
        letter-spacing: 4px;
    }

    .tagline-strip span {
        width: 45px;
    }
}








