:root {
  --bg:#fff;
  --ink:#222;
  --muted:#555;
  --brand:#1b98e0;
  --paper:#fff;
}

* { box-sizing:border-box; }

body {
  margin:0;
  min-width: 300px;
  font:16px/1.5 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color:var(--ink);
  background:#f6f7fb;
}

/* Basic links */
a { color:inherit; }

/* Top banner menu */
.banner {
  position:sticky;
  border-radius:0 0 24px 24px;
  margin-bottom:-24px;
  top:0;
  z-index:10;
  background:var(--bg);
  color:#010140;
}
.banner a {
  padding: 0%;
  font:12px/normal, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.banner-inner {
  max-width:1100px;
  height:50px;
  margin:0 200px 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0px 20px;
}
.banner-menu {
  margin:0 0 0 auto;
}
.brand {
  font-weight:700;
  letter-spacing:.2px;
  color:#010140;
  text-decoration:none;
}

.menu {
  min-width: 300px;
}

.menu a {
  color:#010140;
  opacity:.9;
  text-decoration:none;
  margin-left:18px;
  font-size: clamp(7px, 3vw, 15px);
  
}
.menu a:hover,
.menu a.active {
  opacity:1;
  text-decoration:underline;
}

/* Half-screen hero image */
.hero {
  height:300px;
  width:100%;
  background-image: var(--hero);
  background-size:cover;
  background-position:center;
  display:block;
  place-items:center;
  position:relative;
}

.hero-video {
  height:100%;
  width:100%;
  background-position:center;
  display:block;
  place-items:center;
  position:absolute;
}
.hero-video video {
  position:absolute;
  z-index:-1;
}
.hero-video img {
  position:absolute;
  z-index:-2;
}
.hero-overlay-box {
  height:300px;
  width:100%;
  max-width:900px;
  margin: 0 auto;
  display:flex;
  flex-direction:row;
  z-index:1;
  text-align:center;
  color:#fff;
}
.hero-overlay {
  width:80%;
  height:250px;
  border-radius:24px 24px 24px 24px;
  z-index:1;
  position: relative;
  text-align:center;
  color:#fff;
  text-shadow: 2px 4px 2px #000000;
  background-color:rgba(255, 255, 255, 0.4);
  margin-top:50px;
  margin-left:50px;
}

.hero-overlay-left {
  width:30%;
  min-width:100px;
  height:185px;
  border-radius:0 0 24px 24px;
  z-index:1;
  position:relative;
  text-align:center;
  color:#000000;
  background-color:#ffffff;
}

.hero-overlay-left img {
  margin: 24px 0 0 0;
}

.hero-overlay h1 {
  margin:10px;
  font-size: clamp(20px, 5vw, 36px);
}
.hero-overlay p {
  margin:10px;
  font-size: clamp(20px, 2.6vw, 20px);
}

.become-member-btn {
  display: inline-block;
  padding: 10px 22px;
  background-color: #0daaf9;   /* blue */
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-shadow:none;
}

/* Hover effect */
.become-member-btn:hover {
  background-color: #0056b3;   /* darker blue on hover */
}

/* White bottom half content section */
.page {
  background:#fff;
  border-radius:24px 24px 0 0;
  margin-top:-24px;
  position:relative;
  z-index:2;
  padding-bottom:80px; /* leaves room above footer on mobile */
}

/* Content blocks */
.container {
  max-width:1100px;
  margin:0 auto;
  padding:28px 20px;
}

/* Membership cards */
.cards {
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.card {
  border:1px solid #e8e8e8;
  border-radius:14px;
  padding:16px;
  box-shadow:0 2px 10px rgba(0,0,0,.03);
}
.card h3 {
  margin-top:0;
}
.card .price {
  font-weight:700;
  margin:8px 0 0;
}

/* Simple list styling */
.list {
  padding-left:18px;
}
.list li + li {
  margin-top:6px;
}

/* Form styles (used on contact page) */
label { display:block; margin:12px 0 6px; font-weight:600; }
input[type="text"],
input[type="email"],
textarea {
  width:100%;
  padding:10px 12px;
  border:1px solid #ddd;
  border-radius:10px;
  outline:none;
  font:inherit;
}
textarea { resize:vertical; }
button {
  background:var(--brand);
  color:#fff;
  border:0;
  padding:10px 16px;
  border-radius:10px;
  cursor:pointer;
  font:inherit;
}
button:hover {
  filter:brightness(.95);
}

.notice {
  padding:10px 12px;
  border-radius:10px;
  background:#e7f5ff;
  border:1px solid #cfe9ff;
  margin:12px 0;
}
.notice.error {
  background:#ffe7ea;
  border-color:#ffcfd6;
}

/* Footer with phone & email */
.footer {
  background:#0b132b;
  color:#fff;
  padding:18px 20px;
  font-size:15px;
}
.footer-inner {
  max-width:1100px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
.footer-left {
  align-items:center;
 }
.footer-right {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.footer-link {
  color:#1b98e0;
  text-decoration:none;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.footer-link:hover {
  text-decoration:underline;
}
.icon {
  font-size:18px;
  line-height:1;
  display:inline-block;
  transform:translateY(1px);
}
.divider {
  opacity:.4;
  font-weight:300;
}

/* Sticky "Call Now" bar for mobile */
.mobile-call-bar {
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:20;
  display:none; /* shown via media query */
}
.mobile-call-button {
  display:block;
  text-align:center;
  padding:14px 16px;
  font-size:16px;
  font-weight:700;
  text-decoration:none;
  background:var(--brand);
  color:#fff;
  box-shadow:0 -2px 10px rgba(0,0,0,.25);
}

/* Responsive tweaks */
@media (max-width: 680px) {
  .banner-inner {
    flex-wrap:wrap;
    gap:10px;
  }
  .menu {
    width:100%;
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
  .menu a { margin-left:0; }
  .cards {
    grid-template-columns:1fr;
  }
}

@media (min-width: 860px) {
  .cards {
    grid-template-columns:repeat(3, 1fr);
  }
}

/* Mobile-specific: show call bar and prevent overlap */
@media (max-width: 768px) {
  .mobile-call-bar {
    display:block;
  }
  body {
    padding-bottom:60px;
  }
}

/* Dark mode (optional) */
/*@media (prefers-color-scheme: dark) {
  :root {
    --paper:#0f1115;
    --ink:#e6e6e6;
    --muted:#aaa;
  }
  body {
    background:#0b0e12;
  }
  .page {
    background:var(--paper);
  }
}/*

/* Extra helpers for the simplified PHP structure */

/* Primary button variant (reuses button base styles) */
.button-primary {
  display: inline-block;
  text-decoration: none;
}

/* Service list: same spacing style as .list */
.service-list {
  padding-left: 18px;
}
.service-list li + li {
  margin-top: 6px;
}

/* Logo image in banner and hero left panel */
.logo-image {
  max-height: 40px;
}

/* Success notice (uses same structure as .notice / .notice.error) */
.notice.success {
  background: #e8ffe7;
  border-color: #c0f0be;
}

/* ============================
   Home page sections (index)
   ============================ */

.home-section {
  margin-bottom: 28px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.home-section--light {
  background: #ffffff;
}

.home-section--dark {
  background: #0b132b;
  color: #ffffff;
}

.home-section--band {
  border-radius: 16px;
}

/* inner padding so text never touches the edges */
.home-section-inner {
  padding: 24px 20px;
}

/* headings & subtitle */
.home-section-title {
  margin: 0 0 6px;
  font-size: clamp(22px, 3vw, 32px);
}

.home-section-subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.home-section--dark .home-section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* make all text nicely spaced in home sections */
.home-section p {
  margin: 0 0 12px;
  line-height: 1.6;
}

.home-section ul {
  margin: 0 0 12px 18px;
  padding: 0;
}

.home-section li + li {
  margin-top: 6px;
}

/* ====== simple responsive grids ====== */

.home-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
  gap: 24px;
  align-items: flex-start;
  margin-top: 12px;
}

.home-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.home-membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

/* mobile / tablet adjustments */
@media (max-width: 800px) {
  .home-grid-2 {
    grid-template-columns: 1fr;
  }
  .home-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* reuse existing .card look but tune it a bit for this page */
.home-section .card {
  border-radius: 14px;
}

.home-section--dark .card {
  background: #10162b;
  border-color: rgba(255,255,255,0.1);
  color: #ffffff;
}

/* ====== membership row inside first section ====== */

.home-memberships {
  margin-top: 24px;
}

.home-memberships-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.home-memberships-note {
  margin: 0 auto 16px;
  max-width: 620px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* center the “view plans” button */
.home-memberships-cta {
  margin-top: 16px;
  text-align: center;
}

/* button style specifically for home page; doesn’t touch existing buttons */
.home-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
}

.home-btn-primary {
  background: #1b98e0;
  color: #ffffff;
  border-color: #1b98e0;
}

.home-btn-primary:hover {
  background: #1479b0;
  border-color: #1479b0;
}

.home-btn-outline {
  background: transparent;
  color: #1b98e0;
  border-color: #1b98e0;
}

.home-section--dark .home-btn-outline {
  color: #a9d4ff;
  border-color: #a9d4ff;
}

.home-btn-outline:hover {
  background: rgba(255,255,255,0.06);
  color: #ffffff;
}

/* ====== CTA row in dark section ====== */

.home-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.home-cta-text h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.home-cta-text p {
  margin: 0;
  font-size: 14px;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* stack CTA on mobile */
@media (max-width: 700px) {
  .home-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ====== map iframe styling ====== */

.home-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* ====== social icon band ====== */

.home-social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.home-social-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.home-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-social-icons a {
  display: inline-block;
}

.home-social-icons img {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 50%;
  background:#ffffff;
  padding: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.home-social-icons img:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.4);
  opacity: 0.9;
}

/* stack text + icons on small screens */
@media (max-width: 700px) {
  .home-social-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ====== bottom CTA ====== */

.home-bottom-cta {
  text-align: center;
}

.home-bottom-cta h2 {
  margin: 0 0 8px;
}

.home-bottom-cta p {
  margin: 0 0 16px;
  font-size: 15px;
}

/* Form styles (used on memberships page) */
.yw-page-title {
    margin-top: 1.5rem;
    margin-bottom: 0.3rem;
  }

  .yw-page-intro {
    margin-bottom: 2rem;
    max-width: 48rem;
    line-height: 1.5;
  }

  .yw-plan-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
  }

  .yw-plan-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }

  .yw-plan-heading {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }

  .yw-plan-tagline {
    font-style: italic;
    margin-bottom: 0.75rem;
    color: #555555;
  }

  .yw-plan-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  .yw-plan-list li {
    margin-bottom: 0.35rem;
    line-height: 1.4;
  }

  .yw-checkmark {
    color: #2eaef1; /* light blue to match your logo */
    font-weight: bold;
    margin-right: 0.35rem;
  }

  /* Comparison table */

  .yw-plans-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
  }

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

  .yw-plans-table th,
  .yw-plans-table td {
    border: 1px solid #e0e0e0;
    padding: 0.6rem 0.8rem;
    text-align: center;
    vertical-align: top;
    font-size: 0.95rem;
  }

  .yw-plans-table th {
    background-color: #f7f9fb;
    font-weight: 600;
  }

  .yw-plans-table th.yw-feature-name,
  .yw-plans-table td.yw-feature-name {
    text-align: left;
    font-weight: 500;
    width: 30%;
  }

  .yw-plans-table tbody tr:nth-child(even) {
    background-color: #fafbfc;
  }

  .yw-dash {
    color: #cccccc;
    font-size: 1rem;
  }

  /* “?” info icons in table header */

  .yw-plan-info {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #2eaef1;
    color: #2eaef1;
    font-size: 0.8rem;
    line-height: 18px;
    text-align: center;
    text-decoration: none;
    margin-left: 4px;
    vertical-align: middle;
    cursor: pointer;
  }

  .yw-plan-info:hover {
    background-color: #2eaef1;
    color: #ffffff;
  }

  /* helper + notes */

  .yw-pricing-note {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    max-width: 48rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555555;
  }

  .yw-plans-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-left: 4px solid #2eaef1;
    background-color: #f7f9fb;
    font-size: 0.95rem;
    line-height: 1.5;
    width:100%;
  }

  /* Become a Member button */

  .yw-plans-cta-wrapper {
    margin-top: 2.5rem;
    text-align: center;
  }

  .yw-btn-member {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    background-color: #2eaef1;
    color: #ffffff;
    transition: background-color 0.2s ease, transform 0.1s ease;
  }

  .yw-btn-member:hover {
    background-color: #238ac0;
    transform: translateY(-1px);
  }

  .yw-btn-member:active {
    transform: translateY(0);
  }

  #keep-it-floating {
  scroll-margin-top: 100px;
}

  #keep-it-running {
  scroll-margin-top: 100px;
}

  #keep-it-ready {
  scroll-margin-top: 100px;
}

  #keep-it-pristine {
  scroll-margin-top: 100px;
}

  @media (max-width: 768px) {
    .yw-plans-table {
      font-size: 0.9rem;
    }
  }

  .yw-contact-page-sidebar {
  float: right;
  max-width: 320px;
  margin: 0 0 1.5rem 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--paper);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
}

.yw-contact-page-sidebar h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.yw-contact-page-sidebar ul {
  padding-left: 1.2rem;
  margin: 0.25rem 0 0;
}

/* Make it stack nicely on mobile */
@media (max-width: 768px) {
  .yw-contact-page-sidebar {
    float: none;
    max-width: none;
    margin: 1rem 0;
  }
}