
/* Fonts */
:root {
  --default-font: "Comic Neue", system-ui, -apple-system, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Comic Neue", sans-serif;
  --nav-font: "Comic Neue", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
--background-color: #1a1a2e;
--default-color: #f8f9fa;
--heading-color: #8b5cf6;
--accent-color: #06d6a0;
--surface-color: #16213e;
--contrast-color: #ffffff;
--nav-color: #f8f9fa;
--nav-hover-color: #06d6a0;
--nav-mobile-background-color: #16213e;
--nav-dropdown-background-color: #0f3460;
--nav-dropdown-color: #f8f9fa;
--nav-dropdown-hover-color: #06d6a0;
--gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #06d6a0 100%);
--gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
--gradient-accent: linear-gradient(135deg, #06d6a0 0%, #8b5cf6 100%);
--shadow-primary: 0 10px 30px rgba(139, 92, 246, 0.3);
--shadow-secondary: 0 5px 15px rgba(6, 214, 160, 0.2);

}

/* Color Presets */

.light-background {
  --background-color: #16213e;
  --surface-color: #0f3460;
}

.dark-background {
  --background-color: #0f0f23;
  --default-color: #f8f9fa;
  --heading-color: #8b5cf6;
  --surface-color: #1a1a2e;
  --contrast-color: #ffffff;
}


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

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: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

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

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

.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header .logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  overflow: hidden;
}

.header .logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.header .logo-icon:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.header .logo:hover h1 {
  transform: scale(1.02);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header .btn-meditation {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-accent);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

@media (max-width: 768px) {
  .header .btn-meditation {
   display: none;
  }
}

.header .btn-meditation:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
  color: var(--contrast-color);
}

.header .btn-meditation i {
  font-size: 16px;
}

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
  }

  .navmenu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }

  .navmenu a:hover::before {
    left: 100%;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .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: 15px 40px;
    font-size: 18px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 50px;
  }

  .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);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
  }

  .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;
    position: relative;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    padding: 80px 20px 20px 20px;
    margin: 0;
    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: 20px 25px;
    font-family: var(--nav-font);
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 60px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 16px;
    line-height: 0;
    margin-left: 10px;
    width: 40px;
    height: 40px;
    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);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
  }

  .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: 0;
    background-color: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 8px;
    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);
  }

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

  body.mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 32px;
    top: 20px;
    right: 20px;
    margin-right: 0;
    z-index: 10002;
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  body.mobile-nav-active .mobile-nav-toggle:hover {
    background-color: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
  }

  body.mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: var(--nav-mobile-background-color);
    transition: 0.3s;
    z-index: 10000;
  }

  body.mobile-nav-active .navmenu>ul {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    padding: 80px 20px 20px 20px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    z-index: 10001;
  }
}

/* Additional mobile menu improvements for very small screens */
@media (max-width: 480px) {
  body.mobile-nav-active .navmenu>ul {
    padding: 70px 15px 15px 15px;
  }
  
  .navmenu a,
  .navmenu a:focus {
    padding: 15px 20px;
    font-size: 18px;
    min-height: 55px;
  }
  
  .navmenu .dropdown ul a {
    padding: 12px 30px;
    font-size: 16px;
    min-height: 45px;
  }
  
  body.mobile-nav-active .mobile-nav-toggle {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 28px;
  }
}

/* Force mobile menu to be fullscreen on all mobile devices */
@media (max-width: 1199px) {
  .navmenu ul {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 80px 20px 20px 20px !important;
    z-index: 9999 !important;
  }
  
  body.mobile-nav-active .navmenu>ul {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 80px 20px 20px 20px !important;
    z-index: 10001 !important;
  }
}

