/* ========= NAVBAR — navy bg, white text, fixed top — match live site ========= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  color: var(--white);
  padding: 14px 16px 0;
  font-size: 17px;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 9px 12px 9px 22px;
  background-color: var(--primary);
  -webkit-backdrop-filter: blur(11.69px);
  backdrop-filter: blur(11.69px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  box-shadow: 0 14px 34px -12px rgba(0, 40, 107, 0.45), 0 2px 6px rgba(0, 40, 107, 0.16);
}
.nav-brand { display: flex; align-items: center; max-width: 200px; }
.nav-brand img { width: 100%; height: auto; max-height: 44px; object-fit: contain; }

.nav-menu-block { display: flex; align-items: center; }
.nav-menu-links-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  white-space: nowrap;
  padding: 8px 13px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-link:hover, .nav-link.is-active { background: rgba(255, 255, 255, 0.12); color: var(--white); }
.nav-link__phone-icon { width: 14px; height: 14px; margin-right: 4px; vertical-align: middle; }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  padding: 8px 13px;
  border-radius: 10px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-dropdown:hover .nav-dropdown__toggle,
.nav-dropdown__toggle:hover { background: rgba(255, 255, 255, 0.12); color: var(--white); }
.nav-dropdown__caret {
  width: 10px; height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
  margin-top: -3px;
}
.nav-dropdown__list {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 7px;
  padding: 18px 20px;
  min-width: 240px;
  display: grid;
  gap: 12px;
  list-style: none; margin: 0;
  box-shadow: 0 16px 40px rgba(17, 31, 59, 0.15);
  opacity: 0; visibility: hidden;
  transition: all var(--dur) var(--ease);
}
.nav-dropdown:hover .nav-dropdown__list,
.nav-dropdown:focus-within .nav-dropdown__list {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__list a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.3s var(--ease);
}
.nav-dropdown__list a:hover { color: var(--brand-secondary); }

/* MEGA MENU variant: 4 service categories, anchored to viewport center */
.nav-dropdown__list--mega {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(190px, 1.1fr) minmax(180px, 1fr) minmax(200px, 1.1fr);
  gap: 28px;
  padding: 28px 32px;
  min-width: min(960px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  border: 1px solid rgba(0, 40, 107, 0.08);
  position: fixed;
  top: 78px;
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(8px);
}
.nav-dropdown__list--mega5 {
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  min-width: min(1120px, calc(100vw - 48px));
}
.nav-dropdown:hover .nav-dropdown__list--mega,
.nav-dropdown:focus-within .nav-dropdown__list--mega {
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.nav-dropdown__group-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  padding-bottom: 8px;
  margin-bottom: 4px;
  border-bottom: 2px solid var(--brand-secondary);
}
.nav-dropdown__list--mega a {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
  padding: 4px 0;
  text-decoration: none;
}
.nav-dropdown__group-cta {
  margin-top: 8px;
  padding-top: 12px !important;
  border-top: 1px dashed rgba(0, 40, 107, 0.15);
  font-weight: 700 !important;
  color: var(--brand-secondary) !important;
}
.nav-dropdown__group-cta:hover { color: var(--primary) !important; }

@media (max-width: 1100px) {
  .nav-dropdown__list--mega {
    grid-template-columns: 1fr 1fr;
    min-width: 540px;
    max-width: 640px;
  }
}
@media (max-width: 720px) {
  .nav-dropdown__list--mega {
    grid-template-columns: 1fr;
    min-width: 280px;
    max-width: 100%;
    padding: 20px 22px;
    gap: 20px;
  }
}

/* NAV CTA BUTTON */
.nav-cta-block { display: inline-flex; }
.button-secondary-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--white);
  color: var(--white);
  white-space: nowrap;
  border-radius: 10px;
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  transition: all var(--dur) var(--ease);
}
.button-secondary-small:hover {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: var(--primary);
}
/* Floating-pill nav CTA: solid yellow */
.nav-cta-block .button-secondary-small,
.nav-cta-block-mobile .button-secondary-small {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: var(--primary);
  font-weight: 700;
}
.nav-cta-block .button-secondary-small:hover,
.nav-cta-block-mobile .button-secondary-small:hover {
  background: #ffcb5d;
  border-color: #ffcb5d;
  color: var(--primary);
}

