/* ============================================
   BLÜM HEALTH - SHARED STYLES
   ============================================ */

:root {
  --primary: #2D8B7E;
  --primary-dark: #1E6B5E;
  --primary-light: #E8F5F2;
  --coral: #E07A5F;
  --gold: #D4A853;
  --sand: #F5EDE4;
  --navy: #1A2E3B;
  --charcoal: #2C3E4A;
  --slate: #5A6B78;
  --light-gray: #F8F9FA;
  --white: #FFFFFF;
  --purple: #9B6B8E;
  --green: #5B8A72;
  --M0: #263945;
  --M0-light: #26394530;

  --M1: #0AA5AA;
  --M1-light: #0AA5AA30;

  --M2: #3CB4AF;
  --M2-light: #3CB4AF30;
  --DM2:#26736F;

  --M3: #5FB996; 
  --M3-light: #5FB99630;
  --DM3:#386E58;

  --M4: #96B987;
  --M4-light: #96B98730;
  --DM4:#647A59;

  --M5: #B9BE78;
  --M5-light: #B9BE7830;
  --DM5:#838755;

  --M6: #F0BE64;
  --M6-light: #F0BE6430;

  --M7: #FFA555;
  --M7-light: #FFA55530;
  --DM7:#B5753C;

  --M8: #FF8C5A;
  --M8-light: #FF8C5A30;
  
  --M9: #FF7D64;
  --M9-light: #FF7D6430;
  --DM9:#B55947;
  
  --M10: #FF6E73;
  --M10-light: #FF6E7330;
  --DM10:#B54E52;

  --BG0: #6497B8;
  --BG1: #0CC8CF;
  --BG2: #48D9D3;
  --BG3: #72DEB4;
  --BG4: #B4DEA2;
  --BG5: #DCE18F;
  --BG6: #FFD291;
  --BG7: #FFBA88;
  --BG8: #FFAA85;
  --BG9: #FFA38E;
  --BG10: #FF9599;
  --ADHD: #C5ECFF;
  --Anxiety: #BDFBFC;
  --Depression: #C6FFEC;
  --BMStabilizers: #C6FFDA;
  --Antipsychotic: #FFFEB9;
  --Sleep: #FFE1C1;
  --AutismSupport: #FFD1BA;
  --OCD: #FFCBC2;
  --PTSD: #FFC4C8;
}

a[href="family-medicine.html"],
a[href="functional-medicine.html"],
a[href="pediatrics.html"] {
    display: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  background-color: var(--light-gray);
  line-height: 1.6;
}

::selection {
  background: var(--primary);
  color: white;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', Georgia, serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
  transform: scale(1.01);
  max-height: 180px;
  display: flex;
  align-items: center;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.nav.nav-dark {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-height: 180px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: 252px;
  height: 252px;
}

.nav-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(45, 139, 126, 0.3);
}

.nav-logo-icon svg {
  width: 28px;
  height: 28px;
}

.nav-logo-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
    padding-right: 40px;
    padding-top: 38px;
    padding-bottom: 43px;
    padding-left: 36px;
}

.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  transition: color 0.3s;
}

