@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=MonteCarlo&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
/* Local Futura Md BT Bold font */
@font-face {
  font-family: 'Futura Md BT';
  src: url('../font/futuramdbt_bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Helvetica+Neue:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

/* Define variables */
:root {
  --pbi-gold: #ebb865;
  --pbi-gold-hover: #c68628;
  --pbi-black: #000000;
  --pbi-white: #ffffff;
  --pbi-gold-light: rgba(232, 182, 79, 0.1);
  --pbi-gold-medium: rgba(232, 182, 79, 0.3);
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: arial, sans-serif;
  line-height: 1.7;
  background: var(--pbi-black);
  color: var(--pbi-white);
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.3px;
}

header {
  background: var(--pbi-black);
  padding: 2rem 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  border-bottom: none;
}

/* Ensure normal header position on non-home pages (prevents logo cut-off) */
body:not(.homepage) header {
  margin-top: 0;
}

/* Homepage: hide logo only, keep header/menu visible */
.homepage header {
  display: flex;
}

.homepage .logo {
  display: none;
}

.homepage footer {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo a {
  display: block;
  text-decoration: none;
}

.logo-img {
  height: 160px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

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

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: absolute;
  top: 60%;
  right: 1.25rem;
  transform: translateY(-50%);
}

/* Ensure hamburger is on the right and slightly lower on homepage */
.homepage .menu-toggle {
  left: auto;
  right: 1.25rem;
  top: 60%;
}

/* Ensure hamburger is on the right and slightly lower on non-home pages */
body:not(.homepage) .menu-toggle {
  /* left: auto; */
  right: 2.25rem;
  top: 30%;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--pbi-gold);
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(232, 182, 79, 0.3);
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 10px);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -5px);
}

nav {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--pbi-black);
  position: absolute;
  top: calc(65% + 6px);
  right: 0;
  width: 100%;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  z-index: 1000;
  max-width: 300px;
  margin-top: 0;
  margin-right: 16px;
  border-radius: 8px;
  border: 1px solid rgba(232, 182, 79, 0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}

/* Align dropdown menu to the right on non-home pages */
body:not(.homepage) nav {
  /* left: auto; */
  right: 0;
  margin-left: 0;
  margin-right: 16px;
  top: 100px;
}

/* Align dropdown menu to the right on homepage */
.homepage nav {
  left: auto;
  right: 0;
  margin-left: 0;
  margin-right: 16px;
}

.menu-open nav {
  opacity: 1;
  max-height: 600px;
  min-width: 320px;
}

nav a {
  color: var(--pbi-white);
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-top: 1px solid rgba(232, 182, 79, 0.2);
  font-weight: 300;
  font-size: 0.9rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-family: "Helvetica Neue", "Arial", sans-serif;
}

nav a:hover {
  background-color: rgba(232, 182, 79, 0.1);
  color: var(--pbi-gold);
  letter-spacing: 1.5px;
  padding-left: 2rem;
}

/* Keep long contact label on one line by reducing hover expansion */
nav a[href="contact-us.php"] {
  letter-spacing: 1px;
}

nav a[href="contact-us.php"]:hover {
  letter-spacing: 1px;
  padding-left: 1.25rem;
}

/* Remove duplicate menu-toggle styles - using the flex version above */

.bg-white {
  width: 85%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  background: var(--pbi-white);
  color: var(--pbi-black);
  padding: 3rem 2.5rem;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
  margin-bottom: 3rem;
  border: 1px solid rgba(232, 182, 79, 0.1);
}

a {
  color: var(--pbi-gold);
  text-decoration: none;
}

a:hover {
  color: var(--pbi-gold-hover);
}

h1, h2, h3 {
  color: var(--pbi-gold);
  font-size: 1.8rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

/* White box headings */
.bg-white h1, .bg-white h2, .bg-white h3 {
  color: var(--pbi-black);
  text-shadow: none;
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--pbi-gold);
  padding-bottom: 1rem;
  display: inline-block;
}

