
/* ================= Modern Footer Layout ================= */
.footer-modern {
  background: var(--surface-color);
  color: var(--default-color);
  margin-top: 80px;
}

.footer-cta {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 28px 0;
}

.badge-soft {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}

.footer-main {
  padding: 48px 0 24px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gradient-secondary);
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.company-block {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 12px;
  padding: 12px;
  margin-top: 12px;
}

.footer-list li + li {
  margin-top: 8px;
}

.footer-list a {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer-list a:hover {
  color: var(--heading-color);
}

.social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  margin-right: 8px;
}

.footer-newsletter .input-group {
  background: var(--background-color);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.footer-newsletter input {
  background: transparent;
  color: var(--default-color);
  border: none;
  padding: 12px 14px;
}

.footer-newsletter input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.footer-newsletter .btn-solid {
  border-radius: 0;
  padding: 12px 16px;
}

.contact-lines {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer-meta {
  border-top: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding: 16px 0;
  background: var(--background-color);
}

.footer-meta a {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:wght@400;500;600;700&display=swap');

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

/* Global Colors - Violet Theme */
:root {
--background-color: #0c0b1a;
--default-color: #f2edff;
--heading-color: #c7a6ff;
--accent-color: #8c5bff;
--surface-color: #15132b;
--contrast-color: #0c0b1a;
--nav-color: #f2edff;
--nav-hover-color: #bba0ff;
--nav-mobile-background-color: #15132b;
--nav-dropdown-background-color: #0c0b1a;
--nav-dropdown-color: #f2edff;
--nav-dropdown-hover-color: #c7a6ff;

/* Violet Palette */
--violet: #8c5bff;
--violet-light: #b48dff;
--violet-dark: #5a2ebf;
--lavender: #d7c7ff;
--midnight: #0c0b1a;
--plum: #1f1a33;
--slate: #1c1a30;
--stone: #26243a;
--frost: #ede6ff;

/* Gradient Colors */
--gradient-primary: linear-gradient(135deg, #8c5bff 0%, #c7a6ff 100%);
--gradient-secondary: linear-gradient(135deg, #c7a6ff 0%, #8c5bff 100%);
--gradient-mix: linear-gradient(135deg, #8c5bff 0%, #b48dff 45%, #5a2ebf 100%);
--gradient-nature: linear-gradient(135deg, #8c5bff 0%, #5a2ebf 50%, #c7a6ff 100%);
--gradient-earth: linear-gradient(135deg, #5a2ebf 0%, #8c5bff 30%, #c7a6ff 70%, #1c1a30 100%);

}

/* Color Presets */

.light-background {
  --background-color: #f8f5ef;
  --default-color: #223040;
  --heading-color: #f16e2d;
  --surface-color: #ffffff;
  --contrast-color: #0f1118;
}

.dark-background {
  --background-color: #0f1118;
  --default-color: #f5f1eb;
  --heading-color: #f16e2d;
  --surface-color: #1c1f2a;
  --contrast-color: #f5f1eb;
}

.spiritual-background {
  --background-color: #0f1118;
  --default-color: #f5f1eb;
  --heading-color: #f16e2d;
  --surface-color: #1c1f2a;
  --contrast-color: #f5f1eb;
}

.meditation-background {
  --background-color: #1c1f2a;
  --default-color: #e6dfd6;
  --heading-color: #6ac48f;
  --surface-color: #2a3040;
  --contrast-color: #0f1118;
}


/* 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;
}

/* Hero background legacy removed */

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: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  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%);
}

/* Modern Header */
.header-modern {
  background: var(--background-color);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.header-topbar {
  background: var(--surface-color);
  border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding: 8px 0;
}

.header-topbar .topbar-item,
.header-topbar a {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 14px;
}

.header-topbar a:hover {
  color: var(--heading-color);
}

.header-main {
  padding: 14px 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--gradient-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 22px;
  margin-right: 12px;
}

.logo-text {
  line-height: 1.2;
}

.logo-title {
  font-weight: 700;
  color: var(--heading-color);
  display: block;
}

.logo-subtitle {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.header-cta .btn-solid,
.header-cta .btn-ghost {
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
}

.btn-solid {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border: none;
}

.btn-ghost {
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
  color: var(--contrast-color);
  background: transparent;
}

.btn-ghost:hover,
.btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.link-muted {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
}

.link-muted:hover {
  color: var(--heading-color);
}

@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;
    justify-content: center;
    gap: 4px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    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: #ffc107;
  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 Modern ================= */
.pricing-modern {
  padding: 100px 0 90px;
  background: var(--surface-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.price-card {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.25);
}

.price-card.featured {
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 60%);
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
}

.price-ribbon {
  position: absolute;
  top: 12px;
  right: -14px;
  padding: 6px 14px;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.price-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.price-badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--heading-color);
  font-weight: 700;
}

.price-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--contrast-color);
}

.price-value span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.price-sub {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 12px;
  font-weight: 600;
}

.price-points {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: grid;
  gap: 8px;
}

.price-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-weight: 600;
}

.price-points i {
  color: var(--heading-color);
}

.pricing-compare {
  margin-top: 40px;
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
}

.pricing-compare h3 {
  color: var(--contrast-color);
  margin-bottom: 12px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.compare-row {
  display: contents;
}

.compare-row span {
  padding: 10px 12px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--contrast-color), transparent 92%);
  color: var(--default-color);
  font-weight: 600;
}

.compare-row.header span {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--heading-color);
}

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

  .compare-row span:nth-child(3),
  .compare-row span:nth-child(4) {
    display: none;
  }

  .compare-row.header span:nth-child(3),
  .compare-row.header span:nth-child(4) {
    display: none;
  }
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: #dedede;
  color: #333;
  border: none;
  padding: 20px;
  font-family: "Urbanist", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  font-size: 14px;
  max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0;
  /* Start invisible */
  transform: translateY(30px);
  /* Slide up effect */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
}

#cookie-popup p {
  margin: 0;
  padding: 0;
}

