/* ============================================================
   CLUB SORA — Cleaning Services (Australia)
   Theme inspired by Coconut blue / white / grey palette
   ============================================================ */

:root {
  --brand: #2463eb;
  /* primary blue */
  --brand-dark: #1d4ed8;
  /* hover blue */
  --brand-light: #e8f0fe;
  /* soft blue tint */
  --section-grey: #EEF3F4;
  /* light grey-blue section bg */
  --heading: #6E6E6E;
  /* grey headings */
  --text: #7A7A7A;
  /* body text */
  --dark: #3a3a3a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

/* ===== Buttons ===== */
.btn-brand {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: all .25s ease;
  box-shadow: 0 6px 18px rgba(36, 99, 235, .35);
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(36, 99, 235, .45);
}

.btn-hero {
  padding: 14px 42px;
  font-size: 1.15rem;
  margin-top: 10px;
}

/* ===== Top Bar ===== */
.top-bar {
  background: #e9e9e9;
  padding: 8px 10px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .5px;
}

.top-bar a {
  color: #444;
  text-decoration: none;
}

.top-bar a:hover {
  color: var(--brand);
}

/* ===== Navbar ===== */
.main-nav {
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  padding: .6rem 0;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  letter-spacing: -1px;
  color: var(--brand);
}

.navbar-brand span {
  color: var(--heading);
}

/* ===== Brand logo image ===== */
.navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

.brand-logo {
  display: block;
  height: 80px;
  width: auto;
  mix-blend-mode: multiply;
}

.footer-brand .brand-logo {
  height: 80px;
}

.footer-slim-logo {
  display: inline-block;
  height: 80px;
  width: auto;
  mix-blend-mode: multiply;
}

@media (max-width: 575px) {
  .brand-logo {
    height: 40px;
  }

  .footer-brand .brand-logo {
    height: 48px;
  }
}

.main-nav .nav-link {
  color: #555;
  font-weight: 500;
  margin: 0 .4rem;
  transition: color .2s;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--brand);
}

.btn-book {
  padding: 10px 26px;
  font-size: .9rem;
  letter-spacing: 1px;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  border-radius: 12px;
  padding: .5rem;
}

.dropdown-item {
  border-radius: 8px;
  padding: .5rem 1rem;
  font-size: .9rem;
}

.dropdown-item:hover {
  background: var(--brand-light);
  color: var(--brand);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(20, 60, 90, .05), rgba(20, 60, 90, .05)),
    url('../images/hero.jpg') center/cover no-repeat;
  background-color: var(--brand);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 99, 235, .32), rgba(29, 78, 216, .44));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 15px;
}

.hero-title {
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -1px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .25);
}

.hero-sub {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 1.1rem;
  font-weight: 300;
}

.hero-sub strong {
  font-weight: 600;
}

.hero-badges {
  margin-top: 34px;
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  font-weight: 500;
  font-size: .95rem;
}

.hero-badges i {
  color: #ffd54f;
  margin-right: 6px;
}

/* ===== Generic Section ===== */
.section {
  padding: 90px 0;
}

.section-light {
  background: var(--section-grey);
}

.section-eyebrow {
  display: inline-block;
  color: var(--brand);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.section-title {
  font-weight: 800;
  color: var(--heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-lead {
  max-width: 820px;
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.7;
}

.section-lead strong {
  font-weight: 600;
  color: #5f5f5f;
}

/* ===== Value cards ===== */
.value-card {
  padding: 20px 14px;
}

.value-card i {
  font-size: 2.6rem;
  color: var(--brand);
  background: var(--brand-light);
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.value-card h5 {
  font-weight: 700;
  color: var(--heading);
  font-size: 1.05rem;
}

.value-card p {
  font-size: .9rem;
  font-weight: 300;
}

/* ===== Why choose us / feature circles ===== */
.feature-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin: 0 auto 30px;
  background-size: cover;
  background-position: center;
  background-color: var(--brand);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .15);
  transition: transform .35s ease, box-shadow .35s ease;
}

.feature-circle.safer {
  background-image: url('../images/why-safer-solutions.jpg');
}

.feature-circle.professionals {
  background-image: url('../images/why-professionals.jpg');
}

.feature-circle.finish {
  background-image: url('../images/carpet-cleaning.jpg');
}

.feature-circle:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(36, 99, 235, .3);
}

.feature-title {
  font-weight: 800;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.feature-text {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 330px;
  margin: 0 auto;
}

@media (max-width: 575px) {
  .feature-circle {
    width: 210px;
    height: 210px;
  }
}

/* ===== Service cards (image + heading + detail in one card) ===== */
.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}

.service-img {
  position: relative;
  height: 230px;
  background-size: cover;
  background-position: center;
  background-color: var(--brand);
}

.service-img.eol {
  background-image: url('../images/service-end-of-lease.jpg');
}

.service-img.oneoff {
  background-image: url('../images/service-one-off.jpg');
}

.service-img.regular {
  background-image: url('../images/service-regular.jpg');
}

.service-img.commercial {
  background-image: url('../images/service-commercial.jpg');
}

.service-content {
  padding: 26px 26px 30px;
}

.service-content h4 {
  font-weight: 800;
  color: var(--heading);
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

.service-content strong {
  font-weight: 600;
  color: var(--brand-dark);
}

/* ===== Service accordion ===== */
.service-accordion .accordion-item,
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: 14px !important;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.service-accordion .accordion-button,
.faq-accordion .accordion-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--heading);
  background: #fff;
  font-size: 1.02rem;
}