/* Ensure mobile menu is always on top */
@media (max-width: 1199px) {
  .navmenu ul {
    z-index: 9999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
  }
  
  body.mobile-nav-active .navmenu {
    z-index: 10000 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
  }
  
  body.mobile-nav-active .navmenu>ul {
    z-index: 10001 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
  }
  
  body.mobile-nav-active .mobile-nav-toggle {
    z-index: 10002 !important;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--gradient-primary);
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.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;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

.footer .footer-top p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 16px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(78, 205, 196, 0.3);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-right: 15px;
  transition: all 0.3s ease;
  background: rgba(78, 205, 196, 0.1);
  position: relative;
  z-index: 2;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  background: var(--accent-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.footer h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 2;
}

.footer .footer-links {
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}


.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: 100vh;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 214, 160, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  font-size: 24px;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

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

.floating-element.element-2 {
  top: 30%;
  right: 15%;
  animation-delay: 1s;
}

.floating-element.element-3 {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.floating-element.element-4 {
  top: 70%;
  right: 20%;
  animation-delay: 3s;
}

.floating-element.element-5 {
  top: 40%;
  left: 50%;
  animation-delay: 4s;
}

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

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--accent-color);
  font-size: 16px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--default-color);
}

.hero-title .highlight {
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(248, 249, 250, 0.8);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(248, 249, 250, 0.7);
  font-weight: 500;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-accent);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
  color: var(--contrast-color);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--default-color);
  border: 2px solid rgba(139, 92, 246, 0.3);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--heading-color);
  transform: translateY(-2px);
  color: var(--default-color);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.meditation-circle {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 214, 160, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 4s ease-in-out infinite;
}

.circle-inner {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.meditation-icon {
  font-size: 4rem;
  color: var(--contrast-color);
  animation: heartbeat 2s ease-in-out infinite;
}

.energy-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  animation: expand 3s ease-in-out infinite;
}

.ring-1 {
  width: 250px;
  height: 250px;
  top: -125px;
  left: -125px;
  animation-delay: 0s;
}

.ring-2 {
  width: 320px;
  height: 320px;
  top: -160px;
  left: -160px;
  animation-delay: 1s;
}

.ring-3 {
  width: 390px;
  height: 390px;
  top: -195px;
  left: -195px;
  animation-delay: 2s;
}

.floating-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card i {
  font-size: 18px;
  color: var(--accent-color);
}

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

.floating-card.card-2 {
  top: 60%;
  left: 5%;
  animation-delay: 2s;
}

.floating-card.card-3 {
  bottom: 20%;
  right: 5%;
  animation-delay: 4s;
}

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

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

@keyframes expand {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header-actions {
    order: 2;
    margin: 0 15px 0 0;
  }

  .header .btn-meditation {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero-stats {
    gap: 20px;
    margin-bottom: 30px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .meditation-circle {
    width: 250px;
    height: 250px;
  }

  .circle-inner {
    width: 150px;
    height: 150px;
  }

  .meditation-icon {
    font-size: 3rem;
  }

  .floating-card {
    padding: 10px 15px;
    font-size: 12px;
  }

  .floating-element {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .meditation-circle {
    width: 200px;
    height: 200px;
  }

  .circle-inner {
    width: 120px;
    height: 120px;
  }

  .meditation-icon {
    font-size: 2.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card-large {
    padding: 30px 20px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }

  .feature-icon i {
    font-size: 2rem;
  }

  .feature-card-large h3 {
    font-size: 1.3rem;
  }

  .feature-tags {
    gap: 6px;
  }

  .tag {
    font-size: 0.8rem;
    padding: 4px 10px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-header {
    gap: 12px;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  .testimonial-avatar i {
    font-size: 1.5rem;
  }

  .testimonial-info h4 {
    font-size: 1.1rem;
  }

  .testimonials-stats .stat-number {
    font-size: 2rem;
  }

  .testimonials-stats .stat-item {
    padding: 15px 5px;
  }
}

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

.about {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  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 {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 214, 160, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card-large {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(139, 92, 246, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.05), transparent);
  transition: left 0.6s;
}

.feature-card-large:hover::before {
  left: 100%;
}

.feature-card-large:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
  border-color: var(--accent-color);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.feature-card-large:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.feature-icon i {
  font-size: 2.5rem;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.feature-card-large:hover .feature-icon i {
  transform: scale(1.1);
}

.feature-card-large h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card-large p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(248, 249, 250, 0.8);
  margin-bottom: 25px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.tag {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.feature-card-large:hover .tag {
  background: rgba(6, 214, 160, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.features .icon-box {
  display: flex;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(78, 205, 196, 0.1);
  position: relative;
  overflow: hidden;
}

.features .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.features .icon-box:hover::before {
  left: 100%;
}

.features .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
  border-color: var(--accent-color);
}

.features .icon-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.features .icon-box i {
  font-size: 48px;
  line-height: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
  position: relative;
  z-index: 2;
}

.features .icon-box:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.6));
}

.features .icon-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.feature-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.feature-details .features-item {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 25px;
  padding: 3rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: all 0.4s ease;
}

.feature-details .features-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.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: 28px;
  color: var(--heading-color);
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.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: 24px;
  padding-right: 8px;
  color: var(--accent-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(78, 205, 196, 0.3));
}

.feature-details .features-item:hover ul i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(78, 205, 196, 0.6));
}

.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 {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 214, 160, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.8) 100%);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.05), transparent);
  transition: left 0.6s;
}