#cookie-popup .popup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-popup button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
  background: #0056b3;
}

#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: #0056b3;
}

#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, #0a0a0a 0%, #1a1a2e 50%, #16213e 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, #cc6600, transparent),
    radial-gradient(2px 2px at 40px 70px, #ff6b6b, transparent),
    radial-gradient(1px 1px at 90px 40px, #00d4ff, transparent),
    radial-gradient(1px 1px at 130px 80px, #cc6600, transparent),
    radial-gradient(2px 2px at 160px 30px, #ff6b6b, 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, #cc6600, #ff6b6b);
  color: #000;
  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, #cc6600);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line.highlight {
  background: linear-gradient(45deg, #cc6600, #ff6b6b, #00d4ff);
  -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: #b8b8b8;
  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: #cc6600;
  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: #b8b8b8;
  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: #cc6600;
  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: #000;
  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, #cc6600, #ff6b6b, #00d4ff, #cc6600);
  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, #cc6600, #ff6b6b);
  color: #000;
  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: #b8b8b8;
  font-size: 0.9rem;
  line-height: 1.4;
}

.step-connector {
  position: absolute;
  top: 30px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #cc6600, 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: #b8b8b8;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-futuristic {
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #cc6600, #ff6b6b);
  color: #000;
  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: #000;
}

.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, #0f0f23 0%, #1a1a2e 50%, #16213e 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: #000;
  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, #00d4ff);
  -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: #b8b8b8;
  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: #b8b8b8;
  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: #b8b8b8;
  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;
}

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

.stat-number-about {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #00d4ff;
  margin-bottom: 10px;
  animation: statPulse 2s ease-in-out infinite;
}

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

.stat-label-about {
  color: #b8b8b8;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.futuristic-faq {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 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: #000;
  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, #ff6b6b);
  -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: #b8b8b8;
  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: #b8b8b8;
  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(--spiritual-purple);
  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);
}

/* ================= Journey Modern ================= */
.journey-modern {
  position: relative;
  padding: 100px 0 70px;
  background: linear-gradient(135deg, rgba(241,110,45,0.08), rgba(106,196,143,0.08));
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.journey-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.journey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.25);
}

.journey-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.journey-step-num {
  font-weight: 800;
  font-size: 18px;
  color: var(--heading-color);
}

.journey-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
}

.journey-card h3 {
  color: var(--contrast-color);
  font-size: 20px;
  margin-bottom: 8px;
}

.journey-card p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  min-height: 72px;
}

.journey-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 600;
}

.journey-meta i {
  color: var(--heading-color);
  margin-right: 4px;
}

.journey-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.journey-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--contrast-color), transparent 88%);
  color: var(--default-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* 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;
}

