:root {
  --primary-color: #148062;
  /* Darker Emerald for AA Contrast */
  --secondary-color: #65BF9E;
  /* New Muted Green */
  --accent-color: #F28888;
  /* New Coral */
  --heading-color: #516673;
  /* New Slate Gray */
  --text-color: #516673;
  /* Using Slate for text too, or maybe darker? Let's use Slate for now as requested */
  --light-bg: #D8F2EB;
  /* New Mint Cream */
  --white: #ffffff;
  --font-heading: 'Jost', sans-serif;
  --font-body: 'Jost', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  line-height: 1.7;
  font-size: 16px;
}

h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
}

h1 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.3;
  font-size: 48px;
  /* Explicit size to avoid H1UserAgentFontSizeInSection warning */
}

h2 {
  font-family: 'Jost', sans-serif;
  color: var(--heading-color);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.2em;
  opacity: 1;
  -webkit-text-stroke-width: 0px;
  margin: 10px 0px 30px 0px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* About Page Redesign */
.about-section {
  padding: 80px 0;
  background-color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: visible;
  /* Allow card to float out */
}

.about-main-img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

.floating-card {
  position: absolute;
  bottom: -30px;
  /* Floating partially out */
  right: -30px;
  /* Floating partially out */
  background: #fff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 280px;
  z-index: 2;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: #D8F2EB;
  /* Mint */
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.card-text h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.card-text p {
  font-size: 13px;
  margin: 0;
  color: #888;
  line-height: 1.4;
}

.about-text-content .sub-tag {
  color: var(--accent-color);
  /* Coral/Orange */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
  font-size: 14px;
}

.about-text-content h2 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text-content p {
  color: var(--text-color);
  margin-bottom: 20px;
  font-size: 17px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.stat-box h3 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* Mobile Menu Removed per user request */

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .floating-card {
    right: 0;
    /* Align right on mobile */
    bottom: -20px;
  }

  /* .mobile-menu-toggle { display: block; } */
  /* .main-nav { display: none !important; } */
}

@media (max-width: 768px) {
  h2 {
    font-size: 30px !important;
    word-wrap: break-word;
    margin: 10px 0 20px 0;
  }

  .section-header {
    width: 100%;
    padding: 0 15px;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg,
.whatsapp-float svg path {
  width: 35px;
  height: 35px;
  fill: #ffffff !important;
  stroke: none !important;
  stroke-width: 0 !important;
}

/* Space Page Gallery */
.space-gallery-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 300px);
  /* Fixed row height for masonry feel */
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* Specific Grid Placements for Visual Interest */
/* Item 1: Large Wide (Top Left) */
.gallery-item:nth-child(1) {
  grid-column: span 8;
  grid-row: span 1;
}

/* Item 2: Tall (Top Right) */
.gallery-item:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
  /* Spans both rows */
}

/* Item 3: Medium (Bottom Left) */
.gallery-item:nth-child(3) {
  grid-column: span 4;
  grid-row: span 1;
}

/* Item 4: Medium (Bottom Middle) */
.gallery-item:nth-child(4) {
  grid-column: span 4;
  grid-row: span 1;
}

/* Item 5: Full Width Bottom (Standard Grid below if needed) */
/* Or adjust if we have 5 items. Let's make a nice layout for 5 items. 
   Row 1: 8 + 4
   Row 2: 4 + 4 + 4 
   Wait, item 2 spans 2 rows. That takes up the last 4 cols of row 2.
   So Row 2 needs 8 cols filled.
   Item 3: span 4. Item 4: span 4.
   Item 5? Maybe add a 3rd row or fit it in.
   
   Let's try a different layout:
   Row 1: Item 1 (6 cols), Item 2 (6 cols)
   Row 2: Item 3 (4 cols), Item 4 (4 cols), Item 5 (4 cols)
*/

.gallery-grid--modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  grid-auto-flow: dense;
  gap: 20px;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

@media (max-width: 768px) {
  .gallery-grid--modern {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
}

.container-block {
  display: block !important;
}

/* Utils */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

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

.section-header {
  width: var(--container-widget-width, 660px);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Specific Sections */

/* Header */
.site-header {
  padding: 10px 0;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav {
  display: none;
}

@media(min-width: 992px) {
  .main-nav {
    display: flex;
    gap: 30px;
  }
}

.main-nav a {
  font-weight: 500;
  color: var(--heading-color);
  font-family: var(--font-heading);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-color);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--primary-color);
  min-width: 260px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  border-radius: 12px;
  padding: 10px 0;
  top: 100%;
  left: 0;
  margin-top: 10px;
}

/* Invisible bridge to prevent menu from closing when moving mouse */
.dropdown-content::before {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}

.dropdown-content a {
  color: #fff !important;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: none;
  font-size: 15px;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown>a::after {
  content: ' ▼';
  font-size: 10px;
  margin-left: 5px;
  vertical-align: middle;
}

.btn-join {
  background: var(--heading-color);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.btn-join:hover {
  background: var(--primary-color);
}

/* Hero Section */
.hero-template {
  background-image: url('/assets/template/hero-bg-new.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  height: 90vh;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 50px;
}

@media(min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text .sub-heading-hero {
  background-color: var(--accent-color);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 14px;
}

.hero-text h4 {
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.stat-item img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -15px;
  object-fit: cover;
}

.stat-item:first-child img {
  margin-left: 0;
}

.stat-text strong {
  color: var(--heading-color);
  font-size: 18px;
}

.scrolling-text-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  white-space: nowrap;
  font-size: 7vw;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  z-index: 1;
  opacity: 1;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  /* Align to bottom */
}

.scrolling-text-banner>span {
  display: inline-block;
  padding-left: 20px;
  /* Space between loops */
  animation: scrollText 30s linear infinite;
}

.scrolling-text-banner .text-primary {
  color: var(--primary-color);
}

.scrolling-text-banner .text-dark {
  color: #181d24;
}

@keyframes scrollText {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.hero-person-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-20%);
  height: 90%;
  width: auto;
  z-index: 5;
  pointer-events: none;
}

/* Icons Grid */
.icons-grid {
  padding: 60px 0;
}

.icon-box {
  padding: 30px 20px;
  background: transparent;
  border: none;
  text-align: center;
  transition: transform 0.3s;
}

.icon-box:hover {
  transform: translateY(-5px);
}

.icon-box img {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  display: block;
}

.icon-box h3,
.icon-box .icon-title {
  font-size: 20px;
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--heading-color);
}

.icon-box p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.6;
}

/* Welcome */
.welcome-section {
  padding: 80px 0;
  background-color: aliceblue;
}

.sub-heading {
  background-color: var(--accent-color);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

/* Button Styles */
.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  display: inline-block;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--heading-color);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-text {
  color: var(--heading-color);
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 5px;
  margin-top: 20px;
  display: none;
  /* Hiding original just in case, or I can leave it. */
  display: inline-block;
}

/* Why Us */
.why-us-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-num {
  color: var(--white);
  /* Mapped from accent (assumed white on primary) */
  background: var(--primary-color);
  /* Mapped from primary */
  font-size: 32px;
  border-radius: 16px;
  padding: 20px 23px;
  margin: 0px 10px 0px 0px;
  font-weight: 700;
  display: inline-block;
}

.feature-text h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

/* Practice */
.practice-section {
  background-color: antiquewhite;
  padding-top: 40px;
  padding-bottom: 50px;
  margin-bottom: 80px;
}

.practice-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.practice-card img {
  width: 100%;
  transition: transform 0.5s;
}

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

.practice-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 10px;
}


/* Full Width Header */
.site-header .logo img {
  width: 200px;
  height: auto;
  max-height: none;
}

.footer-col.brand-col img {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header .container {
  max-width: 100%;
  padding: 0 5%;
}

/* Footer */
footer {
  padding: 0;
  background: transparent;
  border-top: none;
}

.footer-cta {
  background-color: var(--primary-color);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.footer-cta .cta-title {
  color: #fff;
  font-size: 28px;
  display: inline-block;
  margin-right: 30px;
  vertical-align: middle;
  margin-bottom: 0;
  font-family: var(--font-heading);
  font-weight: 600;
}

.footer-cta .btn-join {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  vertical-align: middle;
}

.footer-cta .btn-join:hover {
  background: #fff;
  color: var(--primary-color);
}

.footer-content {
  background-color: #d8f3ec;
  /* Light mint from template */
  padding: 80px 0;
}

.footer-content .footer-title {
  color: #181d24;
  margin-bottom: 25px;
  font-size: 18px;
  font-family: var(--font-heading);
  font-weight: 600;
  display: block;
}

.footer-content p,
.footer-content a,
.footer-content li {
  color: #56697a;
  font-size: 15px;
  line-height: 1.8;
  list-style: none;
}

.footer-links ul {
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-svg-icon {
  color: #F28888;
  fill: currentColor;
  background-color: transparent;
  margin: 4px -10px 0px 0px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
}

.contact-item i {
  color: var(--primary-color);
  font-size: 20px;
}

.footer-bottom {
  background-color: #c4e8df;
  /* Slightly darker mint */
  padding: 20px 0;
  font-size: 14px;
  color: #56697a;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-icons a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--heading-color);
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Gallery Page */
.gallery {
  padding: 50px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img:hover {
  transform: translateY(-5px);
}

/* Diferenciais Page Layout */
.diferenciais-section {
  padding: 50px 0 100px;
}

.layout-diferenciais {
  align-items: center;
}

.diferenciais-image img {
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.diferenciais-list {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.diff-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.diff-number {
  font-size: 50px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-color);
  line-height: 1;
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
  min-width: 60px;
}

.diff-content h3,
.diff-content .diff-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--font-heading);
}

.diff-content p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .layout-diferenciais {
    grid-template-columns: 1fr;
  }

  .diferenciais-list {
    padding-left: 0;
    margin-top: 40px;
  }
}

/* Contact Page Hero */
.contact-hero {
  background-color: var(--primary-color);
  /* Solid Green Background */
  position: relative;
  padding: 60px 0;
  /* Reduced padding per request */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero .overlay {
  display: none;
  /* Removing overlay for solid color */
}

.hero-tag {
  background-color: var(--accent-color);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 30px;
  font-family: var(--font-heading);
}

/* Button Styles */
.btn-primary,
.btn-secondary {
  padding: 0 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  /* Use inline-flex for better centering */
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-transform: uppercase;
  /* Ensure consistent height visual */
  font-size: 14px;
  /* Explicit font size */
  line-height: 1;
  /* Normalize line height */
  height: 48px;
  /* Explicit height to ensure perfect alignment */
  box-sizing: border-box;
  margin: 30px 0 0 0 !important;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border: 2px solid var(--primary-color);
}

.btn-primary:hover {
  background-color: #516673;
  /* Slate explicit */
  border-color: #516673;
  color: #fff;
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: #516673;
  /* Slate explicit */
  border-color: #516673;
  color: #fff;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-hero h1 {
  font-size: 64px;
  /* Larger Title */
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-hero p {
  color: #e6f7f4;
  /* Light tint */
  font-size: 20px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Form Styles */
.form-container {
  padding: 40px;
  /* calc(var(--spacing) * 10) */
  background-color: #f8fafc;
  /* slate-50 */
  border: 1px solid #f1f5f9;
  /* slate-100 */
  border-radius: 24px;
  /* var(--radius-3xl) */
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.contact-card-title {
  display: block;
  font-size: 30px;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--font-heading);
  margin-bottom: 20px;
}

/* Mobile Menu Styles */

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 30px;
  height: 4px;
  background-color: var(--heading-color);
  border-radius: 4px;
  position: absolute;
  transition: transform .15s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 4px;
  background-color: var(--heading-color);
  border-radius: 4px;
  position: absolute;
  transition: transform .15s ease;
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/* Mobile Menu Container */
.mobile-menu-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}

.mobile-menu-container.active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.mobile-menu-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-container.active .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85%;
  height: 100%;
  background: var(--white);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-container.active .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #f0f0f0;
}

.mobile-menu-header img {
  width: 200px;
  height: auto;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--heading-color);
  cursor: pointer;
}

.mobile-nav-links {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.mobile-link:hover {
  color: var(--primary-color);
}

/* Mobile Dropdown */
.mobile-dropdown-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-content {
  display: none;
  padding-left: 20px;
  background: #f9f9f9;
  margin-top: 5px;
  border-radius: 8px;
}

.mobile-dropdown-content a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
}

.mobile-dropdown.active .mobile-dropdown-content {
  display: block;
}

.mobile-dropdown .arrow {
  font-size: 12px;
  transition: transform 0.3s;
}

.mobile-dropdown.active .arrow {
  transform: rotate(180deg);
}

.btn-mobile-cta {
  margin-top: 20px;
  background: var(--heading-color);
  color: var(--white);
  padding: 15px;
  border-radius: 30px;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-heading);
}

@media (max-width: 991px) {

  .main-nav,
  .header-inner .btn-join {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block !important;
  }

  .footer-cta .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-cta .btn-join {
    margin: 0 auto;
    display: inline-block;
  }
}

/* CoreAlign Page Styles */
.content-section {
  padding: 60px 0;
}

.content-section h2 {
  font-size: 32px;
  color: var(--heading-color);
  margin-bottom: 30px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.content-section p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

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

.benefit-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #f0f0f0;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.benefit-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.content-section ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.content-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--text-color);
}

.content-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}