.testimonial-card:hover::before {
  left: 100%;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
  border-color: var(--accent-color);
}

.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 214, 160, 0.1) 100%);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.testimonial-info h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 5px 0;
}

.testimonial-info span {
  font-size: 0.9rem;
  color: rgba(248, 249, 250, 0.7);
  font-weight: 500;
}

.stars {
  display: flex;
  gap: 2px;
  margin-top: 8px;
}

.stars i {
  color: #ffd700;
  font-size: 0.9rem;
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(248, 249, 250, 0.9);
  margin: 0;
  font-style: italic;
}

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

.testimonial-tags .tag {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--accent-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-tags .tag {
  background: rgba(6, 214, 160, 0.1);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.testimonials-stats {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 214, 160, 0.1) 100%);
  border-radius: 20px;
  padding: 40px 20px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
}

.testimonials-stats .stat-item {
  padding: 20px 10px;
}

.testimonials-stats .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-stats .stat-label {
  font-size: 0.9rem;
  color: rgba(248, 249, 250, 0.8);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Page-specific Hero and About Sections
--------------------------------------------------------------*/

/* Hero Section for Policy Pages */
.privacy-policy .hero,
.terms .hero,
.cookie-policy .hero,
.thanks .hero {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  padding: 100px 0 80px 0;
  overflow: hidden;
}

.privacy-policy .hero::before,
.terms .hero::before,
.cookie-policy .hero::before,
.thanks .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 214, 160, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.privacy-policy .hero h2,
.terms .hero h2,
.cookie-policy .hero h2,
.thanks .hero h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--default-color);
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.privacy-policy .hero-img,
.terms .hero-img,
.cookie-policy .hero-img,
.thanks .hero-img {
  position: relative;
  z-index: 2;
}

.privacy-policy .hero-img img,
.terms .hero-img img,
.cookie-policy .hero-img img,
.thanks .hero-img img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
  transition: all 0.4s ease;
}

.privacy-policy .hero-img img:hover,
.terms .hero-img img:hover,
.cookie-policy .hero-img img:hover,
.thanks .hero-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

/* About Section for Policy Pages */
.privacy-policy .about,
.terms .about,
.cookie-policy .about,
.thanks .about {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.privacy-policy .about::before,
.terms .about::before,
.cookie-policy .about::before,
.thanks .about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(6, 214, 160, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.privacy-policy .about .section-title h2,
.terms .about .section-title h2,
.cookie-policy .about .section-title h2,
.thanks .about .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.privacy-policy .about .section-title p,
.terms .about .section-title p,
.cookie-policy .about .section-title p,
.thanks .about .section-title p {
  font-size: 1.2rem;
  color: rgba(248, 249, 250, 0.8);
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.privacy-policy .about .content,
.terms .about .content,
.cookie-policy .about .content,
.thanks .about .content {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.6) 100%);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.privacy-policy .about .content h3,
.terms .about .content h3,
.cookie-policy .about .content h3,
.thanks .about .content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 20px;
  margin-top: 30px;
}

.privacy-policy .about .content h3:first-child,
.terms .about .content h3:first-child,
.cookie-policy .about .content h3:first-child,
.thanks .about .content h3:first-child {
  margin-top: 0;
}

.privacy-policy .about .content p,
.terms .about .content p,
.cookie-policy .about .content p,
.thanks .about .content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(248, 249, 250, 0.9);
  margin-bottom: 20px;
}