.bg-white h1{
  font-size: 29px !important;
}

/* Font Examples for Client Selection */
.font-example-1 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: italic;
}

.font-example-2 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.font-example-3 {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* White box text styling */
.bg-white p {
  color: var(--pbi-black);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.2px;
}

/* About page layout - text left, image right */
.about-content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text {
  text-align: left;
}

.about-image {
  text-align: center;
}

.about-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Mobile responsive for about page */
@media (max-width: 768px) {
  .about-content-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    order: -1; /* Show image first on mobile */
  }
}

/* Ladies process page image styling */
.ladies-process-image {
  text-align: center;
  margin-bottom: 2rem;
}

.ladies-process-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

main {
  flex: 1;
  padding: 0 1rem;
}

footer {
  background: var(--pbi-black);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
  border-top: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.footer-section h4 {
  color: var(--pbi-gold);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: var(--pbi-white);
  line-height: 1.5;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-menu a {
  color: var(--pbi-white);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.footer-menu a:hover {
  color: var(--pbi-gold);
}

.contact-info p {
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
}

.contact-info a {
  color: var(--pbi-white);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-info a:hover {
  color: var(--pbi-gold);
}

/* Contact Page */
.contact-card {
  max-width: 560px;
  margin: 0 auto 2rem;
  background: var(--pbi-black);
  border: 1px solid var(--pbi-gold);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 6px 25px rgba(232, 182, 79, 0.12);
  color: var(--pbi-white);
  font-family: "Nunito", sans-serif;
}

/* Entry Form Grid */
.entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}

.entry-grid p { margin: 0; }

@media (max-width: 640px) {
  .entry-grid { grid-template-columns: 1fr; }
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-overlay.show { display: flex; }

.modal-content {
  background: var(--pbi-black);
  color: var(--pbi-white);
  border: 1px solid var(--pbi-gold);
  max-width: 680px;
  width: 92%;
  padding: 1.25rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.modal-logo {
  max-height: 100px;
  width: auto;
  margin-bottom: 0.5rem;
}

.modal-body p { margin: 0.75rem 0; }

.contact-image {
  text-align: center;
  margin-bottom: 1.5rem;
}

.contact-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0.4rem 0;
  color: var(--pbi-white);
}

.contact-info-list img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.contact-card a {
  color: var(--pbi-white);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-card a:hover {
  color: var(--pbi-gold);
}

.contact-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--pbi-white);
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font: inherit;
  box-sizing: border-box;
  resize: vertical;
}

.contact-card textarea {
  min-height: 120px;
  line-height: 1.5;
  font-family: inherit;
}

.contact-actions {
  margin-top: 0.5rem;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.social-link {
  color: var(--pbi-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.social-link:hover {
  color: var(--pbi-gold);
}

.social-link img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.social-link:hover img {
  filter: brightness(0) saturate(100%) invert(73%) sepia(65%) saturate(1234%) hue-rotate(35deg) brightness(102%) contrast(91%);
}

.footer-bottom {
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--pbi-white);
  font-size: 0.75rem;
  margin: 0;
}

/* Footer Logo Styles */
.footer-logo-section {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem; /* move logo down more */
  margin-top: 1rem; /* add top margin to center it better */
}

.footer-logo-img {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-logo h4 {
  margin: 0;
  font-size: 1.1rem;
}

.nunito {
  font-family: "Nunito", sans-serif;
  font-size: 1.4rem;
}

img {
  max-width: 100%;
  height: auto;
}

.pbi-button {
  display: inline-block;
  font-weight: bold;
  color: var(--pbi-black);
  background-color: var(--pbi-gold);
  border: 2px solid var(--pbi-gold);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  line-height: 1.5;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(232, 182, 79, 0.3);
  min-width: 200px;
  margin: 0.5rem;
}

.pbi-button:hover {
  background-color: var(--pbi-gold-hover);
  border-color: var(--pbi-gold-hover);
  color: var(--pbi-black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 182, 79, 0.5);
}

.pbi-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.hero-section {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--pbi-black);
}

/* Application page specific styling */
.application-hero {
  padding: 2rem 2rem 4rem;
  margin-top: -50px;
}

/* Application page splash-like adjustments */
body.application header {
  margin-bottom: 0;
}

body.application .logo {
  justify-content: center;
}

body.application .logo-img {
  max-height: 200px; /* slightly larger */
}

/* move header lower to mimic splash */
body.application .splash-like-offset {
  margin-top: 3rem;
}

/* Hide footer on application page only */
body.application footer {
  display: none;
}

/* Reduce application buttons */
.app-flex {
  gap: 1rem;
  justify-content: center;
}

.app-btn {
  padding: 0.7rem 1.2rem;
  font-size: 0.95rem;
  min-width: 160px;
}

/* Secondary app button (Not a registered member?) */
.pbi-button.secondary.app-btn {
  border-color: var(--pbi-gold);
  color: var(--pbi-gold);
}

.application-title-container {
  margin-bottom: 2rem;
}

.application-title-image {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--pbi-gold);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.application-buttons {
  margin-top: 2rem; 
}

.application-buttons p {
  margin: 1rem 0;
  font-size: 1.1rem;
}

.flex-buttons {
  width: 90%;
  max-width: 640px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Founder Page */
.pbi-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  align-items: center;
}

.image-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.image-caption {
  text-align: center;
  color: var(--pbi-black);
  margin-top: 0.5rem;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  font-size: 0.95rem;
}

.full-width {
  grid-column: 1 / -1;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

@media (max-width: 830px) {
  .pbi-grid-container {
    grid-template-columns: 1fr;
  }

  .image-content {
    grid-row: 2;
  }
}

@media (max-width: 530px) {
  .flex-buttons {
    flex-direction: column;
  }
  .pbi-button {
    width: 200px;
    margin: 5px auto;
  }
  .nunito {
    font-size: 18px;
  }
  .logo-img {
    max-height: 130px;
  }
}

/* Services Section */
.services-section {
  background: var(--pbi-black);
  padding: 4rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--pbi-black);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--pbi-gold);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(232, 182, 79, 0.2);
}

.service-card h4 {
  color: var(--pbi-gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: var(--pbi-white);
  line-height: 1.6;
  font-size: 1rem;
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--pbi-gold);
  color: var(--pbi-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(232, 182, 79, 0.3);
}

.step h4 {
  color: var(--pbi-gold);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.step p {
  color: var(--pbi-white);
  line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--pbi-black);
  padding: 4rem 2rem;
}

/* Testimonials page hero image */
.testimonials-image {
  text-align: center;
  margin-bottom: 1.5rem;
}

.testimonials-hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--pbi-black);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--pbi-gold);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 182, 79, 0.2);
}

.testimonial-card p {
  color: var(--pbi-white);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-card p::before {
  content: '"';
  font-size: 3rem;
  color: var(--pbi-gold);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: serif;
}

.testimonial-author {
  color: var(--pbi-gold);
  font-weight: 600;
  text-align: right;
  font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
  background: var(--pbi-black);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-section h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--pbi-white);
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pbi-button.secondary {
  background-color: transparent;
  color: var(--pbi-gold);
  border: 2px solid var(--pbi-gold);
}

.pbi-button.secondary:hover {
  background-color: var(--pbi-gold);
  color: var(--pbi-black);
}

/* Splash Page Styles */
.splash-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--pbi-black);
  padding: 2rem 2rem 1rem;
  text-align: center;
  position: relative;
  margin-top: -150px;
  gap: 5px;
}

