/* ===============================
   RESET & BASE
=============================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f6f8;
  color: #222831;
  min-height: 100vh;
}

/* ===============================
   NAVBAR (DESKTOP)
=============================== */
.navbar {
  background: #fff;
  color: #10796f;
  box-shadow: 0 2px 8px rgba(26, 188, 156, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  font-family: 'Segoe UI', Arial, sans-serif;
  min-height: 66px;
  height: 66px;
  width: 100%;
  display: flex;
  align-items: center;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  padding: 0 1.2rem;
  position: relative;
  z-index: 105;
}
.logo {
  display: flex;
  align-items: center;
  height: 66px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.45rem;
  color: #10796f;
  letter-spacing: 0.5px;
  gap: 0.2em;
}
.logo img {
  height: 41px;
  margin-right: 0.4rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 500;
  margin: 0;
}
.nav-links li a {
  text-decoration: none;
  color: #222831;
  transition: color 0.2s;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-links li a:hover {
  color: #10796f;
}
.nav-actions {
  display: flex;
  gap: 1rem;
}
.btn-primary, .btn-outline {
  padding: 0.5rem 1.2rem;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.07rem;
  transition: background 0.2s, color 0.2s;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.btn-primary {
  background: #ffca28;
  color: #10796f;
  border: none;
  box-shadow: 0 2px 8px rgba(26,188,156,0.08);
}
.btn-primary:hover {
  background: #ffd95a;
}
.btn-outline {
  background: transparent;
  border: 2px solid #10796f;
  color: #10796f;
}
.btn-outline:hover {
  background: #10796f;
  color: #fff;
}
.nav-actions-mobile { display: none; }

/* ===============================
   BURGER MENU (MOBILE)
=============================== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
}
.burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #10796f;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.25s;
}

/* ===============================
   DROPDOWN (DESKTOP)
=============================== */
.dropdown { position: relative; }
.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  color: #222831;
  font-weight: 500;
  font-size: 1.1rem;
}
.arrow {
  border: solid #10796f;
  border-width: 0 2.5px 2.5px 0;
  display: inline-block;
  padding: 4px;
  margin-left: 4px;
  transition: transform 0.2s;
  transform: rotate(45deg);
  margin-bottom: 2px;
}
.dropdown.open > .dropdown-toggle .arrow { transform: rotate(-135deg); }

/* ===============================
   DESKTOP DROPDOWN (FULL WIDTH PANEL)
=============================== */
.navbar-dropdown-outer {
  position: fixed;
  top: 66px;
  left: 0;
  width: 100%;
  z-index: 101;
  display: none;
  justify-content: center;
  background: transparent;
  pointer-events: none;
}
.dropdown.open > .navbar-dropdown-outer {
  display: flex;
  pointer-events: auto;
}
.navbar-dropdown-inner {
  width: 100vw;
  max-width: 1100px;
  background: #fff;
  margin: 0 auto;
  box-shadow: 0 8px 24px 0 rgba(26,188,156,0.10);
  border-radius: 0 0 24px 24px;
  padding: 32px 8vw 32px 8vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 44px;
  box-sizing: border-box;
  min-width: 600px;
  justify-items: center;
  align-items: start;
}
.navbar-dropdown-inner li {
  list-style: none;
  margin-bottom: 16px;
  font-size: 1.08rem;
  padding-left: 0;
  text-align: center;
}
.navbar-dropdown-inner li a {
  display: block;
  color: #10796f;
  padding: 8px 0 8px 0;
  font-size: 1.16rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  text-align: center;
}
.navbar-dropdown-inner li a:hover {
  background: #f7f8fa;
  color: #03867c;
}

/* Hide mobile accordion dropdowns on desktop */
.dropdown-menu { display: none !important; }

/* ===============================
   MOBILE NAV OVERLAY & ACCORDIONS
=============================== */
@media (max-width: 900px) {
  .nav-links, .nav-actions-desktop { display: none; }
  .burger { display: flex; }
  .logo { font-size: 1.22rem; }
  .nav-container { padding: 0 0.7rem; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    background: #fff;
    position: fixed;
    margin-top: 1;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 200;
    padding: 32px 0 0 0;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.07);
    border-radius: 0;
    align-items: center;
    overflow-y: auto;
    transition: all 0.23s;
    font-size: 1.1rem;
  }
  .nav-links li { margin: 0.7rem 0; width: 100%; text-align: center; }
  .nav-links li a {
    font-size: 1.15rem; color: #222831; padding: 0.8rem 0;
    font-weight: 500; letter-spacing: 0.01em; width: 100%; display: block;
  }
  .dropdown-toggle {
    width: 100%; justify-content: center; font-size: 1.15rem;
    padding: 0.8rem 0; font-weight: 600; background: none; border: none;
  }
  .arrow { margin-bottom: 1.5px; }

  .navbar-dropdown-outer { display: none !important; }

  .dropdown-menu {
    display: none; flex-direction: column; align-items: center; background: none;
    box-shadow: none; position: static; padding: 0; width: 100%; margin: 0 auto; border-radius: 0;
  }
  .dropdown.open > .dropdown-menu {
    display: flex !important; margin-bottom: 0.7rem; animation: slideDropdown 0.15s;
  }
  @keyframes slideDropdown { from { opacity: 0; transform: translateY(-10px);} to { opacity: 1; transform: none;} }
  .dropdown-menu li { margin: 0; padding: 0; width: 100%; }
  .dropdown-menu li a {
    padding: 0.8rem 0; color: #10796f; font-weight: 500; font-size: 1.12rem; border-radius: 0;
    background: none; width: 100%; text-align: center;
  }
  .dropdown-menu li a:hover { background: #f7f8fa; color: #03867c; }
  .nav-actions-mobile {
    display: flex !important; flex-direction: column; gap: 1.2rem; width: 80%;
    margin: 2.4rem auto 0 auto; align-items: center;
  }
}

/* Responsive: stack desktop dropdown columns for tablets */
@media (max-width: 1100px) {
  .navbar-dropdown-inner {
    min-width: 320px;
    max-width: 98vw;
    padding: 16px 12px 14px 12px;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 16px;
  }
}
@media (max-width: 700px) {
  .navbar-dropdown-inner {
    min-width: 180px;
    padding: 0 0 0 4px;
    grid-template-columns: 1fr;
    gap: 0;
    border-radius: 0 0 12px 12px;
    box-shadow: none;
  }
  .navbar-dropdown-inner li { margin-bottom: 6px; }
}

/* --- End Dropdown Styles --- */

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto 0rem auto;
  padding: 0 2rem;
}

/* ...Footer and below unchanged... */

/* Footer (unchanged) */
.footer {
  background: #263238;
  color: #fff;
  padding-top: 2.5rem;
  padding-bottom: 0.7rem;
  margin-top: 0 !important;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding: 0 2rem 1.5rem 2rem;
}
.footer-section { flex: 1 1 180px; }
.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.6rem; }
.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  opacity: 0.9;
  transition: color 0.2s, opacity 0.2s;
}
.footer-section ul li a:hover { color: #ffca28; opacity: 1; }
.footer-section.social a { display: inline-block; margin-right: 0.8rem; opacity: 0.8; transition: opacity 0.2s; }
.footer-section.social a:hover { opacity: 1; }
.footer-section.social img { width: 26px; height: 26px; vertical-align: middle; }
.footer-bottom {
  border-top: 1px solid #37474f;
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #b0bec5;
}
.footer-bottom a { color: #ffca28; text-decoration: none; margin: 0 0.5rem; }
.footer-bottom a:hover { text-decoration: underline; }

/* Responsive tweaks for footer and layout */
@media (max-width: 900px) {
  .footer-container, main {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media (max-width: 700px) {
  .footer-container { flex-direction: column; gap: 0.5rem; }
  .nav-links { flex-direction: column; gap: 1rem; margin-top: 1rem; }
}
.footer-section.social {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.footer-section.social a {
  display: flex; align-items: center; gap: 0.6em; color: #fff; text-decoration: none;
  font-size: 1.09rem; opacity: 0.9; transition: color 0.18s, opacity 0.18s; font-weight: 500;
}
.footer-section.social a img {
  width: 26px; height: 26px; margin-right: 0.15em; vertical-align: middle;
  opacity: 0.88; transition: opacity 0.18s, transform 0.18s;
}
.footer-section.social a:hover { color: #ffca28; opacity: 1; }
.footer-section.social a:hover img { opacity: 1; transform: scale(1.08); }

/** Hero image and wheel **/
.hero-section {
  width: 100%;
  background: #f4f6f8;
  padding: 0;
}

/* ORIGINAL hero-content (used elsewhere; we override later) */
.hero-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;          /* will be overridden */
  min-height: 440px;            /* will be overridden */
  box-sizing: border-box;
  padding: 30px 24px 20px 24px; /* will be overridden */
}

.hero-inner-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  max-width: 950px;
  margin: 0 auto;
}

.hero-text {
  flex: 0 1 520px;
  min-width: 320px;
  max-width: 540px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-text p {
  font-size: 1.3rem;
  color: #333e42;
  margin-bottom: 36px;
  max-width: 550px;
  line-height: 1.5;
}

.cta-btn {
  background: #ffca28;
  color: #10796f;
  font-weight: 600;
  padding: 18px 46px;
  border-radius: 13px;
  text-decoration: none;
  font-size: 1.18rem;
  box-shadow: 0 2px 8px rgba(26, 188, 156, 0.08);
  border: none;
  transition: background 0.15s, color 0.15s;
  display: inline-block;
  margin: 0 auto;
}
.cta-btn:hover { background: #ffe199; color: #10796f; }

.hero-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 380px;
}
.hero-logo-big .hero-logo {
  max-width: 340px;
  width: 100%;
  min-width: 180px;
  height: auto;
}

@media (max-width: 1100px) {
  .hero-inner-center { max-width: 98vw; gap: 30px; }
  .hero-logo-big .hero-logo { max-width: 220px; }
  .hero-text h1 { font-size: 2.4rem; }
  .hero-text p { font-size: 1.05rem; }
}

@media (max-width: 800px) {
  .hero-inner-center {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 100vw;
  }
  .hero-logo-big .hero-logo { max-width: 130px; }
  .hero-content {
    padding: 10px 10px 10px 10px;
    min-height: unset;
  }
}
@media (max-width: 700px) {
  .hero-logo-box, .hero-logo-big { display: none !important; }
}

/* Image wheel */
.image-wheel-track { -ms-overflow-style: none; scrollbar-width: none; }
.image-wheel-track::-webkit-scrollbar { display: none; }

.image-wheel-section {
  width: 100vw;
  background: #fff;
  padding: 18px 0 16px 0;              /* halved to reduce gap below hero */
  margin-left: calc(50% - 50vw);
}
.image-wheel-track {
  display: flex; align-items: center; gap: 44px;
  overflow-x: scroll; width: 100vw; padding: 0 0;
  scroll-behavior: smooth; user-select: none; -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.wheel-img-wrapper {
  flex: 0 0 360px; height: 340px; background: #f4f6f8; border-radius: 32px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 24px rgba(26, 188, 156, 0.04); overflow: hidden; margin-left: 0;
}
.wheel-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  border-radius: 30px; transition: transform 0.18s;
}
.wheel-img-wrapper img:hover { transform: scale(1.05); }

@media (max-width: 700px) {
  .image-wheel-section { margin-left: -1 !important; width: 100vw !important; padding: 5px !important; overflow-x: hidden; }
  .image-wheel-track { width: 100vw !important; padding: 5px !important; gap: 5px !important; }
  .wheel-img-wrapper {
    width: 100vw !important; min-width: 100vw !important; max-width: 100vw !important;
    margin: 5px !important; border-radius: 18px !important; height: 210px !important;
  }
}

/** why love **/
.full-bleed-section {
  width: 100vw;
  position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  background: #2d3943; color: #fff; box-sizing: border-box; overflow-x: hidden;
}

/* Section padding */
.why-love-section { color: #fff; padding: 70px 0 70px 0; }
.why-love-inner {
  display: flex; justify-content: center; gap: 80px; max-width: 1250px; margin: 0 auto;
  flex-wrap: wrap; padding: 0 2vw;
}
.why-love-left { flex: 1 1 100px; min-width: 260px; max-width: 430px; margin-right: 0; }
.why-love-left h2 { font-size: 2.8rem; font-weight: 800; margin-bottom: 30px; line-height: 1.1; }
.why-love-left p { font-size: 1.13rem; color: #e6f0f5; margin-bottom: 0; line-height: 1.5; }
.why-love-grid {
  flex: 1 1 480px; min-width: 300px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 38px 34px; width: 100%;
}
.why-love-feature {
  background: rgba(38,50,56,0.92);
  border-radius: 20px; padding: 32px 20px 22px 20px; display: flex; flex-direction: column;
  align-items: flex-start; box-shadow: 0 2px 16px 0 rgba(20,20,30,0.09);
}
.why-love-icon { font-size: 2.2rem; margin-bottom: 17px; color: #ffca28; line-height: 1; align-items: center; }
.why-love-feature h4 { margin: 0 0 12px 0; font-size: 1.11rem; font-weight: 700; color: #fff; }
.why-love-feature p { font-size: 1.02rem; color: #e7ecf2; margin: 0; }
.why-love-feature .accent { color: #ffca28; font-weight: 700; }

@media (max-width: 1050px) {
  .why-love-inner { flex-direction: column; align-items: center; gap: 10px; padding: 0 1vw; }
  .why-love-left { text-align: center; margin-right: 0; max-width: 100vw; }
}

/* This ensures 2 columns on mobile, never just 1 column */
@media (max-width: 700px) {
  .why-love-section { padding: 38px 0 38px 0; }
  .why-love-inner { padding: 0 2vw; gap: 8px; }
  .why-love-left h2 { font-size: 2rem; }
  .why-love-grid { grid-template-columns: 1fr 1fr; gap: 14px 12px; margin-top: 0 !important; }
  .why-love-left p { margin-bottom: 0 !important; padding-bottom: 0 !important; }
  .why-love-feature { padding: 7px 7px 13px 7px; border-radius: 13px; align-items: center; text-align: center; }
}
@media (max-width: 700px) {
  .why-love-section { padding-top: 20px !important; padding-bottom: 20px !important; }
  .why-love-inner { gap: 0 !important; padding-top: 0 !important; padding-bottom: 0 !important; }
  .why-love-left h2 { margin-bottom: 12px !important; }
  .why-love-left p { margin-bottom: 0px !important; padding-bottom: 0 !important; }
}
@media (max-width: 700px) {
  .why-love-left p { margin-bottom: 25px !important; padding-bottom: 0 !important; }
}

/** fastest way to join **/
.how-works-section {
  width: 100vw;
  position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  background: #f8fafb; padding: 0;
}
.how-works-inner {
  max-width: 2000px;
  margin: 0 auto;
  padding: 80px 0 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.how-works-title { font-size: 2.5rem; font-weight: 700; text-align: center; color: #222831; margin-bottom: 22px; letter-spacing: -1px; }
.how-works-subtitle { font-size: 1.15rem; color: #3a4755; margin-bottom: 54px; text-align: center; max-width: 620px; }
.steps-list { display: flex; flex-direction: column; gap: 62px; width: 100%; }
.step { display: flex; align-items: center; justify-content: center; gap: 44px; margin-bottom: 0; }
.steps-list .step:nth-child(even) { flex-direction: row-reverse; }
.step-blob { position: relative; width: 60px; height: 60px; margin-right: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.steps-list .step:nth-child(even) .step-blob { margin-right: 0; margin-left: 28px; }
.step-blob svg { display: block; position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.step-blob-num { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); color: #fff; font-size: 1.5rem; font-family: inherit; font-weight: 800; z-index: 2; letter-spacing: -1px; text-shadow: 0 2px 8px rgba(30,30,30,0.16); }

.step-blob1 svg path { d: path("M37,6 Q48,13 54,29 Q58,46 41,53 Q24,60 11,47 Q2,33 12,18 Q20,7 37,6Z"); fill: #10796f; }
.step-blob2 svg path { d: path("M20,12 Q36,2 49,15 Q59,31 45,48 Q29,61 15,46 Q2,33 20,12Z"); fill: #ffca28; }
.step-blob3 svg path { d: path("M32,8 Q55,18 52,39 Q48,60 25,54 Q10,50 8,33 Q5,19 19,12 Q25,9 32,8Z"); fill: #222831; }

.step-content h4 { font-size: 1.5rem; font-weight: 700; margin: 0 0 12px 0; color: #1e2b37; }
.step-content p { margin: 0; color: #3a4755; font-size: 1.02rem; max-width: 380px; }
.step-img img { max-width: 155px; width: 100%; height: auto; }

.how-works-cta { width: 100%; text-align: center; margin-top: 84px; margin-bottom: 18px; }
.how-works-cta h3 { font-size: 2.6rem; font-weight: 700; margin-bottom: 32px; color: #18222b; letter-spacing: -1px; }
.cta-btn {
  display: inline-block; padding: 18px 42px; background: #ffca28; color: #10796f; font-weight: 700;
  font-size: 1.15rem; border-radius: 28px; text-decoration: none; box-shadow: 0 2px 12px 0 rgba(20,20,30,0.08);
  transition: background 0.15s, color 0.15s; border: none;
}
.cta-btn:hover { background: #ffe08b; color: #10796f; }

@media (max-width: 1100px) {
  .how-works-inner { max-width: 99vw; padding: 42px 0 42px 0; }
  .step-img img { max-width: 120px; }
  .steps-list { gap: 36px; }
}
@media (max-width: 900px) {
  .how-works-inner { padding: 32px 0 32px 0; }
  .steps-list .step, .steps-list .step:nth-child(even) {
    flex-direction: column; align-items: center; gap: 14px; margin-bottom: 30px;
  }
  .step-blob, .steps-list .step:nth-child(even) .step-blob { margin: 0 0 10px 0 !important; }
  .step-content h4, .step-content p { text-align: center; max-width: 99vw; }
  .step-img img { max-width: 90vw; margin: 0 auto; }
  .how-works-cta h3 { font-size: 1.65rem; margin-bottom: 19px; }
  .cta-btn { padding: 15px 28px; font-size: 1rem; border-radius: 24px; }
}
@media (max-width: 600px) {
  .how-works-title { font-size: 1.5rem; margin-bottom: 13px; }
  .how-works-subtitle { font-size: 1.02rem; margin-bottom: 27px; }
  .step-content h4 { font-size: 1.12rem; margin-bottom: 7px; }
  .step-img img { max-width: 90vw; }
  .step-blob { width: 40px; height: 40px; }
  .step-blob-num { font-size: 1.05rem; }
}

/* Accordion Section */
.accordion-section {
  width: 100vw; position: relative; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw; background: #222c36; color: #fff;
  padding: 70px 0 45px 0;
}
.accordion-inner { max-width: 1200px; margin: 0 auto; padding: 0 3vw; display: flex; flex-direction: column; align-items: center; }
.accordion-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 18px; text-align: center; }
.accordion-subtitle { font-size: 1.18rem; color: #b6c2cf; margin-bottom: 32px; text-align: center; }
.accordion-btn {
  background: #ffca28; color: #222c36; font-weight: 600; padding: 18px 46px; border-radius: 13px;
  text-decoration: none; font-size: 1.13rem; margin-bottom: 36px; display: inline-block;
  transition: background 0.17s;
}
.accordion-btn:hover { background: #ffd95a; color: #10796f; }
.accordion-divider { width: 100%; border: none; border-top: 1.5px solid #2f3944; margin: 38px 0 28px 0; }
.accordion-block { width: 100%; margin-bottom: 12px; }
.accordion-toggle {
  width: 100%; background: none; border: none; color: #fff; font-size: 1.32rem; font-weight: 600;
  text-align: left; padding: 22px 0 22px 0; display: flex; justify-content: space-between; align-items: center;
  outline: none; cursor: pointer; border-bottom: 1px solid #2f3944; transition: background 0.18s;
}
.accordion-toggle:hover, .accordion-toggle[aria-expanded="true"] { background: #232b36; }
.accordion-icon { font-size: 2.0rem; font-weight: 300; color: #ffca28; margin-left: 8px; min-width: 32px; display: inline-block; transition: transform 0.18s; }
.accordion-content { display: none; padding: 12px 0 18px 0; animation: fadeIn 0.27s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-9px);} to { opacity: 1; transform: none;} }
.accordion-columns { display: flex; gap: 42px; margin: 0 0 0 0; flex-wrap: wrap; }
.accordion-columns ul { list-style: none; padding: 0; margin: 0; }
.accordion-columns li { font-size: 1.03rem; color: #dbe6f3; margin-bottom: 9px; }

@media (max-width: 900px) {
  .accordion-inner { padding: 0 4vw; }
  .accordion-columns { flex-direction: column; gap: 10px; }
}

/* Hide content except first block by default */
.accordion-block .accordion-content { display: none; }

/* Profile mini menu */
.profile-dropdown { position: relative; display: inline-block; }
.profile-btn { background: none; border: none; cursor: pointer; font: inherit; color: #185cc6; display: flex; align-items: center; }
.profile-icon { width: 24px; height: 24px; margin-right: 0.4em; }
.profile-menu {
  display: none; position: absolute; right: 0; top: 110%; background: #fff; border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.07); min-width: 160px; z-index: 100; padding: 0.5em 0;
}
.profile-dropdown:hover .profile-menu, .profile-dropdown:focus-within .profile-menu { display: block; }
.profile-menu li { list-style: none; }
.profile-menu a {
  display: block; color: #185cc6; padding: 0.75em 1.5em; text-decoration: none; transition: background 0.2s;
}
.profile-menu a:hover { background: #f3f7fe; }
.profile-icon, .navbar .profile-pic {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover; background: #e6f8ec;
  border: 2px solid #43A047; display: inline-block; vertical-align: middle; box-shadow: 0 1px 6px rgba(67,160,71,0.09);
}

/* ==========================================================
   HERO — DEFINITIVE OVERRIDES (aligned columns, no conflicts)
   Paste stays at the end so it wins specificity-wise.
========================================================== */

/* Hug the navbar and neutralize old hero flex rules */
.hero-content {
  display: block !important;
  min-height: 0 !important;
  padding: 8px 16px !important;
  align-items: unset !important;
}

/* The actual two-column layout */
.hero-split {
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 12px !important;
  display: grid !important;
  grid-template-columns: minmax(440px, 480px) 1fr;  /* form left, content right */
  gap: 28px;
  align-items: start !important;                     /* top-align both columns */
}

/* Make sure neither column self-offsets */
.hero-split > .callback-form,
.hero-split > .hero-right,
.hero-left,
.hero-right {
  align-self: start !important;
  margin: 0 !important;
}

/* Form card (kept styled, with consistent top padding) */
.callback-form {
  width: 100%;
  max-width: 100%;
  background: #fff;
  border: 1px solid #e6ecf1;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(16,121,111,0.08);
  padding: 22px 22px 18px 22px;       /* ← 22 top padding */
}
.callback-form .form-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1e2b37;
  margin: 0 0 6px !important;         /* ← no mystery top margin */
}
.callback-form .form-subtitle {
  font-size: .98rem;
  color: #51606d;
  margin: 0 0 14px !important;
}
.callback-form .form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 10px;
}
.callback-form .form-field { display:flex; flex-direction:column; gap:6px; min-width:0; }
.callback-form label { font-size:.92rem; font-weight:600; color:#344250; opacity:.95; }
.callback-form input[type="text"],
.callback-form input[type="tel"],
.callback-form input[type="email"],
.callback-form input[type="date"],
.callback-form select {
  appearance:none; -webkit-appearance:none;
  width:100%; background:#f9fbfc; border:1px solid #dfe6ed; border-radius:12px;
  padding:12px 14px; font-size:1rem; color:#222831; outline:none;
  transition:border-color .15s, box-shadow .15s, background .15s;
  box-sizing:border-box;
}
.callback-form input::placeholder { color:#8aa0b0; }
.callback-form input:focus, .callback-form select:focus {
  border-color:#10796f; box-shadow:0 0 0 4px rgba(16,121,111,.12); background:#fff;
}
.callback-form input:hover, .callback-form select:hover { border-color:#cfd9e2; }
.callback-form select {
  background-image:
    linear-gradient(45deg,transparent 50%,#10796f 50%),
    linear-gradient(135deg,#10796f 50%,transparent 50%),
    linear-gradient(to right,transparent,transparent);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px),
    100% 0;
  background-size:6px 6px,6px 6px,2.6em 100%;
  background-repeat:no-repeat;
  padding-right:2.8em;
}
.callback-form .hp-field { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }
.callback-form .form-submit {
  width:100%; margin-top:6px; padding:16px 22px; border-radius:14px;
  font-size:1.08rem; font-weight:700; background:#ffca28; color:#10796f; border:none;
  box-shadow:0 2px 10px rgba(26,188,156,.08); cursor:pointer;
  transition:background .15s ease, transform .02s ease;
}
.callback-form .form-submit:hover { background:#ffd95a; }
.callback-form .form-submit:active { transform:translateY(1px); }

/* Right column: visually align top content to the form title line.
   Form has 22px padding + 1px border on top → add 23px here. */
.hero-right {
  text-align: center;
  padding-top: 23px !important;      /* ← the key baseline fix */
}
.hero-right .hero-logo-box {
  display:flex; justify-content:center; align-items:center;
  margin: 0 0 8px !important;        /* no top margin so it doesn’t nudge down */
}
.hero-right .hero-logo { max-width:240px; height:auto; display:block; }
.hero-right .hero-text h1 {
  margin: 0 0 10px !important;
  font-size: 2.8rem; font-weight: 800; color:#111; line-height:1.08;
}
.hero-right .hero-text p {
  margin: 0 0 18px !important;
  font-size: 1.08rem; color:#333e42; line-height:1.48;
}

/* Responsive hero */
@media (max-width: 1100px) {
  .hero-split { grid-template-columns: 440px 1fr; }
  .hero-right .hero-logo { max-width: 210px; }
}
@media (max-width: 1000px) {
  .hero-split { grid-template-columns: 1fr; gap: 16px; }
  .hero-right { padding-top: 0 !important; } /* stacked: no compensation needed */
}
@media (max-width: 700px) {
  .callback-form { padding: 16px 14px; border-radius: 14px; }
  .callback-form .form-row { grid-template-columns: 1fr; gap: 10px; }
  .hero-right .hero-logo { max-width: 170px; }
  .hero-right .hero-text h1 { font-size: 2rem; }
}
/* === HERO: subtle padding + logo between H1 and paragraph, both lowered === */

/* a little breathing room around the whole hero */
.hero-shell {
  padding: 32px 48px !important;
}

/* make the right column a simple grid so we can reorder elements cleanly */
.hero-right {
  display: grid !important;
  grid-auto-rows: min-content;
  justify-items: center;     /* center logo & text */
  row-gap: 14px;             /* gentle spacing between rows */
  padding-top: 28px !important;  /* nudge the whole block down a bit */
}

/* flatten .hero-text so its children can be placed on the parent grid */
.hero-right .hero-text { display: contents; }

/* order: LOGO → H1 → PARAGRAPH → BUTTON */
.hero-right .hero-logo-box { grid-row: 1; margin: 0 0 10px !important; }
.hero-right .hero-text h1 { grid-row: 2; margin: 0 0 8px !important; }
.hero-right .hero-text p { grid-row: 3; margin: 6px 0 0 !important; }
.hero-right .cta-btn { grid-row: 4; margin-top: 8px; }


/* keep the logo nicely centered and unshifted */
.hero-right .hero-logo-box .hero-logo { display: block; margin: 0 auto; }
/* === MOBILE FORM FIX (Centered + Fit to Screen) === */
@media (max-width: 700px) {
  .hero-split {
    grid-template-columns: 1fr !important;
    justify-items: center !important; /* center form horizontally */
    gap: 18px !important;
    padding: 0 0 !important;       /* padding on sides */
  }

  .callback-form {
    width: 100% !important;          /* take full available width */
    max-width: 500px !important;     /* prevent overflow */
    margin: 0 auto !important;       /* center the form */
    padding: 9px 18px !important;   /* inner padding */
    border-radius: 18px !important;
    box-sizing: border-box;
  }

  .callback-form .form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .callback-form input,
  .callback-form select {
    width: 100% !important;
    font-size: 1rem !important;
    padding: 14px 16px !important;
  }

  .callback-form .form-submit {
    width: 100% !important;
    padding: 16px 22px !important;
    font-size: 1.05rem !important;
  }
}
/* Keep thank-you box the same size as form */
#leadMount {
  position: relative;
  width: 100%;
}

#leadForm,
#leadThanks {
  width: 100%;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: opacity 0.3s ease;
}

/* When thank-you is visible, match form’s height and center text on desktop */
#leadThanks {
  display: none;
}

/* Desktop layout centering */
@media (min-width: 801px) {
  #leadMount {
    min-height: 600px; /* keeps container height stable */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #leadThanks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
  }
}

.call-us-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #10796f;
  color: white;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Initial hover state */
.call-us-btn:hover {
  background-color: #0e6d63;
  transform: scale(1.05);
}

/* Pulse animation */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16,121,111, 0.6); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(16,121,111, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16,121,111, 0); }
}

.call-us-btn.pulsing {
  animation: pulse 1.5s infinite;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px; /* sits above call button */
  left: 20px;
  background-color: #25D366;
  color: white;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}
/* =========================
   SERVICE HERO IMAGE — HARD SIZE LOCK (GUARANTEED)
   ========================= */

.service-page .hero-section { padding-top: 90px; }

.service-page .hero-section .hero-split{
  display: flex;
  align-items: center;
  min-height: 78vh;
}

/* keep right side centered */
.service-page .hero-section .hero-right{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FORCE the card to a real size (same on every page) */
.service-page .hero-section .hero-logo-box{
  width: 760px;              /* ✅ identical width */
  height: 427px;             /* ✅ identical height (760 * 9/16 = 427.5) */
  border-radius: 22px;
  overflow: hidden;
}

/* FORCE ANY IMAGE inside to fill the card */
.service-page .hero-section .hero-logo-box img{
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;   /* ✅ kills global max-width caps */
  object-fit: cover;
  display: block;
}

/* Mobile: card becomes responsive */
@media (max-width: 900px){
  .service-page .hero-section .hero-logo-box{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}




/* ==========================================================
   MEMBERSHIPS PAGE (Carcierge-style timeline)
========================================================== */

/* HERO */
.membership-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #f4f6f8;
  overflow: hidden;
}

.membership-hero-media {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}
.membership-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02);
}

.membership-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 18px 46px 18px;
  text-align: center;
}

.membership-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #222831;
  margin: 12px 0 10px 0;
  letter-spacing: -1px;
}

.membership-hero-subtitle {
  max-width: 820px;
  margin: 0 auto 18px auto;
  color: #3a4755;
  font-size: 1.12rem;
  line-height: 1.55;
}

.membership-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}
.membership-hero-actions .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
}

/* SECTIONS */
.membership-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #f4f6f8;
  padding: 70px 0;
}

.membership-section-dark {
  background: #222c36;
  color: #fff;
}

.membership-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.membership-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin: 0 0 10px 0;
  color: #222831;
  text-align: center;
}

.membership-section-dark .membership-title {
  color: #fff;
}

.membership-subtitle {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 34px auto;
  color: #51606d;
  line-height: 1.55;
  font-size: 1.07rem;
}

.membership-section-dark .membership-subtitle {
  color: #b6c2cf;
}

/* TIMELINE */
.rr-timeline {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  padding: 12px 0;
}

/* The vertical line track */
.rr-timeline-line {
  position: relative;
  width: 60px;
  display: flex;
  justify-content: center;
}
.rr-timeline-line::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 999px;
  background: rgba(34,40,49,0.12); /* light track */
}

/* The fill that grows to dark */
.rr-timeline-line-fill {
  position: absolute;
  top: 0;
  width: 6px;
  height: 0%;
  border-radius: 999px;
  background: #222831; /* "turns black" */
  transition: height 0.08s linear;
}

.rr-timeline-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Each step row */
.rr-step {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  align-items: start;
  padding: 8px 0;
}

/* Dot */
.rr-step-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  margin-top: 16px;
  background: #fff;
  border: 3px solid rgba(34,40,49,0.25); /* inactive */
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Card */
.rr-step-card {
  background: #fff;
  border: 1px solid #e6ecf1;
  border-radius: 18px;
  padding: 18px 18px 14px 18px;
  box-shadow: 0 10px 26px rgba(16,121,111,0.06);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}

.rr-step-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1e2b37;
}

.rr-step-card p {
  margin: 0 0 10px 0;
  color: #51606d;
  line-height: 1.55;
}

.rr-step-card ul {
  margin: 0;
  padding-left: 18px;
  color: #3a4755;
}
.rr-step-card li { margin-bottom: 6px; }

/* Active / Done states */
.rr-step.is-active .rr-step-dot,
.rr-step.is-done .rr-step-dot {
  border-color: #222831;
}

.rr-step.is-done .rr-step-dot {
  background: #222831; /* filled dot */
}

.rr-step.is-active .rr-step-card {
  border-color: rgba(34,40,49,0.35);
  transform: translateY(-1px);
}

/* Benefits grid */
.membership-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.membership-benefit {
  background: rgba(38,50,56,0.92);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 2px 16px rgba(20,20,30,0.10);
}

.membership-benefit-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #ffca28;
}

.membership-benefit h4 {
  margin: 0 0 8px 0;
  font-size: 1.08rem;
  font-weight: 800;
  color: #fff;
}

.membership-benefit p {
  margin: 0;
  color: #dbe6f3;
  line-height: 1.5;
  font-size: 0.98rem;
}

/* Enquire form */
.membership-form {
  background: #fff;
  border: 1px solid #e6ecf1;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(16,121,111,0.06);
  max-width: 860px;
  margin: 0 auto;
}

.membership-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 10px;
}

.membership-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.membership-field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #344250;
}

.membership-field input,
.membership-field select {
  width: 100%;
  background: #f9fbfc;
  border: 1px solid #dfe6ed;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  color: #222831;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.membership-field input:focus,
.membership-field select:focus {
  border-color: #10796f;
  box-shadow: 0 0 0 4px rgba(16,121,111,.12);
  background: #fff;
}

.membership-submit {
  width: 100%;
  margin-top: 8px;
  border-radius: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .membership-hero-media { height: 300px; }
  .membership-benefits { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .membership-hero-title { font-size: 2.2rem; }
  .membership-section { padding: 44px 0; }

  .rr-timeline {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }
  .rr-timeline-line { width: 46px; }

  .membership-form-row { grid-template-columns: 1fr; }
  .membership-benefits { grid-template-columns: 1fr 1fr; gap: 12px; }
}


/* =========================
   MEMBERSHIPS PAGE
   ========================= */

/* HERO: image with centered overlay content */
.membership-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #0f1c24;
}

.membership-hero-media {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.membership-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

/* dark overlay so text is readable */
.membership-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.40),
    rgba(0,0,0,0.55)
  );
  pointer-events: none;
}

.membership-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 18px;
}

.membership-hero-inner { max-width: 900px; }

.membership-hero-title {
  color: #fff;
  font-size: 3.0rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin: 0 0 10px 0;
}

.membership-hero-subtitle {
  color: rgba(255,255,255,0.90);
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0 auto 18px auto;
  max-width: 780px;
}

.membership-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

/* hero buttons: centered + white text + hover green/yellow */
.membership-hero-actions .hero-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(0,0,0,0.18);
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
}

.membership-hero-actions .hero-btn:hover {
  background: #10796f;        /* green hover */
  border-color: #10796f;
}

.membership-hero-actions .hero-btn.hero-btn--alt:hover {
  background: #ffca28;        /* yellow hover */
  border-color: #ffca28;
  color: #0f1c24;             /* improves contrast on yellow */
}

.membership-hero-actions .hero-btn:active { transform: translateY(1px); }

/* Section wrapper */
.membership-section { padding: 70px 0; }
.membership-wrap { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.membership-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #222831;
  margin-bottom: 12px;
}

.membership-subtitle {
  text-align: center;
  color: #51606d;
  margin: 0 auto 30px auto;
  max-width: 820px;
  line-height: 1.55;
}

/* ENQUIRE section background (different colour above, like your reference) */
.membership-enquire-section {
  background: #0f1722;
}

/* Split: left panel + right image */
.membership-enquire-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(0,0,0,0.16);
}

/* Left dark panel */
.membership-enquire-panel {
  background: #121a26;
  padding: 44px 42px;
  color: #fff;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.membership-enquire-title {
  font-size: 2.1rem;
  font-weight: 900;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.membership-enquire-copy {
  margin: 0 0 12px 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  max-width: 560px;
}

/* Steps (1—2—3) */
.membership-steps {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 18px 0;
}

.membership-step {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.9);
}

.membership-step.is-active {
  border-color: #ffca28;
  color: #ffca28;
}

.membership-step-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.18);
}

/* Form (all inputs styled consistently) */
.membership-dark-form {
  margin-top: 6px;
  max-width: 560px;
}

.membership-dark-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 14px;
}

.membership-dark-row.single {
  grid-template-columns: 1fr;
}

.membership-dark-field label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 8px 0;
  color: rgba(255,255,255,0.88);
}

.membership-dark-field input {
  width: 100%;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 0 16px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.membership-dark-field input:focus {
  border-color: #ffca28;
  box-shadow: 0 0 0 4px rgba(255,202,40,0.18);
  background: rgba(255,255,255,0.08);
}

/* Continue to Payment button */
.membership-dark-cta {
  display: block;
  text-align: center;
  background: #ff143c;
  color: #fff;
  font-weight: 900;
  padding: 16px 16px;
  border-radius: 14px;
  text-decoration: none;
  margin-top: 10px;
  box-shadow: 0 10px 26px rgba(255,20,60,0.20);
  transition: transform .08s ease, filter .15s ease;
}

.membership-dark-cta:hover { filter: brightness(1.05); }
.membership-dark-cta:active { transform: translateY(1px); }

.membership-small-note {
  margin-top: 12px;
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Right image fills the full height */
.membership-enquire-right {
  background: #fff;
  min-height: 720px;
}

.membership-enquire-right img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1000px) {
  .membership-enquire-split {
    grid-template-columns: 1fr;
  }
  .membership-enquire-panel {
    min-height: auto;
    padding: 34px 22px;
  }
  .membership-enquire-right {
    min-height: 320px;
  }
  .membership-dark-row {
    grid-template-columns: 1fr;
  }
  .membership-hero-media { height: 360px; }
  .membership-hero-title { font-size: 2.2rem; }
}