.nav.scrolled .nav-logo-text,
.nav.nav-dark .nav-logo-text {
  color: var(--navy);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  background: transparent;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.nav.scrolled .nav-link,
.nav.nav-dark .nav-link {
  color: var(--navy);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.nav.scrolled .nav-link:hover,
.nav.nav-dark .nav-link:hover {
  background: var(--primary-light);
}

.nav-link.active {
  background: rgba(255, 255, 255, 0.15);
  font-weight: 600;
}

.nav.scrolled .nav-link.active,
.nav.nav-dark .nav-link.active {
  background: var(--primary-light);
}

/* Services Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-link {
  display: block;
  padding: 12px 24px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-dropdown-link:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.nav-cta {
  background: white;
  color: var(--M1);
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-left: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  font-family: inherit;
}

.nav.scrolled .nav-cta,
.nav.nav-dark .nav-cta {
  background: var(--M1);
  color: white;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 16px 32px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-filled {
  background: var(--primary);
  color: white;
  box-shadow: 0 6px 20px rgba(45, 139, 126, 0.3);
}

.btn-filled:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-coral {
  background: var(--coral);
  color: white;
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.3);
}

.btn-coral:hover {
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 16px 36px;
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: white;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  color: var(--M1);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 44px;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-description {
  font-size: 18px;
  color: var(--slate);
  max-width: 700px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  padding: 180px 0 120px;
  /* background: linear-gradient(135deg, var(--M1) 0%, var(--primary-dark) 50%, var(--navy) 100%); */
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 180px 0 80px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.page-hero-badge span {
  color: white;
  font-size: 14px;
  font-weight: 500;
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 53px;
}

/* ============================================
   SERVICE PAGE SPECIFIC
   ============================================ */
.service-intro {
  padding: 80px 0;
  background-color: white;
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-intro-content h2 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 20px;
}

.service-intro-content p {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-intro-image {
  background: var(--primary-light);
  border-radius: 24px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list {
  padding: 80px 0;
  background-color: white;
}

.service-list h2 {
  text-align: center;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 48px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary);
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-top: 1px solid;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ============================================
   TOOLTIPS FOR SERVICE FEATURES
   ============================================ */
.service-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-feature-tooltip {
  position: relative;
  display: inline-block;
}

.service-feature-link {
  font-size: 12px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px dashed var(--primary);
}

.service-feature-link:hover {
  background: var(--primary);
  color: white;
  border-bottom-color: transparent;
}

.service-feature-tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 240px;
  background: var(--navy);
  color: white;
  text-align: left;
  border-radius: 12px;
  padding: 14px 16px;
  position: absolute;
  z-index: 100;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.service-feature-tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: var(--navy) transparent transparent transparent;
}

.service-feature-tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Legacy service card feature (for backwards compatibility) */
.service-card-feature {
  font-size: 12px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 500;
}

/* What to Expect Section */
.what-to-expect {
  padding: 80px 0;
  background-color: white;
}

.what-to-expect h2 {
  text-align: center;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 16px;
}

.what-to-expect>.container>p {
  text-align: center;
  font-size: 18px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto 48px;
}

.expect-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.expect-step {
  text-align: center;
  padding: 32px;
}

.expect-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(45, 139, 126, 0.3);
}

.expect-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.expect-step p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.faq-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 0;
  background-color: white;
}

.cta-card {
  background: var(--navy);
  border-radius: 32px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card-bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-card h2 {
  font-size: 38px;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-card p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================
   RELATED SERVICES
   ============================================ */
.related-services {
  padding: 80px 0;
  background-color: white;
}

.related-services h2 {
  text-align: center;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 48px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.related-card {
  background: var(--light-gray);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: auto;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.related-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.related-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.related-card p {
  font-size: 14px;
  color: var(--slate);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo svg {
  width: 24px;
  height: 24px;
}

.footer-brand-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.footer-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

.footer-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Inter', sans-serif;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
  cursor: pointer;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  font-size: 18px;
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-insurance-btn {
  background: white;
  /* color: var(--M1); */
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 24px;
  font-family: inherit;
  transition: background 0.3s;
}

.footer-insurance-btn:hover {
 color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: white;
  cursor: pointer;
}

.disable {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {

  .service-intro-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* .nav-links {
    display: none;
  } */

  .service-cards,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .page-hero {
    padding: 200px 0 80px;
  }

  .service-feature-tooltip .tooltip-text {
    width: 200px;
    font-size: 12px;
  }
}


/* new service card*/
.new-service-cards {
  width: 30%;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.new-service-cards img {
  height: 45%;
  object-fit: cover;
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
}

.new-service-cards .text_box {
  width: 100%;
  height: 55%;
  position: relative;
  top: -20px;
  padding: 50px 30px 30px 30px;
  border-radius: 20px;
  border: 0.849px solid #ECECEC;
  background: #FFF;
  box-shadow: 0 3.396px 16.982px 0 rgba(63, 63, 63, 0.04);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.new-service-cards span {
  color: white;
  font-size: 26px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: linear-gradient(180deg, #F4B375 0%, #E9636A 100%);
  position: absolute;
  left: 20px;
  top: -30px;
}

.new-service-cards a {
  font-size: 18px;
  font-weight: 700;
  background: var(--Linear, linear-gradient(180deg, #F4B375 0%, #E9636A 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.new-service-cards p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}

.new-service-cards h2 {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.new-service-cards a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: #E9636A;
  stroke-width: 2;
  /* background: ; */
}

.new-service-grid{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1000;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav.scrolled .nav-toggle:hover,
.nav.nav-dark .nav-toggle:hover {
  background: var(--primary-light);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: white;
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav.scrolled .nav-toggle span,
.nav.nav-dark .nav-toggle span {
  background: var(--navy);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -3px);
}

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(26, 46, 59, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  align-items: center;
}

.nav-mobile-link {
  color: white;
  font-size: 24px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.nav-mobile-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-mobile-cta {
  background: var(--M1);
  color: white;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  transition: all 0.3s ease;
}

.nav-mobile-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
/* Mobile Dropdown Styles - Floating */
.nav-mobile-dropdown {
  position: relative;
}

.nav-mobile-dropdown-toggle {
  color: white;
  font-size: 24px;
  font-weight: 500;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-mobile-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-mobile-dropdown-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 80%;
  background: rgba(26, 46, 59, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}

.nav-mobile-dropdown.active .nav-mobile-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-dropdown-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  padding: 12px 24px;
  transition: all 0.2s ease;
  display: block;
}

.nav-mobile-dropdown-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}
.scrolled-logo {
  display: none;
}
.nav.scrolled .unscrolled-logo {
  display: none;
}
.nav.scrolled .scrolled-logo {
  display: block;
    padding-right: 40px;
    padding-top: 38px;
    padding-bottom: 43px;
    padding-left: 36px;
}
.nav-dark .scrolled-logo {
  display: block;
}
.nav-dark .unscrolled-logo {
  display: none;
}

#insurance {
  scroll-margin-top: 120px;
}

.island-btn img {
  height: 20px;
  width: 20px;
}

.island-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.island-visual {
  overflow: hidden;
}

.hero-bg-circles {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
      pointer-events: none;
    }

    .hero-circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.03);
    }

    .hero-circle:nth-child(1) {
      width: 200px;
      height: 200px;
      top: -10%;
      right: 5%;
    }

    .hero-circle:nth-child(2) {
      width: 300px;
      height: 300px;
      top: 5%;
      right: 15%;
    }

    .hero-circle:nth-child(3) {
      width: 400px;
      height: 400px;
      top: 20%;
      right: -5%;
    }

    .hero-circle:nth-child(4) {
      width: 500px;
      height: 500px;
      top: 35%;
      right: 10%;
    }