.service-accordion .accordion-button:not(.collapsed),
.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--brand-light);
  color: var(--brand-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%232463eb' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  font-weight: 300;
  line-height: 1.7;
}

.accordion-body strong {
  color: var(--brand-dark);
  font-weight: 600;
}

/* ===== Process timeline ===== */
.process-timeline {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.process-step {
  flex: 1 1 0;
  min-width: 160px;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

/* connecting dashed line between circles */
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 39px;
  left: 50%;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(90deg, var(--brand) 55%, transparent 55%);
  background-size: 14px 3px;
  background-repeat: repeat-x;
  opacity: .55;
  z-index: 0;
}

.process-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: var(--brand);
  font-size: 1.85rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
  transition: all .3s ease;
}

.process-step:hover .process-circle {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(36, 99, 235, .4);
}

.process-step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 3px 8px rgba(36, 99, 235, .4);
}

.process-step h5 {
  font-weight: 700;
  color: var(--heading);
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

/* Mobile: vertical timeline */
@media (max-width: 767px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    width: 100%;
    max-width: 340px;
    padding: 0 0 36px;
  }

  .process-step:not(:last-child)::after {
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: calc(100% - 80px);
    background-image: linear-gradient(180deg, var(--brand) 55%, transparent 55%);
    background-size: 3px 14px;
    background-repeat: repeat-y;
  }
}

/* ===== Stats bar ===== */
.stats-bar {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  padding: 56px 0;
}

.stat-num {
  font-family: 'Montserrat';
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  display: block;
}

.stats-bar p {
  font-weight: 300;
  margin: 0;
  opacity: .92;
}

/* ===== Rating block ===== */
.rating-block {
  margin: 30px 0 10px;
}

.rating-label {
  font-family: 'Montserrat';
  font-weight: 800;
  letter-spacing: 2px;
  color: #2b2b2b;
}

.rating-stars {
  color: #ffb300;
  font-size: 1.6rem;
  margin: 6px 0;
}

.rating-count {
  font-size: .95rem;
  margin: 0;
}

.google-logo {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 1.5rem;
}

.google-logo .g-b {
  color: #4285F4;
}

.google-logo .g-r {
  color: #EA4335;
}

.google-logo .g-y {
  color: #FBBC05;
}

.google-logo .g-g {
  color: #34A853;
}

/* ===== Review cards ===== */
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  height: 100%;
  text-align: left;
  box-shadow: 0 6px 22px rgba(0, 0, 0, .06);
}

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

.review-head .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Montserrat';
  font-size: .9rem;
}

.review-head h6 {
  margin: 0;
  font-weight: 700;
  color: #444;
  font-size: .95rem;
}

.review-head small {
  color: #999;
}

.review-head .bi-google {
  color: #4285F4;
  font-size: 1.2rem;
}

.review-stars {
  color: #ffb300;
  margin-bottom: 10px;
}