.splash-logo {
  margin-bottom: -5rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

.splash-logo-img {
  width: 540px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.splash-logo-img:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 6px 12px rgba(232, 182, 79, 0.4));
}

.splash-title {
  color: var(--pbi-gold);
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  margin: 0;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  text-transform: uppercase;
}

/* Apply button styled like reference image - gold border, centered text */
.apply-button {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 10px;
  padding: 1.1rem 2rem;
  border: 2px solid var(--pbi-gold);
  color: var(--pbi-gold);
  font-family: 'Futura Md BT', "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.apply-button:hover {
  transform: translateY(-2px);
  color: var(--pbi-gold-hover);
  border-color: var(--pbi-gold-hover);
}

/* Bottom tagline on splash */
.splash-tagline {
  position: absolute;
  bottom: 8px;
  left: 50%;
  min-width: 65%;
  transform: translateX(-50%);
  font-family: 'Futura Md BT', "Helvetica Neue", Arial, sans-serif;
  color: var(--pbi-gold);
  font-size: 13px;
  letter-spacing: 2px;
  padding-bottom: 10px;
}

/* Disable scrolling on homepage and ensure full viewport */
body.homepage {
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
}

h2{
    margin: 0 !important;
    border: none !important;
    margin-bottom: -20px !important;
    font-size: 22px;
}
.membership-box { display: none; }