/* ================= New Hero Modern ================= */
.hero-modern {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: radial-gradient(circle at 20% 20%, rgba(241,110,45,0.08) 0, transparent 35%),
              radial-gradient(circle at 80% 10%, rgba(106,196,143,0.08) 0, transparent 35%),
              var(--background-color);
}

.hero-modern .hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 60%, rgba(106,196,143,0.12), transparent 35%),
              radial-gradient(circle at 30% 80%, rgba(241,110,45,0.10), transparent 32%);
  filter: blur(30px);
  z-index: 1;
}

.hero-modern .container-xl {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--heading-color);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  color: var(--contrast-color);
}

.hero-lead {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.hero-sub {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--default-color);
  margin-right: 8px;
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-stats .stat-card {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 70%);
  border-radius: 12px;
  padding: 14px 16px;
  min-width: 150px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--contrast-color);
}

.stat-label {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.hero-visual-modern {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.hero-card .hero-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--gradient-secondary);
  color: var(--contrast-color);
  font-weight: 700;
  z-index: 2;
}

.hero-card .hero-img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 420px;
}

.hero-overlay-list {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.8) 100%);
  display: grid;
  gap: 10px;
}

.overlay-item {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
}

.overlay-item i {
  background: rgba(255,255,255,0.15);
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.overlay-item strong {
  display: block;
  color: #fff;
}

.overlay-item small {
  color: rgba(255,255,255,0.8);
}

.hero-aside {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 75%);
  border-radius: 14px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  backdrop-filter: blur(6px);
}

.aside-row {
  display: flex;
  justify-content: space-between;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 600;
}

.aside-value {
  color: var(--heading-color);
}

/* ================= Features Modern ================= */
.features-modern {
  padding: 100px 0 90px;
  background: radial-gradient(circle at 15% 20%, rgba(241,110,45,0.08), transparent 35%), radial-gradient(circle at 80% 0%, rgba(106,196,143,0.08), transparent 35%), var(--background-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.feature-card-neo {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card-neo:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.25);
}

.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.feature-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--heading-color);
  font-weight: 700;
}

.feature-card-neo i {
  color: var(--heading-color);
  font-size: 20px;
}

.feature-card-neo h3 {
  color: var(--contrast-color);
  margin-bottom: 6px;
  font-size: 20px;
}

.feature-card-neo p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  min-height: 64px;
}

.feature-points {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 6px;
}

.feature-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 600;
}

.feature-points i {
  color: var(--heading-color);
}

.feature-focus {
  margin-top: 48px;
  background: color-mix(in srgb, var(--contrast-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 16px;
  padding: 26px;
}

.feature-focus-media {
  position: relative;
}

.feature-focus-media img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.feature-focus-media .focus-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 14px;
  border-radius: 12px;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  font-weight: 700;
}

.feature-focus-content h2 {
  color: var(--contrast-color);
  margin: 10px 0;
}

.feature-focus-content p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.feature-focus-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 14px;
}

.feature-focus-grid h4 {
  color: var(--contrast-color);
  margin-bottom: 4px;
}

/* 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;
}

/* ================= Contact Modern ================= */
.contact-modern {
  padding: 100px 0 90px;
  background: var(--surface-color);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}

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

.contact-form-card,
.contact-card {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.form-head,
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.form-icon,
.card-head i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
}

.pill-soft {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--heading-color);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}

.contact-form-card h3,
.contact-card h4 {
  color: var(--contrast-color);
  margin-bottom: 4px;
}

.contact-form-card p,
.contact-card p,
.contact-card li {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.contact-card + .contact-card {
  margin-top: 14px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}

.contact-list li {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.contact-list i {
  color: var(--heading-color);
}

.form-label {
  color: var(--contrast-color);
  font-weight: 700;
}

.contact-form-card .form-control,
.contact-form-card textarea {
  background: color-mix(in srgb, var(--contrast-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--default-color);
}

.contact-form-card .form-control:focus,
.contact-form-card textarea:focus {
  border-color: var(--heading-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--heading-color), transparent 70%);
}

.form-check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.form-check-input {
  margin-top: 4px;
}

.form-check-label a {
  color: var(--heading-color);
}

.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-stats {
  margin-top: 2rem;
}

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

.stat-value {
  font-size: 2rem;
  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;
}

.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-stats {
    gap: 30px;
  }
  
  .stat-number-about {
    font-size: 2rem;
  }
  
  .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;
  }
}