/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Walter+Turncoat&display=swap');

:root {
  --default-font: "Walter Turncoat", cursive, system-ui, -apple-system, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Walter Turncoat", cursive;
  --nav-font: "Walter Turncoat", cursive;
}

/* Global Colors - Light Green & Pink Theme */
:root {
--background-color: #fafafa;
--default-color: #1a1f2e;
--heading-color: #2d8659;
--accent-color: #d977a6;
--surface-color: #ffffff;
--contrast-color: #1a1f2e;
--nav-color: #1a1f2e;
--nav-hover-color: #2d8659;
--nav-mobile-background-color: #ffffff;
--nav-dropdown-background-color: #fafafa;
--nav-dropdown-color: #1a1f2e;
--nav-dropdown-hover-color: #2d8659;

/* Light Green & Pink Color Palette */
--primary-green: #a8e6cf;
--primary-green-light: #c8e6d5;
--primary-green-dark: #7dd3a0;
--primary-pink: #ffd6e0;
--primary-pink-light: #ffe5e8;
--primary-pink-dark: #f8d7da;
--green-pink-mix: #d4c4e8;
--pink-green-mix: #e8d4f1;
--white: #ffffff;
--black: #1a1f2e;
--gray: #e0e0e0;
--light-gray: #f5f5f5;
--dark-gray: #2d3748;

/* Gradient Colors */
--gradient-primary: linear-gradient(135deg, #a8e6cf 0%, #ffd6e0 100%);
--gradient-secondary: linear-gradient(135deg, #ffd6e0 0%, #a8e6cf 100%);
--gradient-mix: linear-gradient(135deg, #a8e6cf 0%, #d4c4e8 50%, #ffd6e0 100%);
--gradient-tech: linear-gradient(135deg, #c8e6d5 0%, #d4c4e8 50%, #ffe5e8 100%);
--gradient-analytics: linear-gradient(135deg, #a8e6cf 0%, #c8e6d5 25%, #ffd6e0 50%, #ffe5e8 75%, #f8d7da 100%);

}

/* Color Presets */

.light-background {
  --background-color: #fafafa;
  --default-color: #1a1f2e;
  --heading-color: #2d8659;
  --surface-color: #ffffff;
  --contrast-color: #1a1f2e;
}

.dark-background {
  --background-color: #f5f5f5;
  --default-color: #1a1f2e;
  --heading-color: #2d8659;
  --surface-color: #ffffff;
  --contrast-color: #1a1f2e;
}

.spiritual-background {
  --background-color: #fafafa;
  --default-color: #1a1f2e;
  --heading-color: #2d8659;
  --surface-color: #ffffff;
  --contrast-color: #1a1f2e;
}

.meditation-background {
  --background-color: #f5f5f5;
  --default-color: #1a1f2e;
  --heading-color: #2d8659;
  --surface-color: #ffffff;
  --contrast-color: #1a1f2e;
}


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
  padding-top: 80px;
}

body.mobile-nav-active {
  overflow: hidden;
}

/* Analytics & Tech Background Effects */
.spiritual-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(168, 230, 207, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 214, 224, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(212, 196, 232, 0.15) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
}

.chakra-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--gradient-analytics);
  border-radius: 50%;
  opacity: 0.15;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.2; }
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: var(--primary-pink-dark);
  color: #1a1f2e;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #1a1f2e;
  background: var(--primary-green-dark);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 0 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color) 90%, black 50%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  border-radius: 3px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn+.download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.2px;
  padding: 12px 32px;
  border-radius: 8px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 8px;
  line-height: 0;
  transition: transform 0.3s ease;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about .read-more:hover i {
  transform: translateX(6px);
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.feature-details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .feature-details .features-item+.features-item {
    margin-top: 40px;
  }
}

.feature-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.feature-details .features-item ul {
  list-style: none;
  padding: 0;
}

.feature-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.feature-details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.feature-details .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: var(--primary-pink-dark);
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: var(--primary-green-dark);
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Cookie Banner Modern
--------------------------------------------------------------*/
.cookie-banner-modern,
#cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 31, 46, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(168, 230, 207, 0.3);
  padding: 1.5rem 2rem;
  z-index: 9998;
  display: none;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner-modern.show,
#cookie-popup.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-icon {
  width: 48px;
  height: 48px;
  background: rgba(168, 230, 207, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green-dark);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-text h4 {
  color: #1a1f2e;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cookie-banner-text p {
  color: rgba(26, 31, 46, 0.8);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--primary-green);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-banner-text a:hover {
  color: var(--primary-green-dark);
}

.cookie-banner-actions {
  flex-shrink: 0;
}

.cookie-accept-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: #1a1f2e;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.cookie-accept-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 230, 207, 0.4);
}

.cookie-accept-btn i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .cookie-banner-modern,
  #cookie-popup {
    padding: 1.25rem 1.5rem;
  }

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-banner-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .cookie-banner-text {
    width: 100%;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .cookie-accept-btn {
    width: 100%;
    justify-content: center;
  }
}

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: var(--primary-green-dark);
}

#features-slider {
  position: relative;
}

.swiper-slide {
  transition: filter 0.3s ease;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--accent-color);
  background: var(--nav-dropdown-background-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
}
@media (max-width:768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.swiper-button-next {
  right: 5%;
}

.swiper-button-prev {
  left: 5%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--accent-color);
  color: var(--nav-dropdown-background-color);
}

.list-cards {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.card-item {
  background: var(--background-color);
  border-radius: 12px;
  box-shadow: 0 4px 12px  var(--heading-color);
  padding: 5px 10px;
  display: flex;
  align-items: flex-start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
  margin: 10px;
}
.card-item:hover {
  box-shadow: 0 8px 24px var(--heading-color);
  transform: translateY(-5px);
}
.card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  flex-shrink: 0;
}
.card-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .list-cards {
    flex-direction: column;
  }
  .card-item {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
  padding: 80px 0;
}

.success-story-item {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(204, 102, 0, 0.1);
}

.success-story-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(204, 102, 0, 0.2);
}