.review-card p {
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

/* ===== Sora Club ===== */
.club-img {
  height: 420px;
  border-radius: 20px;
  background-image: url('../images/club.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--brand);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
}

.club-perks {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.club-perks li {
  padding: 6px 0;
  font-weight: 400;
}

.club-perks i {
  color: var(--brand);
  margin-right: 8px;
}

.club-note {
  font-size: .85rem;
  font-style: italic;
}

/* ===== Locations ===== */
.location-pill {
  background: #fff;
  border: 2px solid var(--brand-light);
  border-radius: 50px;
  padding: 14px 10px;
  font-weight: 600;
  color: var(--heading);
  transition: all .25s;
  cursor: pointer;
}

.location-pill:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-3px);
}

.location-pill i {
  color: var(--brand);
  margin-right: 6px;
}

.location-pill:hover i {
  color: #fff;
}

/* ===== Phone mock / viral ===== */
.phone-mock {
  width: 280px;
  margin: 0 auto;
  background: #000000;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.phone-screen {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
}

.phone-top {
  padding: 12px;
  font-weight: 600;
  font-size: .9rem;
  color: #333;
  border-bottom: 1px solid #eee;
}

.phone-top i {
  color: #E1306C;
}

.phone-img {
  height: 360px;
  background-image: url('../images/carpet-cleaning.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--brand);
}

.views-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
}

.phone-stats {
  display: flex;
  justify-content: space-around;
  padding: 12px;
  font-size: .85rem;
  color: #555;
}

.phone-stats i {
  color: var(--brand);
}

/* ===== Trust badges ===== */
.trust-row {
  flex-wrap: wrap;
}

.trust-badge {
  color: var(--heading);
}

.trust-badge i {
  font-size: 2rem;
  color: var(--brand);
  display: block;
  margin-bottom: 6px;
}

.trust-badge span {
  font-size: .8rem;
  font-weight: 600;
}

/* ===== Quote section ===== */
.quote-section {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.quote-lead {
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
}

.quote-contact {
  list-style: none;
  padding: 0;
  color: #fff;
}

.quote-contact li {
  padding: 8px 0;
  font-weight: 400;
}

.quote-contact i {
  margin-right: 10px;
}

.quote-form {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.quote-form .form-control,
.quote-form .form-select {
  border: 1px solid #e2e6ea;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .95rem;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 .2rem rgba(36, 99, 235, .15);
}

.form-error {
  display: none;
  background: #fdecec;
  color: #c0392b;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
}

.form-error.show {
  display: block;
}

/* ===== Footer (light) ===== */
.footer {
  background: var(--section-grey);
  color: var(--text);
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.footer-top {
  padding: 96px 0 70px;
}

.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--heading);
  text-decoration: none;
  letter-spacing: -1px;
}

.footer-brand span {
  color: var(--brand);
}

.footer-tag {
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 16px 0 22px;
  max-width: 330px;
  color: var(--text);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  color: var(--brand);
  margin-right: 10px;
  font-size: 1.05rem;
  transition: all .25s ease;
}

.footer-social a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

.footer-h {
  color: var(--heading);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-h::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s, padding-left .2s;
}

.footer-links a:hover {
  color: var(--brand);
  padding-left: 5px;
}

.footer-contact li {
  font-size: .92rem;
  margin-bottom: 13px;
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--brand);
  margin-top: 3px;
}

.footer-contact a {
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}

.footer-contact a:hover {
  color: var(--brand);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding: 30px 0;
}

.footer-bottom--flush {
  border-top: none;
}

.footer-copy {
  font-size: .82rem;
  letter-spacing: .3px;
  margin: 0;
  color: #98a2a8;
}

.footer-legal a {
  color: var(--text);
  text-decoration: none;
  font-size: .82rem;
  margin: 0 4px;
  transition: color .2s;
}

.footer-legal a:hover {
  color: var(--brand);
}

.footer-legal span {
  color: #b9c2c6;
}

@media (max-width: 767px) {
  .footer-bottom .container {
    text-align: center;
  }
}

/* ===== Legal pages (terms / privacy) ===== */
.page-banner {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.page-banner h1 {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: -.5px;
  margin: 0;
}

.page-banner p {
  margin: 10px 0 0;
  font-weight: 300;
  opacity: .95;
}

.legal-content {
  padding: 70px 0;
}

.legal-content .container {
  max-width: 900px;
}

.legal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--heading);
  font-size: 1.4rem;
  margin: 38px 0 14px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: .98rem;
  font-weight: 300;
  line-height: 1.8;
  color: #5f5f5f;
}

.legal-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content strong {
  font-weight: 600;
  color: #4a4a4a;
}

.legal-content a {
  color: var(--brand);
}

.legal-updated {
  display: inline-block;
  background: var(--brand-light);
  color: var(--brand-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.legal-note {
  background: #fff8e6;
  border-left: 4px solid #f0b400;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: .9rem;
  margin-top: 36px;
}

/* ===== Thank you page ===== */
.thankyou-wrap {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--brand-light), #ffffff);
  padding: 60px 20px;
}

.thankyou-card {
  background: #fff;
  border-radius: 24px;
  padding: 56px 44px;
  max-width: 620px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .1);
}

.thankyou-check {
  width: 96px;
  height: 96px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 26px;
  box-shadow: 0 12px 30px rgba(36, 99, 235, .45);
  animation: pop .5s ease;
}