/* MOBILE TOGGLE */
.nav-menu-button { display: none; }
@media (max-width: 991px) {
  .nav-container { padding: 8px 12px 8px 18px; }
  .nav-menu-button {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 42px; height: 42px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .nav-menu-button span {
    width: 22px; height: 2px; background: #fff;
    transition: transform var(--dur), opacity var(--dur);
  }
  .navbar.is-open .nav-menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .navbar.is-open .nav-menu-button span:nth-child(2) { opacity: 0; }
  .navbar.is-open .nav-menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-menu-block {
    position: fixed;
    inset: 92px 0 auto 0;
    background: var(--primary);
    flex-direction: column;
    padding: 24px 20px 36px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    transform: translateY(-120%);
    transition: transform var(--dur) var(--ease);
  }
  .navbar.is-open .nav-menu-block { transform: none; }
  .nav-menu-links-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
  }
  .nav-dropdown__list {
    position: static;
    opacity: 1; visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 8px 0 0 16px;
    min-width: 0;
    background: transparent;
  }
  .nav-dropdown__list a { color: rgba(255,255,255,0.85); }
  .nav-cta-block { display: none; }
  .nav-cta-block-mobile {
    display: inline-flex;
    margin-top: 18px;
  }
}
@media (min-width: 992px) {
  .nav-cta-block-mobile { display: none; }
}