.story-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.success-story-item h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.story-meta {
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.story-content {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.story-result {
  margin-top: 20px;
}

.result-badge {
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

.cta-section {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid rgba(204, 102, 0, 0.2);
}

.cta-section h3 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.cta-section p {
  color: var(--default-color);
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .success-story-item {
    padding: 20px;
  }
  
  .story-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .cta-section {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Futuristic Benefits Section
--------------------------------------------------------------*/

.futuristic-benefits {
  position: relative;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #ffffff 100%);
  overflow: hidden;
  padding: 100px 0;
}

.futuristic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #a8e6cf, transparent),
    radial-gradient(2px 2px at 40px 70px, #ffd6e0, transparent),
    radial-gradient(1px 1px at 90px 40px, #c8e6d5, transparent),
    radial-gradient(1px 1px at 130px 80px, #a8e6cf, transparent),
    radial-gradient(2px 2px at 160px 30px, #ffd6e0, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 20s linear infinite;
  opacity: 0.3;
}

@keyframes float {
  0% { transform: translateY(0px) translateX(0px); }
  33% { transform: translateY(-30px) translateX(30px); }
  66% { transform: translateY(30px) translateX(-20px); }
  100% { transform: translateY(0px) translateX(0px); }
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(204, 102, 0, 0.1) 0%, 
    transparent 25%, 
    transparent 75%, 
    rgba(255, 107, 107, 0.1) 100%);
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.title-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(45deg, #a8e6cf, #ffd6e0);
  color: #1a1f2e;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.futuristic-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-line {
  display: block;
  background: linear-gradient(45deg, #ffffff, #a8e6cf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line.highlight {
  background: linear-gradient(45deg, #a8e6cf, #ffd6e0, #c8e6d5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

.futuristic-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.futuristic-card {
  position: relative;
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(204, 102, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.futuristic-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(204, 102, 0, 0.8);
  box-shadow: 0 20px 40px rgba(204, 102, 0, 0.2);
}

.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #cc6600, #ff6b6b, #00d4ff, #cc6600);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.futuristic-card:hover .card-glow {
  opacity: 1;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.card-content {
  position: relative;
  z-index: 2;
}

.benefit-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(204, 102, 0, 0.2), rgba(255, 107, 107, 0.2));
  border-radius: 50%;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.benefit-icon {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  color: var(--primary-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.futuristic-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.futuristic-card p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

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

.tech-indicator {
  display: inline-block;
  background: rgba(204, 102, 0, 0.2);
  color: var(--primary-green-dark);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(204, 102, 0, 0.3);
}

.process-overview-futuristic {
  position: relative;
  z-index: 2;
  margin-top: 80px;
}

.process-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #ffffff;
}

.process-badge {
  display: block;
  background: linear-gradient(45deg, #00d4ff, #cc6600);
  color: #1a1f2e;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #a8e6cf, #ffd6e0, #c8e6d5, #a8e6cf);
  z-index: 1;
  animation: lineFlow 3s ease-in-out infinite;
}

@keyframes lineFlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.process-step-futuristic {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-number-futuristic {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #a8e6cf, #ffd6e0);
  color: #1a1f2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.step-content h4 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-content p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.4;
}

.step-connector {
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #a8e6cf, transparent);
  z-index: 1;
}

.process-step-futuristic:last-child .step-connector {
  display: none;
}

.cta-section-futuristic {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 40px;
  background: rgba(26, 26, 46, 0.6);
  border-radius: 30px;
  border: 1px solid rgba(204, 102, 0, 0.3);
  backdrop-filter: blur(10px);
  margin-top: 80px;
}

.cta-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #cc6600, #ff6b6b, #00d4ff, #cc6600);
  border-radius: 32px;
  z-index: -1;
  opacity: 0.3;
  animation: rotate 4s linear infinite;
}

.cta-section-futuristic h3 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section-futuristic p {
  color: #6b7280;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-futuristic {
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #a8e6cf, #ffd6e0);
  color: #1a1f2e;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.btn-futuristic:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(204, 102, 0, 0.4);
  color: #1a1f2e;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-futuristic:hover .btn-glow {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .futuristic-title {
    font-size: 2.5rem;
  }
  
  .futuristic-card {
    padding: 20px;
  }
  
  .process-timeline {
    flex-direction: column;
    gap: 40px;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .step-connector {
    display: none;
  }
  
  .cta-section-futuristic {
    padding: 40px 20px;
  }
  
  .cta-section-futuristic h3 {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# Futuristic About Section
--------------------------------------------------------------*/

.futuristic-about {
  position: relative;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #ffffff 100%);
  overflow: hidden;
  padding: 100px 0;
}

.futuristic-bg-about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.geometric-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    polygon(20% 0%, 40% 20%, 20% 40%, 0% 20%),
    polygon(80% 0%, 100% 20%, 80% 40%, 60% 20%),
    polygon(20% 60%, 40% 80%, 20% 100%, 0% 80%),
    polygon(80% 60%, 100% 80%, 80% 100%, 60% 80%);
  background-size: 100px 100px, 80px 80px, 120px 120px, 90px 90px;
  background-position: 0% 0%, 100% 0%, 0% 100%, 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.1;
  animation: geometricFloat 15s ease-in-out infinite;
}

@keyframes geometricFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(2deg); }
  66% { transform: translateY(10px) rotate(-1deg); }
}

.gradient-overlay-about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 212, 255, 0.1) 0%, 
    transparent 30%, 
    transparent 70%, 
    rgba(204, 102, 0, 0.1) 100%);
  animation: gradientShiftAbout 10s ease-in-out infinite;
}

@keyframes gradientShiftAbout {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.title-wrapper-about {
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-badge-about {
  display: inline-block;
  background: linear-gradient(45deg, #00d4ff, #cc6600);
  color: #1a1f2e;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulseAbout 2.5s ease-in-out infinite;
}

@keyframes pulseAbout {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.futuristic-title-about {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-line-about {
  display: block;
  background: linear-gradient(45deg, #ffffff, #c8e6d5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-about.highlight-about {
  background: linear-gradient(45deg, #00d4ff, #cc6600, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlowAbout 3.5s ease-in-out infinite;
}

@keyframes textGlowAbout {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.4); }
}

.futuristic-subtitle-about {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-card-futuristic {
  position: relative;
  background: rgba(15, 15, 35, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.about-card-futuristic:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.8);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.card-glow-about {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00d4ff, #cc6600, #ff6b6b, #00d4ff);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-card-futuristic:hover .card-glow-about {
  opacity: 1;
  animation: rotateAbout 3s linear infinite;
}

@keyframes rotateAbout {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.card-content-about {
  position: relative;
  z-index: 2;
}

.icon-wrapper-about {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.icon-bg-about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 212, 255, 0.2), rgba(204, 102, 0, 0.2));
  border-radius: 50%;
  animation: iconPulseAbout 2.5s ease-in-out infinite;
}

@keyframes iconPulseAbout {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}

.icon-about {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  color: #00d4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.about-card-futuristic h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.about-card-futuristic p {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}

.card-footer-about {
  text-align: center;
}

.tech-badge-about {
  display: inline-block;
  background: rgba(0, 212, 255, 0.2);
  color: #00d4ff;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.mission-statement {
  position: relative;
  background: rgba(15, 15, 35, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 30px;
  padding: 50px;
  backdrop-filter: blur(10px);
  margin-top: 60px;
}

.mission-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00d4ff, #cc6600, #ff6b6b, #00d4ff);
  border-radius: 32px;
  z-index: -1;
  opacity: 0.3;
  animation: rotateAbout 4s linear infinite;
}

.mission-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.mission-content h3 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.mission-content p {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mission-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* Old stat styles removed - replaced with mission-benefits */

/*--------------------------------------------------------------
# Futuristic FAQ Section
--------------------------------------------------------------*/

.futuristic-faq {
  position: relative;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #fafafa 100%);
  overflow: hidden;
  padding: 100px 0;
}

.futuristic-bg-faq {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.circuit-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, transparent 98%, #cc6600 100%),
    linear-gradient(0deg, transparent 98%, #ff6b6b 100%),
    linear-gradient(45deg, transparent 98%, #00d4ff 100%);
  background-size: 50px 50px, 30px 30px, 80px 80px;
  background-position: 0 0, 25px 25px, 40px 40px;
  opacity: 0.1;
  animation: circuitFlow 20s linear infinite;
}

@keyframes circuitFlow {
  0% { transform: translateX(0px) translateY(0px); }
  100% { transform: translateX(50px) translateY(50px); }
}

.gradient-overlay-faq {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, 
    rgba(255, 107, 107, 0.1) 0%, 
    transparent 25%, 
    transparent 75%, 
    rgba(204, 102, 0, 0.1) 100%);
  animation: gradientShiftFaq 12s ease-in-out infinite;
}

@keyframes gradientShiftFaq {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.title-wrapper-faq {
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-badge-faq {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #cc6600);
  color: #1a1f2e;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulseFaq 3s ease-in-out infinite;
}

@keyframes pulseFaq {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.futuristic-title-faq {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.title-line-faq {
  display: block;
  background: linear-gradient(45deg, #ffffff, #ffd6e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line-faq.highlight-faq {
  background: linear-gradient(45deg, #ff6b6b, #cc6600, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlowFaq 4s ease-in-out infinite;
}

@keyframes textGlowFaq {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.5); }
}

.futuristic-subtitle-faq {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-container-futuristic {
  position: relative;
  z-index: 2;
}

.faq-item-futuristic {
  position: relative;
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 20px;
  margin-bottom: 20px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.faq-item-futuristic:hover {
  border-color: rgba(255, 107, 107, 0.8);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.faq-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b6b, #cc6600, #00d4ff, #ff6b6b);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-item-futuristic:hover .faq-glow {
  opacity: 1;
  animation: rotateFaq 3s linear infinite;
}

@keyframes rotateFaq {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.faq-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.faq-icon-wrapper-faq {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, rgba(255, 107, 107, 0.2), rgba(204, 102, 0, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon-futuristic {
  font-size: 1.5rem;
  color: #ff6b6b;
}

.faq-header h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle-futuristic {
  width: 30px;
  height: 30px;
  background: rgba(255, 107, 107, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-toggle-futuristic i {
  color: #ff6b6b;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item-futuristic:hover .faq-toggle-futuristic {
  background: rgba(255, 107, 107, 0.4);
  transform: scale(1.1);
}

.faq-content-futuristic {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 107, 107, 0.2);
}

.faq-content-futuristic p {
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.faq-active-futuristic .faq-content-futuristic {
  display: block;
}

/*--------------------------------------------------------------
# New Spiritual Design Styles
--------------------------------------------------------------*/

/* Logo Icon */
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  animation: rotate 10s linear infinite;
}

.logo-icon i {
  font-size: 20px;
  color: var(--spiritual-white);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--gradient-spiritual);
  color: var(--spiritual-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 10px rgba(204, 102, 0, 0.3); }
  to { box-shadow: 0 0 20px rgba(204, 102, 0, 0.6); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-title .title-line {
  display: block;
  color: var(--default-color);
}

.hero-title .title-line.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--default-color);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: var(--spiritual-white);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(204, 102, 0, 0.3);
  color: var(--spiritual-white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--accent-color);
  padding: 15px 30px;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--accent-color);
  color: var(--spiritual-white);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.image-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: var(--gradient-aura);
  border-radius: 30px;
  opacity: 0.3;
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.element {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 20%;
  right: 10%;
  animation-delay: 1.5s;
}

.element-3 {
  bottom: 20%;
  left: 20%;
  animation-delay: 3s;
}

.element-4 {
  bottom: 10%;
  right: 20%;
  animation-delay: 4.5s;
}

/* Section Headers */
.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-secondary);
  color: var(--spiritual-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title .title-line {
  display: block;
  color: var(--default-color);
}

.section-title .title-line.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--default-color);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* About Cards */
.about-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(204, 102, 0, 0.1);
  height: 100%;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(204, 102, 0, 0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2rem;
  color: var(--spiritual-white);
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.about-card p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-aura);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.about-card:hover .card-glow {
  opacity: 0.1;
}

/* Practice Cards */
.practice-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(80, 227, 194, 0.1);
  height: 100%;
}

.practice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(80, 227, 194, 0.2);
}

.practice-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.practice-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.practice-card:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  font-size: 3rem;
  color: var(--spiritual-white);
}

.practice-content {
  padding: 30px;
}

.practice-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.practice-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.practice-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.practice-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--default-color);
}

.practice-features i {
  color: var(--spiritual-teal);
  font-size: 1.2rem;
}

/* Journey Timeline */
.journey-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--gradient-primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--spiritual-white);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-content {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 20px;
  flex: 1;
  position: relative;
  border: 1px solid rgba(204, 102, 0, 0.1);
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.timeline-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--spiritual-white);
}

/* FAQ Styles */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(106, 76, 147, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(106, 76, 147, 0.2);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(106, 76, 147, 0.05);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
  flex: 1;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--primary-pink-dark);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 30px 25px;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
}

/* Contact Form */
.contact-form {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(80, 227, 194, 0.1);
}

.contact-form .form-control {
  background: var(--background-color);
  border: 1px solid rgba(80, 227, 194, 0.2);
  border-radius: 10px;
  padding: 15px 20px;
  color: var(--default-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--spiritual-teal);
  box-shadow: 0 0 0 3px rgba(80, 227, 194, 0.1);
  background: var(--background-color);
  color: var(--default-color);
}

.contact-form .form-control::placeholder {
  color: var(--default-color);
  opacity: 0.6;
}

.contact-info {
  padding: 40px 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--spiritual-white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.info-content p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
  opacity: 0.8;
}

/* Newsletter Form */
.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  display: flex;
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px;
  border: 1px solid rgba(204, 102, 0, 0.2);
}

.newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 20px;
  color: var(--default-color);
  font-size: 1rem;
}

.newsletter-input input:focus {
  outline: none;
}

.newsletter-input input::placeholder {
  color: var(--default-color);
  opacity: 0.6;
}

.newsletter-input button {
  background: var(--gradient-primary);
  color: var(--spiritual-white);
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-input button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(204, 102, 0, 0.3);
}

/* Footer Updates */
.footer-about .logo-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.footer-about .logo-icon i {
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(204, 102, 0, 0.2);
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  color: var(--default-color);
  opacity: 0.6;
}

/* Hero Stats */
.hero-stats {
  padding-top: 2rem;
  border-top: 1px solid rgba(204, 102, 0, 0.2);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.8;
}

/* Modern Practice Cards */
.practice-card-modern {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(204, 102, 0, 0.1);
}

.practice-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(204, 102, 0, 0.2);
}

.practice-image-modern {
  height: 250px;
  position: relative;
}

.practice-image-modern img {
  object-fit: cover;
  height: 100%;
  transition: transform 0.5s ease;
}

.practice-card-modern:hover .practice-image-modern img {
  transform: scale(1.1);
}

.image-overlay-modern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(204, 102, 0, 0.7), rgba(45, 80, 22, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.practice-card-modern:hover .image-overlay-modern {
  opacity: 1;
}

.play-button {
  font-size: 4rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.practice-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--dark-orange);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.practice-content-modern {
  background: var(--surface-color);
}

.practice-icon {
  font-size: 2.5rem;
  color: var(--dark-orange);
  margin-bottom: 1rem;
}

.practice-content-modern h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
}

.practice-features-modern li {
  padding: 0.5rem 0;
  color: var(--default-color);
  opacity: 0.9;
}

.practice-features-modern i {
  color: var(--dark-green);
}

.practice-link {
  color: var(--dark-orange);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.practice-link:hover {
  color: var(--dark-green);
}

/* Modern Journey Steps */
.journey-timeline-modern {
  margin-top: 3rem;
}

.journey-step {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(204, 102, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.journey-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--dark-orange), var(--dark-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.journey-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(204, 102, 0, 0.15);
  border-color: var(--dark-orange);
}

.journey-step:hover::before {
  opacity: 1;
}

.step-number-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.step-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--dark-orange);
  opacity: 0.2;
  line-height: 1;
}

.step-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--dark-orange);
}

.step-content h3 {
  color: var(--heading-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.step-tag {
  background: rgba(204, 102, 0, 0.1);
  color: var(--dark-orange);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Modern Footer */
.footer-main {
  padding: 4rem 0 2rem;
  background: var(--surface-color);
  border-top: 1px solid rgba(204, 102, 0, 0.1);
}

.footer-brand {
  color: var(--default-color);
}

.logo-icon-large {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-orange), var(--dark-green));
  border-radius: 12px;
  font-size: 1.8rem;
  color: white;
}

.sitename-large {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
}

.footer-social {
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  border: 1px solid rgba(204, 102, 0, 0.2);
  border-radius: 50%;
  color: var(--dark-orange);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--dark-orange);
  color: white;
  transform: translateY(-3px);
  border-color: var(--dark-orange);
}

.footer-title {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-modern li {
  margin-bottom: 0.75rem;
}

.footer-links-modern a {
  color: var(--default-color);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links-modern a:hover {
  opacity: 1;
  color: var(--dark-orange);
  padding-left: 5px;
}

.footer-links-modern i {
  color: var(--dark-green);
  width: 20px;
}

.newsletter-form-modern .form-control {
  background: var(--background-color);
  border: 1px solid rgba(204, 102, 0, 0.2);
  color: var(--default-color);
  padding: 12px 16px;
  border-radius: 8px 0 0 8px;
}

.newsletter-form-modern .form-control:focus {
  border-color: var(--dark-orange);
  box-shadow: 0 0 0 0.2rem rgba(204, 102, 0, 0.25);
  background: var(--background-color);
  color: var(--default-color);
}

.btn-newsletter {
  background: linear-gradient(135deg, var(--dark-orange), var(--dark-green));
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.btn-newsletter:hover {
  background: linear-gradient(135deg, var(--dark-green), var(--dark-orange));
  transform: translateX(-2px);
}

.footer-legal h6 {
  color: var(--heading-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-bottom-modern {
  background: var(--background-color);
  border-top: 1px solid rgba(204, 102, 0, 0.2);
  padding: 1.5rem 0;
}

.footer-bottom-modern p {
  margin: 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* New Hero Styles */
.hero-content-new {
  padding: 2rem 0;
}

.hero-badge-new {
  display: inline-block;
}

.badge-text {
  background: linear-gradient(135deg, rgba(204, 102, 0, 0.2), rgba(45, 80, 22, 0.2));
  color: var(--dark-orange);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(204, 102, 0, 0.3);
}

.hero-title-new {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.hero-description-new {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--dark-orange), var(--dark-green));
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: none;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(204, 102, 0, 0.3);
  color: white;
}

.btn-hero-secondary {
  background: transparent;
  color: var(--dark-orange);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--dark-orange);
}

.btn-hero-secondary:hover {
  background: var(--dark-orange);
  color: white;
  transform: translateY(-2px);
}

.hero-highlights {
  margin-top: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--default-color);
  font-size: 0.95rem;
}

.highlight-item i {
  color: var(--dark-green);
  font-size: 1.2rem;
}

.hero-visual {
  position: relative;
}

.hero-image-new {
  position: relative;
}

.image-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--dark-orange);
  border-radius: 16px;
  z-index: 0;
}

.hero-img-main {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-badges {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.floating-badge {
  position: absolute;
  background: var(--surface-color);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(204, 102, 0, 0.3);
  animation: float-badge 3s ease-in-out infinite;
}

.floating-badge i {
  color: var(--dark-orange);
  font-size: 1.2rem;
}

.floating-badge span {
  color: var(--default-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.badge-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 30%;
  right: -5%;
  animation-delay: 1s;
}

.badge-3 {
  top: 50%;
  left: -10%;
  animation-delay: 2s;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Feature Cards New */
.feature-card-new {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(204, 102, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--dark-orange), var(--dark-green));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card-new:hover::before {
  transform: scaleX(1);
}

.feature-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(204, 102, 0, 0.2);
  border-color: var(--dark-orange);
}

.feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.feature-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(204, 102, 0, 0.2), rgba(45, 80, 22, 0.2));
  border-radius: 16px;
  transform: rotate(45deg);
}

.feature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: var(--dark-orange);
  z-index: 1;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.feature-list li {
  padding: 0.5rem 0;
  color: var(--default-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list i {
  color: var(--dark-green);
  font-size: 1.1rem;
}

/* Feature Details Section */
.feature-details-section {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(204, 102, 0, 0.2);
}

.feature-detail-image {
  position: relative;
}

.feature-detail-image img {
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.image-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--dark-orange), var(--dark-green));
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.detail-badge {
  display: inline-block;
  background: rgba(204, 102, 0, 0.1);
  color: var(--dark-orange);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

.detail-description {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
}

.detail-features {
  margin-top: 2rem;
}

.detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(204, 102, 0, 0.2), rgba(45, 80, 22, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-icon i {
  font-size: 1.5rem;
  color: var(--dark-orange);
}

.detail-text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.detail-text p {
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1.6;
}

/* Testimonials Section */
.testimonial-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(204, 102, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(204, 102, 0, 0.15);
  border-color: var(--dark-orange);
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--dark-orange);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 0.25rem 0;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.7;
  margin: 0;
}

.testimonial-rating {
  color: var(--dark-orange);
  font-size: 1rem;
}

.testimonial-content {
  margin: 1.5rem 0;
}

.testimonial-text {
  color: var(--default-color);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.testimonial-footer {
  text-align: right;
  margin-top: 1rem;
}

.testimonial-footer i {
  font-size: 3rem;
  color: var(--dark-orange);
  opacity: 0.2;
}

/* New Footer Styles */
.footer-new {
  background: var(--background-color);
}

.footer-top-new {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(204, 102, 0, 0.2);
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--dark-orange), var(--dark-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.footer-logo-icon i {
  font-size: 1.8rem;
  color: white;
}

.footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
}

.footer-description {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
}

.footer-social-new {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  background: var(--surface-color);
  border: 1px solid rgba(204, 102, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-orange);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: var(--dark-orange);
  color: white;
  transform: translateY(-3px);
  border-color: var(--dark-orange);
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-menu a {
  color: var(--default-color);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-menu a:hover {
  opacity: 1;
  color: var(--dark-orange);
  padding-left: 5px;
}

.widget-description {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-newsletter-form {
  margin-top: 1rem;
}

.newsletter-group {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--surface-color);
  border: 1px solid rgba(204, 102, 0, 0.2);
  color: var(--default-color);
  border-radius: 8px 0 0 8px;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--dark-orange);
  background: var(--surface-color);
  color: var(--default-color);
}

.newsletter-btn {
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--dark-orange), var(--dark-green));
  border: none;
  color: white;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, var(--dark-green), var(--dark-orange));
  transform: translateX(-2px);
}

.footer-contact-new {
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--default-color);
  opacity: 0.8;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.contact-item i {
  color: var(--dark-orange);
  width: 20px;
}

.contact-item a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--dark-orange);
}

.footer-bottom-new {
  background: var(--surface-color);
  border-top: 1px solid rgba(204, 102, 0, 0.2);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p,
.footer-made-with p {
  margin: 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-made-with i {
  color: var(--dark-orange);
  margin: 0 4px;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Page Hero Styles (for non-index pages) */
.hero-page {
  padding: 6rem 0 4rem;
}

.min-vh-75 {
  min-height: 75vh;
}

.page-hero-content {
  padding: 2rem 0;
}

.page-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(204, 102, 0, 0.2), rgba(45, 80, 22, 0.2));
  color: var(--dark-orange);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(204, 102, 0, 0.3);
  margin-bottom: 1.5rem;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.page-hero-description {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
}

.page-hero-image {
  position: relative;
}

.page-hero-image img {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* About Card New */
.about-card-new {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(204, 102, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--dark-orange), var(--dark-green));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-card-new:hover::before {
  transform: scaleX(1);
}

.about-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(204, 102, 0, 0.2);
  border-color: var(--dark-orange);
}

.about-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(204, 102, 0, 0.2), rgba(45, 80, 22, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.about-icon-wrapper i {
  font-size: 2rem;
  color: var(--dark-orange);
}

.about-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.about-card-text {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card-list li {
  padding: 0.5rem 0;
  color: var(--default-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-card-list i {
  color: var(--dark-green);
  font-size: 1.1rem;
}

/* Mission New Styles */
.mission-content-new {
  padding: 2rem 0;
}

.mission-badge {
  display: inline-block;
  background: rgba(204, 102, 0, 0.1);
  color: var(--dark-orange);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mission-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

.mission-text {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
}

.mission-benefits {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.mission-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(168, 230, 207, 0.1);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 50px;
  color: rgba(232, 232, 232, 0.9);
  font-size: 0.9375rem;
  font-weight: 500;
}

.mission-benefit i {
  color: var(--primary-green-dark);
  font-size: 1rem;
}

.mission-image-new {
  position: relative;
}

.mission-image-new img {
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.mission-image-overlay {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--dark-orange), var(--dark-green));
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

/* Value Card New */
.value-card-new {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(204, 102, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(204, 102, 0, 0.15);
  border-color: var(--dark-orange);
}

.value-icon-new {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(204, 102, 0, 0.2), rgba(45, 80, 22, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon-new i {
  font-size: 2rem;
  color: var(--dark-orange);
}

.value-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.value-text {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 2rem !important;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .practice-card-modern {
    margin-bottom: 2rem;
  }
  
  .journey-step {
    margin-bottom: 2rem;
  }
  
  .footer-main {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-title {
    margin-top: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .timeline-item {
    flex-direction: column !important;
    text-align: center;
  }
  
  .timeline-item::before {
    display: none;
  }
  
  .journey-timeline::before {
    display: none;
  }
  
  .floating-elements {
    display: none;
  }
}

.faq-active-futuristic .faq-toggle-futuristic i {
  transform: rotate(180deg);
}

/* Responsive Design for About and FAQ */
@media (max-width: 768px) {
  .futuristic-title-about,
  .futuristic-title-faq {
    font-size: 2.5rem;
  }
  
  .about-card-futuristic,
  .faq-content-wrapper {
    padding: 20px;
  }
  
  .mission-statement {
    padding: 30px 20px;
  }
  
  .mission-benefits {
    gap: 1rem;
  }
  
  .mission-benefit {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
  }
  
  .faq-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .faq-header h3 {
    font-size: 1.1rem;
  }
}

/* Thanks Page Styles */
.thanks-section {
  padding: 6rem 0 4rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thanks-content {
  padding: 3rem 0;
}

.thanks-icon {
  margin-bottom: 2rem;
}

.icon-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--dark-orange), var(--dark-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(204, 102, 0, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(204, 102, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(204, 102, 0, 0.4);
  }
}

.icon-circle i {
  font-size: 4rem;
  color: white;
}

.thanks-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.thanks-subtitle {
  font-size: 1.5rem;
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.thanks-description {
  font-size: 1.1rem;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.thanks-actions {
  margin-top: 3rem;
}

/* What's Next Section */
.whats-next-section {
  padding: 4rem 0;
}

.next-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(204, 102, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.next-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(204, 102, 0, 0.2);
  border-color: var(--dark-orange);
}

.next-icon-wrapper {
  margin-bottom: 1.5rem;
}

.next-icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(204, 102, 0, 0.2), rgba(45, 80, 22, 0.2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.next-card:hover .next-icon-bg {
  background: linear-gradient(135deg, var(--dark-orange), var(--dark-green));
  transform: scale(1.1);
}

.next-icon-bg i {
  font-size: 2.5rem;
  color: var(--dark-orange);
  transition: all 0.3s ease;
}

.next-card:hover .next-icon-bg i {
  color: white;
}

.next-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.next-text {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.next-link {
  color: var(--dark-orange);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.next-link:hover {
  color: var(--dark-green);
  padding-left: 5px;
}

.next-link i {
  transition: transform 0.3s ease;
}

.next-link:hover i {
  transform: translateX(5px);
}

/* Responsive Design for Thanks Page */
@media (max-width: 768px) {
  .thanks-section {
    padding: 4rem 0 3rem;
  }
  
  .thanks-title {
    font-size: 2.5rem;
  }
  
  .thanks-subtitle {
    font-size: 1.2rem;
  }
  
  .thanks-description {
    font-size: 1rem;
  }
  
  .icon-circle {
    width: 100px;
    height: 100px;
  }
  
  .icon-circle i {
    font-size: 3rem;
  }
  
  .next-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .thanks-actions .btn-hero-primary,
  .thanks-actions .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Modern Header Styles
--------------------------------------------------------------*/
.header-modern {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 230, 207, 0.1);
  transition: all 0.3s ease;
}

.header-modern.scrolled {
  background: rgba(10, 15, 26, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  padding: 0;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.logo-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-modern:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.logo-icon i {
  font-size: 24px;
  color: #ffffff;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-tagline {
  font-size: 0.75rem;
  color: rgba(232, 232, 232, 0.6);
  font-weight: 400;
  line-height: 1;
  margin-top: 2px;
}

.nav-modern {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  color: rgba(232, 232, 232, 0.8);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(168, 230, 207, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: rgba(26, 31, 46, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 12px;
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown .dropdown-menu li {
  margin: 0;
}

.nav-dropdown .dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(232, 232, 232, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-dropdown .dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(168, 230, 207, 0.15);
  padding-left: 1.25rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header-primary,
.btn-header-secondary {
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-header-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.btn-header-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 230, 207, 0.4);
}

.btn-header-secondary {
  background: transparent;
  color: rgba(232, 232, 232, 0.8);
  border: 1px solid rgba(168, 230, 207, 0.3);
}

.btn-header-secondary:hover {
  color: #ffffff;
  border-color: rgba(168, 230, 207, 0.6);
  background: rgba(168, 230, 207, 0.1);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10001;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.header-border {
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

/*--------------------------------------------------------------
# Mobile Menu
--------------------------------------------------------------*/
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: rgba(10, 15, 26, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(168, 230, 207, 0.3);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(168, 230, 207, 0.2);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
}

.mobile-menu-logo .logo-icon {
  width: 40px;
  height: 40px;
}

.mobile-menu-logo .logo-name {
  font-size: 1rem;
  font-weight: 700;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 230, 207, 0.1);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(168, 230, 207, 0.2);
  border-color: rgba(168, 230, 207, 0.4);
}

.mobile-menu-nav {
  flex: 1;
  padding: 1rem 0;
  overflow-y: auto;
}

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

.mobile-menu-list > li {
  border-bottom: 1px solid rgba(168, 230, 207, 0.1);
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  color: rgba(232, 232, 232, 0.9);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: #ffffff;
  background: rgba(168, 230, 207, 0.1);
  padding-left: 2rem;
}

.mobile-menu-link-dropdown i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.mobile-menu-dropdown.active .mobile-menu-link-dropdown i {
  transform: rotate(180deg);
}

.mobile-menu-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.mobile-menu-dropdown.active .mobile-menu-submenu {
  max-height: 500px;
}

.mobile-menu-submenu li {
  border-bottom: none;
}

.mobile-menu-submenu a {
  display: block;
  padding: 0.75rem 1.5rem 0.75rem 3rem;
  color: rgba(232, 232, 232, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.mobile-menu-submenu a:hover {
  color: var(--primary-green);
  background: rgba(168, 230, 207, 0.1);
  padding-left: 3.5rem;
}

.mobile-menu-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(168, 230, 207, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-mobile-primary,
.btn-mobile-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-mobile-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.btn-mobile-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 230, 207, 0.4);
}

.btn-mobile-secondary {
  background: transparent;
  color: var(--primary-green);
  border: 1px solid rgba(168, 230, 207, 0.3);
}

.btn-mobile-secondary:hover {
  background: rgba(168, 230, 207, 0.1);
  border-color: rgba(168, 230, 207, 0.5);
}

body.mobile-nav-active {
  overflow: hidden;
}

/* Mobile Header Styles */
@media (max-width: 1199px) {
  .nav-modern {
    display: none !important;
  }

  .header-wrapper {
    justify-content: space-between;
  }

  .header-actions {
    gap: 0;
    margin-left: auto;
  }

  .btn-header-primary,
  .btn-header-secondary {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    margin-left: 1rem;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

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

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

@media (max-width: 575px) {
  .logo-tagline {
    display: none;
  }

  .logo-name {
    font-size: 1rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-icon i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Modern Footer Styles
--------------------------------------------------------------*/
.footer-modern {
  background: linear-gradient(180deg, #0a0f1a 0%, #1a1f2e 100%);
  color: rgba(232, 232, 232, 0.8);
  margin-top: 5rem;
}

.footer-main {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid rgba(168, 230, 207, 0.1);
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo-modern {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.footer-logo-icon-modern {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.footer-logo-icon-modern i {
  font-size: 24px;
  color: #ffffff;
}

.footer-logo-text-modern {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-tagline {
  font-size: 0.75rem;
  color: rgba(232, 232, 232, 0.6);
  font-weight: 400;
  line-height: 1;
  margin-top: 2px;
}

.footer-description-modern {
  color: rgba(232, 232, 232, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.footer-social-modern {
  display: flex;
  gap: 0.75rem;
}

.social-link-modern {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 230, 207, 0.1);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 8px;
  color: rgba(232, 232, 232, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-modern:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.footer-column {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(232, 232, 232, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 0.5rem;
}

.footer-newsletter-text {
  color: rgba(232, 232, 232, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-newsletter-modern {
  margin-top: 1rem;
}

.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  background: rgba(26, 31, 46, 0.5);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: rgba(168, 230, 207, 0.5);
  box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.1);
}

.newsletter-input-modern {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.9375rem;
  padding: 0.5rem;
  outline: none;
}

.newsletter-input-modern::placeholder {
  color: rgba(232, 232, 232, 0.5);
}

.newsletter-btn-modern {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border: none;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn-modern:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.footer-contact-bar {
  padding: 1.5rem 0;
  background: rgba(10, 15, 26, 0.5);
  border-bottom: 1px solid rgba(168, 230, 207, 0.1);
}

.footer-contact-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(232, 232, 232, 0.7);
  font-size: 0.875rem;
}

.footer-contact-item i {
  color: var(--primary-green-dark);
  font-size: 1rem;
}

.footer-contact-item a {
  color: rgba(232, 232, 232, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #ffffff;
}

.footer-bottom-modern {
  padding: 1.5rem 0;
  background: rgba(10, 15, 26, 0.8);
}

.footer-bottom-content-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright-modern {
  color: rgba(232, 232, 232, 0.6);
  font-size: 0.875rem;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-legal-links a {
  color: rgba(232, 232, 232, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

.footer-legal-links .separator {
  color: rgba(232, 232, 232, 0.3);
}

/* Footer Responsive */
@media (max-width: 991px) {
  .footer-main {
    padding: 3rem 0 1.5rem;
  }

  .footer-contact-items {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-bottom-content-modern {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .footer-logo-tagline {
    display: none;
  }

  .footer-logo-name {
    font-size: 1rem;
  }

  .footer-logo-icon-modern {
    width: 40px;
    height: 40px;
  }

  .footer-logo-icon-modern i {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Modern Hero Section
--------------------------------------------------------------*/
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0f1a 0%, #1a1f2e 50%, #0a0f1a 100%);
}

.hero-background-modern {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(168, 230, 207, 0.15) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(168, 230, 207, 0.3), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(255, 214, 224, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(168, 230, 207, 0.2), transparent);
  background-size: 200% 200%;
  animation: particleMove 15s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(168, 230, 207, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 230, 207, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes particleMove {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
}

.hero-content-modern {
  position: relative;
  z-index: 1;
}

.hero-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(168, 230, 207, 0.1);
  border: 1px solid rgba(168, 230, 207, 0.3);
  border-radius: 50px;
  color: var(--primary-green);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-badge-modern i {
  font-size: 1rem;
}

.hero-title-modern {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description-modern {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-benefits-modern {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(168, 230, 207, 0.1);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 50px;
  color: rgba(232, 232, 232, 0.9);
  font-size: 0.9375rem;
  font-weight: 500;
}

.hero-benefit-item i {
  color: var(--primary-green-dark);
  font-size: 1rem;
}

.hero-actions-modern {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary-modern {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(168, 230, 207, 0.4);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(168, 230, 207, 0.5);
}

.btn-secondary-modern {
  background: rgba(26, 31, 46, 0.8);
  border: 1px solid rgba(168, 230, 207, 0.3);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
  background: rgba(168, 230, 207, 0.1);
  border-color: rgba(168, 230, 207, 0.5);
}

.hero-visual-modern {
  position: relative;
  z-index: 1;
  background: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  margin: 2rem 0;
}

.hero-window-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(26, 31, 46, 0.8);
  border-bottom: 1px solid rgba(168, 230, 207, 0.2);
}

.hero-window-header .dashboard-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-window-header .dashboard-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(168, 230, 207, 0.5);
}

.hero-window-header .dashboard-dots span:nth-child(1) { background: #ef4444; }
.hero-window-header .dashboard-dots span:nth-child(2) { background: #f59e0b; }
.hero-window-header .dashboard-dots span:nth-child(3) { background: #10b981; }

.hero-window-header .dashboard-title {
  color: rgba(232, 232, 232, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-window-content {
  padding: 2rem 3rem;
}

.hero-window-content .col-lg-6:last-child {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-modern {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  min-height: 400px;
}

.hero-dashboard-card {
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(168, 230, 207, 0.2);
}

.dashboard-dots {
  display: flex;
  gap: 0.5rem;
}

.dashboard-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(168, 230, 207, 0.5);
}

.dashboard-dots span:nth-child(1) { background: #ef4444; }
.dashboard-dots span:nth-child(2) { background: #f59e0b; }
.dashboard-dots span:nth-child(3) { background: #10b981; }

.dashboard-title {
  color: rgba(232, 232, 232, 0.8);
  font-size: 0.875rem;
  font-weight: 500;
}

.dashboard-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dashboard-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(168, 230, 207, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(168, 230, 207, 0.1);
}

.metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.metric-icon.blue {
  background: rgba(168, 230, 207, 0.3);
  color: var(--primary-green-dark);
}

.metric-icon.purple {
  background: rgba(255, 214, 224, 0.3);
  color: var(--primary-pink-dark);
}

.metric-icon.green {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.metric-info {
  flex: 1;
}

.metric-label {
  font-size: 0.75rem;
  color: rgba(232, 232, 232, 0.6);
  margin-bottom: 0.5rem;
}

.metric-status {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green-dark);
  padding: 0.25rem 0.75rem;
  background: rgba(168, 230, 207, 0.1);
  border-radius: 20px;
  display: inline-block;
}

.floating-card {
  position: absolute;
  background: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 230, 207, 0.3);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: var(--primary-green-dark);
  font-size: 1.25rem;
}

.floating-card.card-1 {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 20%;
  right: -5%;
  animation-delay: 1s;
}

.floating-card.card-3 {
  top: 50%;
  left: -5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/*--------------------------------------------------------------
# Modern Journey Section
--------------------------------------------------------------*/
.journey-modern {
  padding: 6rem 0;
  background: linear-gradient(180deg, #1a1f2e 0%, #0a0f1a 100%);
  position: relative;
}

.section-header-modern {
  margin-bottom: 4rem;
}

.section-badge-modern {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(168, 230, 207, 0.1);
  border: 1px solid rgba(168, 230, 207, 0.3);
  border-radius: 50px;
  color: var(--primary-green);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-modern {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-description-modern {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.journey-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(168, 230, 207, 0.2);
}

.journey-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  min-height: 400px;
}

.journey-process-modern {
  position: relative;
}

.process-step-modern {
  position: relative;
  background: rgba(26, 31, 46, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.process-step-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(168, 230, 207, 0.5);
  box-shadow: 0 10px 40px rgba(168, 230, 207, 0.2);
}

.step-number-modern {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.step-icon-modern {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(168, 230, 207, 0.3);
}

.step-icon-modern i {
  font-size: 1.75rem;
  color: #ffffff;
}

.step-content-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.step-content-modern p {
  color: rgba(232, 232, 232, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-features-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-features-modern li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: rgba(232, 232, 232, 0.7);
  font-size: 0.9375rem;
}

.step-features-modern i {
  color: var(--primary-green-dark);
  font-size: 1rem;
}

.step-connector {
  display: none;
}

@media (min-width: 992px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 50%;
    right: -2rem;
    width: 4rem;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
    z-index: 1;
  }

  .step-connector::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-blue);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
}

/*--------------------------------------------------------------
# Modern Features Section
--------------------------------------------------------------*/
.features-modern {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0a0f1a 0%, #1a1f2e 100%);
}

.features-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(168, 230, 207, 0.2);
}

.features-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  min-height: 400px;
}

.features-container-modern {
  margin-top: 3rem;
}

.feature-item-modern {
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-item-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item-modern:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 230, 207, 0.5);
  box-shadow: 0 15px 50px rgba(168, 230, 207, 0.2);
}

.feature-item-modern:hover::before {
  transform: scaleX(1);
}

.feature-header-modern {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-icon-wrapper-modern {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper-modern.blue {
  background: rgba(168, 230, 207, 0.3);
  color: var(--primary-green-dark);
}

.feature-icon-wrapper-modern.purple {
  background: rgba(255, 214, 224, 0.3);
  color: var(--primary-pink-dark);
}

.feature-icon-wrapper-modern.green {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.feature-icon-wrapper-modern.orange {
  background: rgba(249, 115, 22, 0.2);
  color: #f97316;
}

.feature-icon-wrapper-modern.pink {
  background: rgba(236, 72, 153, 0.2);
  color: #ec4899;
}

.feature-icon-wrapper-modern.teal {
  background: rgba(20, 184, 166, 0.2);
  color: #14b8a6;
}

.feature-title-wrapper-modern {
  flex: 1;
}

.feature-title-wrapper-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.feature-subtitle {
  font-size: 0.9375rem;
  color: rgba(232, 232, 232, 0.6);
  margin: 0;
}

.feature-description-modern {
  color: rgba(232, 232, 232, 0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.feature-tags-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  padding: 0.375rem 0.875rem;
  background: rgba(168, 230, 207, 0.1);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 20px;
  color: var(--primary-green);
  font-size: 0.8125rem;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Modern Testimonials Section
--------------------------------------------------------------*/
.testimonials-modern {
  padding: 6rem 0;
  background: linear-gradient(180deg, #1a1f2e 0%, #0a0f1a 100%);
}

.testimonials-image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(168, 230, 207, 0.2);
}

.testimonials-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  min-height: 400px;
}

.testimonials-container-modern {
  margin-top: 3rem;
}

.testimonial-item-modern {
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-item-modern:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 230, 207, 0.5);
  box-shadow: 0 15px 50px rgba(168, 230, 207, 0.2);
}

.testimonial-header-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(168, 230, 207, 0.2);
}

.testimonial-avatar-item-modern {
  flex-shrink: 0;
}

.avatar-circle-modern {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(168, 230, 207, 0.3);
}

.testimonial-meta-modern {
  flex: 1;
}

.testimonial-name-item-modern {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.testimonial-role-item-modern {
  font-size: 0.9375rem;
  color: rgba(232, 232, 232, 0.8);
  margin-bottom: 0.25rem;
}

.testimonial-company-modern {
  font-size: 0.875rem;
  color: rgba(232, 232, 232, 0.6);
  margin: 0;
}

.testimonial-rating-item-modern {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.testimonial-rating-item-modern i {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-body-modern {
  flex: 1;
  position: relative;
  margin-bottom: 2rem;
}

.quote-icon-top {
  position: absolute;
  top: -0.5rem;
  left: 0;
  width: 40px;
  height: 40px;
  background: rgba(168, 230, 207, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green-dark);
  font-size: 1.25rem;
  opacity: 0.6;
}

.quote-icon-bottom {
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  width: 40px;
  height: 40px;
  background: rgba(168, 230, 207, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green-dark);
  font-size: 1.25rem;
  opacity: 0.6;
  transform: rotate(180deg);
}

.testimonial-text-item-modern {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(232, 232, 232, 0.9);
  font-style: italic;
  padding: 1rem 0;
  margin: 0;
}

.testimonial-footer-item-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(168, 230, 207, 0.2);
}

.testimonial-category-modern {
  padding: 0.375rem 0.875rem;
  background: rgba(168, 230, 207, 0.1);
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 20px;
  color: var(--primary-green);
  font-size: 0.8125rem;
  font-weight: 500;
}

.metric-status {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green-dark);
  padding: 0.25rem 0.75rem;
  background: rgba(168, 230, 207, 0.1);
  border-radius: 20px;
  display: inline-block;
  margin-top: 0.25rem;
}

.metric-label {
  font-size: 0.875rem;
  color: rgba(232, 232, 232, 0.6);
  margin-bottom: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-benefits-modern {
    gap: 1rem;
  }
  
  .hero-benefit-item {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
  }

  .floating-card {
    display: none;
  }

  .step-connector {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-title-modern {
    font-size: 2rem;
  }

  .hero-actions-modern {
    flex-direction: column;
  }

  .btn-hero-modern {
    width: 100%;
    justify-content: center;
  }

  .section-title-modern {
    font-size: 1.75rem;
  }
}

/* ============================================
   NEW HEADER STYLES
   ============================================ */

.header-new {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(168, 230, 207, 0.1);
  transition: all 0.3s ease;
}

.header-new.scrolled {
  box-shadow: 0 4px 30px rgba(255, 214, 224, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.05) 0%, rgba(255, 214, 224, 0.05) 100%);
  pointer-events: none;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1;
}

.header-logo-section {
  flex-shrink: 0;
}

.logo-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-new:hover {
  transform: scale(1.02);
}

.logo-icon-new {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf 0%, #ffd6e0 100%);
  border-radius: 12px;
  color: #1a1f2e;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.logo-text-new {
  display: flex;
  flex-direction: column;
}

.logo-name-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2e;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.logo-tagline-new {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1;
  margin-top: 2px;
}

.nav-new {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-list-new {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link-new {
  color: #1a1f2e;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link-new::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #a8e6cf, #ffd6e0);
  transition: width 0.3s ease;
}

.nav-link-new:hover,
.nav-link-new.active {
  color: #2d8659;
}

.nav-link-new:hover::after,
.nav-link-new.active::after {
  width: 100%;
}

.nav-dropdown-new {
  position: relative;
}

.nav-dropdown-new:hover .dropdown-menu-new {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-new {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 1rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(168, 230, 207, 0.2);
  padding: 0.75rem 0;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown-menu-new li {
  margin: 0;
}

.dropdown-menu-new a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #1a1f2e;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu-new a:hover {
  background: linear-gradient(90deg, rgba(168, 230, 207, 0.1), rgba(255, 214, 224, 0.1));
  color: #2d8659;
  padding-left: 2rem;
}

.header-actions-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-header-new {
  padding: 0.625rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  border: none;
  cursor: pointer;
}

.btn-header-secondary-new {
  background: transparent;
  color: #1a1f2e;
  border: 2px solid rgba(168, 230, 207, 0.3);
}

.btn-header-secondary-new:hover {
  background: rgba(168, 230, 207, 0.1);
  border-color: #a8e6cf;
  transform: translateY(-2px);
}

.btn-header-primary-new {
  background: linear-gradient(135deg, #a8e6cf 0%, #ffd6e0 100%);
  color: #1a1f2e;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.btn-header-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 224, 0.4);
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #1a1f2e;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-new {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-new.active {
  right: 0;
}

.mobile-menu-header-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(168, 230, 207, 0.2);
}

.mobile-logo-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #1a1f2e;
  font-weight: 700;
  font-size: 1.25rem;
}

.mobile-logo-new i {
  font-size: 1.5rem;
  color: #2d8659;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #1a1f2e;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-new {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}

.mobile-link-new {
  display: block;
  padding: 1rem;
  color: #1a1f2e;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.mobile-link-new:hover {
  background: linear-gradient(90deg, rgba(168, 230, 207, 0.1), rgba(255, 214, 224, 0.1));
  color: #2d8659;
}

.mobile-menu-actions-new {
  padding: 1.5rem;
  border-top: 1px solid rgba(168, 230, 207, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-mobile-new {
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-mobile-primary-new {
  background: linear-gradient(135deg, #a8e6cf 0%, #ffd6e0 100%);
  color: #1a1f2e;
}

.btn-mobile-secondary-new {
  background: transparent;
  color: #1a1f2e;
  border: 2px solid rgba(168, 230, 207, 0.3);
}

@media (max-width: 991px) {
  .nav-new {
    display: none;
  }
  
  .header-content {
    padding: 1rem;
  }
}

@media (max-width: 575px) {
  .logo-name-new {
    font-size: 1.25rem;
  }
  
  .logo-tagline-new {
    font-size: 0.65rem;
  }
  
  .logo-icon-new {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}

/* ============================================
   NEW FOOTER STYLES
   ============================================ */

.footer-new {
  position: relative;
  background: #fafafa;
  padding-top: 4rem;
  padding-bottom: 2rem;
  margin-top: 4rem;
}

.footer-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.05) 0%, rgba(255, 214, 224, 0.05) 100%);
  pointer-events: none;
}

.footer-content-new {
  position: relative;
  z-index: 1;
}

.footer-brand-new {
  margin-bottom: 2rem;
}

.footer-logo-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.footer-logo-icon-new {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf 0%, #ffd6e0 100%);
  border-radius: 12px;
  color: #1a1f2e;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.2);
}

.footer-logo-text-new {
  display: flex;
  flex-direction: column;
}

.footer-logo-name-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2e;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.footer-logo-tagline-new {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1;
  margin-top: 2px;
}

.footer-description-new {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social-new {
  display: flex;
  gap: 1rem;
}

.social-link-new {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  color: #1a1f2e;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(168, 230, 207, 0.1);
}

.social-link-new:hover {
  background: linear-gradient(135deg, #a8e6cf 0%, #ffd6e0 100%);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.footer-column-new {
  margin-bottom: 2rem;
}

.footer-title-new {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 1.25rem;
  font-family: var(--heading-font);
}

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

.footer-links-new li {
  margin-bottom: 0.75rem;
}

.footer-links-new a {
  color: #4b5563;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links-new a:hover {
  color: #2d8659;
  padding-left: 5px;
}

.footer-newsletter-text-new {
  color: #4b5563;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-newsletter-new {
  margin-top: 1rem;
}

.newsletter-input-group-new {
  display: flex;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(168, 230, 207, 0.1);
}

.newsletter-input-new {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: none;
  background: transparent;
  color: #1a1f2e;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-input-new::placeholder {
  color: #9ca3af;
}

.newsletter-btn-new {
  padding: 0.875rem 1.25rem;
  background: linear-gradient(135deg, #a8e6cf 0%, #ffd6e0 100%);
  border: none;
  color: #1a1f2e;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn-new:hover {
  transform: scale(1.05);
}

.footer-contact-bar-new {
  margin-top: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(168, 230, 207, 0.2);
}

.footer-contact-items-new {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.footer-contact-item-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #4b5563;
  font-size: 0.9rem;
}

.footer-contact-item-new i {
  color: #2d8659;
  font-size: 1.1rem;
}

.footer-contact-item-new a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-item-new a:hover {
  color: #2d8659;
}

.footer-bottom-new {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(168, 230, 207, 0.2);
}

.footer-bottom-content-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright-new {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal-links-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-legal-links-new a {
  color: #4b5563;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-legal-links-new a:hover {
  color: #2d8659;
}

.separator-new {
  color: #9ca3af;
}

@media (max-width: 991px) {
  .footer-contact-items-new {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .footer-bottom-content-new {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .footer-new {
    padding-top: 3rem;
  }
  
  .footer-logo-icon-new {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .footer-logo-name-new {
    font-size: 1.25rem;
  }
}

/* ============================================
   NEW HERO SECTION STYLES
   ============================================ */

.hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: #fafafa;
}

.hero-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient-new {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(168, 230, 207, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero-shapes-new {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 15s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ffd6e0, #c8e6d5);
  bottom: 20%;
  right: 10%;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #c8e6d5, #a8e6cf);
  top: 50%;
  right: 30%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.hero-content-new {
  position: relative;
  z-index: 1;
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.2), rgba(255, 214, 224, 0.2));
  border: 1px solid rgba(168, 230, 207, 0.3);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d8659;
}

.badge-icon {
  font-size: 1rem;
}

.hero-title-new {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1f2e;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
}

.title-highlight {
  background: linear-gradient(135deg, #2d8659 0%, #d977a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description-new {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-benefits-new {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.benefit-item-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(168, 230, 207, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(168, 230, 207, 0.2);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
}

.benefit-item-new:hover {
  background: rgba(168, 230, 207, 0.15);
  border-color: rgba(168, 230, 207, 0.4);
  transform: translateY(-2px);
}

.benefit-icon-new {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  border-radius: 10px;
  color: #1a1f2e;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.benefit-text-new {
  flex: 1;
}

.benefit-title-new {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 0.25rem;
  font-family: var(--heading-font);
}

.benefit-description-new {
  font-size: 0.8rem;
  color: #4b5563;
}

.hero-features-new {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-check-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #1a1f2e;
}

.feature-check-new i {
  color: #2d8659;
  font-size: 1.1rem;
}

.hero-actions-new {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-new {
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-hero-primary-new {
  background: linear-gradient(135deg, #a8e6cf 0%, #ffd6e0 100%);
  color: #1a1f2e;
  box-shadow: 0 4px 20px rgba(168, 230, 207, 0.3);
}

.btn-hero-primary-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 214, 224, 0.4);
}

.btn-hero-secondary-new {
  background: #ffffff;
  color: #1a1f2e;
  border: 2px solid rgba(168, 230, 207, 0.3);
  box-shadow: 0 2px 10px rgba(168, 230, 207, 0.1);
}

.btn-hero-secondary-new:hover {
  background: rgba(168, 230, 207, 0.1);
  border-color: #a8e6cf;
  transform: translateY(-3px);
}

.hero-visual-new {
  position: relative;
  z-index: 1;
}

.hero-card-new {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(168, 230, 207, 0.2);
  overflow: hidden;
  position: relative;
}

.card-header-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.1), rgba(255, 214, 224, 0.1));
  border-bottom: 1px solid rgba(168, 230, 207, 0.2);
}

.card-dots {
  display: flex;
  gap: 0.5rem;
}

.card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a8e6cf;
}

.card-dots span:nth-child(2) {
  background: #ffd6e0;
}

.card-dots span:nth-child(3) {
  background: #c8e6d5;
}

.card-title {
  font-weight: 600;
  color: #1a1f2e;
  font-size: 0.9rem;
}

.card-content-new {
  padding: 1rem;
}

.hero-image-new {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.floating-badge-new {
  position: absolute;
  background: #ffffff;
  border-radius: 15px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(168, 230, 207, 0.25);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatBadge 3s ease-in-out infinite;
}

.badge-icon-new {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  border-radius: 10px;
  color: #1a1f2e;
  font-size: 1.25rem;
}

.badge-content-new {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

.badge-description {
  font-size: 0.8rem;
  color: #4b5563;
  font-weight: 500;
}

.badge-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 1s;
}

.badge-3 {
  top: 50%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .hero-title-new {
    font-size: 2.5rem;
  }
  
  .hero-benefits-new {
    gap: 1rem;
  }
  
  .benefit-item-new {
    min-width: 100%;
  }
  
  .floating-badge-new {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-new {
    padding: 100px 0 60px;
  }
  
  .hero-title-new {
    font-size: 2rem;
  }
  
  .hero-description-new {
    font-size: 1rem;
  }
  
  .hero-benefits-new {
    flex-direction: column;
    gap: 1rem;
  }
  
  .benefit-item-new {
    padding: 0.75rem;
  }
  
  .benefit-icon-new {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .benefit-title-new {
    font-size: 0.85rem;
  }
  
  .benefit-description-new {
    font-size: 0.75rem;
  }
  
  .hero-actions-new {
    flex-direction: column;
  }
  
  .btn-hero-new {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   NEW JOURNEY SECTION STYLES
   ============================================ */

.journey-new {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.journey-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.03) 0%, rgba(255, 214, 224, 0.03) 100%);
  pointer-events: none;
}

.section-header-new {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.section-badge-new {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.2), rgba(255, 214, 224, 0.2));
  border: 1px solid rgba(168, 230, 207, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d8659;
  margin-bottom: 1rem;
}

.section-title-new {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1f2e;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.title-highlight-new {
  background: linear-gradient(135deg, #2d8659 0%, #d977a6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description-new {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.journey-steps-new {
  position: relative;
  z-index: 1;
}

.journey-step-new {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(168, 230, 207, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(168, 230, 207, 0.2);
}

.journey-step-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(255, 214, 224, 0.25);
  border-color: rgba(168, 230, 207, 0.4);
}

.step-header-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-number-new {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2e;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.step-icon-wrapper-new {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 230, 207, 0.1);
  border-radius: 12px;
  color: #2d8659;
  font-size: 1.5rem;
}

.step-content-new {
  margin-bottom: 1rem;
}

.step-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.step-description-new {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-features-new {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-feature-item-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #1a1f2e;
}

.step-feature-item-new i {
  color: #2d8659;
  font-size: 1rem;
}

.step-arrow-new {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  border-radius: 50%;
  color: #1a1f2e;
  font-size: 1.25rem;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.journey-step-new:last-child .step-arrow-new {
  display: none;
}

@media (max-width: 991px) {
  .journey-new {
    padding: 80px 0;
  }
  
  .section-title-new {
    font-size: 2.25rem;
  }
  
  .step-arrow-new {
    display: none;
  }
  
  .journey-step-new {
    margin-bottom: 2rem;
  }
}

@media (max-width: 575px) {
  .journey-new {
    padding: 60px 0;
  }
  
  .section-title-new {
    font-size: 1.75rem;
  }
  
  .section-description-new {
    font-size: 1rem;
  }
  
  .journey-step-new {
    padding: 1.5rem;
  }
  
  .step-number-new {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .step-icon-wrapper-new {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .step-title-new {
    font-size: 1.25rem;
  }
}

/* ============================================
   NEW FEATURES SECTION STYLES
   ============================================ */

.features-new {
  position: relative;
  padding: 100px 0;
  background: #fafafa;
  overflow: hidden;
}

.features-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.05) 0%, rgba(255, 214, 224, 0.05) 100%);
  pointer-events: none;
}

.features-grid-new {
  position: relative;
  z-index: 1;
}

.feature-card-new {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(168, 230, 207, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(168, 230, 207, 0.2);
  display: flex;
  flex-direction: column;
}

.feature-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(255, 214, 224, 0.25);
  border-color: rgba(168, 230, 207, 0.4);
}

.feature-icon-new {
  margin-bottom: 1.5rem;
}

.icon-wrapper-new {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 2rem;
  color: #1a1f2e;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.2);
}

.icon-green {
  background: linear-gradient(135deg, #a8e6cf, #c8e6d5);
}

.icon-pink {
  background: linear-gradient(135deg, #ffd6e0, #ffe5e8);
}

.icon-green-light {
  background: linear-gradient(135deg, #c8e6d5, #a8e6cf);
}

.icon-pink-light {
  background: linear-gradient(135deg, #ffe5e8, #ffd6e0);
}

.feature-content-new {
  flex: 1;
}

.feature-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.feature-description-new {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-list-new {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list-item-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #1a1f2e;
}

.feature-list-item-new i {
  color: #2d8659;
  font-size: 1rem;
}

@media (max-width: 991px) {
  .features-new {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .features-new {
    padding: 60px 0;
  }
  
  .feature-card-new {
    padding: 1.5rem;
  }
  
  .icon-wrapper-new {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  
  .feature-title-new {
    font-size: 1.25rem;
  }
}

/* ============================================
   NEW TESTIMONIALS SECTION STYLES
   ============================================ */

.testimonials-new {
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.testimonials-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 214, 224, 0.03) 0%, rgba(168, 230, 207, 0.03) 100%);
  pointer-events: none;
}

.testimonials-grid-new {
  position: relative;
  z-index: 1;
}

.testimonial-card-new {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(255, 214, 224, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 214, 224, 0.2);
  display: flex;
  flex-direction: column;
}

.testimonial-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(168, 230, 207, 0.25);
  border-color: rgba(255, 214, 224, 0.4);
}

.testimonial-header-new {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(168, 230, 207, 0.2);
}

.testimonial-avatar-new {
  flex-shrink: 0;
}

.avatar-new {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  border-radius: 15px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1a1f2e;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.2);
}

.testimonial-info-new {
  flex: 1;
}

.testimonial-name-new {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 0.25rem;
  font-family: var(--heading-font);
}

.testimonial-role-new {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.testimonial-company-new {
  font-size: 0.875rem;
  color: #2d8659;
  font-weight: 600;
}

.testimonial-rating-new {
  display: flex;
  gap: 0.25rem;
  color: #ffc107;
  font-size: 0.875rem;
}

.testimonial-body-new {
  flex: 1;
  position: relative;
  margin-bottom: 1.5rem;
}

.quote-icon-new {
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 3rem;
  color: rgba(168, 230, 207, 0.2);
  line-height: 1;
}

.testimonial-text-new {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-top: 1rem;
}

.testimonial-footer-new {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(168, 230, 207, 0.2);
}

.testimonial-tag-new {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.1), rgba(255, 214, 224, 0.1));
  border: 1px solid rgba(168, 230, 207, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2d8659;
}

@media (max-width: 991px) {
  .testimonials-new {
    padding: 80px 0;
  }
}

@media (max-width: 575px) {
  .testimonials-new {
    padding: 60px 0;
  }
  
  .testimonial-card-new {
    padding: 1.5rem;
  }
  
  .avatar-new {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .testimonial-name-new {
    font-size: 1rem;
  }
  
  .testimonial-text-new {
    font-size: 0.875rem;
  }
}

/* ============================================
   NEW COOKIE POPUP STYLES
   ============================================ */

.cookie-popup-new {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-popup-new.show {
  opacity: 1;
  visibility: visible;
}

.cookie-popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 31, 46, 0.5);
  backdrop-filter: blur(4px);
}

.cookie-popup-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-popup-new.show .cookie-popup-container {
  transform: translateY(0);
}

.cookie-popup-content {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(168, 230, 207, 0.3);
  overflow: hidden;
  border: 1px solid rgba(168, 230, 207, 0.2);
}

.cookie-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.1), rgba(255, 214, 224, 0.1));
  border-bottom: 1px solid rgba(168, 230, 207, 0.2);
}

.cookie-popup-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
}

.cookie-popup-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  border-radius: 16px;
  color: #1a1f2e;
  font-size: 1.75rem;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
  position: relative;
  z-index: 2;
}

.cookie-popup-icon-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid rgba(168, 230, 207, 0.3);
  border-radius: 20px;
  animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

.cookie-popup-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 230, 207, 0.1);
  border: none;
  border-radius: 10px;
  color: #1a1f2e;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-popup-close:hover {
  background: rgba(168, 230, 207, 0.2);
  transform: rotate(90deg);
}

.cookie-popup-body {
  padding: 2rem;
}

.cookie-popup-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.cookie-popup-description {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cookie-popup-link {
  color: #2d8659;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.cookie-popup-link:hover {
  color: #d977a6;
  text-decoration: underline;
}

.cookie-popup-types {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cookie-type-item {
  background: #fafafa;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(168, 230, 207, 0.2);
  transition: all 0.2s ease;
}

.cookie-type-item:hover {
  background: rgba(168, 230, 207, 0.05);
  border-color: rgba(168, 230, 207, 0.3);
}

.cookie-type-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-type-info {
  flex: 1;
}

.cookie-type-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1f2e;
  margin-bottom: 0.25rem;
}

.cookie-type-info p {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.cookie-type-toggle {
  position: relative;
  flex-shrink: 0;
}

.cookie-type-toggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch {
  display: block;
  width: 48px;
  height: 26px;
  background: #e5e7eb;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-type-toggle input[type="checkbox"]:checked + .toggle-switch {
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
}

.cookie-type-toggle input[type="checkbox"]:checked + .toggle-switch::after {
  transform: translateX(22px);
}

.cookie-type-toggle input[type="checkbox"]:disabled + .toggle-switch {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-popup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: rgba(168, 230, 207, 0.05);
  border-top: 1px solid rgba(168, 230, 207, 0.2);
  flex-wrap: wrap;
}

.cookie-popup-btn {
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.cookie-popup-btn-primary {
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  color: #1a1f2e;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.cookie-popup-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 224, 0.4);
}

.cookie-popup-btn-secondary {
  background: #ffffff;
  color: #1a1f2e;
  border: 2px solid rgba(168, 230, 207, 0.3);
}

.cookie-popup-btn-secondary:hover {
  background: rgba(168, 230, 207, 0.1);
  border-color: #a8e6cf;
}

.cookie-popup-link-btn {
  color: #2d8659;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.cookie-popup-link-btn:hover {
  color: #d977a6;
}

@media (max-width: 991px) {
  .cookie-popup-container {
    padding: 1rem;
  }
  
  .cookie-popup-header {
    padding: 1.25rem 1.5rem;
  }
  
  .cookie-popup-body {
    padding: 1.5rem;
  }
  
  .cookie-popup-footer {
    padding: 1.25rem 1.5rem;
    flex-direction: column;
  }
  
  .cookie-popup-btn {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-popup-link-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .cookie-popup-container {
    padding: 0.75rem;
  }
  
  .cookie-popup-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .cookie-popup-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  
  .cookie-popup-title {
    font-size: 1.25rem;
  }
  
  .cookie-popup-description {
    font-size: 0.875rem;
  }
  
  .cookie-type-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .cookie-type-toggle {
    align-self: flex-end;
  }
}

/* ============================================
   NEW ABOUT PAGE STYLES
   ============================================ */

.about-hero-new {
  position: relative;
  padding: 120px 0 80px;
  background: #fafafa;
  overflow: hidden;
}

.about-hero-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.05) 0%, rgba(255, 214, 224, 0.05) 100%);
  pointer-events: none;
}

.about-hero-title-new {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1f2e;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
}

.about-hero-description-new {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.services-new {
  padding: 80px 0;
  background: #ffffff;
}

.service-card-new {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(168, 230, 207, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(168, 230, 207, 0.2);
}

.service-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(255, 214, 224, 0.25);
}

.service-icon-new {
  margin-bottom: 1.5rem;
}

.service-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.service-description-new {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features-new {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-feature-item-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #1a1f2e;
}

.service-feature-item-new i {
  color: #2d8659;
  font-size: 1rem;
}

.mission-new {
  padding: 80px 0;
  background: #fafafa;
  position: relative;
}

.mission-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 214, 224, 0.03) 0%, rgba(168, 230, 207, 0.03) 100%);
  pointer-events: none;
}

.mission-content-new {
  position: relative;
  z-index: 1;
}

.mission-title-new {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1f2e;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
}

.mission-text-new {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mission-benefits-new {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mission-benefit-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #1a1f2e;
}

.mission-benefit-new i {
  color: #2d8659;
  font-size: 1.1rem;
}

.mission-image-new {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(168, 230, 207, 0.2);
}

.values-new {
  padding: 80px 0;
  background: #ffffff;
}

.value-card-new {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 214, 224, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 214, 224, 0.2);
}

.value-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(168, 230, 207, 0.25);
}

.value-icon-wrapper-new {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.value-title-new {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.value-text-new {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

.business-model-new {
  padding: 80px 0;
  background: #fafafa;
  position: relative;
}

.business-model-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.03) 0%, rgba(255, 214, 224, 0.03) 100%);
  pointer-events: none;
}

.business-card-new {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(168, 230, 207, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(168, 230, 207, 0.2);
}

.business-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(255, 214, 224, 0.25);
}

.business-icon-new {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.business-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.business-description-new {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .about-hero-title-new {
    font-size: 2.25rem;
  }
  
  .mission-title-new {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .about-hero-new {
    padding: 100px 0 60px;
  }
  
  .about-hero-title-new {
    font-size: 1.75rem;
  }
  
  .mission-title-new {
    font-size: 1.75rem;
  }
}

/* ============================================
   NEW CONTACT PAGE STYLES
   ============================================ */

.contact-hero-new {
  position: relative;
  padding: 120px 0 80px;
  background: #fafafa;
  overflow: hidden;
}

.contact-hero-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 214, 224, 0.05) 0%, rgba(168, 230, 207, 0.05) 100%);
  pointer-events: none;
}

.contact-hero-title-new {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1f2e;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
}

.contact-hero-description-new {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-new {
  padding: 80px 0;
  background: #ffffff;
}

.contact-form-wrapper-new {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(168, 230, 207, 0.1);
  border: 1px solid rgba(168, 230, 207, 0.2);
}

.form-group-new {
  margin-bottom: 1.5rem;
}

.form-label-new {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1f2e;
  margin-bottom: 0.5rem;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(168, 230, 207, 0.2);
  border-radius: 10px;
  font-size: 0.95rem;
  color: #1a1f2e;
  background: #ffffff;
  transition: all 0.3s ease;
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: #a8e6cf;
  box-shadow: 0 0 0 3px rgba(168, 230, 207, 0.1);
}

.form-textarea-new {
  resize: vertical;
  min-height: 150px;
}

.btn-contact-submit-new {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  color: #1a1f2e;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.3);
}

.btn-contact-submit-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 214, 224, 0.4);
}

.contact-info-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card-new {
  background: #ffffff;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 214, 224, 0.1);
  border: 1px solid rgba(255, 214, 224, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.contact-info-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(168, 230, 207, 0.2);
}

.contact-info-icon-new {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  border-radius: 12px;
  color: #1a1f2e;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-content-new {
  flex: 1;
}

.contact-info-title-new {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.contact-info-text-new {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.contact-info-text-new a {
  color: #2d8659;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info-text-new a:hover {
  color: #d977a6;
}

@media (max-width: 991px) {
  .contact-hero-title-new {
    font-size: 2.25rem;
  }
  
  .contact-form-wrapper-new {
    padding: 2rem;
  }
}

@media (max-width: 575px) {
  .contact-hero-new {
    padding: 100px 0 60px;
  }
  
  .contact-hero-title-new {
    font-size: 1.75rem;
  }
  
  .contact-form-wrapper-new {
    padding: 1.5rem;
  }
}

/* ============================================
   NEW FAQ PAGE STYLES
   ============================================ */

.faq-hero-new {
  position: relative;
  padding: 120px 0 80px;
  background: #fafafa;
  overflow: hidden;
}

.faq-hero-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(168, 230, 207, 0.05) 0%, rgba(255, 214, 224, 0.05) 100%);
  pointer-events: none;
}

.faq-hero-title-new {
  font-size: 3rem;
  font-weight: 800;
  color: #1a1f2e;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
}

.faq-hero-description-new {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.faq-content-new {
  padding: 80px 0;
  background: #ffffff;
}

.faq-container-new {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item-new {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid rgba(168, 230, 207, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-new:hover {
  box-shadow: 0 4px 20px rgba(168, 230, 207, 0.15);
}

.faq-item-new.active {
  border-color: rgba(168, 230, 207, 0.4);
}

.faq-question-new {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #ffffff;
  transition: background 0.3s ease;
}

.faq-question-new:hover {
  background: rgba(168, 230, 207, 0.05);
}

.faq-question-title-new {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1f2e;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

.faq-chevron-new {
  font-size: 1.25rem;
  color: #2d8659;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item-new.active .faq-chevron-new {
  transform: rotate(180deg);
}

.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item-new.active .faq-answer-new {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer-text-new {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991px) {
  .faq-hero-title-new {
    font-size: 2.25rem;
  }
}

@media (max-width: 575px) {
  .faq-hero-new {
    padding: 100px 0 60px;
  }
  
  .faq-hero-title-new {
    font-size: 1.75rem;
  }
  
  .faq-question-new {
    padding: 1.25rem;
  }
  
  .faq-question-title-new {
    font-size: 1rem;
  }
  
  .faq-answer-new {
    padding: 0 1.25rem;
  }
  
  .faq-item-new.active .faq-answer-new {
    padding: 0 1.25rem 1.25rem;
  }
}

.min-vh-50 {
  min-height: 50vh;
}

/* Support Section Styles */
.support-new {
  padding: 80px 0;
  background: #fafafa;
}

.support-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(168, 230, 207, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(168, 230, 207, 0.2);
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(255, 214, 224, 0.25);
}

.support-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  border-radius: 18px;
  color: #1a1f2e;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.2);
}

.support-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.support-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* FAQ Categories Section */
.faq-categories-new {
  padding: 80px 0;
  background: #ffffff;
}

.faq-category-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(255, 214, 224, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 214, 224, 0.2);
}

.faq-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(168, 230, 207, 0.25);
}

.category-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #a8e6cf, #ffd6e0);
  border-radius: 15px;
  color: #1a1f2e;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(168, 230, 207, 0.2);
}

.faq-category-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.faq-category-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.category-link {
  color: #2d8659;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.category-link:hover {
  color: #d977a6;
  gap: 0.75rem;
}