@keyframes pop {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

.thankyou-card h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--heading);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.thankyou-card p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 10px;
}

.thankyou-steps {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.thankyou-steps .ts {
  flex: 1 1 150px;
  max-width: 170px;
  background: var(--brand-light);
  border-radius: 14px;
  padding: 18px 14px;
}

.thankyou-steps .ts i {
  font-size: 1.6rem;
  color: var(--brand);
  display: block;
  margin-bottom: 8px;
}

.thankyou-steps .ts span {
  font-size: .82rem;
  font-weight: 500;
  color: #5f5f5f;
}

.ty-phone {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.ty-phone:hover {
  text-decoration: underline;
}

/* ===== Our Work gallery ===== */
.eyebrow-light {
  color: #fff;
  opacity: .85;
}

.work-intro {
  padding-bottom: 30px;
}

.work-section {
  padding-top: 10px;
}

.work-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.work-filter {
  border: 2px solid var(--brand-light);
  background: #fff;
  color: var(--heading);
  border-radius: 50px;
  padding: 9px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s ease;
}

.work-filter:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.work-filter.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 6px 16px rgba(36, 99, 235, .35);
}

/* masonry via CSS columns */
.work-grid {
  column-count: 3;
  column-gap: 16px;
}

@media (min-width: 1200px) {
  .work-grid {
    column-count: 4;
  }
}

@media (max-width: 767px) {
  .work-grid {
    column-count: 2;
    column-gap: 12px;
  }
}

.work-item {
  break-inside: avoid;
  margin-bottom: 16px;
  display: block;
}

.work-card {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
  cursor: pointer;
  background: #000000;
}

.work-img,
.work-video {
  width: 100%;
  display: block;
  transition: transform .4s ease;
}

.work-card:hover .work-img {
  transform: scale(1.05);
}

.work-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}

.badge-after {
  background: var(--brand);
}

.badge-before {
  background: #e3534a;
}

/* video cards */
.work-video-card {
  cursor: default;
}

.work-video {
  background: #000000;
}

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: rgba(36, 99, 235, .92);
  color: #fff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease, background .2s;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .35);
  z-index: 2;
}

.video-play:hover {
  transform: scale(1.1);
  background: var(--brand);
}

.work-video-card.playing .video-play {
  opacity: 0;
  pointer-events: none;
}

/* CTA band on work page */
.work-cta {
  padding: 70px 0;
}

.work-cta-lead {
  max-width: 620px;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--brand-dark);
}

.btn-white:hover {
  background: #e8f0fe;
  color: var(--brand-dark);
}

/* ===== Our Work teaser (homepage) ===== */
.work-teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.work-teaser-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .1);
  transition: transform .3s ease;
}

.work-teaser-grid img:hover {
  transform: translateY(-6px);
}

@media (max-width: 575px) {
  .work-teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 15, 22, .93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox.open {
  display: flex;
}

.lb-figure {
  margin: 0;
  max-width: 92vw;
  text-align: center;
}

.lb-img {
  max-width: 92vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 12px 50px rgba(0, 0, 0, .55);
}

.lb-caption {
  color: #e6edf3;
  margin-top: 14px;
  font-size: .95rem;
  font-weight: 300;
}

.lb-close {
  position: absolute;
  top: 16px;
  right: 26px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  opacity: .85;
  transition: opacity .2s;
}

.lb-close:hover {
  opacity: 1;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
}

.lb-nav:hover {
  background: var(--brand);
}

.lb-prev {
  left: 20px;
}

.lb-next {
  right: 20px;
}

@media (max-width: 575px) {
  .lb-nav {
    width: 42px;
    height: 42px;
  }

  .lb-close {
    right: 16px;
  }
}

/* ===== Floating call ===== */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(36, 99, 235, .5);
  z-index: 999;
  animation: pulse 2s infinite;
}

.floating-call:hover {
  color: #fff;
  background: var(--brand-dark);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(36, 99, 235, .5);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(36, 99, 235, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(36, 99, 235, 0);
  }
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .main-nav .nav-link {
    margin: .2rem 0;
  }

  .btn-book {
    margin-top: 10px;
    display: inline-block;
  }

  .hero {
    min-height: 80vh;
  }

  .section {
    padding: 64px 0;
  }

  .section-title.text-start,
  .section-title.text-lg-start {
    text-align: center;
  }

  .club-img {
    height: 300px;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .hero-badges {
    gap: 14px;
    font-size: .85rem;
  }

  .quote-form {
    padding: 24px;
  }
}