.privacy-policy .about .content ul,
.terms .about .content ul,
.cookie-policy .about .content ul,
.thanks .about .content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.privacy-policy .about .content li,
.terms .about .content li,
.cookie-policy .about .content li,
.thanks .about .content li {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(248, 249, 250, 0.9);
  margin-bottom: 10px;
}

.privacy-policy .about .content strong,
.terms .about .content strong,
.cookie-policy .about .content strong,
.thanks .about .content strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* Button styling for policy pages */
.privacy-policy .btn-getstarted,
.terms .btn-getstarted,
.cookie-policy .btn-getstarted,
.thanks .btn-getstarted {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-accent);
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.privacy-policy .btn-getstarted::before,
.terms .btn-getstarted::before,
.cookie-policy .btn-getstarted::before,
.thanks .btn-getstarted::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.privacy-policy .btn-getstarted:hover::before,
.terms .btn-getstarted:hover::before,
.cookie-policy .btn-getstarted:hover::before,
.thanks .btn-getstarted:hover::before {
  left: 100%;
}

.privacy-policy .btn-getstarted:hover,
.terms .btn-getstarted:hover,
.cookie-policy .btn-getstarted:hover,
.thanks .btn-getstarted:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
  color: var(--contrast-color);
}

/* Responsive design for policy pages */
@media (max-width: 768px) {
  .privacy-policy .hero h2,
  .terms .hero h2,
  .cookie-policy .hero h2,
  .thanks .hero h2 {
    font-size: 2.5rem;
  }

  .privacy-policy .about .section-title h2,
  .terms .about .section-title h2,
  .cookie-policy .about .section-title h2,
  .thanks .about .section-title h2 {
    font-size: 2rem;
  }

  .privacy-policy .about .content,
  .terms .about .content,
  .cookie-policy .about .content,
  .thanks .about .content {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .privacy-policy .hero h2,
  .terms .hero h2,
  .cookie-policy .hero h2,
  .thanks .hero h2 {
    font-size: 2rem;
  }

  .privacy-policy .about .section-title h2,
  .terms .about .section-title h2,
  .cookie-policy .about .section-title h2,
  .thanks .about .section-title h2 {
    font-size: 1.8rem;
  }

  .privacy-policy .about .content,
  .terms .about .content,
  .cookie-policy .about .content,
  .thanks .about .content {
    padding: 25px 15px;
  }
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

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

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  box-shadow: var(--shadow-primary);
  box-sizing: content-box;
  padding: 40px 40px 40px 80px;
  margin: 30px 15px;
  min-height: 220px;
  position: relative;
  border-radius: 25px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.testimonials .testimonial-item:hover::before {
  left: 100%;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 15px;
  border: 4px solid var(--accent-color);
  position: absolute;
  left: -50px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-secondary);
}

.testimonials .testimonial-item:hover .testimonial-img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 8px 0;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item h4 {
  color: var(--accent-color);
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item .stars {
  margin: 15px 0;
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 2px;
  font-size: 18px;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.3));
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover .stars i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

.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: 20px auto 20px auto;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

.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;
  }
}

/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.success-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.success-stories .success-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid rgba(78, 205, 196, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
}

.success-stories .success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.success-stories .success-card:hover::before {
  left: 100%;
}

.success-stories .success-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.success-stories .success-card.featured {
  border-color: var(--heading-color);
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(255, 107, 107, 0.1) 100%);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.success-stories .success-card.featured:hover {
  box-shadow: 0 25px 50px rgba(255, 107, 107, 0.3);
}

.success-stories .success-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-secondary);
  position: relative;
  z-index: 2;
}

.success-stories .success-card:hover .success-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