/* ========= BUTTONS — match live site primary-button ========= */
.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-secondary);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  transition: transform 0.3s var(--ease), background var(--dur), color var(--dur);
  overflow: hidden;
}
.primary-button:hover { transform: scale(1.04); color: var(--white); }
.primary-button .button-text-primary,
.primary-button .button-text-primary-v1 {
  color: var(--primary);
  font-weight: 700;
}
.primary-button.blue { background: var(--primary); }
.primary-button.blue .button-text-primary,
.primary-button.blue .button-text-primary-v1 { color: var(--white); }
.primary-button.outline {
  background: transparent;
  border: 1.5px solid var(--white);
  color: var(--white);
}
.primary-button.outline:hover {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: var(--primary);
}
.primary-button.outline.navy {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.primary-button.outline.navy:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.primary-button.outline .button-text-primary,
.primary-button.outline .button-text-primary-v1 { color: inherit; }
.button-icon { width: 24px; height: 24px; }

/* Legacy .btn classes (kept so existing pages don't break) */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 20px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px;
  transition: transform var(--dur) var(--ease), background var(--dur), color var(--dur);
  white-space: nowrap;
}
.btn:hover { transform: scale(1.04); }
.btn--primary { background: var(--brand-secondary); color: var(--primary); }
.btn--primary:hover { background: #ecaa2c; color: var(--primary); }
.btn--navy { background: var(--primary); color: #fff; }
.btn--navy:hover { background: #003d99; color: #fff; }
.btn--dark { background: var(--bg-color-01); color: #fff; }
.btn--dark:hover { background: #2a2b2a; color: #fff; }
.btn--ghost { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn--ghost:hover { background: var(--primary); color: #fff; }
.btn--lg { padding: 16px 22px; font-size: 17px; }

/* ========= SECTION CAPTION (tag wrapper above headings) ========= */
.section-caption {
  display: inline-flex;
  margin-bottom: var(--space-3);
}

/* ========= CARDS ========= */
.card {
  background: var(--white);
  border: 1px solid #e2e2e2;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  transition: border-color var(--dur), box-shadow var(--dur), transform var(--dur);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 40, 107, 0.08);
  transform: translateY(-3px);
}
.card h3 { margin-bottom: 8px; font-size: 1.15rem; text-transform: uppercase; }
.card p { font-size: var(--fs-sm); color: var(--text-color-02); }
.card__link {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: var(--fs-xs); font-weight: 700;
  color: var(--primary);
  padding-top: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card--dark {
  background: var(--bg-color-01);
  border-color: #2a2b2a;
}
.card--dark h3, .card--dark p { color: #fff; }
.card--dark p { color: rgba(255,255,255,0.7); }
.card--dark .card__link { color: var(--brand-secondary); }

/* ========= GRID ========= */
.grid { display: grid; gap: var(--space-3); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ========= MEDIA FRAMES ========= */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.media-frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.media-frame--portrait { aspect-ratio: 3 / 4; }
.media-frame--square { aspect-ratio: 1 / 1; }
.media-frame--wide { aspect-ratio: 16 / 10; }

/* ========= SPLIT (2-col content / media) ========= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ========= TESTIMONIALS ========= */
.testimonial {
  background: var(--white);
  border: 1px solid #e2e2e2;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.testimonial__stars { color: var(--brand-secondary); font-size: 1.1rem; letter-spacing: 0.1em; }
.testimonial__quote { font-size: 1rem; line-height: 1.65; color: var(--text-color-01); margin: 0; text-transform: none; }
.testimonial__author {
  font-family: var(--font-display);
  font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-color-04);
}

/* ========= FEATURE LIST ========= */
.feature-list { list-style: none; padding: 0; display: grid; gap: var(--space-2); margin: var(--space-3) 0; }
.feature-list li {
  position: relative; padding-left: 2rem;
  color: var(--text-color-01);
  text-transform: none;
  font-weight: 500;
}
.feature-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.5rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand-secondary);
}
.feature-list li::after {
  content: "✓";
  position: absolute; left: 4px; top: 0.35rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

/* ========= SECTION HELPERS ========= */
.section-header { max-width: 760px; margin-bottom: var(--space-5); }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.center .section-caption { justify-content: center; }
.divider { height: 1px; background: #e2e2e2; margin: 0; border: 0; }

.badge {
  display: inline-flex;
  padding: 0.3rem 0.7rem; border-radius: var(--radius);
  background: var(--brand-secondary); color: var(--primary);
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.05em;
}

/* ========= LOGO STRIP ========= */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4) var(--space-5);
  align-items: center;
  justify-items: center;
  padding: var(--space-3) 0;
}
@media (max-width: 900px) { .logo-strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .logo-strip { grid-template-columns: repeat(3, 1fr); } }
.logo-strip img,
.logo-strip a img {
  width: 100%;
  max-width: 150px;
  height: 72px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: opacity var(--dur), filter var(--dur);
}
.logo-strip img:hover,
.logo-strip a:hover img { filter: grayscale(0%); opacity: 1; }
.logo-strip a { display: block; width: 100%; max-width: 150px; }

/* ========= FOOTER — matches live site "Made with ☕ + 💡" ========= */
.section.footer {
  background-image: linear-gradient(rgba(255,255,255,0.65), rgba(255,255,255,0.65)),
                    url("https://cdn.prod.website-files.com/688120efe1a95af5fcf73a8c/68819ef79b3d4e88d7046386_club.png");
  background-position: 0 0, center;
  background-size: auto, cover;
  padding: var(--space-7) 0 var(--space-4);
}
.footer-container-main { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-4); }
.footer-content-main-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 2.6fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.footer-heading-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 90%;
}
.footer-heading-wrapper h2 {
  font-size: clamp(1.6rem, 2vw + 0.8rem, 2.2rem);
  font-weight: 700;
  text-transform: none;
  margin: 0;
  letter-spacing: -0.2px;
}
.footer-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--primary);
}
.footer-tagline__icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
  flex-shrink: 0;
}
.footer-heading-wrapper p {
  font-size: 1.05rem;
  color: var(--text-color-02);
  margin: 0;
  max-width: 38ch;
}
.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.footer-links-inner-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-color-02);
  margin-bottom: 4px;
}
.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--text-color-02);
}
.footer-contact__row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: start;
}
.footer-contact__label {
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  padding-top: 3px;
}
.footer-contact a {
  color: var(--text-color-02);
  transition: color var(--dur) var(--ease);
}
.footer-contact a:hover { color: var(--brand-secondary); }
.link-footer {
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-display);
  transition: color var(--dur) var(--ease);
}
.link-footer:hover { color: var(--brand-secondary); }
.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.footer-logo-image-wrap img { width: 130px; height: auto; }
.footer-image-wrap {
  display: flex;
  gap: 14px;
}
.footer-social-link {
  width: 36px; height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease), background var(--dur);
}
.footer-social-link:hover {
  transform: scale(1.08);
  background: var(--brand-secondary);
}
.footer-social-logo { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.footer-rights {
  border-top: 1px solid var(--primary);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-rights__links {
  display: flex;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-color-02);
}
.footer-rights__links a { color: var(--text-color-02); transition: color var(--dur) var(--ease); }
.footer-rights__links a:hover { color: var(--brand-secondary); }
.footer-rights__links span { opacity: 0.4; }
.small-heading-text {
  font-size: 0.875rem;
  color: var(--text-color-02);
  text-transform: none;
  font-weight: 500;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-heading-wrapper { max-width: 100%; }
  .footer-links-wrapper { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .footer-links-wrapper { grid-template-columns: 1fr 1fr; }
}

/* ========= BACK TO TOP ========= */
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--primary); color: #fff;
  display: grid; place-items: center;
  font-size: 1.1rem; font-weight: 700;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--dur) var(--ease);
  z-index: 90;
  box-shadow: 0 4px 16px rgba(0, 40, 107, 0.25);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