.membership-button {
  display: inline-block;
  font-weight: 400;
  color: var(--pbi-black);
  background-color: var(--pbi-gold);
  border: 1px solid var(--pbi-gold);
  padding: 0.9rem 1.4rem;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: default;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: none;
  min-width: auto;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  position: relative;
  overflow: hidden;
}

.membership-button:hover {
  background-color: var(--pbi-gold-hover);
  border-color: var(--pbi-gold-hover);
  color: var(--pbi-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(232, 182, 79, 0.4);
  letter-spacing: 3px;
}

.membership-button:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    justify-content: center;
  }
  
  .logo {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo-section {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-section h3 {
    font-size: 1.8rem;
  }
  
  /* Splash Page Mobile */
  .splash-logo-img {
    width: 360px;
  }
  
  .splash-title {
    font-size: 2.2rem;
  }
  
  .apply-button-img { max-width: 220px; }
  
  .application-title-image { max-width: 250px; }

.splash-tagline { 
    min-width: 90% !important;
}

  .pbi-button {
    width: 200px;
    margin: 5px auto;
  }

}

@media (max-width: 420px) {
  footer {
    padding: 1rem 5px;
  }
  .nunito {
    font-size: 13px;
  }
  
  .services-section,
  .testimonials-section,
  .cta-section {
    padding: 2rem 1rem;
  }
  
  .service-card,
  .testimonial-card {
    padding: 1.5rem;
  }
  
  /* Splash Page Small Mobile */
  .splash-logo-img {
    width: 320px;
  }
  
  .splash-title {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }
  
  .apply-button-img { max-width: 160px; }
  
  .application-title-image { max-width: 200px; }

/* Splash Page Styles */
.splash-page {
  margin-top: -300px !important;
}
.splash-tagline { 
    min-width: 90% !important;
}

#save1,
#finalsubmit:hover {
  color: #e8b64f !important;
}
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: 2px solid #E8B64F;
  outline-offset: 2px;
}


input:focus {
  -webkit-focus-ring-color: #E8B64F;
  outline: none;
}

input:focus,
input:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 2px #E8B64F;
}

.about-text h2 {
    font-size: 20px;
}

/* Tablets */
@media (max-width: 900px) {
  .about-text h2 {
    font-size: 20px!important;
  }
}

/* Small tablets / large phones */
@media (max-width: 700px) {
  .about-text h2 {
    font-size: 18px!important;
  }
  
  .flex-buttons {
      justify-content: center;
  }
}

/* Phones */
@media (max-width: 500px) {
  .about-text h2 {
    font-size: 16px!important;
  }
}

/* Small phone  */
@media (max-width: 360px) {
  .about-text h2 {
    font-size: 14px;
  }
}

.currentmember {
  color: var(--pbi-gold);
  font-size: 1.25rem;
}

.futuremember {
  margin-top: 50px;
  margin-bottom:-20px;
  color: #fff;
  font-size: 1.25rem;
}

.flex-buttons {
    justify-content:center;
}