.success-stories .success-icon i {
  font-size: 40px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.success-stories .success-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-stories .success-description {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.success-stories .success-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.success-stories .success-author strong {
  display: block;
  font-size: 18px;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.success-stories .success-author span {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
}

.success-stories .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.success-stories .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--contrast-color);
}

.success-stories .cta-button i {
  transition: transform 0.3s ease;
}

.success-stories .cta-button:hover i {
  transform: translateX(5px);
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(78, 205, 196, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.faq .faq-container {
  margin-top: 20px;
}

.faq .faq-container .faq-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  position: relative;
  padding: 30px;
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 20px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  box-shadow: var(--shadow-secondary);
}

.faq .faq-container .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.faq .faq-container .faq-item:hover::before {
  left: 100%;
}

.faq .faq-container .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
  border-color: var(--accent-color);
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 50px 0 60px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.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: 30px;
  left: 30px;
  font-size: 24px;
  line-height: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
  filter: drop-shadow(0 0 8px rgba(78, 205, 196, 0.3));
  z-index: 2;
}

.faq .faq-container .faq-item:hover .faq-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px rgba(78, 205, 196, 0.6));
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 18px;
  line-height: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--accent-color);
  z-index: 2;
}

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

.faq .faq-container .faq-active {
  background: var(--gradient-accent);
  transition: all 0.4s ease;
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.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 {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact .info-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.contact .info-item i {
  font-size: 42px;
  line-height: 0;
  color: var(--accent-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.contact .info-item:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.6));
}

.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: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  padding: 40px;
  height: 100%;
  border-radius: 25px;
  border: 1px solid rgba(78, 205, 196, 0.1);
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
}

.contact .php-email-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 16px;
  padding: 15px 20px;
  box-shadow: none;
  border-radius: 15px;
  color: var(--default-color);
  background-color: rgba(26, 26, 46, 0.6);
  border: 2px solid rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.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);
  background-color: rgba(26, 26, 46, 0.8);
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
  transform: translateY(-2px);
}



.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.contact .php-email-form button[type=submit] {
  background: var(--gradient-accent);
  color: var(--contrast-color);
  border: 0;
  padding: 15px 40px;
  transition: all 0.3s ease;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
}

.contact .php-email-form button[type=submit]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.contact .php-email-form button[type=submit]:hover::before {
  left: 100%;
}

.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  background: var(--background-color);
}

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.95) 100%);
  color: var(--default-color);
  border: 1px solid rgba(139, 92, 246, 0.2);
  padding: 24px;
  font-family: var(--default-font);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(139, 92, 246, 0.08);
  border-radius: 20px;
  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;
  backdrop-filter: blur(16px);
  overflow: hidden;
}

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

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

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Optional header elements if present */
#cookie-popup .popup-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

#cookie-popup .popup-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.32);
}

#cookie-popup .popup-icon i {
  font-size: 20px;
  color: var(--contrast-color);
}

#cookie-popup .popup-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#cookie-popup .popup-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

#cookie-popup button {
  background: var(--gradient-accent);
  color: var(--contrast-color);
  border: none;
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.28);
}

#cookie-popup button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.36);
}

#cookie-popup .btn-secondary {
  background: transparent;
  color: var(--default-color);
  border: 1px solid rgba(139, 92, 246, 0.28);
  box-shadow: none;
}

#cookie-popup .btn-secondary:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: var(--accent-color);
}

@media (max-width: 600px) {
  #cookie-popup {
    padding: 18px;
    border-radius: 16px;
  }
  #cookie-popup .popup-actions {
    flex-direction: column;
  }
  #cookie-popup button {
    width: 100%;
  }
}

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

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

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

/*  New Swiper */
.feature-slider {
  position: relative;
  padding-bottom: 60px;
}

.feature-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.feature-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--heading-color);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-slider .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
}

.feature_example {
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  color: var(--default-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature_example::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.05), transparent);
  transition: left 0.6s;
}

.feature_example:hover::before {
  left: 100%;
}

.feature_example:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--heading-color);
}


.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-primary);
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(78, 205, 196, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.feature-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.feature-content i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(78, 205, 196, 0.3));
}

.feature-card:hover .feature-content i {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(78, 205, 196, 0.6));
}

.read-more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: 600;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
}

.read-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.read-more:hover::before {
  left: 100%;
}

.read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

footer div a {
  display: inline-block;
  margin-right: 2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

footer div a:last-child {
  margin-right: 0;
}

footer div a:hover {
  color: var(--accent-color);
  background: rgba(78, 205, 196, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
}
